*{margin:0;padding:0;box-sizing:border-box;}
body{background:#fff;font-family: 'Agrandir', sans-serif;}
/* Agrandir Font Family */
@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/Agrandir-Regular.woff2') format('woff2'),
         url('../fonts/Agrandir-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Agrandir Font Family Fontmirror */
@font-face {
    font-family: 'AgrandirMirror';
    src: url('../fonts/AgrandirFontMirror-Regular.woff2') format('woff2'),
         url('../fonts/AgrandirFontMirror-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* GT America */
@font-face {
    font-family: 'GT America';
    src: url('../fonts/GT-America-Standard-Regular.woff2') format('woff2'),
         url('../fonts/GT-America-Standard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.font1 {font-family: 'Agrandir', sans-serif;}
.font2 {font-family: 'AgrandirMirror', sans-serif;}
.font3 {font-family: 'GT America', sans-serif;}

.container{width:90%;max-width:1400px;margin:auto;box-sizing: border-box;}

/* TOP HEADER */
.top-header{background:#000000;padding:4px 0;}
.top-header .container{display:flex;justify-content:flex-end;align-items:center;gap:25px;}
.top-links{display:flex;gap:25px;}
.top-links a{text-decoration:none;color:#ffffff; font-size: 14px;line-height: 44px;letter-spacing: -1%;font-weight: 700;font-family: 'GT America', sans-serif;}
.search-box input{width:200px;padding:5px 15px;border-radius:30px;border:1px solid #ddd;}

/* NAVBAR */
.top-header{
    height:52px; /* Set to your actual height */
}
.navbar{
    width:100%;
    background:#22004f;
    transition:.3s;
}

.navbar.sticky{
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}


.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
}
.logo img{position: relative; top:5px;}
.menu{
    display:flex;
    gap:25px;
    list-style:none;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    line-height:44px;
    letter-spacing:-1%;
    font-family:'GT America', sans-serif;
    font-weight:700;
}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#fff;
    border-radius:5px;
    transition:.3s;
}

.mobile-btn{
    display:none;
}
/*
.navbar{background:#22004f;padding:5px 0 0;}
.nav-wrapper{display:flex;justify-content:space-between;align-items:center;}
.logo{color:#fff;}
.menu{display:flex;gap:25px;list-style:none;}
.menu a{color:#fff;text-decoration:none;font-size:15px;line-height: 44px;letter-spacing: -1%;font-family: 'GT America', sans-serif;font-weight: 700;}
.hamburger{display:none;flex-direction:column;cursor:pointer;gap:5px;}
.hamburger span{width:28px;height:3px;background:#fff;border-radius:5px;transition:.3s;}
.mobile-btn{display:none;}*/

@media(max-width:992px){
    .desktop-btn{display:none}
    .hamburger{display:/*flex*/none;}
    .menu{position:absolute;top:100%;left:0;width:100%;background:#22004f;flex-direction:column;align-items:center; padding:20px 0;display:flex;max-height:0;overflow:hidden;transition:.4s ease}
    .menu.active{max-height:600px;display:flex;z-index: 10;}
    .menu li{margin:12px 0 0;}
    .mobile-btn{display:block;margin-top:15px;}
    .nav-wrapper{position:relative;}
}

.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(6px,6px);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}
.btn-primary{padding:14px 16px;border-radius:30px;text-decoration:none;color:#fff;background:linear-gradient(
90deg,#4a00ff,#ff7b00);font-weight:500; line-height: 100%;font-family: 'GT America', sans-serif;}
.btn-outline{padding:14px 28px;border-radius:30px;text-decoration:none;border:2px solid #ff7b00;color:#fff;}

/* HERO */
.hero-section{background-image: url("../images/hero-banner.png");height: 100%;background-position: center;background-repeat: no-repeat;background-size: cover;background-color:linear-gradient(90deg,#09002d,#2d0a79,#09002d);padding:80px 0;}
.hero-content{display:flex;align-items:center;justify-content:space-between;gap:50px}
.hero-left{flex:1.2;color:#fff;}
.hero-left h1{font-size:55px;line-height:60px;margin:20px 0;letter-spacing: 2px;font-weight: 400;}
.hero-left p{font-size:17px;line-height:34px;font-family: 'GT America', sans-serif;margin-bottom: 0;}
.badge{display:inline-block;background:#1e1e1e;padding:8px 18px;border-radius:20px;font-size:13px}
.hero-buttons{display:flex;gap:20px;margin-top: 35px;}
.hero-right{flex:1}
.hero-right img{width:100%}
.heroSwiper .swiper-slide .hero-left{opacity:0;transform:translateY(40px);transition:all .8s ease}
.heroSwiper .swiper-slide-active .hero-left{opacity:1;transform:translateY(0)}
.heroSwiper .swiper-slide .hero-right{opacity:0;transform:translateX(40px);transition:all 1s ease;}
.heroSwiper .swiper-slide-active .hero-right{opacity:1;transform:translateX(0);}

/* SERVICES */
.services{padding:40px 0 70px;text-align:center;}.services .intro-contain{max-width: 1000px; margin: 0 auto; padding: 20px 0 50px;}.services .intro-contain p{margin-bottom: 15px;}
.section-tag{display:inline-block;background:#f2f2f2;padding:8px 18px;border-radius:20px;margin-bottom:20px;color:#1D0BE8;}
.services h2{font-size:48px; font-weight:500;margin-bottom:20px;font-weight: 400;line-height: 1.1;letter-spacing: 1px;}
.section-desc{margin-bottom:60px;font-family: 'GT America', sans-serif;line-height:30px}
.service-card{background:#fff;padding:30px;border-radius:15px;border:1px solid #e5e5e5;box-shadow:0 5px 25px rgba(0,0,0,.08);text-align:left;min-height:290px;margin:0 0 70px 0}
/*.service-card h4{margin-bottom:15px;align-items: center;font-size:15px}
.service-card h4 img{align-items: center;height: 35px;width:35px;vertical-align: middle;}*/

.service-title {display: flex; align-items: center; gap: 12px; margin-bottom: 20px;}
.service-title img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0;}
.service-title h3 {margin: 0;font-size: 15px;font-weight: 600;line-height: 1.3;}


/* RESPONSIVE */
@media(max-width:992px){
.menu{display:none;}
.hero-content{flex-direction:column;text-align:center;}
.hero-left h1{font-size:50px;}
.hero-buttons{justify-content:center;}
}

@media(max-width:768px){
.top-header .container{flex-direction:row;gap:0;}
.top-header .search-box{text-align: right;max-width: 46%;}
.top-links{gap: 20px;}
.top-links a{font-size: 12px;line-height: 22px;}
.search-box input{width:80%;}
.hero-left h1{font-size:40px;}
.services h2{font-size:34px;}
.hero-buttons{flex-direction:column;}
}
.about-section{/*padding:120px 0;*/background: #0a0730 url("../images/about-bg.png") no-repeat left 100px; overflow: hidden;}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.section-badge{display:inline-block;padding:8px 18px;border-radius:30px;background:#f3f1ff;color:#4323ff;font-size:13px;margin-bottom:20px;}
.about-content h2{font-size:48px;line-height:1.1;margin-bottom:25px;color:#fff; font-weight: 500;}
.about-content > p{color:#fff;margin-bottom:35px;}
.features-grid{display:grid;grid-template-columns:1fr 1fr;gap:25px;margin-bottom:40px;}
.feature-item h4{margin-bottom:10px;}
.primary-btn{display:inline-block;padding:16px 34px;border-radius:50px;background:linear-gradient(90deg,#3f2cff,#ff8500);color:#fff;text-decoration:none;}
.about-image{/*position:relative;*/width: calc(100% + 100px);margin-right: -250px;}
.about-image img{/*border-radius:24px;*/}
.stats-section{padding:90px 0;background: #fafafa url("../images/map-bg.png") no-repeat center top 0;background-size: cover;}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);text-align:center;border-right:2px solid #000;}
.stats-row:last-child{border-right:0}
.stat-item{border-right:1px solid #ddd;}
.stat-item:last-child{border-right:none;}
.stat-item h2{font-size:72px;margin-bottom:15px;}
.clients-section{padding:60px 0 10px;}
.clients-row{display:flex;justify-content:center;align-items:center;gap:40px;flex-wrap:wrap;}
.clients-row img{height:40px;opacity:.9;}

.clients-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* adjust as needed */
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

/* Partner slider Css */
.hmpartner-section{padding:45px 0 10px;}
.logo-ticker-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
.logo-ticker-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-ticker-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px;
    border-radius: 12px;
    border:1px solid #fbf8f8;
}

.logo-ticker-slider img {
    max-width: 160px;
    height: auto;
}


.case-studies{padding:80px 0;text-align: center;}.case-studies .section-badge{margin-bottom: 0;} .case-studies .section-title{margin:20px 0 60px;}
.section-title{text-align:center;font-size:48px;font-weight: 500;margin:20px 0 70px;line-height: 1.1;}
.case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.case-card{border:1px solid #e5e5e5;border-radius:24px;overflow:hidden;transition:.3s;}
/*.case-grid .case-card:nth-child(2) {border-color: #ff7f22ad;}*/
.case-card:hover{transform:translateY(-8px);}
.case-card img{width:100%;height:250px;object-fit:cover;border-radius: 0 0 80px 0;}
.case-content{padding:20px 30px;text-align:left;}
.case-content h3{font-size:18px;line-height:28px;margin-bottom:20px;letter-spacing: 5%;}
.case-content p{color:#666;margin-bottom:20px;}
.case-content a{color:#767476;font-size:14px; display: flex;   justify-content: flex-end;}

@media(max-width:991px){
.about-grid{grid-template-columns:1fr;}
.stats-row{grid-template-columns:1fr 1fr;gap:30px;}
.case-grid{grid-template-columns:1fr;}
.about-content h2{font-size:42px;word-wrap: break-word;overflow-wrap: break-word;}
.section-title{font-size:40px;}
}

@media(max-width:768px){
.features-grid{grid-template-columns:1fr;}
.stats-row{grid-template-columns:1fr;}
.stat-item{border:none;}
.stat-item h2{font-size:48px;}
}

.industry-section{padding:90px 0;background:#f8f8f8;overflow:hidden;}
.section-header{text-align:center;margin-bottom:70px;position:relative;}
.badge{display:inline-block;padding:8px 18px;background:#f1eeff;color:#4323ff;border-radius:30px;font-size:13px;margin-bottom:20px;}
.section-header h2{font-size:48px;margin:15px 0;font-weight:500;line-height: 1.1;}
.section-header p{color:#666;}
.view-all{position:absolute;right:0;bottom:0;color:#111;text-decoration:none;}
.industrySwiper{overflow:hidden;padding: 20px 0 40px;}.industrySwiper .swiper-wrapper {display:flex;}
.industrySwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}




.industry-card{background:#fff;border:1px solid #e5e5e5;border-radius:24px;padding:40px;min-height:550px;display:flex;flex-direction:column;transition:.4s;}
.active-card{background:linear-gradient(135deg,#f3efff,#ffffff);}
.industry-icon{font-size:42px;margin-bottom:25px;}
.industry-card h3{font-size:32px;margin-bottom:15px;}
.industry-card p{color:#666;line-height:1.8;margin-bottom:25px;}
.industry-card .industry-icon img{width:40px;}
.tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:30px;}
.tags span{padding:8px 14px;border:1px solid #ccc;border-radius:30px;font-size:12px;}
.benefits{list-style:none;margin-bottom:40px;}
.benefits li{margin-bottom:15px;position:relative;padding-left:28px;}
.benefits li:before{content:"✓";color:#00b26f;position:absolute;left:0;}
.industry-btn{margin-top:auto;display:block;text-align:center;padding:18px;border-radius:50px;text-decoration:none;color:#fff;font-weight:600;background:linear-gradient(90deg, #3127ff, #ff8420);}
.outline-btn{background:#fff;color:#111;border:1px solid #d9d9d9;}
.swiper-slide{height:auto;}

@media(max-width:1200px){
.section-header h2{font-size:48px;}
 .industrySwiper {
        width: calc(100% + 100px);
        margin-left:-50px;
    }

    .industrySwiper .swiper-slide {
        width:auto;
    }
    
/* =========================================
       HEADER - SMALL LAPTOP
       ========================================= */

    /* Reduce gap between menu items */
    header nav > ul,
    header .menu {
        gap: 15px;
    }

    /* Menu text */
    header nav > ul > li > a,
    header .menu > li > a {
        font-size: 14px;
        line-height: 1.2;
        white-space: nowrap;
    }

    /* Dropdown arrow spacing */
    header nav > ul > li.menu-item-has-children > a,
    header .menu > li.menu-item-has-children > a {
        padding-right: 14px;
    }

    /* Header CTA / buttons */
    header .header-button,
    header .header-cta,
    header .btn,
    header a.button {
        font-size: 13px;
        line-height: 1.2;
        padding: 11px 15px;
        white-space: nowrap;
    }
}    
    
    
    
}

@media(max-width:768px){
.industry-section{padding:80px 0;}
.section-header h2{font-size:36px;}
.industry-card{min-height:auto;padding:30px;}
.view-all{position:static;display:block;margin-top:15px;}
}

/*.industry-card{height:100%;}*/

/* Default Card */
.industry-card{background:#fff;border:1px solid #e5e5e5;border-radius:24px;padding:40px;transition:.4s;}

/* First Visible / Active Card */
.industrySwiper .swiper-slide-active .industry-card{background:linear-gradient(135deg, #f3efff, #ffffff);}

/* Active Button */
.industrySwiper .swiper-slide-active .industry-btn{background:linear-gradient(90deg, #3127ff, #ff8420  );
    color:#fff;border:none;}

/* Other Buttons */
.industrySwiper .swiper-slide:not(.swiper-slide-active) .industry-btn{background:#fff;color:#111;border:1px solid #d9d9d9;}


.badge{display:inline-block;padding:8px 18px 4px;background:#f1eeff;color:#4338ff;letter-spacing:1px; border-radius:30px;font-size:13px;margin-bottom: 0;}
.section-title{text-align:center;margin-bottom:60px;}
.section-title h2{font-size:48px;margin-top:20px; font-weight: 500;}

/* =========================
TESTIMONIALS old
========================= */
/*.testimonial-section{padding:30px 0 50px;background: #03011e  url("../images/impact.png") no-repeat center 120px;background-size: cover;    background-attachment: fixed;}
.testimonial-section .section-title h2{color:#fff;}.testimonial-section .section-title{margin-bottom: 10px;}
.testimonial-card{background:#fff;padding:30px 40px; height:415px; box-shadow: 5px 8px 28px 5px #837d7d14;}
/*.testimonial-card:nth-child(even){margin-top:100px}
.user-info{display:flex;align-items:center;gap:15px;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #E9EFF5;}
.user-info img{width:55px;height:55px;border-radius:50%;object-fit:cover;}
.stars{color:#ff8a00;margin-bottom:15px;}
.testimonial-card p{color:#666;line-height:1.8;}

.testimonial-slider {
    width: 100%;
    padding: 50px 30px 50px;
    overflow: hidden;
}
*/

/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */
.testimonial-section { width: 100%; position: relative;  overflow: hidden;box-sizing: border-box; background:#fff; background-size: cover; background-position: center; background-repeat: no-repeat;background-image: linear-gradient(to right, rgb(254 254 254) 1px, #ffffffe6 1px), linear-gradient(to bottom, rgb(254 254 254 / 98%) 1px, #d8d1d1a8 1px), url(../images/testimonial-bg-new.png)}
.testimonial-section *, .testimonial-section *::before, .testimonial-section *::after { box-sizing: border-box;}
.testimonial-section > .container {width: 100%;max-width: 1280px;margin: 0 auto; padding: 55px 45px;}
.testimonial-section .testimonial-slider {width: 100%;  position: relative;overflow: hidden;}
.testimonial-section .swiper-wrapper { align-items: stretch;}
.testimonial-section .swiper-slide { width: 100%; height: auto;}
.testimonial-section .testimonial-slide { width: 100%;display: grid !important;  grid-template-columns: 55% 45%; align-items: center;min-height: 390px; padding: 0;  margin: 0;}
.testimonial-section .testimonial-content {width: 100% !important; padding: 0 25px 0 0 !important; margin: 0 !important; position: relative;  text-align: left;}
.testimonial-section .testimonial-quote-icon { display: block;  width: 100%;height: 58px;margin: 10px 0 5px 0;  padding: 0; font-family:Georgia, "Times New Roman", serif; font-size: 82px; line-height: 0.75;  font-weight: 700; color: #ff7800;}
.testimonial-section .testimonial-title { margin: 0 0 17px 0 !important; padding: 0; font-size: 50px !important; line-height: 1.05 !important;font-weight: 800 !important; letter-spacing: -0.8px; text-transform: uppercase;background: linear-gradient(90deg,  #ff7816 0%, #9b237e 100% );  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;background-clip: text;}
.testimonial-section .testimonial-title span {display: block;}
.testimonial-section .testimonial-main-quote { width: 100%; max-width: 580px; display: flex !important; align-items: flex-start;  margin: 0 0 17px 0 !important;padding: 0 !important;}
.testimonial-section .testimonial-main-quote p { margin: 0 !important; padding: 5px;  line-height: 1.45 !important; font-weight: 400; color: #29272d;  text-align: left;}
.testimonial-section .quote-mark { flex: 0 0 auto; font-size: 30px;  line-height: 0.75; font-weight: 700; color: #28262c; margin: 0 4px 0 0;}
.testimonial-section .quote-end { margin: 0 0 0 3px;align-self: flex-end;}
.testimonial-section .testimonial-points { width: 100%; display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 8px; margin: 0 0 18px 0 !important;  padding: 0 !important;}
.testimonial-section .testimonial-point { width: 100%; margin: 0 !important;padding: 0; text-align: center; min-width: 0;}
.testimonial-section .point-icon { width: 100%; height: 25px; display: flex;  align-items: center; justify-content: center; margin: 0 0 3px 0; color: #ff7800;  font-size: 22px; line-height: 1;}
.testimonial-section .point-icon span {color: #ff7800;}
.testimonial-section .testimonial-point h4 {margin: 0 !important; padding: 0; font-size: 12px !important; line-height: 1.15 !important; font-weight: 700 !important; color: #ff7800; text-align: center;  text-transform: uppercase;}
.testimonial-section .testimonial-point p { margin: 3px 0 0 0 !important;  padding: 0; font-size: 12px !important;line-height: 1.25 !important;color: #444;text-align: center;}
.testimonial-section .testimonial-secondary-quote {width: 100%; max-width: 590px; display: flex !important; align-items: flex-start; margin: 0 !important;padding: 7px 0 0 0 !important; border-top: 1px solid #ff7816;}
.testimonial-section .testimonial-secondary-quote p {margin: 0 !important;padding: 5px;line-height: 1.4 !important; font-style: italic;  color: #46424a; text-align: left;}
.testimonial-section .testimonial-author { width: 100%; display: flex !important; align-items: center; margin: 13px 0 0 0 !important; padding: 0; font-size: 12px !important; line-height: 1.2; color: #29262d;text-align: left;}
.testimonial-section .author-line { display: inline-block; width: 22px; height: 2px; flex: 0 0 22px; margin: 0 9px 0 0; background: #ff7816;}
.testimonial-section .testimonial-author strong { margin: 0; font-weight: 700;}
.testimonial-section .author-separator {margin: 0 5px;}
.testimonial-section .testimonial-logo-wrapper { width: 100%; display: flex !important; align-items: center; justify-content: center; margin: 0;  padding: 0;}
.testimonial-section .testimonial-logo-card {width: 90%;max-width: 390px; height: 205px;display: flex !important; align-items: center; justify-content: center; margin: 0; padding: 25px; background: #fff; border: 1px solid #ff9848; border-radius: 17px; box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);}
.testimonial-section .testimonial-company-logo { display: block;  width: auto; max-width: 75%; height: auto; max-height: 70%;  object-fit: contain;margin: 0 auto;}
.testimonial-section .testimonial-navigation { position: absolute; top: 0; right: 0; z-index: 20; display: flex;  align-items: center;  gap: 10px;}
.testimonial-section .testimonial-navigation button {width: 24px !important; height: 24px !important; min-width: 24px !important; min-height: 24px !important; display: flex !important; align-items: center; justify-content: center; margin: 0 !important; padding: 0 !important; border: 1px solid #ff7800 !important; border-radius: 50% !important; background: #fff !important; color: #ff7800 !important; cursor: pointer; box-shadow: none !important;}
.testimonial-section .testimonial-navigation button span { display: block; margin: 0; padding: 0;font-size: 20px; line-height: 18px;}
.testimonial-section .testimonial-navigation .testimonial-next {background: #ff7800 !important; color: #fff !important;}
.testimonial-section .testimonial-navigation .swiper-button-disabled { opacity: 0.45; cursor: default;}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .testimonial-section > .container {padding: 50px 30px; }
    .testimonial-section .testimonial-slide {grid-template-columns: 55% 45%; min-height: 360px; }
    .testimonial-section .testimonial-title {font-size: 32px !important;}
    .testimonial-section .testimonial-logo-card { width: 90%; height: 180px; }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .testimonial-section {background-size: 28px 28px;}
    .testimonial-section > .container {padding: 45px 20px 50px; }
    .testimonial-section .testimonial-slide { display: flex !important; flex-direction: column; width: 100%;min-height: auto; gap: 30px;}
    .testimonial-section .testimonial-content { width: 100% !important;padding: 0 !important;}
    .testimonial-section .testimonial-quote-icon {height: 48px; font-size: 70px; }
    .testimonial-section .testimonial-title { padding-right: 60px;font-size: 29px !important; line-height: 1.05 !important; }
    .testimonial-section .testimonial-main-quote { max-width: 100%;}
    .testimonial-section .testimonial-main-quote p { font-size: 12px !important; line-height: 1.5 !important; }
    .testimonial-section .testimonial-points { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; column-gap: 15px; row-gap: 20px; margin-bottom: 22px !important; }
    .testimonial-section .testimonial-point h4 {font-size: 9px !important;}
    .testimonial-section .testimonial-point p { font-size: 7px !important;}
    .testimonial-section .testimonial-secondary-quote p { font-size: 10px !important;} 
	.testimonial-section .testimonial-author { font-size: 9px !important; }
    .testimonial-section .testimonial-logo-wrapper {  width: 100%; }
    .testimonial-section .testimonial-logo-card { width: 100%; max-width: 350px; height: 190px; }
    .testimonial-section .testimonial-navigation { top: 0; right: 0; gap: 7px;}
    .testimonial-section .testimonial-navigation button {width: 28px !important; height: 28px !important; min-width: 28px !important; min-height: 28px !important;}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
    .testimonial-section > .container {padding: 40px 16px;}
    .testimonial-section .testimonial-title {font-size: 26px !important;}
	.testimonial-section .testimonial-main-quote p {font-size: 11px !important;}
	.testimonial-section .testimonial-logo-card {height: 175px; }
}    







/* =========================
CTA SECTION
========================= */
.cta-section{padding:0; background: linear-gradient(
179deg, #fae7ff, #ffffff, #e2e8ed);}
.cta-wrapper{display:flex;align-items:center;justify-content:space-between;gap:60px;border-radius:30px;padding:80px; /*background:linear-gradient(90deg, #f6d7ff, #ffffff, #ffe0d1);*/}
.cta-content{flex:1;}
.cta-content h2{font-size:48px;line-height:1.2;margin-bottom:20px;font-weight: 500;}
.cta-content p{font-size:22px;margin-bottom:30px;}
.cta-btn{display:inline-block;padding:18px 40px;border-radius:50px;text-decoration:none;color:#fff;font-weight:600; background:linear-gradient(90deg, #3528ff, #ff8420 );}
.cta-image{flex:1;}
.cta-image img{width:100%;border-radius:20px;}

/* =========================
FOOTER
========================= */
.footer{padding:100px 0 0;background:#faf7f2;}
.footer .footer-about img{max-width: 210px;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:40px;}
.footer-column h3{margin-bottom:25px;font-size:16px;}
.footer-column ul{list-style:none;}
.footer-column ul li{margin-bottom:12px;}
.footer-column ul li a{text-decoration:none;color:#555;}
.footer-about p{color:#666;margin-bottom:15px;font-family: 'GT America', sans-serif;}
.footer-bottom{margin-top:50px;padding-top:30px;border-top:1px solid #ddd;display:flex; justify-content:space-between;align-items:center;}
.social-links{display:flex;gap:10px;margin-top: 25px;}
.social-links a{width:40px;height:40px;border:1px solid #ff8420;display:flex;align-items:center;    justify-content:center; border-radius:8px; color:#111;text-decoration:none;}

@media(max-width:1200px){
    .footer-grid{grid-template-columns:repeat(2,1fr);}
    .cta-content h2{font-size:48px;}
}

@media(max-width:768px){
    .cta-wrapper{flex-direction:column;padding:40px 25px;}
    .cta-content h2{font-size:34px; }
    .footer-grid{grid-template-columns:1fr;}
    .footer-bottom{flex-direction:column;gap:20px;}
    .section-title h2{ font-size:40px; }
    .social-links{margin-top:20px}
    .testimonial-card:nth-child(even){margin-top:0}
    .stats-section{padding: 20px 0;}
    .about-image img{display: none;}
    .about-section{padding: 25px 0;}
}
