@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kalam:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    :root {
      --blue: #015fb3;
      --blue-dark: #013f7a;
      --blue-deeper: #012d57;
      --blue-light: #e8f1fb;
      --blue-mid: #cde0f7;
      --accent: #015fb3;

      --ink: #0d1b2a;
      --muted: #5a7184;
      --border: #d0dce9;
      --paper: #f5f8fd;
      --white: #ffffff;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }
img{max-width:100%;height:auto;display:block;}
    body {
       font-family: "Poppins", sans-serif;
      background: var(--paper);
      color: var(--ink);
      font-size: 14px;
      line-height: 1.65;
      overflow-x: hidden;
      position: relative;
    }
    /* NAVBAR */
    .navbar-custom {
     padding: 20px 0;
      margin-bottom: 30px;
    }

    .navbar-brand-text {
      font-weight: 700;
      font-size: 17px;
      color: var(--blue);
      letter-spacing: -0.02em;
    }

    .nav-badge {

      font-size: 11px;
      font-weight: 500;
      background: var(--blue-light);
      color: var(--blue);
      border: 1px solid var(--blue-mid);
      padding: 4px 12px;
      border-radius: 100px;
      letter-spacing: 0.03em;
    }

    /* HERO */
    .hero-section {
      background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue) 55%, #0279df 100%);
      position: relative;
      overflow: hidden;
     padding: 0px 0 80px;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.045);
      pointer-events: none;
    }

    .hero-dot-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, .9);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero-eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #fff;
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(1.4)
      }
    }

    .hero-title {
      font-weight: 700;
      font-size: clamp(32px, 5.5vw, 55px);
      line-height: 1.07;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 22px;
    }

    .hero-title .highlight {
      color: #fff;
    }

    .hero-subtitle {
      font-size: 17px;
      color: rgba(255, 255, 255, .72);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 36px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 36px;
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: rgba(255, 255, 255, .75);
      font-weight: 500;
    }

    .hero-meta-item i {
      color: #fff;
      font-size: 15px;
    }

    .btn-hero-primary {
      background: #fff;
      color: var(--blue);
      font-weight: 700;
      font-size: 14px;
      padding: 14px 32px;
      border-radius: 10px;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    }

    .btn-hero-primary:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-hero-ghost {
      background: rgba(255, 255, 255, .1);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      padding: 14px 28px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .25);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
    }

    .btn-hero-ghost:hover {
      background: rgba(255, 255, 255, .18);
      color: #fff;
      transform: translateY(-2px);
    }

    /* HERO CARD */
    .hero-card {
      background: rgba(255, 255, 255, .1);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 20px;
      padding: 25px 32px 32px 32px;
      color: #fff;
    }

    .hero-card-title {
      font-size: 25px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      line-height: normal;
      margin-bottom: 15px
    }

    .hero-stat-row {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hero-stat-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .07);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .hero-stat-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
    }

    .hero-stat-val {
      font-weight: 700;
      font-size: 20px;
      line-height: 1;
      color: #fff;
    }

    .hero-stat-desc {
      font-size: 12px;
      color: #fff;
      line-height: 1.4;
      margin-top: 2px;
    }

    /* STATS STRIP */
    .stats-strip {
      background: var(--white);
          padding: 88px 0;
    }

    .stats-strip .inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .stat-block {
      padding: 36px 28px;
      border: 1px solid var(--border);
      text-align: center;
      transition: background .18s;
      border-radius: 12px;
    }

  
    .stat-block:hover {
      background: var(--blue-light);
    }

    .stat-num {
      font-weight: 700;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .stat-num sup {
      font-size: .55em;
      vertical-align: super;
      color: var(--accent);
    }

    .stat-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      max-width: 160px;
      margin: 0 auto;
    }

    /* SECTION */
    .sec-label {

      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      align-items: center;
      justify-content: center;
    }

    .sec-label::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
    }

    .sec-title {
      font-weight: 700;
      font-size: clamp(24px, 3.2vw, 38px);
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--ink);
    }

    .sec-body {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 1000px;
      margin: 0 auto;
    }

    /* LEARN CARDS */
    .learn-section {
      padding: 88px 0;
    }

    .learn-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      height: 100%;
      transition: all .22s;
      position: relative;
      overflow: hidden;
    }

    .learn-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--accent2));
      opacity: 0;
      transition: opacity .22s;
    }

    .learn-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(1, 95, 179, .12);
      border-color: var(--blue-mid);
    }

    .learn-card:hover::after {
      opacity: 1;
    }

    .learn-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 18px;
      transition: background .22s;
    }

    .learn-card:hover .learn-icon-wrap {
      background: var(--blue);
      fill: #fff;
    }

    .learn-card:hover .learn-icon-wrap svg {
      fill: #fff;
    }

    .learn-card-title {
      font-weight: 700;
      font-size: 15.5px;
      color: var(--ink);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .learn-card-body {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* AGENDA */
    .agenda-section {
      background: var(--blue-deeper);
      padding: 88px 0;
      position: relative;
      overflow: hidden;
    }

    .agenda-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .025);
      transform: translate(30%, -40%);
      pointer-events: none;
    }

    .agenda-section .sec-label {
      color: #fff;
    }

    .agenda-section .sec-label::before {
      background: #fff;
    }

    .agenda-section .sec-title {
      color: #fff;
    }

    .agenda-section .sec-body {
      color: rgba(255, 255, 255, .55);
      max-width: 480px;
    }

    .timeline {
      position: relative;
      padding-left: 16px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 17px;
      top: 24px;
      bottom: 24px;
      width: 1px;
      background: rgba(255, 255, 255, .12);
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 37px 1fr;
      gap: 20px;
      align-items: start;
      padding: 22px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .timeline-item:last-child {
      border-bottom: none;
    }

    .timeline-time {

      font-size: 12px;
      font-weight: 500;
      color: #fff;
      text-align: right;
      padding-top: 3px;
      letter-spacing: 0.04em;
    }

    .timeline-body {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
      padding: 18px 22px;
      transition: background .18s;
    }

    .timeline-body:hover {
      background: rgba(255, 255, 255, .09);
    }

    .timeline-title {
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      margin-bottom: 5px;
    }

    .timeline-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.6;
    }

    /* SPEAKERS */
    .speakers-section {
      padding: 88px 0;
      background: var(--white);
    }

    .speaker-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      background: var(--white);
      text-align: center;
      transition: all .22s;
      height: 100%;
          overflow: hidden;
    }

    .speaker-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(1, 95, 179, .11);
      border-color: var(--blue-mid);
    }
.speaker-body{padding: 28px 20px;}

    .speaker-name {
      font-weight: 700;
      font-size: 15.5px;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .speaker-role {

      font-size: 11px;
      color: var(--blue);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--blue-light);
      padding: 3px 10px;
      border-radius: 100px;
      display: inline-block;
    }

    /* AUDIENCE */
    .audience-section {
      padding: 88px 0;
      background: linear-gradient(135deg, var(--blue-light) 0%, #eaf3ff 100%);
    }

    .role-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--blue-mid);
      background: #fff;
      color: var(--ink);
      font-weight: 600;
      font-size: 13.5px;
      padding: 9px 18px;
      border-radius: 100px;
      transition: all .18s;
      cursor: default;
    }

    .role-chip i {
      font-size: 14px;
      color: var(--blue);
    }

    .role-chip:hover {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue);
    }

    .role-chip:hover i {
      color: #fff;
    }

    .audience-note-box {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px 24px;
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #0279df 100%);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .cta-title {
      font-weight: 700;
      font-size: clamp(30px, 4.5vw, 50px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 16px;
    }

    .cta-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, .65);
      line-height: 1.7;
    }

    .cta-box {
      background: rgba(255, 255, 255, .1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 20px;
      padding: 36px 32px;
      text-align: center;
    }

    .cta-box .free-badge {

      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid #fff;
      padding: 4px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
      display: inline-block;
    }

    .cta-box h4 {
      font-weight: 700;
      font-size: 22px;
      color: #fff;
      margin-bottom: 6px;
    }

    .cta-box p {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 24px;
    }

    .btn-cta {
      background: #fff;
      color: var(--blue);
      font-weight: 700;
      font-size: 14px;
      padding: 14px 32px;
      border-radius: 10px;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      justify-content: center;
      transition: all .2s;
      margin-bottom: 12px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    }

    .btn-cta:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-share {
      background: transparent;
      color: rgba(255, 255, 255, .7);
      font-weight: 600;
      font-size: 13px;
      padding: 10px 20px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .2);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: 100%;
      justify-content: center;
      transition: all .2s;
    }

    .btn-share:hover {
      background: rgba(255, 255, 255, .1);
      color: #fff;
    }

    /* FOOTER */
    .footer {
      background: var(--blue-deeper);
      padding: 28px 0;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-brand {
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      letter-spacing: -0.01em;
    }

    .footer-copy {

      font-size: 11px;
      color: rgba(255, 255, 255, .4);
      letter-spacing: 0.05em;
    }

    .footer-share {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .65);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .15s;
    }

    .footer-share:hover {
      color: #fff;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .fade-up {
      animation: fadeUp 0.55s ease both;
    }

    .delay-1 {
      animation-delay: .07s
    }

    .delay-2 {
      animation-delay: .14s
    }

    .delay-3 {
      animation-delay: .21s
    }

    .delay-4 {
      animation-delay: .28s
    }

    .delay-5 {
      animation-delay: .35s
    }

    .delay-6 {
      animation-delay: .42s
    }

    /* RESPONSIVE */
    @media(max-width:991px) {


      .hero-card {
        margin-top: 40px
      }

      .stats-strip .inner {
        grid-template-columns: repeat(2, 1fr)
      }

      .stat-block:nth-child(2) {
        border-right: none
      }

      .stat-block:nth-child(3) {
        border-right: 1px solid var(--border);
        border-top: 1px solid var(--border)
      }

      .stat-block:last-child {
        border-top: 1px solid var(--border)
      }
    }

    @media(max-width:767px) {
      .hero-title {
        font-size: 30px
      }

      .hero-subtitle {
        font-size: 15px
      }

      .timeline::before {
        left: 32px
      }

      .timeline-item {
        grid-template-columns: 64px 1fr
      }

      .cta-box {
        margin-top: 40px
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px
      }
    }

    @media(max-width:575px) {
      .stats-strip .inner {
        grid-template-columns: 1fr 1fr
      }

      .stat-block {
        padding: 24px 16px
      }
    }
    .register-form-wrapper {
    position: relative;
  }

  .register-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(1, 95, 179, 0.12);
    border-radius: 20px;
    padding:32px;
    box-shadow: 
      0 8px 32px rgba(1, 95, 179, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
  }

  .register-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 95, 179, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .form-header {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
  }

  .form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #015fb3;
    background: #e8f1fb;
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
  }

  .form-badge i {
    font-size: 12px;
  }

  .form-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #0d1b2a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }

  .form-subtitle {
    font-size: 13.5px;
    color: #5a7184;
    line-height: 1.5;
  }

  .form-group {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }

  .form-label {
    display: block;
    font-size: 13px;
    color: #0d1b2a;
    margin-bottom: 2px;
  }


  .form-control-custom::placeholder {
    color: #5a7184;
  }


.form-control, .form-select {
    font-size: 13px; padding: 10px; border-radius: 6px; border: 1.5px solid #d0dce9; color: #0d1b2a; transition: all 0.2s ease; 
}
.form-control:focus, .form-select:focus {
    outline: none; box-shadow:none;
}
  .checkbox-label {
    font-size: 13px;
    color: #5a7184;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
  }



  .btn-register {
    width: 100%;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #015fb3 0%, #0279df 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(1, 95, 179, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 30px;
  }

  .btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
    z-index: -1;
  }

  .btn-register:hover::before {
    left: 100%;
  }

  .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(1, 95, 179, 0.35);
    color: #fff;
  }

  .btn-register:active {
    transform: translateY(0);
  }

  .form-success {
    display: none;
    padding: 16px 20px;
    background: #ecf9f0;
    border: 1.5px solid #a8e6d3;
    border-radius: 10px;
    margin-top: 20px;
    animation: slideUp 0.4s ease;
    position: relative;
    z-index: 1;
  }

  .form-success.show {
    display: block;
  }

  .success-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .success-content i {
    font-size: 20px;
    color: #16a85a;
    flex-shrink: 0;
  }

  .success-title {
    font-weight: 700;
    font-size: 13.5px;
    color: #0d1b2a;
    margin-bottom: 2px;
  }

  .success-desc {
    font-size: 12px;
    color: #5a7184;
  }

  .form-error {
    display: none;
    padding: 16px 20px;
    background: #fef1f0;
    border: 1.5px solid #f5bfbc;
    border-radius: 10px;
    margin-top: 20px;
    animation: slideUp 0.4s ease;
    position: relative;
    z-index: 1;
  }

  .form-error.show {
    display: block;
  }

  .error-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .error-content i {
    font-size: 18px;
    color: #d97776;
    flex-shrink: 0;
  }

  .error-text {
    font-size: 12.5px;
    color: #8b4444;
    line-height: 1.5;
  }

  .form-footer-text {
    text-align: center;
    font-size: 11px;
    color: #5a7184;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1;
  }

  .form-footer-text i {
    font-size: 12px;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 991px) {
    .register-form {
      padding: 32px 24px;
    }

    .form-title {
      font-size: 20px;
    }
  }

  @media (max-width: 767px) {
    .register-form {
      margin-top: 40px;
      padding: 28px 20px;
    }

    .form-title {
      font-size: 18px;
    }
  }
