/* NAVBAR START */
/* INFOBAR START */
@media (max-width: 1024px) {
  .top-inner .info {
    gap: 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .top-inner{
    display: none;
  }
}
/* INFOBAR END */

@media (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    background: #0072CE;
    padding: 15px;
    display: none;
    border-radius: 0 0 10px 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
  }

  .enquiry-btn {
    width: 100%;
    text-align: center;
  }
}
/* NAVBAR END */

/* HERO SECTION START */
@media (max-width: 1024px) {
  .hero { height: 85vh; }
  .hero-text { inset: auto 0 12% 0; }
}

@media (max-width: 768px) {
  .arrow { 
    width: 38px; 
    height: 38px; 
    font-size: 22px; 
  }

  .hero { 
    height: 72vh; 
    position: relative; /* needed for child centering */
  }

  .hero-text {
    width: 90%;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); /* centers perfectly */
    text-align: center;
  }

  .hero-text h1 { 
    font-size: clamp(1.35rem, 6vw, 2.2rem); 
    margin: 0 auto;
  }

  .hero-cta { gap: 8px; }

  .btn { 
    padding: 8px 14px; 
    font-size: .95rem; 
    border-radius: 20px; 
  }
}

@media (max-width: 480px) {
  .hero { height: 60vh; }
  .arrow { display: none; } /* hide arrows on very small screens */
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .slide, .dot, .arrow, .btn { transition: none !important; }
}
/* HERO SECTION END */

/* ICON SECTION START */
@media (max-width: 768px) {
  .icon {
    bottom: 15px;
    left: 15px;
  }
  .social a {
    width: 30px;
    height: 30px;
  }
  .social a img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .icon {
    display: flex;
    top: 25px;
    left: 15px;
  }
  .social {
    flex-direction: column;   /* on very small screens make it row */
    gap: 8px;
  }
}
/* ICON SECTION END */

/* ABOUT SECTION START */
@media (max-width: 992px) {
  .about {
    padding: 40px 6%;
    gap: 25px;
  }

  .about-text h1 {
    font-size: clamp(22px, 5vw, 32px);
  }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column; /* stack */
    text-align: center;
  }

  .about-text {
    order: 1; /* text first */
  }

  .about-img {
    order: 2; /* image below text */
  }

  .about-text p {
    text-align: center;
    font-size: 14px;
  }
}
/* ABOUT SECTION END */

/* FEATURE SECTION START */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards in a row */
    gap: 20px;
  }
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 15px;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-card img {
    width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

/* SERVICE SECTION START */
@media (max-width: 992px) {
  .service-card {
    flex: 0 0 50%; /* 2 cards per row */
  }

  .service-card img {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .service-card {
    flex: 0 0 100%; /* 1 card per row */
  }

  .service-card img {
    height: 180px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
/* SERVICE SECTION END */

/* SATISFACTION SECTION STRAT */
/* ✅ Responsive */
@media (max-width: 1024px) {
  .satisfications-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .satisfications-main {
    grid-template-columns: 1fr;
  }
}
/* SATISFACTION SECTION END */

/* GALLERY SECTION START */
@media (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .gallery-cards img {
    height: 180px;
  }
}
/* GALLERY SECTION END */

/* BRAND SECTION START */
@media (max-width: 768px) {
  .brands-cards img {
    height: 50px;
  }
  .brands-cards {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .brands-cards img {
    height: 40px;
  }
  .brands-cards {
    gap: 15px;
  }
}
/* BRAND SECTION END */
/* <!-- FOOTER SECTION START --> */
@media (max-width: 1024px) {
  footer .footer-content {
    gap: 15px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column ul li a,
  .footer-column.contact-info p {
    font-size: 13px;
  }

  .footer-column.qr-code img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column.contact-info p {
    justify-content: center;
  }
}
/* <!-- FOOTER SECTION END --> */