
        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

 :root {
  --primary: #0a0a0a;        /* Pure Black */
  --primary-light: #1a1a1a;  /* Soft Black */
  --secondary: #0d1b2a;      /* Dark Navy Blue */
  --accent: #1b263b;         /* Deep Blue */
  --light: #f8f9fa;          /* Off White */
  --dark: #020617;           /* Near Black Blue */
  --gray: #6c757d;           /* Neutral Gray */
  --light-gray: #dee2e6;     /* Light Gray */
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}


        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 3px;
            background-color: var(--secondary);
        }

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

html{
  scroll-behavior:smooth;
}

/* ================= NAVBAR ================= */

.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  z-index:1000;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:30px 50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */
.logo img{
  height:55px;
}

/* Menu */
nav ul{
  list-style:none;
  display:flex;
}

nav ul li{
  margin-left:25px;
}

nav ul li a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  transition:0.3s;
}

nav ul li a:hover{
  color:#1abc9c;
}

/* Space between menu items */
nav ul{
  display:flex;
  gap:45px;   /* 🔥 controls spacing */
}

/* Mobile Menu Button */
.menu-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* ================= BANNER ================= */

.banner{
  height:100vh;
  width:100%;
  position:relative;
  margin-top:90px;
}

.slider{
  height:100%;
  width:100%;
  position:relative;
}

.slide{
  position:absolute;
  height:100%;
  width:100%;
  opacity:0;
  transition:opacity 1s ease;
}

.slide.active{
  opacity:1;
}

.slide-content h2{
  color:#fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.slide-content p{
  color:#fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Background */
.slide-bg{
  height:100%;
  width:100%;
  background-size:cover;
  background-position:center;
  filter:brightness(60%);
}

/* Text */
.slide-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#fff;
  text-align:center;
  max-width:700px;
}

.slide-content h2{
  font-size:3rem;
  margin-bottom:15px;
}

.slide-content p{
  font-size:1.2rem;
}

/* Dots */
.slider-dots{
  position:absolute;
  bottom:30px;
  width:100%;
  text-align:center;
}

.dot{
  height:12px;
  width:12px;
  background:#bbb;
  display:inline-block;
  border-radius:50%;
  margin:0 6px;
  cursor:pointer;
}

.dot.active{
  background:#fff;
  transform:scale(1.2);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  nav ul{
    position:absolute;
    top:75px;
    left:-100%;
    background:#fff;
    width:100%;
    flex-direction:column;
    text-align:center;
    transition:0.3s;
  }

  nav ul.show{
    left:0;
  }

  nav ul li{
    margin:15px 0;
  }

  .menu-toggle{
    display:block;
  }

  .slide-content h2{
    font-size:2rem;
  }
}

        /* About Section */
      
    .about {
        padding: 80px 0;
        background-color: #e8dfdf;
    }
    .section-center {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }
    h2 {
        font-size: 2.8rem;
        margin-bottom: 50px;
        color: #222;
    }
    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    .about-content {
        text-align: left;
    }
    .about-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 25px;
    }
    .about-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    .detail-item {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .detail-item h4 {
        margin: 0 0 10px;
        font-size: 1.2rem;
        color: #181651;
    }
    .detail-item p {
        margin: 0;
        font-weight: 600;
        color: #333;
    }
    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        object-fit: cover;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .about-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .about-content {
            text-align: left; /* keep left even on mobile for readability */
        }
    }

    .about-gallery h3 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #333;
    }
    .about-gallery p {
        color: #666;
        margin-bottom: 30px;
    }



        /* Services Section */
    
    .services {
        padding: 60px 0;
        background-color: #9c93cd;
    }
    .section-center {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }
    h2 {
        margin-bottom: 40px;
        font-size: 2.5rem;
        color: #333;
    }
    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    .service-item {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }
    .service-item:hover {
        transform: translateY(-10px);
    }
    .service-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    .service-content {
        padding: 25px;
    }
    .service-content h3 {
        margin: 0 0 15px;
        font-size: 1.4rem;
        color: #222;
    }
    .service-content p {
        margin: 0;
        color:#e2d9d9;
        line-height: 1.6;
    }
    .services-cta {
        margin-top: 50px;
    }
    

    /* Optional fade-in animation (add class fade-in if you have JS or prefer) */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIn 0.8s forwards;
    }
    @keyframes fadeIn {
        to { opacity: 1; transform: translateY(0); }
    }




        /* Why Choose Us */
        

    .why-us-section {
        padding: 80px 0;
        background-color: #e8dfdf;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.8rem;
        color: #282424;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1.15rem;
        color: #e2d9d9;
        max-width: 700px;
        margin: 0 auto 25px;
    }

   
    /* Carousel */
    .carousel-wrapper {
        overflow: hidden;
        position: relative;
    }

    .features-carousel {
        display: flex;
        flex-wrap: nowrap;
        gap: 30px;
        animation: slide 40s linear infinite;
        width: max-content; /* Important for animation */
    }

    .feature-card {
        flex: 0 0 320px; /* Fixed width for each card */
        background: white;
        border-radius: 12px;
        padding: 35px 25px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .features-carousel:hover {
        animation-play-state: paused; /* Pause on hover */
    }

    .feature-card:hover {
        transform: translateY(-10px);
    }

    .feature-icon {
        font-size: 3.5rem;
        color: #06072c;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.35rem;
        margin: 0 0 15px;
        color: #726d6d;
    }

    .feature-card p {
        font-size: 1rem;
        color: #272525;
        line-height: 1.6;
        margin: 0;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%); /* Slide by half (since we duplicated cards) */
        }
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .feature-card {
            flex: 0 0 300px;
        }
        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
    }

    @media (max-width: 768px) {
        .feature-card {
            flex: 0 0 280px;
        }
    }

    @media (max-width: 480px) {
        .feature-card {
            flex: 0 0 90vw;
        }
    }



    /*Feature*/

    
    .features-section {
        padding: 80px 0;
        background-color:#9c93cd;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.8rem;
        color: #222;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color:#e2d9d9;
        max-width: 800px;
        margin: 0 auto 25px;
    }

   
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: #f9f9f9;
        border-radius: 12px;
        padding: 40px 25px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        background: white;
    }

    .feature-icon {
        font-size: 3.5rem;
        color: #0b0b3f;
        margin-bottom: 25px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
        margin: 0 0 15px;
        color: #222;
    }

    .feature-card p {
        font-size: 1rem;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }


/*highlight*/
    
    .highlights-section {
        padding: 80px 0;
        background:#e8dfdf ;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.8rem;
        color: #222;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color:#e2d9d9;
        max-width: 800px;
        margin: 0 auto 25px;
    }

   

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .stat-card {
        background: white;
        border-radius: 12px;
        padding: 40px 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .stat-icon {
        font-size: 3.8rem;
        color:#0b0b3f;
        margin-bottom: 20px;
    }

    .stat-card h3 {
        font-size: 3rem;
        font-weight: bold;
        color: #222;
        margin: 0 0 10px;
    }

    .stat-card p {
        font-size: 1.1rem;
        color: #666;
        margin: 0;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stat-card h3 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }
    }


        /* Testimonials */
      
  .testimonials-section{
  padding:80px 20px;
  background:#9c93cd;
}

.section-header{
  text-align:center;
  margin-bottom:50px;
}

.section-header h2{
  font-size:2.5rem;
  margin-bottom:10px;
}

.section-subtitle{
  color:#e2d9d9;
}

/* Marquee Area */
.testimonial-marquee{
  overflow:hidden;
  position:relative;
}

.testimonial-track{
  display:flex;
  gap:30px;
  animation: scrollTestimonial 25s linear infinite;
}

/* Card */
.testimonial-card{
  min-width:300px;
  max-width:300px;
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text{
  font-style:italic;
  margin-bottom:15px;
  color:#333;
}

.testimonial-author{
  font-weight:bold;
  color:rgb(13, 13, 86);
}

/* Animation */
@keyframes scrollTestimonial{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* Responsive */
@media(max-width:768px){
  .testimonial-card{
    min-width:260px;
  }
}

   /*client section*/

    .clients-section {
        padding: 80px 0;
        background-color:#e8dfdf ;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.8rem;
        color: #222;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: #e2d9d9;
        max-width: 800px;
        margin: 0 auto;
    }

    h3 {
        font-size: 1.8rem;
        color: #2e567e; /* Matches your previous blue theme */
        text-align: center;
        margin: 0 0 30px;
    }

    /* Authorized Dealers Logos */
    .dealers-grid {
        margin-bottom: 60px;
    }

    .logos-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 40px;
        justify-items: center;
        align-items: center;
    }

    .logo-item img {
        max-width: 160px;
        max-height: 80px;
        object-fit: contain;
        transition: transform 0.3s ease, opacity 0.3s ease;
        filter: grayscale(50%);
        opacity: 0.85;
    }

    .logo-item img:hover {
        transform: scale(1.1);
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Associates & Key Clients Lists */
    .associates, .key-clients {
        max-width: 800px;
        margin: 0 auto 50px;
        text-align: center;
    }

    .associates ul, .key-clients ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 40px;
    }

    .associates li, .key-clients li {
        font-size: 1.1rem;
        color: #d8c8c8;
        background: white;
        padding: 12px 24px;
        border-radius: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .logos-wrapper {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 30px;
        }
        .logo-item img {
            max-width: 140px;
            max-height: 70px;
        }
        .associates ul, .key-clients ul {
            flex-direction: column;
            gap: 15px;
        }
    }


        /* Contact Section */
       .contact-section {
    padding: 90px 0;
    background-color: #f8fdfa; /* light healing green tint */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a6b9e;
    margin: 0 0 18px 0;
}


.contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form,
.contact-map {
    flex: 1;
    min-width: 0;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #2729ae;
    box-shadow: 0 0 0 3px rgba(39,174,96,0.15);
}

.btn-primary {
    background: #180b42;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background: #216f96;
}

.contact-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-map iframe {
    display: block;
    border: 0;
    min-height: 400px;
}

.map-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 25px;
    text-align: center;
    border-top: 4px solid #272eae;
}

.map-info .map-icon {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 12px;
}

.map-info h3 {
    margin: 0 0 16px 0;
    color: #1a3c34;
}

.map-info p {
    margin: 8px 0;
    color: #555;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-map iframe {
        min-height: 350px;
    }

    .contact-section {
        padding: 70px 0;
    }
}
        /* Footer */
        .footer {
    background-color: #1d133c; /* dark green for holistic feel */
    color: #e0f0e9;
    padding: 100px 0 40px;
}

.section-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    text-align: left;
}

.footer-logo h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0f0e9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3b27ae;
}

.footer-contact p {
    margin: 12px 0;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 10px;
    color: #278cae;
    width: 20px;
    text-align: center;
}

.footer-qr {
    margin-top: 25px;
    text-align: center;
}

.footer-qr h5 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-qr img {
    border: 8px solid #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.qr-caption {
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

    .footer-social {
        display: flex;
        justify-content: center;           /* or flex-start / flex-end as needed */
        align-items: center;
        gap: 20px;                         /* space between icons */
        margin: 20px 0;                    /* optional spacing around the group */
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: #2e567e;         /* dark blue background (matches your theme) */
        color: white;
        border-radius: 50%;                /* perfect circle */
        text-decoration: none;
        font-size: 1.6rem;                 /* icon size */
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .footer-social a:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        background-color:#3b27ae;         /* vibrant green on hover (your theme accent) */
    }

    /* Individual brand colors on hover (optional - uncomment if you want) */
    /*
    .footer-social a[href*="whatsapp"]:hover { background-color: #25D366; }
    .footer-social a[href*="facebook"]:hover  { background-color: #1877F2; }
    .footer-social a[href*="instagram"]:hover { background-color: #E1306C; }
    .footer-social a[href*="youtube"]:hover   { background-color: #FF0000; }
    */

    /* Responsive - smaller icons on mobile */
    @media (max-width: 768px) {
        .footer-social a {
            width: 40px;
            height: 40px;
            font-size: 1.4rem;
        }
    }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem;
}

.copyright a {
    color: #3b27ae;
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Mobile stack */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}


/* =====================================================
   GLOBAL MOBILE RESET
===================================================== */
@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  section {
    padding: 60px 0 !important;
  }
}


/* =====================================================
   HEADER & NAVIGATION
===================================================== */
@media (max-width: 768px) {

  .nav-container {
    padding: 14px 0;
  }

  nav ul {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: 0.4s ease;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    margin: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-image {
    height: 70px;
  }
}


/* =====================================================
   BANNER / SLIDER
===================================================== */
@media (max-width: 768px) {

  .banner {
    height: 75vh;
    min-height: 520px;
  }

  .banner-content h1 {
    font-size: 2.4rem;
  }

  .banner-content p {
    font-size: 1.05rem;
  }

  .banner-cta {
    flex-direction: column;
  }

  .btn,
  .btn-call {
    width: 100%;
    max-width: 320px;
  }
}


/* =====================================================
   ABOUT SECTION
===================================================== */
@media (max-width: 768px) {

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    text-align: center;
  }

  .about-details {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {

  .about-details {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   SERVICES
===================================================== */
@media (max-width: 768px) {

  .services-container {
    grid-template-columns: 1fr;
  }

  .service-img img {
    height: 200px;
  }
}


/* =====================================================
   WHY CHOOSE US - CAROUSEL
===================================================== */
@media (max-width: 768px) {

  .feature-card {
    flex: 0 0 85vw;
  }
}


/* =====================================================
   FEATURES GRID
===================================================== */
@media (max-width: 768px) {

  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   HIGHLIGHTS / STATS
===================================================== */
@media (max-width: 768px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {

  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   TESTIMONIALS
===================================================== */
@media (max-width: 768px) {

  .testimonial-slide {
    flex: 0 0 88vw;
  }
}


/* =====================================================
   CLIENT LOGOS
===================================================== */
@media (max-width: 768px) {

  .logos-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================================================
   CONTACT SECTION
===================================================== */
@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}


/* =====================================================
   FOOTER
===================================================== */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
