/* =============================================
   ISHWAR GIRI (Solution India) - Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary:      #1a5fa8;
  --primary-dark: #0d3b6e;
  --primary-light:#2a7fd4;
  --red:          #e31e24;
  --red-dark:     #b71c1c;
  --teal:         #00b4d8;
  --teal-dark:    #0097a7;
  --gold:         #f4c430;
  --white:        #ffffff;
  --light:        #f0f7ff;
  --light-gray:   #f8f9fa;
  --text:         #1a1a2e;
  --gray:         #6b7280;
  --border:       #dde4f0;
  --shadow:       0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.15);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }
ul { list-style: none; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.35); }

.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-svg { flex-shrink: 0; }
.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 25px !important;
  border-bottom: none !important;
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.25s !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: scale(1.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227,30,36,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-blue { background: var(--primary); color: var(--white); }
.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,95,168,0.4);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 91vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,59,110,0.91) 0%, rgba(26,95,168,0.78) 60%, rgba(0,70,100,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 820px;
  padding: 0 24px;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-content h1 .accent { color: var(--gold); }
.hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 36px;
}
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.1rem; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--primary-dark);
  padding: 28px 6%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===================== SECTIONS ===================== */
.section { padding: 75px 6%; }
.section-light { background: var(--light); }
.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.section-tag {
  display: inline-block;
  background: rgba(26,95,168,0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-dark .section-tag {
  background: rgba(244,196,48,0.15);
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-dark .section-title { color: var(--white); }

.section-subtitle {
  color: var(--gray);
  font-size: 0.93rem;
  max-width: 580px;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.72); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(227,30,36,0.95), transparent);
  color: var(--white);
  padding: 30px 22px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.about-content .section-subtitle { margin-bottom: 22px; }

.feature-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid var(--teal);
}
.feature-pill i { color: var(--teal); font-size: 1rem; }

/* ===================== WHY CHOOSE US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--white);
  padding: 32px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.7rem;
}
.why-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 7px; }
.why-card p  { font-size: 0.79rem; color: var(--gray); }

/* ===================== SERVICE CARDS (HOME) ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sc-img {
  height: 195px;
  overflow: hidden;
}
.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.service-card:hover .sc-img img { transform: scale(1.06); }
.sc-body { padding: 22px; }
.sc-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 7px; }
.sc-body p  { font-size: 0.82rem; color: var(--gray); margin-bottom: 14px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(0,180,216,0.1);
  color: var(--teal-dark);
  font-weight: 600;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  padding: 65px 6%;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p  { opacity: 0.85; margin-bottom: 32px; font-size: 0.97rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 6% 24px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/img20.jpg');
  background-size: cover;
  background-position: bottom;
  opacity: 0.08;
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 45px;
}
.footer-brand-name { font-size: 1.35rem; font-weight: 800; }
.footer-brand-name span { color: var(--gold); }
.footer-brand p {
  font-size: 0.83rem;
  opacity: 0.65;
  margin-top: 14px;
  line-height: 1.75;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: background 0.25s;
}
.footer-social a:hover { background: var(--teal); }

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.83rem;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a i { font-size: 0.65rem; color: var(--teal); }

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.fci-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.fci-text h5 { font-size: 0.72rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.fci-text p,
.fci-text a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.fci-text a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; opacity: 0.55; }
.footer-bottom a { color: var(--gold); }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 72px 6% 56px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { font-size: 0.97rem; opacity: 0.82; max-width: 520px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; font-size: 0.8rem; opacity: 0.65; margin-top: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

/* ===================== SERVICES PAGE ===================== */
.service-section { padding: 65px 6%; }
.service-section-alt { background: var(--light); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.service-detail-grid.flip { direction: rtl; }
.service-detail-grid.flip > * { direction: ltr; }

.sdg-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sdg-img img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}
.sdg-img-multi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sdg-img-multi img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
  padding: 8px 12px;
  background: var(--light);
  border-radius: var(--radius-sm);
}
.service-list li i {
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===================== PRODUCTS PAGE ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eaf0fb;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.pc-img {
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.pc-img img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .pc-img img { transform: scale(1.08); }

.pc-body {
  padding: 20px;
  border-top: 3px solid var(--teal);
}
.pc-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.pc-body p  { font-size: 0.8rem; color: var(--gray); line-height: 1.55; }

/* ===================== CONTACT PAGE ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 45px;
  align-items: start;
}
.contact-info-box {
  background: var(--primary-dark);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: var(--white);
}
.contact-info-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-box > p { opacity: 0.7; font-size: 0.87rem; margin-bottom: 35px; line-height: 1.65; }

.cd-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.cd-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-text h4 { font-size: 0.72rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.cd-text p,
.cd-text a {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.55;
}
.cd-text a:hover { color: var(--teal); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 { font-size: 1.45rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.contact-form-box > p { color: var(--gray); font-size: 0.87rem; margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.87rem;
  color: var(--text);
  background: #fafbff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,95,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 115px; }

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,95,168,0.4);
}

.form-note { font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 12px; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
  margin-top: 40px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { gap: 40px; }
}
@media (max-width: 900px) {
  .about-grid,
  .contact-layout,
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.flip { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 18px 24px;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { height: 80vh; background-attachment: scroll; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-list { grid-template-columns: 1fr; }
  .feature-pills { grid-template-columns: 1fr; }
  .sdg-img-multi { grid-template-columns: 1fr; }
  .stats-bar { gap: 28px; }
  .section { padding: 55px 5%; }
  .service-section { padding: 50px 5%; }
  .contact-form-box { padding: 28px 22px; }
  .contact-info-box { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
