/* ==========================================================================
   Al Quresh Fabrics — Design Tokens
   ========================================================================== */
:root {
  --green-dark:    #1b3d1b;   /* headings, dark text */
  --green-primary: #2d6a2d;   /* main brand green — buttons, links, logo */
  --green-deep:    #14331f;   /* footer, dark backgrounds, gradients */
  --green-accent:  #4caf50;   /* eyebrows, icons, highlights */
  --green-light:   #a8e6a1;
  --green-highlight: #3d8b40; /* 👈 naya variable — thora deep, muted green */
  --black:        #161616;
  --white:        #ffffff;
  /* --gray-text:    #4c5866; */
  --gray-text: #3f4a3f;   /* green undertone wala neutral text color */
  --gray-light:   #f4f6f9;
  --gray-border:  #e3e8ee;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-w: 1200px;
  --radius: 6px;
  --transition: 0.25s ease;
}
::selection {
  background: var(--green-accent);
  color: var(--white);
}
/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 0px rgba(74, 157, 224, 0);
  }
  50% {
    text-shadow: 0 0 20px rgba(74, 157, 224, 0.4);
  }
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-text);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  line-height: 1.25;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { 
  background: var(--green-deep); 
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn--outline {
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
}
.btn--outline:hover { 
  background: var(--green-primary); 
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 56, 104, 0.2);
}

/* ==========================================================================
   Header — Top bar
   ========================================================================== */
.site-header { position: relative; z-index: 100; }

.topbar {
  background: var(--green-dark);
  color: var(--white);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
  gap: 24px;
  min-height: 56px;      /* topbar ki total height yahan control hogi */
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo img {
  height: 75px;           /* fixed size, jo abhi aapko sahi lag rahi thi */
  width: auto;
  display: block;
}
.topbar__contacts {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.topbar__icon {
  color: var(--green-light);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.topbar__item small {
  display: block;
  font-size: 0.75rem;
  color: var(--green-light);
  font-weight: 400;
  white-space: nowrap;
}
.topbar__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   Header — Main nav
   ========================================================================== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
  gap: 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green-primary);
}
.logo__subtitle {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--green-light);
}

.nav-menu { flex: 1; display: flex; justify-content: center; }
.nav-menu > ul { display: flex; align-items: center; gap: 36px; }
.nav-menu > ul > li { position: relative; }
.nav-menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.95rem;
  padding-block: 8px;
  transition: color var(--transition);
}
.nav-menu > ul > li > a:hover{ color: var(--green-dark); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(11, 42, 82, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--gray-text);
}
.dropdown li a:hover { background: var(--gray-light); color: var(--green-primary); }

.navbar__cta { flex-shrink: 0; 
  padding-block: 10px;   
  padding-inline: 22px;}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 0px 20px;
  position: relative;
  width: 100%;
  max-width: 1265px;
  margin-inline: auto;
  height: auto;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* NEW: agar crop hoga to upar se hoga, neeche se nahi */
}

/* ==========================================================================
   Sections (generic, reused across pages)
   ========================================================================== */
.section { padding-block: 80px; }
.section--tinted { background: var(--gray-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-highlight);
  margin-bottom: 10px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.intro__text h2 { 
  font-size: 2rem; 
  margin-bottom: 16px;
  animation: slideInRight 0.8s ease-out;
}
.intro__text h2 strong { color: var(--black); }
.intro__text p { 
  margin-bottom: 28px; 
  max-width: 52ch;
  animation: slideInRight 0.8s ease-out 0.1s both;
}

/* Two-image offset gallery */
.intro__gallery {
  position: relative;
  min-height: 440px;
}
.intro__img {
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--gray-light);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro__img:hover {
  transform: scale(1.05);
}
.intro__img--a {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 55%;
  height: 300px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 36px rgba(11,42,82,0.18);
}
.intro__img--b {
  width: 62%;
  height: 400px;
  margin-left: 30%;
}
.intro__dots {
  position: absolute;
  right: 4%;
  bottom: 2%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, var(--green-highlight) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.45;
  z-index: 1;
}

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  margin-bottom: 30px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.92rem;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.checklist li:nth-child(1) { animation-delay: 0.2s; }
.checklist li:nth-child(2) { animation-delay: 0.3s; }
.checklist li:nth-child(3) { animation-delay: 0.4s; }
.checklist li:nth-child(4) { animation-delay: 0.5s; }
.checklist li:nth-child(5) { animation-delay: 0.6s; }
.checklist li:nth-child(6) { animation-delay: 0.7s; }

.checklist li:hover {
  transform: translateX(8px);
  transition: transform 0.3s ease;
}
.checklist svg {
  flex-shrink: 0;
  color: var(--white);
  background: var(--green-highlight);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}

.intro__actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}
.card-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.op-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.op-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(11,42,82,0.08); }
.op-card__icon { font-size: 2rem; margin-bottom: 14px; }
.op-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.op-card p { font-size: 0.92rem; }

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  background: var(--white);
  padding-block: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease-out;
}

.section-header .eyebrow {
  color: var(--green-highlight);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--green-dark);
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
  perspective: 1200px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 42, 82, 0.10);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  transform-style: preserve-3d;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
  transform: translateY(-16px) rotateX(5deg) rotateZ(2deg);
  box-shadow: 0 35px 70px rgba(16, 59, 108, 0.3);
}
.service-card__image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-light);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
}

.service-card__content {
  padding: 28px;
  position: relative;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.service-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-light);
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card__link:hover {
  background: var(--green-dark);
  transform: translateX(6px) translateY(-4px);
  box-shadow: 0 8px 20px rgba(16, 59, 108, 0.4);
}

.service-card__link:hover::before {
  transform: scale(1);
}

.service-card__link svg {
  width: 20px;
  height: 20px;
}
.stats-band {
  background: linear-gradient(90deg, var(--green-deep), var(--green-primary));
  color: var(--white);
}
.stats-band__grid {
  padding-block: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 12px;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
  animation: fadeInScale 0.8s ease-out;
  animation-fill-mode: both;
}
.stat-block:nth-child(1) { animation-delay: 0.1s; }
.stat-block:nth-child(2) { animation-delay: 0.2s; }
.stat-block:nth-child(3) { animation-delay: 0.3s; }
.stat-block:nth-child(4) { animation-delay: 0.4s; }
.stat-block:hover { transform: translateY(-6px); }
.stat-block:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.stat-block__icon-wrap {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(127, 192, 242, 0.12);
  border: 1.5px solid rgba(127, 192, 242, 0.35);
  margin-bottom: 10px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stat-block:hover .stat-block__icon-wrap {
  background: rgba(127, 192, 242, 0.22);
  border-color: var(--green-light);
  box-shadow: 0 0 24px rgba(127, 192, 242, 0.35);
}
.stat-block__icon { 
  font-size: 2.6rem; 
  line-height: 1;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-block:hover .stat-block__icon {
  animation: spin 0.8s ease-in-out;
}

.stat-block strong {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-block:hover strong {
  animation: glow 1.5s ease-in-out infinite;
}
.stat-block span:not(.stat-block__icon-wrap):not(.stat-block__icon) {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 760px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2)::after { display: none; }
  .stat-block__icon-wrap { width: 72px; height: 72px; }
  .stat-block__icon { font-size: 2.1rem; }
}

/* ==========================================================================
   CEO Message
   ========================================================================== */
.ceo-message__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.ceo-message__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(11,42,82,0.18);
}
.ceo-message__content h2 { font-size: 2.1rem; margin-bottom: 28px; }
.ceo-message__content h2 strong { color: var(--black); }

.ceo-message__quote {
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--green-highlight);
  margin-bottom: 32px;
}
.ceo-message__quote-icon {
  display: block;
  color: var(--green-highlight);
  opacity: 0.85;
  margin-bottom: 12px;
}
.ceo-message__quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-text);
  line-height: 1.85;
}

.ceo-message__author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.ceo-message__author span {
  font-size: 0.82rem;
  color: var(--green-highlight);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .ceo-message__grid { grid-template-columns: 1fr; gap: 32px; }
  .ceo-message__photo img { height: 360px; }
}

.cta-banner {
  background: linear-gradient(90deg, var(--green-deep), var(--green-primary));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cta-banner__inner {
  padding-block: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}
.cta-banner__inner h2 { 
  color: var(--white); 
  font-size: 1.6rem;
  animation: slideInLeft 0.8s ease-out 0.1s both;
}
.cta-banner__inner p { 
  color: var(--green-light); 
  margin-top: 6px;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section { background: var(--gray-light); }

.faq-list {
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-dark);
}
.faq-item__icon {
  flex-shrink: 0;
  color: var(--green-highlight);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer-inner p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,0.75); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 60px;
}
.footer__col h3, .footer__col h4 { color: var(--white); }
.footer__brand h3 { font-size: 1.2rem; margin-bottom: 10px; }
.footer__brand h3 small { display: block; font-size: 0.7rem; color: var(--green-light); font-weight: 400; }
.footer__brand p { font-size: 0.88rem; max-width: 32ch; }

.footer__logo {
  height: 65px;
  width: 150px;
  margin-bottom: 14px;
}
.footer__col h4 { font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 0.9rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--green-light); }

.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact svg { color: var(--green-light); flex-shrink: 0; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--green-accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 20px;
  text-align: center;
  font-size: 0.85rem;
  background-color: var(--black);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .topbar__contacts { display: none; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    flex-direction: column;
    display: none;
    padding: 16px 24px;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .navbar__cta { display: none; }

  .intro__grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .intro__stats { grid-template-columns: 1fr; }
  .hero__arrow { width: 38px; height: 38px; }
  .checklist { grid-template-columns: 1fr; }
  .intro__gallery { min-height: 360px; }
  .section-header { margin-bottom: 40px; }
  .services-grid { gap: 24px; }
  .service-card__image { height: 200px; }
}

/* ==========================================================================
   Additional Responsive Rules (Tablet + Mobile fine-tuning)
   ========================================================================== */

/* Tablet range: 1024px and below */
@media (max-width: 1024px) {
  .container { padding-inline: 20px; }
  .intro__grid { gap: 40px; }
  .intro__text h2 { font-size: 1.7rem; }
  .ceo-message__grid { gap: 40px; }
  .ceo-message__photo img { height: 420px; }
  .stats-band__grid { gap: 24px; }
}

/* Tablet portrait / large mobile: 768px and below */
@media (max-width: 768px) {
  .brand-logo img { height: 55px; }
  .hero { padding: 0 12px; }

  .intro__gallery { min-height: 380px; }
  .intro__img--a { height: 240px; }
  .intro__img--b { height: 320px; }

  .checklist { grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }

  .cta-banner__inner { text-align: center; justify-content: center; }
  .cta-banner__inner > div { text-align: center; }
}

/* Small mobile: 480px and below */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }

  .brand-logo img { height: 45px; }
  .topbar__item strong { font-size: 0.85rem; }
  .topbar__item small { font-size: 0.68rem; }

  .intro__text h2 { font-size: 1.4rem; }
  .intro__gallery { min-height: 300px; }
  .intro__img--a { height: 180px; }
  .intro__img--b { height: 240px; margin-left: 25%; }
  .intro__dots { display: none; }

  .checklist { grid-template-columns: 1fr; }

  .ceo-message__photo img { height: 260px; }
  .ceo-message__content h2 { font-size: 1.5rem; }

  .stat-block strong { font-size: 2rem; }
  .stat-block__icon-wrap { width: 60px; height: 60px; }
  .stat-block__icon { font-size: 1.7rem; }

  .cta-banner__inner h2 { font-size: 1.3rem; }
  .btn { padding: 10px 20px; font-size: 0.88rem; }
}

/* ==========================================================================
   Brand Collaboration Section
   ========================================================================== */
.brands-section {
  background: var(--white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;      /* 3 cards ko center mein compact rakhne ke liye */
  margin-inline: auto;
  margin-top: 20px;
}
.brand-logo-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;          /* CHANGED: sirf left-right padding, top-bottom 0 */
  box-sizing: border-box;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(20, 51, 31, 0.12);
  border-color: var(--green-primary);
}

.brand-logo-card img {
  width: 100%;               /* CHANGED: fixed 140px ki jagah ab available width le ga */
  height: 100%;               /* CHANGED: fixed 90px ki jagah ab available height le ga */
  object-fit: contain;
  display: block;
  margin: auto;
}

/* Responsive */
@media (max-width: 760px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 500px;
  }
  .brand-logo-card:last-child {
    grid-column: 1 / -1;   /* teesra card niche center mein full-width row le lega */
    max-width: 240px;
    margin-inline: auto;
  }
}

@media (max-width: 420px) {
  .brands-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
  }
  .brand-logo-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  .brand-logo-card { height: 130px; padding: 20px; }
}