:root {
    --primary: #0066cc;
    --secondary: #004499;
    --accent: #ffcc00;
    --dark: #222;
    --text: #666;
    --white: #fff;
    --light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333333%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333333%; }
.col-lg-9 { width: 75%; }
.col-lg-12 { width: 100%; }
.col-md-6 { width: 50%; }

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 992px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333333%; }
    .col-lg-9 { width: 75%; }
    .col-lg-12 { width: 100%; }
}

@media (max-width: 991px) {
    .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-7, .col-lg-9 {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
}

@media (max-width: 767px) {
    .col-md-6 { width: 100%; }
}

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.text-center { text-align: center; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid rgba(233, 69, 96, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ft-header-section {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ft-header-content-wrapper {
    border-bottom: 1px solid #eee;
}

.ft-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.ft-brand-logo img {
    height: 70px;
    width: auto;
}

.ft-header-menu-top-cta {
    display: flex;
    flex-direction: column;
}

.ft-header-top {
    margin-bottom: 15px;
}

.ft-header-top ul {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.ft-header-top li {
    font-size: 14px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.ft-header-top i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 16px;
}

.lang-toggle {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.lang-toggle:hover {
    color: var(--accent);
}

.ft-header-main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
}

.ft-main-navigation ul {
    display: flex;
    gap: 45px;
}

.ft-main-navigation a {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ft-main-navigation a:hover {
    color: var(--accent);
}

.ft-header-cta-btn a {
    background: var(--accent);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
}

.ft-header-cta-btn a:hover {
    background: #d63650;
    transform: translateY(-2px);
}

.ft-header-cta-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 25px 45px;
    margin-left: 50px;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.ft-header-cta-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-header-cta-icon i {
    font-size: 20px;
    color: var(--white);
}

.ft-header-cta-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.ft-header-cta-text h3 {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.ft-slider-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 750px;
    position: relative;
}

.banner-slide {
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.banner-text h2 {
    font-size: 75px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.banner-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
    line-height: 1.8;
    white-space: nowrap;
}

.banner-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.banner-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ft-booking-form-section {
    background: var(--white);
    padding: 50px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.ft-booking-form-content {
    background: var(--white);
    padding: 45px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.12);
}

.booking-form-input-wrapper {
    gap: 25px;
}

.booking-form-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: 10px;
    padding: 8px 25px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.booking-form-input:focus-within {
    border-color: var(--accent);
}

.booking-form-icon {
    width: 50px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-form-input input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 10px;
    font-size: 15px;
    outline: none;
}

.ft-sb-button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

.ft-sb-button:hover {
    background: #d63650;
    transform: translateY(-2px);
}

.ft-about-section {
    padding: 120px 0;
    background: var(--white);
}

.ft-about-content {
    align-items: center;
}

.ft-about-img-exp {
    position: relative;
}

.ft-about-exp-area {
    background: var(--accent);
    padding: 35px 30px;
    color: var(--white);
    text-align: center;
    width: 190px;
    position: absolute;
    bottom: -40px;
    left: -40px;
    z-index: 5;
    border-radius: 12px;
}

.ft-about-exp-img {
    margin-bottom: 10px;
}

.ft-about-exp-img img {
    width: 65px;
    height: auto;
}

.ft-about-exp-text h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.ft-about-exp-text h3 b {
    font-size: 26px;
}

.ft-about-exp-text p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.ft-about-img {
    padding-left: 60px;
}

.ft-about-img img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.ft-about-text-wrapper {
    padding-left: 40px;
}

.ft-section-title {
    margin-bottom: 45px;
}

.ft-section-title .sub-title {
    display: block;
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 18px;
}

.ft-section-title h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 22px;
}

.ft-about-text-wrapper > p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 35px;
    line-height: 1.8;
}

.ft-about-feature-list-warpper {
    margin-top: 45px;
}

.ft-about-feature-list-item {
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
    background: #fafafa;
}

.ft-about-feature-list-item:hover {
    background: var(--light);
    transform: translateX(8px);
}

.ft-about-feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-about-feature-icon i {
    font-size: 26px;
    color: var(--white);
}

.ft-about-feature-text h3 {
    font-size: 21px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.ft-about-feature-text p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
    line-height: 1.7;
}

.ft-service-section {
    padding: 120px 0;
    background: var(--light);
}

.ft-service-text-area {
    padding-right: 50px;
}

.ft-service-text-area h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 35px;
}

.ft-btn {
    margin-top: 40px;
}

.ft-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

.ft-btn a:hover {
    background: #d63650;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.35);
}

.ft-service-slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.ft-item-innerbox {
    width: calc(33.333% - 17px);
}

.ft-service-slider-item {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s;
}

.ft-service-slider-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.ft-service-inner-img {
    height: 190px;
    overflow: hidden;
}

.ft-service-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.ft-service-slider-wrapper .slick-track {
    display: flex;
}

.ft-service-slider-wrapper .slick-slide {
    display: flex;
    height: auto;
}

.ft-service-slider-item:hover .ft-service-inner-img img {
    transform: scale(1.15);
}

.ft-service-inner-text {
    padding: 30px;
    position: relative;
}

.ft-service-inner-text h3 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0;
}

.ft-service-inner-text h3 a:hover {
    color: var(--accent);
}

.ft-service-serial {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    top: -20px;
    right: 25px;
}

.ft-counterup-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 0;
}

.ft-counterup-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.ft-counterup-innerbox {
    flex: 1;
    min-width: 260px;
    padding: 40px 35px;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
}

.ft-counterup-icon {
    width: 75px;
    height: 75px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-counterup-icon i {
    font-size: 30px;
    color: var(--white);
}

.ft-counterup-text h3 {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.ft-counterup-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.ft-why-choose-section {
    padding: 120px 0;
    background: var(--white);
}

.ft-why-choose-content {
    padding: 70px;
    background: var(--light);
    border-radius: 25px;
}

.ft-why-choose-feature-wrapper {
    margin-top: 55px;
}

.ft-why-choose-feature-item {
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 18px;
    transition: all 0.3s;
    background: var(--white);
    display: flex;
    align-items: flex-start;
}

.ft-why-choose-feature-item:hover {
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.ft-why-choose-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    margin-right: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-why-choose-feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.ft-why-choose-feature-text h3 {
    font-size: 24px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.ft-why-choose-feature-text p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

.ft-team-section {
    padding: 120px 0;
    background: var(--light);
}

.ft-team-text-area {
    margin-bottom: 60px;
}

.ft-team-content {
    align-items: center;
}

.ft-team-inner-itembox {
    position: relative;
    margin-bottom: 40px;
}

.hover-shape {
    top: -20px;
    right: -20px;
    z-index: 1;
}

.hover-shape img {
    width: 90px;
    height: auto;
}

.ft-team-inner-item-img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
}

.ft-team-inner-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.ft-team-inner-itembox:hover .ft-team-inner-item-img img {
    transform: scale(1.08);
}

.ft-project-section {
    padding: 120px 0;
    background: var(--white);
}

.ft-project-content {
    margin-bottom: 60px;
    text-align: left;
}

.ft-project-slider-wrapper {
    margin-top: 50px;
    position: relative;
    padding: 0 40px;
}

.ft-project-slider-area {
    overflow: hidden;
}

.ft-project-slider {
    overflow: hidden;
}

.ft-item-innerbox {
    margin: 0 15px;
}

.ft-project-itembox {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.ft-project-itembox:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ft-project-img {
    height: 220px;
    overflow: hidden;
}

.ft-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.ft-project-itembox:hover .ft-project-img img {
    transform: scale(1.15);
}

.ft-project-text {
    padding: 30px;
}

.ft-project-text h3 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
}

.ft-project-text h3 a:hover {
    color: var(--accent);
}

@media (max-width: 1199px) {
    .ft-project-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 991px) {
    .ft-project-slider-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .ft-project-slider-wrapper {
        padding: 0 15px;
    }
    
    .ft-project-itembox {
        margin: 0 10px;
    }
}

.ft-testimonial-section {
    padding: 120px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.ft-testimonial-map {
    width: 100%;
    left: 0;
    bottom: 0;
    opacity: 0.05;
}

.ft-testimonial-map img {
    max-width: 100%;
}

.ft-testimonial-slider-wrapper {
    margin-top: 60px;
    position: relative;
    padding: 0 40px;
}

.ft-testimonial-slider-area {
    overflow: hidden;
}

.ft-testimonial-item-innerbox {
    background: var(--white);
    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    margin: 0 15px;
}

.ft-testimonial-item-img-wrapper {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.ft-testimonial-item-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.ft-testimonial-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ft-testimonial-quote {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    bottom: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-testimonial-quote img {
    width: 22px;
    height: auto;
}

.ft-testimonial-text-item {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 25px;
}

.ft-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.ft-testimonial-shape {
    display: none;
}

@media (max-width: 991px) {
    .ft-testimonial-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 576px) {
    .ft-testimonial-slider-wrapper {
        padding: 0 15px;
    }
    
    .ft-testimonial-item-innerbox {
        padding: 30px;
    }
}

.ft-contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0;
    color: var(--white);
    position: relative;
}

.ft-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(material/assets/img/bg/c-bg.jpg) no-repeat center center;
    background-size: cover;
    opacity: 0.15;
}

.ft-contact-content {
    text-align: center;
}

.ft-contact-content .ft-section-title {
    margin-bottom: 40px;
}

.ft-contact-content .ft-section-title .sub-title {
    color: rgba(255,255,255,0.75);
}

.ft-contact-content .ft-section-title h2 {
    color: var(--white);
}

.ft-contact-content p {
    margin-bottom: 25px;
}

.ft-contact-content .nav-link {
    color: var(--white);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ft-contact-content .nav-link:hover {
    color: var(--accent);
}

.ft-contact-content i {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ft-footer-section {
    background: var(--dark);
    padding: 40px 0;
}

.ft-footer-section span {
    color: #999;
    font-size: 15px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--accent);
    color: var(--white);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev i,
.slick-next i {
    font-size: 18px;
    color: var(--dark);
}

.slick-prev:hover i,
.slick-next:hover i {
    color: var(--white);
}

.slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 46, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li.slick-active {
    background: var(--accent);
}

.slick-dots li button {
    display: none;
}

@media (max-width: 1199px) {
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }
}

@media (max-width: 991px) {
}

@media (max-width: 576px) {
    
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
    
    .ft-header-cta-info {
        padding: 20px 35px;
    }
}

@media (max-width: 1199px) {
    .ft-header-cta-info {
        display: none;
    }
    
    .ft-about-exp-area {
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 25px;
    }
    
    .ft-about-img {
        padding-left: 15px;
    }
    
    .ft-project-itembox {
        width: calc(33.333% - 17px);
    }
}

@media (max-width: 991px) {
    .ft-main-navigation {
        display: none;
    }
    
    .ft-item-innerbox {
        width: 100%;
    }
    
    .ft-service-inner-img {
        height: 200px;
    }
    
    .ft-service-inner-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .ft-why-choose-content {
        padding: 45px 35px;
    }
    
    .ft-project-slider-area {
        flex-direction: column;
    }
    
    .ft-project-itembox {
        width: 100%;
    }
    
    .ft-testimonial-slider-area {
        flex-direction: column;
    }
    
    .ft-testimonial-item-innerbox {
        width: 100%;
    }
    
    .ft-header-content {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .banner-text h2 {
        font-size: 50px;
    }
    
    .ft-section-title h2,
    .ft-service-text-area h2 {
        font-size: 36px;
    }
    
    .ft-booking-form-content {
        padding: 35px 25px;
    }
    
    .booking-form-input-wrapper {
        flex-direction: column;
    }
    
    .ft-sb-button {
        width: 100%;
    }
    
    .ft-about-text-wrapper {
        padding-left: 15px;
    }
    
    .ft-about-feature-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ft-about-feature-icon {
        margin: 0 auto 20px;
    }
    
    .ft-why-choose-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ft-why-choose-feature-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .banner-text h2 {
        font-size: 40px;
    }
    
    .ft-section-title h2 {
        font-size: 30px;
    }
    
    .ft-counterup-innerbox {
        flex-direction: column;
        text-align: center;
    }
    
    .ft-counterup-icon {
        margin: 0 0 15px;
    }
}