 :root {
  --red:       #f7542b;
  --orange:    #f7542b;
  --nav-bg:    #e8251a;
  --blue-dark: #003f87;
  --blue-mid:  #0060b0;
  --blue-light:#4a90d9;
  --sky:       #b8d9f5;
  --sky-pale:  #daeeff;
  --white:     #ffffff;
  --off-white: #f5f8fc;
  --text-dark: #1a1a2e;
  --text-mid:  #2d3748;
  --text-grey: #6b7280;
  --gold:      #f5a623;
  --green:     #2ecc71;
  --border:    rgba(0,63,135,0.12);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius:    10px;
  --radius-lg: 18px;
  --transition:all 0.32s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: #fff; overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* =====================================================
   UTILITY
   ===================================================== */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,37,26,0.08);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; color: var(--text-dark); margin-bottom: 10px;
}
.section-title span { color: var(--red); }
.section-sub {
  font-size: 1rem; color: var(--text-grey); 
/*    max-width: 580px;*/
  margin: 0 auto 50px; line-height: 1.7;
}
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 12px 28px; border-radius: 6px; border: 2px solid var(--red);
  transition: var(--transition); cursor: pointer;
}
.btn-red:hover {
  background: #c0150b; border-color: #c0150b; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,37,26,0.35);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 12px 28px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: #fff; color: var(--red); border-color: #fff;
  transform: translateY(-2px);
}
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-dark); color: #fff; font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 12px 28px; border-radius: 6px; border: 2px solid var(--blue-dark);
  transition: var(--transition);
}
.btn-blue:hover {
  background: var(--blue-mid); border-color: var(--blue-mid); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,63,135,0.35);
}

/* =====================================================
   TOP BAR  (light info strip)
   ===================================================== */
#top-info {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  padding: 6px 0;
}
#top-info a { color: var(--gold); }
#top-info a:hover { color: #fff; }
#top-info .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.25); }

/* =====================================================
   HEADER — 3-logo bar (exact original layout)
   ===================================================== */
#site-header {
  background: linear-gradient(135deg, #c8dff5 0%, #b0cee8 40%, #a0c0e0 100%);
  padding: 14px 0;
  position: relative;
  transition: var(--transition);
}
#site-header.sticky {
  position: sticky; top: 0; z-index: 1100;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* Govt Logo Left */
.hdr-govt { text-align: center; }
.hdr-govt-emblem {
  font-size: 2.6rem; line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.hdr-govt-text {
  font-size: 0.67rem; color: #1a3a5c; font-weight: 600;
  line-height: 1.35; margin-top: 4px; max-width: 180px; margin: 4px auto 0;
}

/* India Chem Center Logo */
.hdr-center { text-align: center; }
.hdr-logo-main {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0;
}
.hdr-logo-title {
  font-family: var(--font-head); font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700; letter-spacing: 0.12em; color: #1a3a5c;
  text-transform: uppercase;
}
.hdr-logo-chem {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900; line-height: 0.85;
  color: var(--red);
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 0 rgba(232,37,26,0.15);
  position: relative;
}
.hdr-logo-year {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: #1a3a5c;
  letter-spacing: 0.05em; margin-top: -4px;
}

/* Molecule SVG decoration */
.hdr-molecule {
  position: absolute; right: -90px; top: 50%; transform: translateY(-50%);
}

/* FICCI Right */
.hdr-ficci { text-align: center; }
.hdr-ficci-logo {
  font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; color: var(--red); letter-spacing: -0.02em;
}
.hdr-ficci-logo span { color: var(--gold); }
.hdr-ficci-sub {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  color: #1a3a5c; text-transform: uppercase; margin-top: 2px;
}
.hdr-ficci-tagline {
  font-size: 0.6rem; color: #4a6a8a; font-style: italic;
}

/* =====================================================
   NAVIGATION BAR (orange/red exact match)
   ===================================================== */
#main-nav {
  background: var(--red);
  position: sticky; top: 0; z-index: 1050;
  box-shadow: 0 3px 16px rgba(232,37,26,0.35);
  transition: var(--transition);
}
#main-nav.scrolled { box-shadow: 0 6px 30px rgba(232,37,26,0.5); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0;
}

.nav-brand {
  display: none; /* shown only on mobile */
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  color: #fff; letter-spacing: 0.04em;
}
.nav-brand span { color: var(--gold); }

.nav-menu {
  display: flex; align-items: stretch; flex-wrap: wrap;
  margin: 0; padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); padding: 14px 18px;
  transition: var(--transition); white-space: nowrap;
  position: relative;
}
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 3px; background: #fff; transition: var(--transition);
  border-radius: 3px 3px 0 0;
}
.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after { left: 10%; right: 10%; }
.nav-menu > li:hover > a, .nav-menu > li.active > a { color: #fff; background: rgba(0,0,0,0.12); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 220px;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  border-top: 3px solid var(--red);
  z-index: 999;
}
.nav-menu > li:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.nav-dropdown li a {
  display: block; padding: 10px 18px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  color: var(--text-dark); border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: rgba(232,37,26,0.07); color: var(--red); padding-left: 24px; }

/* Register CTA in nav */
.nav-register {
  display: flex; align-items: center;
}
.nav-register a {
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: #fff; color: var(--red);
  padding: 10px 20px; margin: 8px 12px;
  border-radius: 6px; transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-register a:hover {
  background: var(--gold); color: #fff;
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none;
  width: 42px; height: 42px; cursor: pointer;
  flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================
   HERO SLIDER — full width, below nav
   ===================================================== */
#hero-slider {
  position: relative; width: 100%; overflow: hidden;
  background: linear-gradient(135deg, #b8d5ef 0%, #8ab4d8 100%);
}

.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.9s ease, transform 1.2s ease;
  transform: scale(1.04);
  will-change: opacity, transform;
}
.slide.active { opacity: 1; transform: scale(1); z-index: 2; }
.slide.prev   { opacity: 0; transform: scale(0.97); z-index: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
/*  filter: brightness(0.55);*/
}
/* Slide 1 — branding/molecule style like original */
.slide-1-bg {
  background: linear-gradient(135deg, #c5dff5 0%, #8fb8e0 35%, #2c5f8a 100%);
  filter: none;
}
/* Slides with real images */
.slide-bg-img { background-size: cover; background-position: center top; }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.slide-1-overlay {
  background: linear-gradient(110deg, rgba(5,25,60,0.85) 0%, rgba(5,25,60,0.5) 55%, rgba(5,25,60,0.1) 100%);
}

.slide-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; padding: 60px 0;
  min-height: 78vh;
}

/* Slide 1 special layout — left text, right molecule */
.slide-1-layout {
  display: flex; align-items: center; gap: 0;
  min-height: 78vh; padding: 40px 0;
}
.slide-1-left { flex: 1; padding-right: 20px; }
.slide-1-right {
  flex: 0 0 45%; display: flex; justify-content: center; align-items: center;
  position: relative;
}

/* Molecule SVG animation */
.molecule-wrap {
  position: relative; width: 340px; height: 340px;
  animation: moleculeFloat 6s ease-in-out infinite;
}
@keyframes moleculeFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}

/* Hexagon grid for molecule visual */
.hex-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  opacity: 0.92;
}
.hex-item {
  aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  animation: hexPulse 3s ease-in-out infinite;
}
.hex-item:nth-child(1) { animation-delay: 0s; }
.hex-item:nth-child(2) { animation-delay: 0.4s; }
.hex-item:nth-child(3) { animation-delay: 0.8s; }
.hex-item:nth-child(4) { animation-delay: 1.2s; }
.hex-item:nth-child(5) { animation-delay: 1.6s; }
.hex-item:nth-child(6) { animation-delay: 2s; }
@keyframes hexPulse {
  0%,100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
  50%      { transform: scale(1.04); box-shadow: 0 8px 30px rgba(0,100,200,0.4); }
}
.hex-item img { width: 100%; height: 100%; object-fit: cover; }

/* Slide text content */
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  animation: slideBadge 0.7s ease both;
}
.slide-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: dotPulse 1.5s ease infinite;
}
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:0.7;} }

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 6px;
  letter-spacing: 0.06em; text-transform: uppercase;
  animation: slideTitle 0.7s ease 0.1s both;
}
.slide-chem {
  font-family: var(--font-head);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900; line-height: 0.85; color: var(--red);
  letter-spacing: -0.02em; margin-bottom: 4px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.25);
  animation: slideChem 0.7s ease 0.18s both;
}
.slide-year {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: #fff; letter-spacing: 0.1em;
  animation: slideTitle 0.7s ease 0.24s both;
}
.slide-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(255,255,255,0.88);
  margin: 14px 0 8px; font-weight: 400; font-style: italic; max-width: 520px;
  animation: slideTitle 0.7s ease 0.3s both;
}
.slide-date {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: var(--gold); margin-bottom: 30px;
  animation: slideTitle 0.7s ease 0.36s both;
}
.slide-date i { color: rgba(255,255,255,0.7); }
.slide-edition {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 30px;
  animation: slideTitle 0.7s ease 0.42s both;
}
.slide-cta { display: flex; gap: 12px; flex-wrap: wrap; animation: slideTitle 0.7s ease 0.5s both; }

@keyframes slideBadge { from{opacity:0;transform:translateY(-16px);}to{opacity:1;transform:none;} }
@keyframes slideTitle { from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:none;} }
@keyframes slideChem  { from{opacity:0;transform:translateX(-30px);}to{opacity:1;transform:none;} }

/* Slide 2 — full image bg with dignitaries */
.slide-2-content { max-width: 560px; }

/* Slider Controls */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 50px; height: 50px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%; color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover {
  background: var(--red); border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  transition: var(--transition); border: none;
}
.slider-dot.active {
  background: var(--gold); transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.3);
}

/* Slider Progress */
.slider-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--red);
  width: 0%; z-index: 10;
  animation: progressBar 5s linear infinite;
}
@keyframes progressBar { from{width:0%} to{width:100%} }

/* =====================================================
   MARQUEE STRIP (below slider)
   ===================================================== */
#marquee-strip {
  background: var(--blue-dark); color: rgba(255,255,255,0.9);
  padding: 10px 0; overflow: hidden; white-space: nowrap;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.06em; border-bottom: 3px solid var(--gold);
}
.marquee-inner {
  display: inline-block;
  animation: marqueeScroll 35s linear infinite;
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-sep { color: var(--gold); margin: 0 20px; }

/* =====================================================
   STATS STRIP
   ===================================================== */
#stats-strip {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 30px 0; position: relative;
  overflow: hidden;
}
#stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,213,239,0.15), rgba(0,63,135,0.04));
}

.stat-item {
  text-align: center; padding: 10px 20px;
  border-right: 1px solid var(--border); position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head); font-size: clamp(2.2rem,4vw,3rem);
  font-weight: 900; line-height: 1; color: var(--red);
  display: block;
}
.stat-lbl {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--text-grey); text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(232,37,26,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.2rem; margin: 0 auto 10px;
  transition: var(--transition);
}
.stat-item:hover .stat-icon-wrap {
  background: var(--red); color: #fff;
  transform: rotate(8deg) scale(1.1);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
#about { background: var(--off-white); }

.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%; height: 430px; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-badge-corner {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: #fff;
  border-radius: var(--radius); padding: 18px 22px;
  text-align: center; box-shadow: var(--shadow-md);
  border: 3px solid #fff;
  animation: badgePop 0.6s ease 0.3s both;
}
@keyframes badgePop { from{opacity:0;transform:scale(0.7);}to{opacity:1;transform:scale(1);} }
.about-badge-corner .num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 900;
  line-height: 1; display: block;
}
.about-badge-corner .lbl {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.85;
}

.about-pill {
  position: absolute; top: -16px; left: 20px;
  background: var(--blue-dark); color: #fff;
  border-radius: 50px; padding: 6px 16px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-sm); border: 2px solid #fff;
}

.about-features { margin-top: 24px; }
.about-feature {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 18px; padding: 14px 16px;
  border-radius: var(--radius); background: #fff;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover {
  border-color: var(--red); transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.about-feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.about-feature:hover .about-feature-icon { transform: rotate(10deg) scale(1.1); }
.about-feature-text h6 {
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  color: var(--text-dark); margin-bottom: 2px;
}
.about-feature-text p { font-size: 0.83rem; color: var(--text-grey); margin: 0; }

/* =====================================================
   WHY EXHIBIT — blue gradient
   ===================================================== */
#why-exhibit {
  background: linear-gradient(135deg, #003f87 0%, #0060b0 60%, #1a7acc 100%);
  position: relative; overflow: hidden;
}
#why-exhibit::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 L70 25 L70 55 L40 70 L10 55 L10 25 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'/%3E%3C/svg%3E") repeat;
}

.exhibit-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.exhibit-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.exhibit-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.3);
}
.exhibit-card:hover::after { transform: scaleX(1); }
.exhibit-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.7rem; color: var(--gold);
  transition: var(--transition);
}
.exhibit-card:hover .exhibit-icon {
  background: var(--gold); color: #fff;
  transform: rotate(8deg) scale(1.12);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.exhibit-card h5 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 10px; letter-spacing: 0.03em;
}
.exhibit-card p { font-size: 0.875rem; color: rgba(255,255,255,0.78); line-height: 1.65; margin: 0; }

/* =====================================================
   HIGHLIGHTS / CONCLAVES
   ===================================================== */
#highlights { background: #fff; }

.highlight-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  height: 100%;
}
.highlight-card:hover {
  border-color: var(--red); box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.highlight-card-header {
  padding: 22px; background: linear-gradient(135deg, #003f87, #0060b0);
  color: #fff; position: relative; overflow: hidden;
}
.highlight-card-header::after {
  content: attr(data-num);
  position: absolute; right: 16px; bottom: -10px;
  font-family: var(--font-head); font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,0.08); line-height: 1; pointer-events: none;
}
.highlight-card-header h5 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 800;
  letter-spacing: 0.04em; margin: 0; position: relative; z-index: 1;
}
.highlight-card-header .hc-icon {
  font-size: 1.6rem; color: var(--gold); margin-bottom: 8px; display: block;
}
.highlight-card-body { padding: 20px; background: #fff; }
.highlight-card-body p { font-size: 0.875rem; color: var(--text-grey); line-height: 1.7; margin: 0; }
.highlight-tag {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); background: rgba(232,37,26,0.08);
  padding: 4px 10px; border-radius: 20px;
}

/* =====================================================
   GALLERY
   ===================================================== */
#gallery { background: var(--off-white); }

.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.gf-btn {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 22px; border-radius: 50px; cursor: pointer;
  border: 2px solid var(--border); color: var(--text-mid);
  background: #fff; transition: var(--transition);
}
.gf-btn:hover, .gf-btn.active {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(232,37,26,0.3);
}

.gallery-masonry {
  columns: 3; column-gap: 16px;
}
.g-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  position: relative;
}
.g-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,63,135,0.8) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 14px;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay-text { color: #fff; font-weight: 600; font-size: 0.85rem; }
.g-zoom {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px; height: 48px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; transition: var(--transition);
}
.g-item:hover .g-zoom { transform: translate(-50%, -50%) scale(1); }

/* =====================================================
   VIDEO SECTION
   ===================================================== */
#videos { background: #fff; }

.video-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--border);
}
.video-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}
.video-thumb { position: relative; overflow: hidden; background: #000; }
.video-thumb img {
  width: 100%; height: 210px; object-fit: cover; opacity: 0.82;
  transition: opacity 0.3s, transform 0.5s;
}
.video-card:hover .video-thumb img { opacity: 0.7; transform: scale(1.06); }
.v-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  box-shadow: 0 0 0 0 rgba(232,37,26,0.5);
  animation: videoRipple 2s ease infinite;
  transition: var(--transition);
}
.video-card:hover .v-play { transform: translate(-50%,-50%) scale(1.12); }
@keyframes videoRipple {
  0%   { box-shadow: 0 0 0 0 rgba(232,37,26,0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(232,37,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,37,26,0); }
}
.v-dur {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
}
.video-body { padding: 16px 18px; }
.video-body h6 { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 6px; }
.video-body p { font-size: 0.82rem; color: var(--text-grey); margin: 0; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
#testimonials {
  background: linear-gradient(135deg, #0d2241 0%, #003f87 100%);
  overflow: hidden; position: relative;
}
#testimonials::before {
  content: '"';
  position: absolute; right: 5%; top: -20px;
  font-family: var(--font-head); font-size: 22rem; font-weight: 900;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.quote-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 32px; position: relative; transition: var(--transition);
}
.quote-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px); border-color: rgba(255,255,255,0.25);
}
.quote-text {
  font-size: 0.97rem; line-height: 1.8; color: rgba(255,255,255,0.85);
  font-style: italic; margin-bottom: 22px;
  padding-top: 10px; position: relative;
}
.quote-text::before {
  content: '"';
  position: absolute; top: -22px; left: -8px;
  font-family: var(--font-head); font-size: 4rem; font-weight: 900;
  color: var(--red); line-height: 1; opacity: 0.7;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.q-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--gold); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: #fff;
}
.q-name { font-weight: 700; color: #fff; font-size: 0.92rem; }
.q-title { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* =====================================================
   CTA BANNER
   ===================================================== */
#cta-banner {
  background: var(--red); position: relative; overflow: hidden;
  padding: 70px 0;
}
#cta-banner::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.06); top: -200px; right: -100px;
}
#cta-banner::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04); bottom: -120px; left: -60px;
}
.cta-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: #fff; letter-spacing: 0.03em; line-height: 1.1;
  position: relative; z-index: 1;
}
.cta-sub {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  margin: 14px 0 28px; position: relative; z-index: 1;
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-date-info {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--gold); margin-top: 16px;
  display: flex; align-items: center; gap: 8px;
}

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: #0a1628;
  color: rgba(255,255,255,0.72);
  padding: 70px 0 0;
}
.footer-logo-name {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  color: #fff; letter-spacing: 0.04em;
}
.footer-logo-name span { color: var(--red); }
.footer-logo-sub {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}
.footer-desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  margin: 16px 0 24px; line-height: 1.7;
}
.footer-head {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 18px; padding-bottom: 10px; position: relative;
}
.footer-head::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--red);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-links a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-contact-row {
  display: flex; gap: 12px; margin-bottom: 12px;
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  align-items: flex-start;
}
.footer-contact-row i { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.social-bar { display: flex; gap: 8px; margin-top: 20px; }
.s-link {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: var(--transition);
}
.s-link:hover {
  background: var(--red); border-color: var(--red); color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 55px; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: var(--gold); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
#btt {
  position: fixed; bottom: 28px; right: 24px;
  width: 46px; height: 46px; background: var(--red); color: #fff;
  border: none; border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  opacity: 0; visibility: hidden; transition: var(--transition);
  z-index: 999; box-shadow: 0 4px 20px rgba(232,37,26,0.45);
}
#btt.show { opacity: 1; visibility: visible; }
#btt:hover { background: #c0150b; transform: translateY(-3px); }

/* =====================================================
   MICRO-ANIMATIONS — scroll reveal
   ===================================================== */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.left  { transform: translateX(-40px); }
.reveal.right { transform: translateX(40px); }
.reveal.scale { transform: scale(0.88); }
.reveal.done  { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* Floating particles */
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.15); pointer-events: none;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(100%) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-200px) rotate(720deg); opacity: 0; }
}

/* Shimmer effect on hero text */
.shimmer-line {
  position: relative; display: inline-block;
}
.shimmer-line::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease-in-out 2s infinite;
}
@keyframes shimmer { 0%{left:-100%} 100%{left:200%} }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1199px) {
  .nav-menu > li > a { padding: 14px 12px; font-size: 0.85rem; }
}

@media (max-width: 991px) {
  /* Header responsive */
  .hdr-govt-text { font-size: 0.6rem; max-width: 140px; }
  .hdr-logo-chem { font-size: 3.5rem; }
  .hdr-logo-year { font-size: 1.8rem; }

  /* Nav hamburger */
  .nav-toggle { display: flex; }
  .nav-brand   { display: flex; }
  .nav-register { display: none; }

  .nav-menu {
    position: fixed; top: 0; right: -300px; bottom: 0;
    width: 280px; background: #fff;
    flex-direction: column; flex-wrap: nowrap; align-items: stretch;
    overflow-y: auto; padding: 70px 0 30px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.25);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 2000;
  }
  .nav-menu.open { right: 0; }

  .nav-menu > li > a {
    color: var(--text-dark); padding: 14px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.95rem;
  }
  .nav-menu > li > a::after { display: none; }
  .nav-menu > li:hover > a { background: rgba(232,37,26,0.06); color: var(--red); }

  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; box-shadow: none; border-radius: 0; border-top: none;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    background: rgba(232,37,26,0.04);
  }
  .nav-menu > li.open .nav-dropdown { max-height: 400px; }
  .nav-dropdown li a { padding: 10px 36px; color: var(--text-mid); }

  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 1999; display: none;
  }
  .nav-overlay.show { display: block; }

  /* Slide content */
  .slide-1-layout { flex-direction: column; min-height: 60vh; padding: 40px 0 60px; }
  .slide-1-right  { flex: 0 0 auto; }
  .molecule-wrap  { width: 220px; height: 220px; }
  .hex-item img   { min-height: 60px; }
  .slide-chem     { font-size: 5rem; }
  .slide-content  { min-height: 60vh; padding: 40px 0 60px; }
  .slide-2-content { max-width: 100%; }

  /* Gallery */
  .gallery-masonry { columns: 2; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
  .hdr-logo-chem { font-size: 2.8rem; }
  .hdr-logo-year { font-size: 1.5rem; }
  .hdr-govt { display: none; }   /* hide on very small */
  .hdr-ficci { display: none; }  /* center logo only on xs */
  .slide-chem { font-size: 4rem; }
  .slide-year { font-size: 2.2rem; }
  .gallery-masonry { columns: 2; }
  .section-pad { padding: 55px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
  .hdr-logo-chem { font-size: 2.4rem; }
  .gallery-masonry { columns: 1; }
  .slide-chem  { font-size: 3.2rem; }
  .slide-title { font-size: 1.1rem; }
  .slide-date  { font-size: 1rem; }
  #stats-strip .row > div { border-right: none; }
}


/*Contact us*/

/* =====================================================
   INNER PAGE HERO BANNER
===================================================== */
#page-hero {
  background: linear-gradient(135deg, #003f87 0%, #0060b0 55%, #1a7acc 100%);
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
}
#page-hero::before {
  content:'';
  position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 L70 25 L70 55 L40 70 L10 55 L10 25 Z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1.5'/%3E%3C/svg%3E") repeat;
}
/* floating circles */
#page-hero::after {
  content:'';
  position:absolute; width:500px; height:500px; border-radius:50%;
  background:rgba(255,255,255,.04); right:-160px; top:-160px;
}
.ph-circle2 {
  position:absolute; width:300px; height:300px; border-radius:50%;
  background:rgba(255,255,255,.03); bottom:-100px; left:-80px;
}
.ph-inner { position:relative; z-index:2; }
.ph-title {
  font-family:var(--font-head);
  font-size:clamp(2.4rem,5vw,3.8rem);
  font-weight:900; color:#fff; line-height:1.05;
  letter-spacing:.03em;
  animation: heroFadeUp .7s ease both;
}
.ph-title span { color:var(--gold); }
.ph-sub {
  color:rgba(255,255,255,.78); font-size:1.05rem;
  margin:12px 0 0; max-width:520px; line-height:1.7;
  animation: heroFadeUp .7s ease .15s both;
}
.breadcrumb-wrap {
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-size:.82rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-bottom:16px;
  animation: heroFadeUp .6s ease both;
}
.breadcrumb-wrap a { color:rgba(255,255,255,.55); }
.breadcrumb-wrap a:hover { color:var(--gold); }
.breadcrumb-wrap .bc-sep { color:rgba(255,255,255,.3); }
.breadcrumb-wrap .bc-cur { color:var(--gold); }

/* Hero molecule SVG  decoration */
.ph-deco {
  position:absolute; right:6%; top:50%; transform:translateY(-50%);
  z-index:1; opacity:.18;
  animation: heroFadeUp .9s ease .2s both;
}

@keyframes heroFadeUp   { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes heroFadeRight{ from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:none} }

/* =====================================================
   QUICK CONTACT STRIP
===================================================== */
#quick-strip {
  background: var(--red);
  padding: 0;
  position: relative; z-index:10;
}
.qs-inner {
  display:flex; flex-wrap:wrap;
  align-items:stretch;
}
.qs-item {
  flex:1; min-width:200px;
  display:flex; align-items:center; gap:14px;
  padding:18px 24px;
  border-right:1px solid rgba(255,255,255,.15);
  transition:var(--tr); cursor:pointer;
}
.qs-item:last-child { border-right:none; }
.qs-item:hover { background:rgba(0,0,0,.12); }
.qs-icon {
  width:42px; height:42px; border-radius:10px;
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:#fff; flex-shrink:0; transition:var(--tr);
}
.qs-item:hover .qs-icon { background:#fff; color:var(--red); transform:scale(1.1) rotate(6deg); }
.qs-label { font-family:var(--font-head); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.6); }
.qs-value { font-family:var(--font-body); font-size:.88rem; font-weight:600; color:#fff; }

/* =====================================================
   SECTION COMMONS
===================================================== */
.section-pad { padding:80px 0; }
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-size:.76rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--red); background:rgba(232,37,26,.08);
  padding:5px 14px; border-radius:50px; margin-bottom:12px;
}
.section-label::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--red); }
.section-title {
  font-family:var(--font-head);
  font-size:clamp(1.9rem,4vw,2.8rem);
  font-weight:800; line-height:1.1; color:var(--text-dark);
}
.section-title span { color:var(--red); }
.section-divider {
  width:52px; height:4px; border-radius:2px;
  background:linear-gradient(90deg,var(--red),var(--gold));
  margin:14px 0 6px;
}

/* =====================================================
   CATEGORY HEADER (section divider)
===================================================== */
.cat-header {
  display:flex; align-items:center; gap:16px;
  margin-bottom:32px;
}
.cat-header-line {
  flex:1; height:1px; background:linear-gradient(90deg,var(--border),transparent);
}
.cat-header-badge {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-head); font-size:1.05rem; font-weight:800;
  letter-spacing:.06em; text-transform:uppercase;
  color:var(--red); background:rgba(232,37,26,.07);
  border:1.5px solid rgba(232,37,26,.2);
  padding:9px 22px; border-radius:50px;
  white-space:nowrap;
}
.cat-header-badge i { font-size:1.1rem; }

/* =====================================================
   DIRECTOR CARD (top single card)
===================================================== */
.director-card {
  background:linear-gradient(135deg,#003f87 0%,#0060b0 100%);
  border-radius:var(--radius-lg);
  padding:36px 40px;
  display:flex; align-items:center; gap:32px;
  box-shadow:var(--shadow-lg);
  position:relative; overflow:hidden;
  transition:var(--tr);
}
.director-card::before {
  content:'';
  position:absolute; right:-60px; top:-60px;
  width:240px; height:240px; border-radius:50%;
  background:rgba(255,255,255,.06);
}
.director-card::after {
  content:'';
  position:absolute; left:-40px; bottom:-60px;
  width:180px; height:180px; border-radius:50%;
  background:rgba(255,255,255,.04);
}
.director-card:hover { transform:translateY(-6px); box-shadow:0 28px 70px rgba(0,63,135,.28); }

.dir-avatar {
  flex-shrink:0;
  width:90px; height:90px; border-radius:50%;
  background:rgba(255,255,255,.12); border:3px solid rgba(255,255,255,.3);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:2rem; font-weight:900; color:#fff;
  position:relative; z-index:1;
  transition:var(--tr);
}
.director-card:hover .dir-avatar {
  background:rgba(245,166,35,.25); border-color:var(--gold);
  transform:scale(1.08);
}

.dir-info { flex:1; position:relative; z-index:1; }
.dir-tag {
  display:inline-block;
  font-family:var(--font-head); font-size:.72rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold); background:rgba(245,166,35,.15);
  border:1px solid rgba(245,166,35,.3);
  padding:4px 12px; border-radius:50px; margin-bottom:10px;
}
.dir-name {
  font-family:var(--font-head); font-size:1.8rem; font-weight:900;
  color:#fff; line-height:1; margin-bottom:4px; letter-spacing:.02em;
}
.dir-role { font-size:.9rem; font-weight:600; color:rgba(255,255,255,.7); margin-bottom:14px; }
.dir-details { display:flex; flex-wrap:wrap; gap:16px; }
.dir-detail-item {
  display:flex; align-items:center; gap:8px;
  font-size:.875rem; color:rgba(255,255,255,.8);
}
.dir-detail-item i { color:var(--gold); font-size:.95rem; }
.dir-detail-item a { color:rgba(255,255,255,.8); }
.dir-detail-item a:hover { color:var(--gold); }

.dir-office-tag {
  position:absolute; top:20px; right:24px;
  font-family:var(--font-head); font-size:.72rem; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase;
  color:#fff; background:var(--red); padding:6px 16px; border-radius:50px;
  z-index:1; box-shadow:0 4px 16px rgba(232,37,26,.4);
}

/* =====================================================
   PERSON CARD (contact team)
===================================================== */
.person-card {
  background:#fff;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  overflow:hidden;
  transition:var(--tr);
  height:100%;
  position:relative;
}
.person-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--red),var(--orange));
  transform:scaleX(0); transform-origin:left; transition:transform .35s ease;
}
.person-card:hover { transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:rgba(232,37,26,.2); }
.person-card:hover::before { transform:scaleX(1); }

.pc-header {
  padding:24px 24px 18px;
  display:flex; align-items:flex-start; gap:16px;
}
.pc-avatar {
  width:60px; height:60px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:1.3rem; font-weight:900;
  color:#fff; transition:var(--tr);
}
.person-card:hover .pc-avatar { transform:rotate(-5deg) scale(1.1); border-radius:50%; }

.pc-name {
  font-family:var(--font-head); font-size:1.25rem; font-weight:800;
  color:var(--text-dark); line-height:1.1; margin-bottom:3px;
}
.pc-role {
  font-size:.82rem; font-weight:600; color:var(--text-grey);
  text-transform:uppercase; letter-spacing:.06em;
}

.pc-divider { height:1px; background:var(--border); margin:0 24px; }

.pc-body { padding:18px 24px 22px; }
.pc-info-row {
  display:flex; align-items:flex-start; gap:10px;
  font-size:.875rem; color:var(--text-mid);
  margin-bottom:10px; line-height:1.5;
}
.pc-info-row:last-child { margin-bottom:0; }
.pc-info-icon {
  width:30px; height:30px; border-radius:8px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; margin-top:1px; transition:var(--tr);
}
.person-card:hover .pc-info-icon { transform:scale(1.1); }
.pc-info-row a { color:var(--red); font-weight:600; }
.pc-info-row a:hover { color:var(--red-dark); text-decoration:underline; }

/* =====================================================
   MAP SECTION
===================================================== */
#map-section { background:var(--off-white); }
.map-wrap {
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md);
  border:3px solid #fff;
}

/* =====================================================
   ENQUIRY FORM
===================================================== */
#enquiry { background:#fff; }
.form-wrap {
  background:#fff; border-radius:var(--radius-lg);
  border:1px solid var(--border);
  box-shadow:var(--shadow-md); padding:40px;
}
.form-section-title {
  font-family:var(--font-head); font-size:1.6rem; font-weight:800;
  color:var(--text-dark); margin-bottom:6px;
}
.form-section-sub { font-size:.9rem; color:var(--text-grey); margin-bottom:28px; }

.f-label { font-size:.85rem; font-weight:700; color:var(--text-dark); margin-bottom:5px; }
.f-control {
  width:100%; border:1.5px solid var(--border); border-radius:8px;
  padding:11px 14px; font-size:.9rem; font-family:var(--font-body);
  color:var(--text-dark); background:#fff; outline:none;
  transition:var(--tr);
}
.f-control:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(232,37,26,.1); }
select.f-control { cursor:pointer; }
.f-btn {
  background:var(--red); color:#fff; border:none;
  font-family:var(--font-head); font-size:1rem; font-weight:800;
  letter-spacing:.06em; text-transform:uppercase;
  padding:14px 36px; border-radius:8px; cursor:pointer;
  transition:var(--tr); display:inline-flex; align-items:center; gap:10px;
  width:100%; justify-content:center;
}
.f-btn:hover { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(232,37,26,.35); }
.f-btn.sending { opacity:.7; pointer-events:none; }
.f-btn.sent    { background:#16a34a !important; }

/* =====================================================
   CTA STRIP
===================================================== */
#cta-strip {
  background:var(--red); padding:60px 0;
  position:relative; overflow:hidden;
}
#cta-strip::before {
  content:''; position:absolute;
  width:420px; height:420px; border-radius:50%;
  background:rgba(255,255,255,.06); top:-160px; right:-100px;
}
#cta-strip::after {
  content:''; position:absolute;
  width:260px; height:260px; border-radius:50%;
  background:rgba(255,255,255,.04); bottom:-80px; left:-50px;
}
.cta-title {
  font-family:var(--font-head); font-size:clamp(1.8rem,4vw,3rem);
  font-weight:900; color:#fff; position:relative; z-index:1;
}
.cta-sub   { color:rgba(255,255,255,.82); font-size:1rem; margin:10px 0 24px; position:relative; z-index:1; }
.btn-wh    {
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; color:var(--red);
  font-family:var(--font-head); font-size:.95rem; font-weight:800;
  letter-spacing:.04em; padding:13px 28px; border-radius:8px;
  transition:var(--tr); position:relative; z-index:1;
}
.btn-wh:hover  { background:var(--gold); color:#fff; transform:translateY(-2px); }
.btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:#fff;
  font-family:var(--font-head); font-size:.95rem; font-weight:800;
  letter-spacing:.04em; padding:13px 28px; border-radius:8px;
  transition:var(--tr); position:relative; z-index:1;
}
.btn-gold:hover { background:#d4861a; color:#fff; transform:translateY(-2px); }

/* =====================================================
   FOOTER
===================================================== */
#footer {
  background:#0a1628; color:rgba(255,255,255,.72);
  padding:70px 0 0;
}
.footer-logo-name { font-family:var(--font-head); font-size:1.8rem; font-weight:900; color:#fff; }
.footer-logo-name span { color:var(--red); }
.footer-logo-sub  { font-size:.73rem; color:rgba(255,255,255,.5); font-weight:600; letter-spacing:.08em; text-transform:uppercase; margin-top:4px; }
.footer-desc      { font-size:.875rem; color:rgba(255,255,255,.58); margin:16px 0 22px; line-height:1.7; }
.footer-head {
  font-family:var(--font-head); font-size:.76rem; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase; color:var(--red);
  margin-bottom:16px; padding-bottom:10px; position:relative;
}
.footer-head::after { content:''; position:absolute; bottom:0; left:0; width:28px; height:2px; background:var(--red); }
.footer-links li   { margin-bottom:8px; }
.footer-links a    { font-size:.875rem; color:rgba(255,255,255,.58); display:flex; align-items:center; gap:6px; transition:var(--tr); }
.footer-links a:hover { color:var(--gold); padding-left:5px; }
.footer-links a::before { content:'›'; color:var(--red); font-size:1rem; }
.footer-cr-row     { display:flex; gap:10px; margin-bottom:12px; font-size:.875rem; color:rgba(255,255,255,.62); align-items:flex-start; }
.footer-cr-row i   { color:var(--red); flex-shrink:0; margin-top:2px; }
.social-bar        { display:flex; gap:8px; margin-top:18px; }
.s-link {
  width:38px; height:38px; border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.58); font-size:.95rem; transition:var(--tr);
}
.s-link:hover { background:var(--red); border-color:var(--red); color:#fff; transform:translateY(-3px); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:55px; padding:18px 0;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:8px;
}
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.38); margin:0; }
.footer-bottom a { color:var(--gold); }

/* =====================================================
   BACK TO TOP
===================================================== */
#btt {
  position:fixed; bottom:28px; right:24px;
  width:46px; height:46px; background:var(--red); color:#fff;
  border:none; border-radius:12px; cursor:pointer;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
  opacity:0; visibility:hidden; transition:var(--tr);
  z-index:999; box-shadow:0 4px 20px rgba(232,37,26,.45);
}
#btt.show { opacity:1; visibility:visible; }
#btt:hover { background:var(--red-dark); transform:translateY(-3px); }

/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal {
  opacity:0; transform:translateY(36px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.left  { transform:translateX(-40px); }
.reveal.right { transform:translateX(40px); }
.reveal.scale { transform:scale(.9); }
.reveal.done  { opacity:1; transform:none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s}
.d3{transition-delay:.24s} .d4{transition-delay:.32s}
.d5{transition-delay:.40s} .d6{transition-delay:.48s}

/* =====================================================
   FLOATING PARTICLES
===================================================== */
.particle {
  position:absolute; border-radius:50%;
  pointer-events:none; animation:partFloat linear infinite;
}
@keyframes partFloat {
  0%  {transform:translateY(100%) rotate(0);  opacity:0}
  10% {opacity:1}
  90% {opacity:1}
  100%{transform:translateY(-160px) rotate(720deg); opacity:0}
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width:991px) {
  .director-card { flex-direction:column; gap:20px; padding:28px 24px; }
  .dir-office-tag { top:16px; right:16px; }
  .nav-toggle { display:flex; }
  .nav-brand  { display:flex; }
  .nav-register { display:none; }
  .nav-menu {
    position:fixed; top:0; right:-300px; bottom:0; width:280px;
    background:#fff; flex-direction:column; flex-wrap:nowrap;
    overflow-y:auto; padding:70px 0 30px;
    box-shadow:-8px 0 40px rgba(0,0,0,.25);
    transition:right .35s cubic-bezier(.4,0,.2,1);
    z-index:2000;
  }
  .nav-menu.open { right:0; }
  .nav-menu > li > a { color:var(--text-dark); padding:14px 24px; border-bottom:1px solid rgba(0,0,0,.06); font-size:.95rem; }
  .nav-menu > li > a::after { display:none; }
  .nav-menu > li:hover > a { background:rgba(232,37,26,.06); color:var(--red); }
  .nav-dropdown { position:static; opacity:1; visibility:visible; pointer-events:auto; transform:none; box-shadow:none; border-radius:0; border-top:none; max-height:0; overflow:hidden; transition:max-height .3s ease; background:rgba(232,37,26,.04); }
  .nav-menu > li.open .nav-dropdown { max-height:400px; }
  .nav-overlay { position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:1999; display:none; }
  .nav-overlay.show { display:block; }
  .qs-item { flex:0 0 50%; min-width:0; }
  .hdr-govt { display:none; } .hdr-ficci { display:none; }
  .ph-deco   { display:none; }
}
@media (max-width:767px) {
  .form-wrap { padding:24px 18px; }
  .qs-item   { flex:0 0 100%; border-right:none; border-bottom:1px solid rgba(255,255,255,.12); }
  .qs-item:last-child { border-bottom:none; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
@media (max-width:575px) {
  .dir-avatar { width:70px; height:70px; font-size:1.5rem; }
  .dir-name   { font-size:1.4rem; }
  .section-pad { padding:55px 0; }
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
}

.icon-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f7542b;
  font-weight: bold;
}
        
        
        .doc-card {
  display: block;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  height: 100%;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: #ddd;
}

.doc-card .icon {
  font-size: 28px;
  color: #dc3545; /* PDF red */
  background: rgba(220,53,69,0.1);
  padding: 10px;
  border-radius: 8px;
}

.doc-card h6 {
  font-weight: 600;
}

.doc-card small {
  color: #777;
}