* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Poppins',sans-serif; color:#333; background:#fff; }

/* --- Fix: prevent horizontal scroll and ensure responsive elements --- */
html, body { overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }

/* Learning Journey day buttons responsive layout */
.day-toggle { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.day-btn { flex: 1 1 160px; }

/* Only show the active schedule */
.day-schedule { display:none; }
.day-schedule.active { display:block; }

/* Navbar */
.navbar {
  position:fixed; top:0; left:0; right:0;
  background:#fff; box-shadow:0 2px 6px rgba(0,0,0,0.1);
  z-index:1000;
}
.nav-container {
  max-width:1200px; margin:auto; padding:1rem 2rem;
  display:flex; align-items:center; justify-content:space-between;
}
.logo { font-weight:bold; color:#e63946; }
#nav-links { display:flex; gap:1.5rem; }
#nav-links a { text-decoration:none; color:#333; font-weight:500; }
#nav-links a:hover { color:#e63946; }
.btn-primary {
  background:#e63946; color:white; border:none; padding:0.5rem 1rem;
  border-radius:4px; cursor:pointer;
}
.menu-toggle { display:none; font-size:24px; background:none; border:none; }

/* Hero */
#hero {
  height:100vh; background:url('https://images.unsplash.com/photo-1551836022-4c4c79ecde51?auto=format&w=1600') center/cover no-repeat;
  position:relative; text-align:center; color:white;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  padding-top:80px;
}
#hero .overlay {
  position:absolute; inset:0; background:rgba(0, 0, 0, 0.7);
}
.hero-content {
  position:relative; z-index:2; max-width:800px;
}
.hero-content h1 {
  font-size:2.5rem; line-height:1.2; 
}
.hero-content span { color:#06d6a0; }
.hero-content h2 { font-size:2rem; margin:0.5rem 0; }
.hero-content p { font-size:1.2rem; }

/* Glass Cards */
.cards {
  display:flex; gap:1rem; margin-top:2rem; 
  flex-wrap:wrap; justify-content:center; position:relative; z-index:2;
}
.card {
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.3);
  backdrop-filter:blur(10px);
  border-radius:15px;
  padding:1rem 2rem;
  text-align:center;
  min-width:150px;
  transition:transform 0.3s ease;
}
.card:hover { transform:translateY(-10px) scale(1.05); }
.card h3 { font-size:1.2rem; color:white; }
.card p { font-size:0.9rem; color:#eee; }

/* Countdown */
.countdown { 
  margin-top:3rem; position:relative; z-index:2; text-align:center;
}
#timer {
  display:flex; gap:1rem; justify-content:center; margin-top:1rem;
}
#timer div {
  background:rgba(255,255,255,0.1);
  padding:1rem; border-radius:10px;
  min-width:70px; backdrop-filter:blur(10px);
}
#timer span { font-size:1.6rem; font-weight:bold; color:#fff; }
#timer small { display:block; font-size:0.8rem; }

/* Responsive */
@media(max-width:768px){
  #nav-links { 
    display:none; flex-direction:column; background:#fff; position:absolute;
    top:60px; right:0; width:200px; box-shadow:0 2px 8px rgba(0,0,0,0.2); padding:1rem;
  }
  #nav-links.show { display:flex; }
  .menu-toggle { display:block; color:#333; }
  .btn-primary { display:none; }
  .cards { flex-direction:column; }
}

body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #1a1a1a;
    }

    .container {
      max-width: 1200px;
      margin: 50px auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      padding: 0 20px;
      flex-wrap: wrap;
    }

    .text-section {
      flex: 1 1 500px;
    }

    .text-section h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .text-section p {
      margin-bottom: 15px;
      font-size: 1rem;
      line-height: 1.6;
    }

    .highlight {
      font-weight: bold;
    }

    .buttons {
      margin-top: 20px;
    }

    .buttons button {
      padding: 12px 25px;
      margin-right: 15px;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .buttons .red-btn {
      background-color: #d12b2b;
      color: white;
    }

    .buttons .red-btn:hover {
      background-color: #b32121;
    }

    .buttons .white-btn {
      background-color: white;
      color: #1a1a1a;
      border: 1px solid #ccc;
    }

    .buttons .white-btn:hover {
      background-color: #f0f0f0;
    }

    .image-section {
      position: relative;
      flex: 1 1 500px;
    }

    .image-section img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .badge {
      position: absolute;
      background-color: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      font-weight: bold;
    }

    .badge span {
      display: block;
      font-size: 1.5rem;
    }

    .countries {
      top: 20px;
      right: 20px;
      color: #008060;
    }

    .participants {
      bottom: 20px;
      left: 20px;
      color: #d12b2b;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .container {
        flex-direction: column;
        gap: 30px;
      }
    }



    #highlights {
  text-align: center;
  padding: 4rem 1rem;
  background: #fff;
}

#highlights h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

/* Row Layout */
.highlight-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: nowrap;         /* stay in one row */
  overflow-x: auto;          /* allows scroll on small screens */
  padding-bottom: 1rem;
}
.highlight-row::-webkit-scrollbar {
  height: 8px;
}
.highlight-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Card Styling */
.highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 0 0 220px;   /* fixed width per card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.highlight-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: #111;
}

.highlight-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Icon Box */
.icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

/* Icon Colors */
.icon.red { background: #e63946; }
.icon.green { background: #2a9d8f; }
.icon.blue { background: #4361ee; }
.icon.purple { background: #9d4edd; }
.icon.orange { background: #ff7600; }



/* scope to this section only to avoid conflicts */
.why-choose { 
  --bg: #f8f9fc; --text:#111; --muted:#555; 
  --card:#fff; --shadow: 0 4px 14px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 24px rgba(0,0,0,.12);
  font-family: Arial, sans-serif; background: var(--bg); color: var(--text);
  padding: 40px 24px; max-width: 1240px; margin: 0 auto;
}
.why-choose * { box-sizing: border-box; }

.why-choose h1{
  text-align:center; font-size:32px; margin:0 0 10px;
}
.why-choose .subtitle{
  text-align:center; font-size:16px; color:var(--muted);
  max-width:720px; margin:0 auto 36px; line-height:1.5;
}

/* Fixed columns so they don't drop one-by-one on wide screens */
.why-choose .grid{
  display:grid; gap:24px;
  grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 1024px){
  .why-choose .grid{ grid-template-columns: repeat(2, 1fr); }
}
/* Mobile */
@media (max-width: 640px){
  .why-choose .grid{ grid-template-columns: 1fr; }
}

.why-choose .card{
  background:var(--card); border-radius:14px; padding:24px;
  box-shadow:var(--shadow); transition:transform .2s ease, box-shadow .2s ease;
}
.why-choose .card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }

.why-choose .icon{
  width:52px; height:52px; border-radius:12px; display:flex;
  align-items:center; justify-content:center; margin-bottom:16px;
}
.why-choose .icon svg{ width:26px; height:26px; fill:#fff; }

.why-choose .title{ font-size:18px; font-weight:700; margin:0 0 10px; }
.why-choose .desc{ font-size:15px; color:var(--muted); line-height:1.45; margin:0 0 16px; }

.why-choose .highlight-box{
  background:#f1f3f7; border-radius:10px; padding:12px; text-align:center;
  font-size:16px; font-weight:700; color:#e53935;
}
.why-choose .highlight-sub{ display:block; font-size:12.5px; color:#7a7f88; margin-top:4px; }

.why-choose .red{ background:#ef4444; }
.why-choose .green{ background:#10b981; }
.why-choose .blue{ background:#2563eb; }
.why-choose .purple{ background:#8b5cf6; }

/* Pricing Section */
.pricing {
  margin: 60px auto;
  max-width: 1240px;
  padding: 0 24px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

@media (max-width: 900px){
  .pricing-grid { grid-template-columns: 1fr; }
}

.p-card {
  padding: 12px 20px;
}
.p-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 12px;
}
.p-icon svg { width: 22px; height: 22px; fill:#fff; }
.p-title { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.p-desc { font-size: 14px; color: #333; margin: 0; line-height: 1.4; }

.pricing .red { background:#fee2e2; color:#b91c1c; }
.pricing .green { background:#d1fae5; color:#065f46; }
.pricing .blue { background:#dbeafe; color:#1e40af; }
.pricing .red svg { fill:#b91c1c; }
.pricing .green svg { fill:#065f46; }
.pricing .blue svg { fill:#1e40af; }

.cta-wrap { margin-top: 32px; }
.cta-btn {
  background:#ef4444; color:#fff; border:none;
  padding:14px 28px; font-size:16px; font-weight:600;
  border-radius:8px; cursor:pointer;
  box-shadow:0 4px 12px rgba(239,68,68,.4);
  transition: background 0.2s ease;
}
.cta-btn:hover { background:#dc2626; }


/* this is for leaders */
/* Scope everything to .leaders to avoid global collisions */
.leaders {
  --text:#0f172a; --muted:#475569; --accent:#e11d48;
  --card:#fff; --soft:#f6f7fb; --shadow:0 6px 18px rgba(2,6,23,.08);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width:1240px; margin:0 auto; padding:40px 24px 64px; color:var(--text);
}
.leaders * { box-sizing:border-box; }
.leaders img { display:block; width:100%; height:auto; }

.leaders__title{ text-align:center; margin:0 0 8px; font-size:clamp(28px,3.4vw,40px); letter-spacing:-.02em; }
.leaders__subtitle{ text-align:center; color:var(--muted); max-width:820px; margin:0 auto 22px; line-height:1.5; }

/* Stats strip */
.leaders__stats{
  display:grid; grid-template-columns:repeat(4,1fr); gap:10px;
  background:#fdeef1; border-radius:16px; padding:18px 20px;
  max-width:920px; margin:0 auto 28px; box-shadow:var(--shadow);
}
.stat{ text-align:center; }
.stat__num{ color:#e11d48; font-weight:800; font-size:20px; margin-bottom:4px; }
.stat__label{ color:#6b7280; font-size:13px; }

/* GRID — fixed columns so cards don't stack unexpectedly */
.leaders__grid{
  display:grid; gap:26px;
  grid-template-columns:repeat(4, 1fr);   /* 3 columns desktop */
}
@media (max-width:1024px){ .leaders__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .leaders__grid{ grid-template-columns:1fr; } }

/* Card */
.speaker{ background:var(--card); border-radius:14px; overflow:hidden; box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease; height: 530px;}
.speaker:hover{ transform:translateY(-3px); box-shadow:0 12px 28px rgba(2,6,23,.12); }

/* Media + hover overlay */
.speaker__media{ position:relative; background:var(--soft); aspect-ratio:16/9;  }
.speaker__media img{ width:100%; height:100%; object-fit:cover;height: 400px; }

.speaker__flag{
  position:absolute; top:10px; right:10px; z-index:2;
  background:#111827; color:#fff; font-size:11px; letter-spacing:.08em;
  padding:4px 6px; border-radius:6px; opacity:.9;
}

.speaker__media .overlay{
  position:absolute; inset:0; z-index:1;
  background:rgba(220,38,38,.95); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:20px;
  opacity:0; transform:translateY(20px);
  transition:opacity .3s ease, transform .3s ease;
}
.speaker__media:hover .overlay{ opacity:1; transform:translateY(0); }
.speaker__media .overlay p{ font-size:14px; line-height:1.5; margin-bottom:14px; }
.linkedin-btn{
  display:inline-block; background:#fff; color:#dc2626; font-weight:700;
  padding:8px 16px; border-radius:6px; text-decoration:none; font-size:14px;
  transition:background .2s, color .2s;
}
.linkedin-btn:hover{ background:#dc2626; color:#fff; border:1px solid #fff; }

/* Body of card */
.speaker__body{ padding:14px 16px 18px; }
.speaker__name{ font-size:16px; margin:0 0 6px; font-weight:800; }
.speaker__role{ color:var(--accent); text-decoration:none; font-size:14px; font-weight:700; }
.speaker__role:hover{ text-decoration:underline; }
.speaker__meta{ font-size:13px; color:#374151; margin:6px 0; }
.speaker__loc{ display:flex; align-items:center; gap:6px; color:#6b7280; font-size:13px; margin-bottom:8px; }
.speaker__loc svg{ width:14px; height:14px; fill:#6b7280; }
.speaker__tags{ font-size:12px; color:#6b7280; line-height:1.45; border-top:1px solid #eef0f3; padding-top:8px; margin-top:8px; }


/* this is for 3day */
#schedule {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
#schedule h2 {
  font-size: 2rem; 
  margin-bottom: 0.5rem;
}
#schedule p {
  margin-bottom: 2rem;
  color: #555;
  font-size: 1rem;
}

/* Toggle Buttons */
.day-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.day-btn {
  padding: 0.8rem 1.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.day-btn:hover {
  background: #f5f5f5;
}
.day-btn.active {
  background: #e63946;
  color: white;
  border-color: #e63946;
}

/* Schedule container */
.day-schedule {
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  position: absolute;
  width: 100%;
  transition: all 0.5s ease; /* fade + slide */
}
.day-schedule.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Session cards */
.session {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.session:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.session .time {
  font-weight: 600;
  color: #555;
  min-width: 110px;
}
.session strong { color: #111; font-size: 1rem; }
.session small { color: #777; }

/* Session type tags */
.tag {
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.tag.keynote { background: #e63946; }
.tag.workshop { background: #2a9d8f; }
.tag.panel { background: #4361ee; }

/* Scoped styles */
.abstracts{
  --text:#0f172a; --muted:#475569; --card:#fff;
  --red:#dc2626; --red-100:#fee2e2; --shadow:0 6px 18px rgba(2,6,23,.08);
  max-width:1240px; margin:0 auto; padding:40px 24px 64px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--text);
}
.abstracts *{ box-sizing:border-box; }

.abstracts__eyebrow{ text-align:center; color:#ef4444; font-weight:700; font-size:12px; letter-spacing:.12em; text-transform:uppercase; margin:0 0 6px; }
.abstracts__title{ text-align:center; margin:0 0 8px; font-size:clamp(28px,3.4vw,40px); letter-spacing:-.02em; }
.abstracts__subtitle{ text-align:center; color:var(--muted); max-width:820px; margin:0 auto 26px; line-height:1.55; }

/* Banner with countdown */
.abstracts__banner{
  background:var(--red);
  color:#fff;
  border-radius:14px;
  padding:18px 18px 22px;
  box-shadow:var(--shadow);
  max-width:980px; margin:0 auto 36px;
}
.banner__label{
  display:flex; align-items:center; gap:10px; font-weight:700; justify-content: center;
}
.banner__label svg{ width:18px; height:18px; }

.countdown{
  margin-top:14px;
  display:flex; gap:12px; flex-wrap:wrap;
  justify-content: center;
}
.cd-box{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(2px);
  padding:10px 16px; border-radius:10px; text-align:center; min-width:88px;
}
.cd-box .num{ display:block; font-size:22px; font-weight:800; line-height:1; }
.cd-box .lbl{ font-size:12px; opacity:.9; }

/* Themes grid */
.abstracts__h3{ text-align:center; margin: 12px 0 18px; font-size:20px; }
.themes{
  display:grid; gap:22px; grid-template-columns:repeat(3,1fr);
}
@media (max-width: 1024px){ .themes{ grid-template-columns:repeat(2,1fr);} }
@media (max-width: 640px){ .themes{ grid-template-columns:1fr; } }

.theme{
  background:var(--card); border-radius:12px; padding:18px;
  box-shadow:var(--shadow); transition:transform .2s ease, box-shadow .2s ease;
}
.theme:hover{ transform:translateY(-3px); box-shadow:0 12px 28px rgba(2,6,23,.12); }

.t-icon{
  width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center; margin-bottom:12px;
}
.t-icon svg{ width:22px; height:22px; }
.t-title{ margin:0 0 8px; font-size:16px; font-weight:800; }
.t-desc{ margin:0; font-size:13px; color:var(--muted); line-height:1.45; }

/* icon colors */
.red{ background:#ef4444; } .green{ background:#10b981; } .purple{ background:#8b5cf6; }
.indigo{ background:#6366f1; } .teal{ background:#14b8a6; } .orange{ background:#f97316; }
.t-icon.red svg, .t-icon.green svg, .t-icon.purple svg, .t-icon.indigo svg, .t-icon.teal svg, .t-icon.orange svg { fill:#fff; }

#session-types {
  max-width: 1000px;
  margin: 2rem auto;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 2rem;
}

#session-types h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
}

/* Flex Grid */
.types-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.type-card {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* Icon Circle */
.type-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 1rem;
  background: rgba(230,57,70,0.1); /* default fallback */
}

/* Different colors for each type */
.type-icon.red { background: rgba(230,57,70,0.15); color: #e63946; }
.type-icon.green { background: rgba(42,157,143,0.15); color: #2a9d8f; }
.type-icon.blue { background: rgba(67,97,238,0.15); color: #4361ee; }

.type-card h4 {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.type-card p {
  font-size: 0.9rem;
  color: #555;
}


/* ===== Layout aligned like screenshot ===== */
.abs-wrap{
  --text:#0f172a; --muted:#64748b; --card:#f8fafc; --white:#fff;
  --red:#e11d48; --red-dark:#be123c; --green:#10b981;
  --ring:#c7d2fe; --shadow:0 8px 22px rgba(2,6,23,.08);

  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);

  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px;

  display: grid;
  grid-template-columns: 1fr 560px;  /* <- fixed form width on right */
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px){
  .abs-wrap{ grid-template-columns: 1fr; gap: 28px; }
}

/* left column */
.abs-left .abs-h2{ font-size: 26px; margin: 6px 0 16px; }

/* steps */
.steps{
  list-style:none; margin:0 0 28px; padding:12px;
  background:#f1f5f9; border-radius:14px;
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
}
.steps li{ display:flex; align-items:center; gap:10px; color:#475569; font-weight:700; }
.steps .dot{
  width:30px; height:30px; border-radius:999px; display:grid; place-items:center;
  background:#e2e8f0; color:#0f172a; font-size:13px;
}
.steps .is-active .dot{ background:#e11d48; color:#fff; }
.steps em{ font-style:normal; color:#9aa3b2; }

/* checks list */
.checks{ list-style:none; margin:0; padding:0; display:grid; gap:18px; }
.checks li{ display:flex; gap:12px; align-items:flex-start; }
.checks .ok{
  width:26px; height:26px; border-radius:999px; display:grid; place-items:center;
  background:#e6f9f2; color:var(--green); font-weight:800; font-size:13px; margin-top:2px;
}
.checks strong{ display:block; margin-bottom:2px; }
.checks p{ margin:0; color:var(--muted); font-size:14px; }

/* right form card */
.abs-card{
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 22px 26px;
}
.card-title{ font-size:24px; margin:4px 0 18px; }

/* form */
form{ display:grid; gap:16px; }
.row.two{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
@media (max-width:600px){ .row.two{ grid-template-columns: 1fr; } }

.field{ display:grid; gap:8px; }
.field > span{ font-size:14px; font-weight:700; color:#1f2937; }
.field b{ color:var(--red); }

input, select, textarea{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:12px 12px;
  background: var(--white);
  font: inherit; color:#0f172a;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder{ color:#9aa5b1; }
input:focus, select:focus, textarea:focus{
  border-color:#6366f1; box-shadow: 0 0 0 3px var(--ring);
}
textarea{ min-height: 130px; resize: vertical; }

/* custom select caret */
.select{ position:relative; }
.select i{ position:absolute; right:12px; top:50%; transform:translateY(-50%); color:#64748b; pointer-events:none; }

/* counter + errors */
.counter{ font-size:12px; color:var(--muted); margin-top:6px; }
.hint{ font-size:13px; color:#6b7280; margin-top:6px; }
.invalid{ border-color: var(--red) !important; }

/* submit */
.submit-btn{
  margin-top: 8px;
  width: 100%;
  background: var(--red);
  border: none; color:#fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 800; font-size: 16px;
  box-shadow: 0 10px 22px rgba(225,29,72,.35);
  cursor: pointer; transition: background .2s ease, transform .05s ease;
}
.submit-btn:hover{ background: var(--red-dark); }
.submit-btn:active{ transform: translateY(1px); }

.btn-container {
  text-align: center;
  margin: 2rem 0;
}

.download-btn {
  display: inline-block;
  background: #e63946;         /* red theme */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.2s;
}

.download-btn:hover {
  background: #c92c3a;   /* darker red on hover */
  transform: translateY(-3px);
}

.download-btn:active {
  transform: translateY(-1px);
}


/* ===== GHC Section (fully scoped) ===== */
.ghc{
  --text:#0f172a; --muted:#64748b; --card:#fff; --soft:#f7f7fb;
  --red:#dc2626; --red-dark:#b91c1c; --ring:#c7d2fe;
  --shadow:0 8px 22px rgba(2,6,23,.08);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  max-width: 1180px; margin: 0 auto; padding: 28px 20px 40px;
}
.ghc *{ box-sizing:border-box; }

/* header */
.ghc-head{ text-align:center; margin-bottom:14px; }
.ghc-head .eyebrow{ text-transform:uppercase; letter-spacing:.14em; font-size:11px; color:#ef4444; margin:0; }
.ghc-head h2{ margin:6px 0 6px; font-size:clamp(26px,3.2vw,36px); letter-spacing:-.02em; }
.ghc-head .sub{ margin:0; color:var(--muted);  }

/* banner + countdown (scoped) */
.ghc-banner{
  margin: 20px auto 22px;
  background: var(--red);
  color:#fff;
  border-radius:14px;
  padding: 16px 18px 20px;
  box-shadow: var(--shadow);
  max-width: 980px;
}
.ghc-banner .banner-title{
  display:flex; align-items:center; gap:10px; font-weight:800;justify-content: center;
}
.ghc-banner svg{ width:18px; height:18px; }
.ghc-banner .banner-sub{ opacity:.95; margin-top:4px; font-size:13px; text-align: center; }

/* countdown boxes */
.ghc-countdown{
  margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
}
.ghc-countdown .box{
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
  padding:10px 16px; border-radius:10px; min-width:88px;
  text-align:center;
}
.ghc-countdown .num{ display:block; font-weight:900; font-size:20px; line-height:1; }
.ghc-countdown .lbl{ font-size:12px; }

/* main grid */
.ghc-grid{
  margin-top: 18px;
  display:grid; grid-template-columns: 320px 1fr; gap: 24px; align-items:start;
}
@media (max-width: 980px){ .ghc-grid{ grid-template-columns:1fr; } }

/* pricing card */
.ghc-pricing{
  background:#fcfcfd; border:1px solid #eef0f3; border-radius:14px;
  padding:18px; box-shadow: var(--shadow);
}
.ghc-pricing .badge{
  width:48px;height:48px;border-radius:12px;background:#fee2e2;display:grid;place-items:center;
  margin-bottom:10px;font-size:22px;
}
.price-title{ margin:0; font-size:18px; }
.price{ font-size:34px; font-weight:900; margin:6px 0 2px; color:#111827; }
.price-sub{ color:#6b7280; font-size:12.5px; }
.chip{
  display:inline-block; background:#fde8e8; color:#b91c1c; font-weight:700;
  font-size:12px; padding:6px 10px; border-radius:8px; margin:10px 0 12px;
}
.features{ list-style:none; padding:0; margin:0 0 14px; display:grid; gap:10px; }
.features li{ padding-left:20px; position:relative; font-size:14px; color:#374151; }
.features li::before{
  content:"✓"; position:absolute; left:0; top:0; color:#10b981; font-weight:800;
}
.trust h4{ margin:6px 0 8px; font-size:14px; }
.trust ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.trust li{ font-size:13px; color:#475569; padding-left:18px; position:relative; }
.trust li::before{ content:"🔒"; position:absolute; left:0; }

/* form card */
.ghc-formcard{
  background:#f8fafc; border-radius:14px; box-shadow: var(--shadow);
  padding: 18px 18px 24px;
}
.ghc-formcard h3{ margin:4px 0 14px; font-size:20px; }

#ghc-form{ display:grid; gap:14px; }
#ghc-form .row.two{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
@media (max-width:600px){ #ghc-form .row.two{ grid-template-columns: 1fr; } }

.field{ display:grid; gap:6px; }
.field > span{ font-size:13px; font-weight:700; color:#1f2937; }
.field b{ color:var(--red); }

#ghc-form input, #ghc-form select{
  width:100%; border:1px solid #e5e7eb; border-radius:10px; padding:10px 12px;
  background:#fff; color:#0f172a; font:inherit; outline:none;
  transition: border-color .15s, box-shadow .15s;
}
#ghc-form input::placeholder{ color:#9aa5b1; }
#ghc-form input:focus, #ghc-form select:focus{
  border-color:#6366f1; box-shadow:0 0 0 3px var(--ring);
}

/* select caret */
.select{ position:relative; }
.select i{ position:absolute; right:12px; top:50%; transform:translateY(-50%); color:#64748b; pointer-events:none; }

/* button */
.ghc-btn{
  margin-top:6px; width:100%;
  background:var(--red); color:#fff; border:none; border-radius:10px;
  padding:12px 16px; font-weight:900; font-size:16px; cursor:pointer;
  box-shadow:0 12px 26px rgba(220,38,38,.35);
  transition: background .2s ease, transform .05s ease;
}
.ghc-btn:hover{ background:var(--red-dark); }
.ghc-btn:active{ transform: translateY(1px); }
.hint{ margin-top:6px; font-size:13px; color:var(--muted); }

/* info strip */
.ghc-info{
  margin-top: 22px;
  background:#fff; border-radius:12px; box-shadow: var(--shadow);
  padding:16px; display:grid; gap:18px; grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px){ .ghc-info{ grid-template-columns:1fr; } }
.ghc-info h4{ margin:0 0 6px; font-size:14px; }
.ghc-info .muted{ color:#64748b; font-size:13px; margin:0; }
.ghc-info ul{ margin:0; padding-left:18px; }


/* Two partner layout */
.partners .wrap.two{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;
  justify-content:center;
  max-width:1100px;
  margin:0 auto 24px;
}
@media (max-width:700px){
  .partners .wrap.two{
    grid-template-columns:1fr;
  }
}

/* ===== Partners section (scoped) ===== */
.partners{
  --text:#0f172a; --muted:#64748b; --card:#fff; --soft:#f7f7fb;
  --ring:#c7d2fe; --red:#dc2626; --shadow:0 8px 22px rgba(2,6,23,.08);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  max-width: 1100px; margin: 0 auto; padding: 32px 20px 48px;
  text-align:center;
}
.partners *{ box-sizing:border-box; }

.partners .eyebrow{
  text-transform:uppercase; letter-spacing:.14em; font-size:11px; color:#ef4444; margin:0 0 6px;
}
.partners h2{ margin:0 0 8px; font-size: clamp(26px,3.2vw,36px); letter-spacing:-.02em; }
.partners .subtitle{ margin:0 auto 18px; color:var(--muted); max-width:740px; }

/* tier headings */
.partners .tier{ margin:18px 0 10px; font-size:14px; color:#6b7280; }
.partners .tier span{ color:#111827; font-weight:800; }

/* grids */
.partners .wrap{
  display:grid; gap:18px; grid-template-columns: repeat(2, minmax(260px,1fr));
  justify-content:center; margin: 0 auto 18px; max-width: 900px;
}
.partners .wrap.center{ grid-template-columns: 1fr; max-width: 360px; }
.partners .wrap.small{ grid-template-columns: repeat(4, minmax(160px,1fr)); max-width: 1000px; }
@media (max-width: 900px){ .partners .wrap.small{ grid-template-columns: repeat(2, minmax(160px,1fr)); } }

/* partner card */
.partners .p-card{
  background: var(--card);
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 12px;
  display:block;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.partners .p-card img{
  width:100%; height:120px; object-fit:cover; display:block;
  transform: scale(1); transition: transform .25s ease;
  border-radius: 8px;
}
.partners .p-card.big img{ height: 160px; }
.partners .p-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(2,6,23,.14);
  border-color:#e5e7eb;
}
.partners .p-card:hover img{ transform: scale(1.04); }

/* subtle overlay on hover (shows on all; text only visible on big) */
.partners .p-overlay{
  position:absolute; inset:10px; display:grid; place-items:center;
  background: linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.15));
  color:#fff; font-weight:800; border-radius:8px; opacity:0;
  transform: translateY(6px); transition: opacity .2s ease, transform .2s ease;
  font-size:14px;
}
.partners .p-card:hover .p-overlay{ opacity:1; transform: translateY(0); }
.partners .wrap:not(.center) .p-overlay{ /* hide overlay text on smaller cards but keep subtle layer */
  font-size:0;
}

/* CTA box */
.partners .cta{
  margin-top: 24px; background:#fff; border:1px solid #eef0f3; border-radius:14px;
  padding: 18px; box-shadow: var(--shadow); text-align:center;
}
.partners .cta h4{ margin:0 0 8px; font-size:18px; }
.partners .cta p{ margin:0 auto 10px; color:var(--muted); max-width:720px; }
.partners .bullets{ list-style:none; padding:0; margin:0 0 12px; display:flex; gap:12px; flex-wrap:wrap; justify-content:center; color:#6b7280; font-size:13px; }
.partners .cta-btn{
  display:inline-block; background:#ef4444; color:#fff; padding:10px 16px; border-radius:8px;
  font-weight:800; text-decoration:none; box-shadow:0 10px 22px rgba(239,68,68,.35);
  transition: transform .1s ease, background .2s ease;
}
.partners .cta-btn:hover{ background:#dc2626; transform: translateY(-1px); }


/* 
\tftguj
 */
#contact-section {
  padding: 4rem 1rem;
  background: #f9f9fb;
  font-family: 'Poppins', sans-serif;
}
.contact-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left panel */
.contact-info {
  flex: 1;
  min-width: 280px;
}
.contact-info h2 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
  font-weight: 700;
}
.contact-info .tagline {
  color: #e63946;
  font-weight: bold;
  font-size: 0.9rem;
}
.contact-info p {
  color: #555;
  font-size: 0.95rem;
}

.info-box {
  margin: 1.5rem 0;
}
.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
}
.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 18px;
  color: white;
}
.icon-box.red { background: #e63946; }
.icon-box.green { background: #2a9d8f; }
.icon-box.blue { background: #4361ee; }

.social-links {
  margin: 1rem 0;
}
.social-links a {
  margin-right: 10px;
  background: #ddd;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
}
.social-links a:hover { background: #ccc; }

.organizers {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.organizers ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
}
.organizers li { margin: 0.4rem 0; }

/* Right Panel */
.contact-form-container {
  flex: 1;
  min-width: 300px;
}
#contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
#contact-form h3 {
  margin-bottom: 1rem;
}
#contact-form label {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  margin: 0.8rem 0 0.3rem;
  font-weight: 500;
}
#contact-form input, 
#contact-form select, 
#contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
#contact-form input:focus, 
#contact-form select:focus, 
#contact-form textarea:focus {
  outline: none;
  border-color: #e63946;
  box-shadow: 0 0 0 2px rgba(230,57,70,0.15);
}
#charCount {
  font-size: 0.8rem;
  color: #666;
  text-align: right;
}
.btn-submit {
  background: #e63946;
  border: none;
  width: 100%;
  padding: 0.9rem;
  color: #fff;
  font-weight: 600;
  margin-top: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover {
  background: #c92c3a;
}




/* ===== Footer (scoped) ===== */
.site-footer{
  --bg:#0f1b27; --bg2:#0c1620; --text:#d1d9e6; --muted:#94a3b8; --accent:#ef4444;
  --line:#193042; --link:#dbe7ff; --link-h:#ffffff;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
}
.site-footer a{ color: var(--link); text-decoration: none; }
.site-footer a:hover{ color: var(--link-h); }

/* thin red bar on top */
.sf-topbar{ height: 4px; background: var(--accent); }

/* main wrapper */
.sf-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 22px;
  display: grid;
  grid-template-columns: 1.2fr 2fr; /* brand + nav cols */
  gap: 32px;
}
@media (max-width: 900px){
  .sf-wrap{ grid-template-columns: 1fr; }
}

/* brand block */
.sf-logo{ margin: 0 0 8px; color:#ff6b6b; font-weight:900; letter-spacing:.02em; }
.sf-blurb{ margin: 0 0 12px; color: var(--muted); max-width: 520px; line-height: 1.5; }

.sf-social{ display: flex; gap: 10px; }
.sf-social .ico{
  width: 30px; height: 30px; border-radius: 8px;
  display:grid; place-items:center; background: var(--bg2); border:1px solid var(--line);
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.sf-social .ico:hover{ transform: translateY(-2px); background:#132233; border-color:#25465e; }
.sf-social svg{ width: 16px; height: 16px; fill: var(--text); }

/* nav columns */
.sf-cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 24px;
}
.sf-cols h4{
  margin: 2px 0 8px;
  font-size: 14px; color:#e2e8f0; font-weight:800;
}
.sf-cols ul{ list-style: none; padding: 0; margin: 0; display:grid; gap: 8px; }
.sf-cols li a{ color: var(--muted); font-size: 14px; }
.sf-cols li a:hover{ color:#fff; }

/* divider */
.sf-hr{
  border:0; border-top:1px solid var(--line);
  max-width:1200px; margin: 6px auto 0;
}

/* bottom three cols */
.sf-bottom{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px){
  .sf-bottom{ grid-template-columns: 1fr; }
}
.sf-bottom h5{
  margin: 0 0 6px; font-size: 13px; color:#e2e8f0; letter-spacing:.02em;
}
.sf-bottom p{
  margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5;
}

/* legal row */
.sf-legal{
  border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center;
  gap: 12px;
  max-width: 1200px; margin: 0 auto; padding: 12px 22px 18px;
  color: var(--muted); font-size: 12.5px;
}
.sf-legal .builder a{ color:#9fb7ff; }
.sf-legal .builder a:hover{ color:#fff; }





















 