/* ═══════════════════════════════════
   INDIA VALVES 2026 — CORRECTED STYLESHEET
   ═══════════════════════════════════ */

/* ─ RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

/* ── CSS VARIABLES ─ */
:root {
  --red: #C8102E;
  --gold: #B8962E;
  --cream: #F5F0E8;
  --dark: #1A1A1A;
  --mid: #2D2D2D;
  --light-gray: #E8E3D8;
}

/* ── BASE ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: white;
  color: var(--dark);
  overflow-x: hidden;
}

/* ══════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   NAV
   ═════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 46, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px; height: 42px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 4s linear infinite;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--dark);
}
.logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: white;
  border: none;
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.nav-cta:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

/* ════════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
 /* padding: 140px 60px 80px 60px;*/
  position: relative;
  z-index: 2;
 
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow-line {
  width: 40px; height: 1.5px;
  background: var(--red);
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--dark);
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title .accent {
  color: var(--red);
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: 6px;
  color: var(--gold);
  margin-top: 6px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 36px 0 48px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.meta-icon {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.meta-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}
.meta-value {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}


@media(max-width:700px){
.meta-value {
  font-size: 16px;
  
}

}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s 0.4s ease both;
}

.btn-primary {
 background: var(--red);
    color: white;
    border: none;
    padding: 11px 29px;
   
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); */
    border-radius: 44px
}
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 15px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,  transparent, transparent 40px, rgba(184,150,46,0.04) 40px, rgba(184,150,46,0.04) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(200,16,46,0.04)  40px, rgba(200,16,46,0.04)  41px);
}

.hero-dancer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  animation: floatUp 1s 0.5s ease both;
}

.dancer-svg {
  width: 100%;
  height: 500px;
  display: block;
}

.chennai-text {
  position: absolute;
  bottom: 40px; right: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  line-height: 0.85;
  color: rgba(200, 16, 46, 0.15);
  letter-spacing: -4px;
  pointer-events: none;
  animation: fadeIn 1.5s 0.8s ease both;
}

.valve-decor {
  position: absolute;
  width: 200px; height: 200px;
  top: 60px; left: 30px;
  opacity: 0.07;
  animation: rotateSlow 20s linear infinite;
}

/* ═══════════════════════════════════
   TICKER
   ═══════════════════════════════════ */
.ticker {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* ══════════════════════════════════
   COUNTDOWN STRIP
   ═══════════════════════════════════ */
.cd-strip {
  background: linear-gradient(135deg, #c0281c 0%, #8f1c12 100%);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cd-strip::before {
  content: '';
  position: absolute;
  inset: 0;
}

.cd-strip-label { position: relative; z-index: 1; }
.cd-strip-label .ev-title {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.cd-strip-label .ev-title span { color: #f9dda5; }
.cd-strip-label .ev-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-top: 3px;
}

.cd-units {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cd-box { text-align: center; }
.cd-box .n {
  display: block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  min-width: 64px;
  letter-spacing: -1px;
  transition: background 0.3s;
}
.cd-box .n:hover { background: rgba(255, 255, 255, 0.25); }
.cd-box .l {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}
.cd-colon {
  font-size: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin-top: -10px;
}

/* ══════════════════════════════════
   ABOUT — INTRO (dark left + white right)
   ══════════════════════════════════ */
#about * { box-sizing: border-box; }

.about-intro {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 500px;
}

.ai-left {
  background: #0e1428;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Decorative "IV" watermark */
.ai-left::after {
  content: 'IV';
  position: absolute;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  bottom: -30px; right: -20px;
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}
/* Vertical accent line */
.ai-left::before {
  content: '';
  position: absolute;
  top: 15%; right: 0;
  width: 1px; height: 70%;
  background: linear-gradient(to bottom, transparent, rgba(192, 40, 28, 0.5), transparent);
}

.ai-left .tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #c0281c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-left .tag::before {
  content: '';
  width: 20px; height: 1.5px;
  background: #c0281c;
}

.ai-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.ai-left h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.ai-left p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 14px;
}

.ai-right {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.ai-right p {
  font-size: 18px;
  line-height: 1.9;
  color: #4a4540;
  font-weight: 300;
  margin-bottom: 16px;
}
.ai-right p strong {
  color: #0e1428;
  font-weight: 600;
}

.ai-pull {
  border-left: 3px solid #c0281c;
  padding: 16px 22px;
  background: rgba(192, 40, 28, 0.04);
  border-radius: 0 6px 6px 0;
  margin: 8px 0 20px;
  font-size: 18px !important;
  font-style: italic;
  color: #0e1428 !important;
  font-weight: 500 !important;
}

/* ═══════════════════════════════════
   ABOUT — IMAGE + STATS BREAK
   ══════════════════════════════════ */
.about-img-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 420px;
  overflow: hidden;
}

.aib-img {
  overflow: hidden;
  position: relative;
}
.aib-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.7s ease;
  background: #f0ede8;
}
.aib-img:hover img { transform: scale(1.04); }
.aib-img .float-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14, 20, 40, 0.9) 0%, transparent 100%);
  padding: 30px 28px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f9dda5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aib-img .float-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: #f9dda5;
}

.aib-stats {
  background: #0e1428;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.aib-stat {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}
.aib-stat:hover { background: rgba(192, 40, 28, 0.2); }
.aib-stat:nth-child(2),
.aib-stat:nth-child(4) { border-right: none; }
.aib-stat:nth-child(3),
.aib-stat:nth-child(4) { border-bottom: none; }

.aib-stat .sn {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.aib-stat .sn sup {
  font-size: 18px;
  color: #f9dda5;
  vertical-align: super;
}
.aib-stat .sl {
  font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(255 255 255 / 87%);
}

/* ════════════════════════════════════
   ABOUT — MISSION
   ══════════════════════════════════ */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f8f5f0;
}

.am-left {
  padding: 70px 60px;
  background: #fff;
}
.am-left .tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #c0281c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.am-left .tag::before {
  content: '';
  width: 20px; height: 1.5px;
  background: #c0281c;
}
.am-left h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: #0e1428;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.am-left h3 em {
  font-style: italic;
  font-weight: 300;
  color: #c0281c;
}
.am-left > p {
  font-size: 18px;
  line-height: 1.9;
  color: #6e6860;
  font-weight: 300;
  margin-bottom: 12px;
}

.am-right { padding: 70px 50px; }

.mi-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 6px;
  border-left: 3px solid transparent;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  cursor: default;
}
.mi-card:hover {
  border-left-color: #c0281c;
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.mi-num {
  font-size: 18px;
  font-weight: 700;
  color: #c0281c;
  background: rgba(192, 40, 28, 0.08);
  border-radius: 4px;
  padding: 4px 8px;
  flex-shrink: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.mi-txt {
  font-size: 18px;
  font-weight: 400;
  color: #2a2420;
  line-height: 1.6;
  padding-top: 2px;
}

/* ══════════════════════════════════
   ABOUT — CLOSING DARK STRIP
   ══════════════════════════════════ */
.about-closing {
  background: linear-gradient(135deg, #0e1428 0%, #1a2f5e 100%);
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 80'%3E%3Cpath d='M0,40 L80,40 L100,15 L120,65 L140,5 L160,75 L180,40 L300,40 L320,15 L340,65 L360,5 L380,75 L400,40 L520,40 L540,15 L560,65 L580,5 L600,75 L620,40 L740,40 L760,15 L780,65 L800,40' fill='none' stroke='rgba(192,40,28,0.2)' stroke-width='1.5'/%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.6;
}

.ac-text {
  position: relative;
  z-index: 1;
}
.ac-text p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin-bottom: 14px;
}
.ac-text p:last-child { margin-bottom: 0; }
.ac-text p strong {
  color: #fff;
  font-weight: 600;
}

.ac-quote {
  position: relative;
  z-index: 1;
  border-left: 3px solid #c0281c;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 8px 8px 0;
}
.ac-quote p {
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
}
.ac-quote p em {
  color: #f9dda5;
  font-style: normal;
  font-weight: 600;
}

/* ══════════════════════════════════
   REGISTER CTA
   ════════════════════════════════════ */
.register {
  padding: 120px 60px;
  text-align: center;
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.register::before {
  content: 'REGISTER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 240px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
}
.register h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .about-intro          { grid-template-columns: 1fr; }
  .ai-left              { padding: 50px 40px; }
  .ai-right             { padding: 50px 40px; }
  .about-img-break      { grid-template-columns: 1fr; height: auto; }
  .aib-img              { height: 320px; }
  .aib-stats            { height: 220px; }
  .about-mission        { grid-template-columns: 1fr; }
  .am-left, .am-right   { padding: 50px 40px; }
  .about-closing        { grid-template-columns: 1fr; gap: 32px; padding: 50px 40px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links, .nav-cta  { display: none; }
  .hero                 { grid-template-columns: 1fr; }
  .hero-left            { padding: 120px 24px 60px; }
  .hero-right           { display: none; }
}

@media (max-width: 600px) {
  .cd-strip             { padding: 24px 12px; flex-direction: column; align-items: flex-start; }
  .aib-stats            { grid-template-columns: 1fr 1fr; height: auto; }
  .aib-stat             { padding: 28px 16px; }
  .about-closing        { padding: 40px 24px; }
  .ai-left,
  .ai-right,
  .am-left,
  .am-right             { padding: 40px 24px; }
  .register             { padding: 80px 24px; }
}