@media (max-width: 992px) {
    .nav-menu {
      display: none;
    }
  
    .mobile-menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .main-nav.active {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #ffffff;
      padding: 20px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      margin-top: 10px;
      z-index: 999;
    }
  
    .main-nav.active .nav-menu {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }
  
    .main-nav.active .menu-item {
      width: 100%;
      border-bottom: 1px solid var(--border);
    }
  
    .main-nav.active .menu-item > a {
      display: block;
      padding: 15px 0;
    }
  
    .main-nav.active .sub-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      padding: 0 0 0 20px;
      display: none;
    }
  
    .main-nav.active .menu-item-has-children.open .sub-menu {
      display: block;
    }
  }

 
 
 
 
 
 
 
 
 
 /* ===========================
     RESPONSIVE
     =========================== */
     @media (max-width: 1200px) {
        .hero-title { font-size: 76px; }
        .hero-subtext { font-size: 26px; }
        .hero-bottom { padding: 0 40px 50px; }
        .nav-menu { gap: 22px; }
        .appointment-label { display: none; }
      }
      
      @media (max-width: 992px) {
        .site-header { top: 12px; padding: 0 15px; }
        .header-pill { padding: 10px 15px; border-radius: 40px; }
        .nav-menu { display: none; }
        .mobile-menu-btn { display: block; }
        .appointment-label,
        .phone-link,
        .lang-switch { display: none; }
      
        .hero-content { padding: 160px 30px 60px; }
        .hero-title { font-size: 58px; }
        .hero-desc { font-size: 17px; }
        .hero-bottom-top { flex-direction: column; gap: 25px; }
        .hero-subtext { font-size: 24px; }
        .hero-cards { grid-template-columns: 1fr; gap: 20px; }
        .fixed-sidebar { display: none; }
      }
      
      @media (max-width: 600px) {
        .header-logo img { width: 50px; }
        .btn-touch { padding: 10px 18px; font-size: 13px; }
        .hero-content { padding: 140px 20px 40px; }
        .hero-title { font-size: 38px; }
        .hero-desc { font-size: 15px; }
        .hero-bottom { padding: 0 20px 40px; }
        .hero-subtext { font-size: 20px; }
        .hero-card { padding: 25px 22px; }
        .hero-card-title { font-size: 18px; }
        .hero-card-desc { font-size: 13px; }
      }

/* ================
=========================
about section 
+=====================
================== */

    
  /* ===========================
     RESPONSIVE
     =========================== */
  @media (max-width: 1200px) {
    .about-container { padding: 0 40px; }
    .about-heading { font-size: 56px; letter-spacing: -1.5px; }
    .about-two-col { gap: 50px; }
    .box-counter { font-size: 56px; }
    .counter-suffix { font-size: 34px; }
  }
  
  @media (max-width: 992px) {
    .about-section { padding: 80px 0; }
    .about-container { padding: 0 25px; }
    .about-heading { font-size: 40px; letter-spacing: -1px; margin-bottom: 50px; }
    .about-two-col { grid-template-columns: 1fr; gap: 35px; }
    .about-top { margin-bottom: 60px; }
  
    .about-bottom {
      grid-template-columns: 1fr;
      gap: 22px;
    }
  
    .about-image { min-height: 420px; }
  
    .about-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
  
    .about-box { padding: 25px 22px; min-height: 240px; border-radius: 20px; }
    .box-counter { font-size: 46px; letter-spacing: -1.5px; }
    .counter-suffix { font-size: 28px; }
  }
  
  @media (max-width: 600px) {
    .about-section { padding: 60px 0; }
    .about-container { padding: 0 18px; }
    .about-heading { font-size: 28px; letter-spacing: -0.5px; }
    .about-pill { font-size: 10px; padding: 7px 14px; margin-bottom: 30px; }
    .about-col-title { font-size: 16px; }
    .about-col-desc { font-size: 14px; }
  
    .about-grid { grid-template-columns: 1fr; }
  
    .about-box { min-height: 200px; padding: 22px 20px; }
    .about-box-image { min-height: 240px; }
  
    .box-counter { font-size: 42px; }
    .counter-suffix { font-size: 24px; }
    .box-label { font-size: 10px; }
    .box-text { font-size: 13px; }
  } 


/* 
================
==================
services section 
=================
==================== 
*/
  
  /* ===========================
     RESPONSIVE
     =========================== */
     @media (max-width: 1200px) {
        .services-container { padding: 0 40px; }
        .services-heading { font-size: 56px; letter-spacing: -1.5px; }
        .services-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
        .service-image { height: 200px; }
        .service-title { font-size: 19px; }
      }
      
      @media (max-width: 992px) {
        .services-section { padding: 80px 0; }
        .services-container { padding: 0 25px; }
        .services-heading { font-size: 40px; letter-spacing: -1px; margin-bottom: 50px; }
        .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
        .service-image { height: 220px; }
        .service-arrow { width: 46px; height: 46px; font-size: 13px; bottom: -20px; right: 18px; }
      }
      
      @media (max-width: 600px) {
        .services-section { padding: 60px 0; }
        .services-container { padding: 0 18px; }
        .services-heading { font-size: 30px; letter-spacing: -0.5px; }
        .services-grid { grid-template-columns: 1fr; gap: 18px; }
        .service-card { border-radius: 22px; padding: 10px 10px 25px; }
        .service-image { height: 220px; border-radius: 16px; }
        .service-arrow { width: 44px; height: 44px; font-size: 12px; }
        .service-title { font-size: 18px; }
        .service-desc { font-size: 13px; }
        .services-bottom-text { font-size: 13px; }
      }






      
  /* ===========================
     RESPONSIVE  make us different
     =========================== */
  @media (max-width: 1200px) {
    .different-container { padding: 0 40px; }
    .different-grid { gap: 50px; }
    .different-heading { font-size: 52px; letter-spacing: -1.5px; }
    .different-image { height: 620px; }
    .different-row {
      grid-template-columns: 60px 180px 1fr;
      gap: 20px;
    }
  }
  
  @media (max-width: 992px) {
    .different-section { padding: 80px 0; }
    .different-container { padding: 0 25px; }
    .different-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .different-image { height: 500px; border-radius: 25px 0 25px 25px; }
    .different-heading { font-size: 40px; letter-spacing: -1px; }
    .rating-card { bottom: -25px; left: 15px; width: 180px; padding: 18px; }
    .rating-number { font-size: 36px; }
    .different-row {
      grid-template-columns: 55px 1fr;
      gap: 18px;
      padding: 25px 0;
    }
    .row-desc {
      grid-column: 2 / 3;
      padding-top: 0;
      margin-top: -5px;
    }
  }
  
  @media (max-width: 600px) {
    .different-section { padding: 60px 0; }
    .different-container { padding: 0 18px; }
    .different-image { height: 380px; border-radius: 20px 0 20px 20px; }
    .different-heading { font-size: 30px; letter-spacing: -0.5px; }
    .different-desc { font-size: 14px; margin-bottom: 35px; }
    .rating-card { width: 160px; padding: 16px; bottom: -20px; left: 10px; }
    .rating-number { font-size: 30px; margin-bottom: 12px; }
    .rating-avatars img { width: 30px; height: 30px; }
    .rating-stars i { font-size: 10px; }
    .rating-text { font-size: 11px; }
  
    .different-row {
      grid-template-columns: 50px 1fr;
      gap: 15px;
      padding: 20px 0;
    }
    .row-icon { width: 48px; height: 48px; font-size: 16px; }
    .row-title { font-size: 15px; padding-top: 5px; }
    .row-desc { font-size: 13px; }
  }



 /* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
    .testimonial-quote { font-size: 34px; }
    .logo-circle { width: 180px; height: 180px; }
  }
  
  @media (max-width: 992px) {
    .testimonials-section { padding: 160px 0 90px; }
    .testimonials-container { padding: 0 70px; }
    .testimonial-quote { font-size: 26px; margin-bottom: 35px; }
    .logo-circle { width: 150px; height: 150px; }
    .testimonial-arrow { width: 46px; height: 46px; }
  }
  
  /* 👇 MOBILE - 375px ke liye special fix */
  @media (max-width: 600px) {
    .testimonials-section {
      padding: 130px 0 70px;
    }
  
    .testimonials-arc {
      height: 82%;
      border-radius: 50% 50% 0 0 / 12% 12% 0 0;
    }
  
    .testimonials-logo {
      top: 20px;
    }
  
    .logo-circle {
      width: 110px;
      height: 110px;
    }
  
    .logo-circle img {
      padding: 10px;
    }
  
    /* Container - arrows ke liye jagah */
    .testimonials-container {
      padding: 0 50px;
    }
  
    /* Slider track */
    .testimonials-slider {
      overflow: hidden;
    }
  
    /* Har slide 100% width le */
    .testimonial-slide {
      min-width: 100%;
      width: 100%;
      padding: 0;
      flex-shrink: 0;
    }
  
    .testimonial-quote {
      font-size: 19px;
      line-height: 1.4;
      letter-spacing: -0.3px;
      margin-bottom: 28px;
      padding: 0 10px;
    }
  
    .testimonial-name {
      font-size: 15px;
      margin-bottom: 4px;
    }
  
    .testimonial-role {
      font-size: 12px;
    }
  
    /* Arrows - chhote aur bahar */
    .testimonial-arrow {
      width: 38px;
      height: 38px;
      font-size: 11px;
    }
  
    .testimonial-prev {
      left: -5px;
    }
  
    .testimonial-next {
      right: -5px;
    }
  }
  
  /* 👇 Extra small - 375px */
  @media (max-width: 400px) {
    .testimonials-container {
      padding: 0 45px;
    }
  
    .testimonial-quote {
      font-size: 17px;
      line-height: 1.45;
    }
  
    .testimonial-arrow {
      width: 34px;
      height: 34px;
      font-size: 10px;
    }
  
    .testimonial-prev {
      left: -3px;
    }
  
    .testimonial-next {
      right: -3px;
    }
  }






      
  /* ===========================
     RESPONSIVE  contact section 
     =========================== */
  @media (max-width: 1200px) {
    .contact-section { padding: 80px 40px; }
    .contact-inner { padding: 60px 50px; }
    .contact-heading { font-size: 36px; }
  }
  
  @media (max-width: 992px) {
    .contact-section { padding: 70px 25px; }
    .contact-outer { padding: 50px 25px; border-radius: 30px; }
    .contact-inner { padding: 50px 40px 45px; border-radius: 25px; }
    .contact-heading { font-size: 30px; letter-spacing: -0.8px; }
    .form-row { gap: 15px; }
    .form-input { padding: 16px 22px; font-size: 14px; }
    .form-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
    .form-submit { width: 100%; }
  }
  
  @media (max-width: 600px) {
    .contact-section { padding: 50px 18px; }
    .contact-outer { padding: 35px 18px; border-radius: 25px; }
    .contact-inner { padding: 35px 22px 30px; border-radius: 20px; }
    .contact-heading { font-size: 24px; letter-spacing: -0.5px; }
    .contact-subheading { font-size: 13px; margin-bottom: 30px; }
    .form-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 25px; }
    .form-input { padding: 15px 22px; font-size: 14px; }
    .form-note { font-size: 13px; }
    .form-submit { padding: 14px 30px; font-size: 14px; }
  }






   
/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
    .blog-container { padding: 0 40px; }
    .blog-heading { font-size: 52px; letter-spacing: -1.5px; }
    .blog-image { height: 240px; }
  }
  
  @media (max-width: 992px) {
    .blog-section { padding: 80px 0 100px; }
    .blog-container { padding: 0 25px; }
    .blog-heading { font-size: 40px; letter-spacing: -1px; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 25px; }
    .blog-slider-track { gap: 25px; }
    .blog-slider-track .blog-card {
      min-width: calc((100% - 25px) / 2);
      width: calc((100% - 25px) / 2);
    }
    .blog-image { height: 220px; }
  }
  
  @media (max-width: 600px) {
    .blog-section { padding: 60px 0 80px; }
    .blog-container { padding: 0 18px; }
    .blog-heading { font-size: 30px; letter-spacing: -0.5px; }
    .marquee-pill { width: 145px; margin-bottom: 30px; }
    .marquee-track span { font-size: 10px; letter-spacing: 1.2px; }
    .blog-slider-track { gap: 20px; }
    .blog-slider-track .blog-card {
      min-width: 100%;
      width: 100%;
    }
    .blog-image { height: 230px; border-radius: 16px; }
    .blog-title { font-size: 17px; }
    .btn-all-posts { padding: 7px 7px 7px 18px; font-size: 13px; }
    .btn-all-posts .btn-icon-wrap { width: 34px; height: 34px; }
    .btn-all-posts .btn-icon,
    .btn-all-posts .btn-icon-hover { width: 34px; height: 34px; font-size: 11px; }
  }


       /* ===========================
     RESPONSIVE
     =========================== */
  @media (max-width: 1200px) {
    .cta-title { font-size: 56px; letter-spacing: -1.5px; }
    .footer-card { padding: 50px 40px 25px; }
    .footer-grid { gap: 30px; }
    .footer-col-brand,
    .footer-col-contact { padding: 0; }
  }
  
  @media (max-width: 992px) {
    .footer-section { padding: 80px 0 50px; }
    .footer-cta { padding: 40px 25px 180px; }
    .cta-title { font-size: 42px; letter-spacing: -1px; }
    .cta-circle-btn { width: 140px; height: 140px; font-size: 13px; }
    .footer-card { margin: -120px 25px 0; padding: 40px 30px 25px; border-radius: 25px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-col-brand,
    .footer-col-contact { padding: 0; border: none; }
  }
  
  @media (max-width: 600px) {
    .footer-section { padding: 60px 0 40px; }
    .footer-cta { padding: 20px 20px 150px; }
    .cta-title { font-size: 30px; letter-spacing: -0.5px; }
    .cta-desc { font-size: 14px; margin-bottom: 35px; }
    .cta-circle-btn { width: 120px; height: 120px; font-size: 12px; }
    .footer-card { margin: -100px 15px 0; padding: 30px 20px 20px; border-radius: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-logo img { width: 70px; }
    .footer-social { margin-top: 25px; }
    .footer-copyright { font-size: 12px; }
  }