/* =====================================================
   GLOBAL RESPONSIVE UTILITIES
  ===================================================== */

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100%, var(--container-width));
  margin-inline: auto;
}

.section-title {
  text-wrap: balance;
}

.section-sub,
.hero-desc,
.about-text,
.service-desc,
.step-desc,
.testimonial-text,
.india-text {
  max-width: 70ch;
}

/* =====================================================
    MOBILE NAVBAR
  ===================================================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* =====================================================
    RESPONSIVE FOUNDATION
  ===================================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding-x: 40px;
    --nav-padding-x: 40px;
  }

  /* =====================================================
   HERO 
===================================================== */

  .hero {
    min-height: 100vh;
    height: auto;
    padding-top: 100px;
  }

  .hero-reel {
    width: 45%;
  }

  .hero-content {
    max-width: 55%;
    padding: 0 var(--section-padding-x);
  }

  .hero-title {
    font-size: clamp(60px, 7vw, 90px);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    padding: 40px 30px;
  }

  .about-section,
  .india-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .process-steps::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 80px;
    --section-padding-x: 24px;

    --nav-padding-y: 20px;
    --nav-padding-x: 24px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    padding: 20px var(--nav-padding-x);
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  nav ul.active {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: 100px var(--section-padding-x) 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-reel {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero-label {
    justify-content: center;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(46px, 12vw, 62px);
    line-height: 0.9;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .hero-desc {
    max-width: 100%;
    margin: 0 auto 32px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 28px;
  }

  .btn-primary{
    width: 100%;
    justify-content: center;
  }

  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .hero-stats {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-top: 24px;
  }

  .stat{
    flex: 0 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-num {
    font-size: 56px;
  }

  .service-name {
    font-size: 24px;
  }

  .service-desc {
    font-size: 14px;
  }

  .about-section,
  .india-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .cta-btns {
    flex-direction: column;
  }

  .btn-dark,
  .btn-ghost-dark {
    width: 100%;
  }

  .about-feats {
    grid-template-columns: 1fr;
  }

  .whatsapp-float{
        width:60px;
        height:60px;
        right:18px;
        bottom:18px;
    }

    .whatsapp-float:hover{
        width:60px;
    }

    .whatsapp-float span{
        display:none;
    }
}

@media (max-width: 480px) {
  :root {
    --section-padding-x: 18px;
    --nav-padding-x: 18px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-stats {
    gap: 18px;
  }

  .stat-num {
    font-size: 34px;
  }

  .stat-label {
    font-size: 9px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-num {
    font-size: 48px;
  }

  .service-name {
    font-size: 22px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-tile {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .about-badge {
    width: 90px;
    height: 90px;
    right: -10px;
    bottom: -10px;
  }

  .about-badge-num {
    font-size: 28px;
  }

  .about-badge-text {
    font-size: 8px;
  }
}
