 * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Poppins', sans-serif; color: #222; background: #fff; }

  /* ── NAVBAR ── */
  .navbar {
    background: #ffffff;
    padding: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    max-width:190px;
  }
  .logo img {
    width: 100%;
  }
  .logo-icon svg { width: 28px; height: 28px; }
  .logo-text { line-height: 1.1; }
  .logo-text .brand { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 1px; }
  .logo-text .sub { font-size: 10px; letter-spacing: 3px; color: #ccc; }
  .nav-badges {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
  }
  .nav-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0d1b4b;
    font-size: 15px;
    font-weight: 500;
  }
  .nav-badge svg { width: 18px; height: 18px; opacity: .85; }

  /* ── HERO ── */
  .hero {
    background: #0d1b4b;
    padding: 32px 40px 0;
     display: flex;
    gap: 24px;
    align-items: center;
  }
  .hero-left { padding-bottom: 32px; }
  .hero-left h1 {
    font-size: 39px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .hero-left h1 span { color: #f5c518; }
  .hero-left p {
    color: #ccc;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 360px;
  }
  .event-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 6px;
  }
  .event-meta-item svg { width: 25px; height: 25px; color: #f5c518; }
  .fee-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }
  .fee-tag {
    background: #f5c518;
    color: #0d1b4b;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
  }
  .fee-tag .amount { font-size: 22px; }
  .fee-info { color: #fff; font-size: 14px; font-weight: 600; }
  .fee-info span { color: #f5c518; display: block; font-size: 12px; font-weight: 400; }

  /* Video / Speaker */
  .hero-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a2a5e;
    aspect-ratio: 4/3;
    max-height: 300px;
    min-height: 300px;
  }
  .video-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a5e 0%, #2d4080 50%, #1a2a5e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  .play-btn svg { width: 24px; height: 24px; color: #0d1b4b; margin-left: 4px; }
  .speaker-label {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(90deg, #f5c518, #e6b800);
    padding: 10px 16px;
  }
  .speaker-label .name { font-weight: 700; color: #0d1b4b; font-size: 15px; }
  .speaker-label .role { font-size: 11px; color: #333; margin-top: 2px; }

  /* Register form */
  .reg-form {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    align-self: start;
    max-width: 350px;

  }
  .reg-form h3 {
    text-align: center;
    color: #0d1b4b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .reg-form .sub-h { text-align: center; color: #444; font-size: 12px; margin-bottom: 14px; }
  .reg-form input,
  .reg-form select {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .2s;
    background: #fff;
  }
  .reg-form input:focus,
  .reg-form select:focus { border-color: #0d1b4b; }
  .reg-btn {
    width: 100%;
    background: #f5c518;
    color: #0d1b4b;
    border: none;
    border-radius: 6px;
    padding: 13px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    transition: background .2s;
  }
  .reg-btn:hover { background: #e6b800; }
  .secure-note {
    text-align: center;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  /* ── SECTION GENERIC ── */
  section { padding: 48px 40px; }
  .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #0d1b4b;
    margin-bottom: 32px;
  }

  /* ── PROBLEMS ── */
  .problems { background: #f8f9fc; }
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .problem-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  .problem-card .icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .problem-card .icon-wrap  img{
      width: 100%;
    }
  .problem-card .icon-wrap svg { width: 48px; height: 48px; }
  .problem-card p { 
    font-size: 15px;
    color: #444;
    font-weight: 500;
    line-height: 1.5; 
  }

  /* ── LEARNINGS ── */
  .learnings { background: #fff; }
  .learn-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .learn-card {
    text-align: center;
    padding: 16px 10px;
  }
  .learn-card .icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .learn-card .icon-wrap img {
      width: 100%;
    }
  .learn-card .icon-wrap svg { width: 28px; height: 28px; color: #0d1b4b; }
  .learn-card p {     font-size: 15px;
    color: #444;
    font-weight: 500;
    line-height: 1.5; }

  /* ── SPEAKER ── */
  .speaker-section { background: #f8f9fc; }
  .speaker-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  }
  .speaker-photo {
    width: 250px;
    height:377px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c8d4f5, #8fa8e8);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }
    .speaker-box img{
      width: 100%;
    }
  .speaker-photo svg { width: 120px; height: 140px; }
  .speaker-info .meet { font-size: 16px; color: #888; margin-bottom: 4px; }
  .speaker-info h2 { font-size: 30px; line-height: 1.3; font-weight: 600; color: #0d1b4b; margin-bottom: 2px; }
  .speaker-info .founder { font-size: 14px; color: #555; margin-bottom: 12px; font-weight: 700; }
  .speaker-info p { font-size: 15px; color: #555; line-height: 1.6; max-width: 380px; }
  .stats-box {
   background: #0d1b4b;
    border-radius: 10px;
    min-height: 230px;
    padding: 20px 24px;
    gap: 16px;
    min-width: 240px;
    display: flex;
    align-items: center;
  }
  .stat-item { text-align: center; }
  .stat-item .num { font-size: 27px; font-weight: 600; color: #fff; display: block; }
  .stat-item .lbl { font-size: 12px; color: #ccc; line-height: 1.3; }
  .stat-icon {width: 70px;font-size: 20px; margin:0 auto; }
.stat-icon img{
   width: 100%;
}
  /* ── TESTIMONIALS ── */
  .testimonials { background: #fff; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
  }
  .testi-card {
    background: #f8f9fc;
    border-radius: 10px;
    padding: 22px 15px 25px 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
  }
  .testi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }
  .testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }
  .av1 { background: linear-gradient(135deg,#e8a87c,#c97b4b); }
  .av2 { background: linear-gradient(135deg,#7bafd4,#4a8ab5); }
  .av3 { background: linear-gradient(135deg,#d4a0a0,#b56b6b); }
  .testi-name { font-weight: 700; font-size: 14px; color: #0d1b4b; }
  .testi-role { font-size: 11px; color: #888; }
  .testi-card p { font-size: 15px; color: #555; line-height: 1.6; }
  .dots { display: flex; justify-content: center; gap: 6px; margin-top: 8px; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; }
  .dot.active { background: #0d1b4b; }
.icon-img {
    max-width: 35px;
    position: absolute;
    left: 17px;
    top: 10px;
}
  /* ── CTA BOTTOM ── */
  .cta-section {
    background: #0d1b4b;
    padding: 48px 40px;
    display: flex;

    gap: 32px;
    align-items: center;
  }
  .cta-text{
    text-align: center;
  }
  .cta-text h2 { font-size: 32px; font-weight: 600; color: #fff; line-height: 1.4; margin-bottom: 20px; }
  .cta-text h2 span { color: #f5c518; font-size: 47px;}
  .cta-btn-big {
    background: #f5c518;
    color: #0d1b4b;
    border: none;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 10px;
    transition: background .2s;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
  .cta-btn-big:hover { background: #e6b800; }
  .limited { text-align: center; color: #ccc; font-size: 12px; }
  .cta-image {
   background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
  }
    .cta-image img{
      width: 100%;
    }
  .cta-image svg { width: 220px; height: 160px; }

  /* ── FOOTER BADGES ── */
  .footer-badges {
    background: #fff;
    padding: 18px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
  }
  .footer-badge .live-dot {
    background: #e53935;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
  }
  .footer-badge svg { width: 22px; height: 22px; color: #0d1b4b; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 24px 20px 0; }
    .hero-video { max-height: 220px; }
    .problems-grid { grid-template-columns: repeat(3, 1fr); }
    .learn-grid { grid-template-columns: repeat(3, 1fr); }
    .speaker-box { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-section { grid-template-columns: 1fr; }
    .cta-image { display: none; }
    section { padding: 32px 20px; }
    .navbar { padding: 12px 20px; }
  }