  :root {
    --primary: #0f0663;
    --secondary: #034a66;
    --accent: #ffb800;
    --dark: #0C1763;
    --light: #ffffff;
    --cream: #fff8f0;
    --sage: #8fbc8f;
    --navy: #16213e;
    --peach: #ffd4b8;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Outfit", sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* ───────────────────────────────────────────────
       TOP NAV (shared base)
    ─────────────────────────────────────────────── */
  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 50px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
  }

  .top-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.22);
  }

  .logo {
    font-family: "Crimson Pro", serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--light);
    letter-spacing: -1.5px;
    flex-shrink: 0;
  }

  /* ───────────────────────────────────────────────
       DESKTOP NAV LINKS (hidden on mobile)
    ─────────────────────────────────────────────── */
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .desktop-nav a {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 30px;
    position: relative;
    transition: color 0.25s, background 0.25s;
    letter-spacing: 0.3px;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: left 0.3s, right 0.3s;
  }

  .desktop-nav a:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.08);
  }

  .desktop-nav a:hover::after {
    left: 14px;
    right: 14px;
  }

  /* ───────────────────────────────────────────────
       DESKTOP RIGHT ACTIONS (hidden on mobile)
    ─────────────────────────────────────────────── */
  .desktop-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .btn-outline-custom {
    padding: 9px 22px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: var(--light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.2px;
  }

  .btn-outline-custom:hover {
    background: var(--light);
    border-color: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  }

  .btn-filled-custom {
    padding: 9px 22px;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: var(--navy);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.2px;
  }

  .btn-filled-custom:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.3);
  }

  /* ───────────────────────────────────────────────
       MOBILE NAV ACTIONS (hidden on desktop)
    ─────────────────────────────────────────────── */
  .mobile-actions {
    display: none;
    align-items: center;
    gap: 14px;
  }

  /* Register Now – visible on mobile too */
  .mobile-actions .btn-outline-custom {
    font-size: 13px;
    padding: 8px 18px;
  }

  /* Hamburger */
  .menu-toggle {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
  }

  .menu-line {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  /* Animated X on open */
  .menu-toggle.open .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.open .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ───────────────────────────────────────────────
       OFFCANVAS OVERLAY
    ─────────────────────────────────────────────── */
  .offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 6, 99, 0.55);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    backdrop-filter: blur(6px);
  }

  .offcanvas-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* ───────────────────────────────────────────────
       OFFCANVAS PANEL
    ─────────────────────────────────────────────── */
  .offcanvas-custom {
    position: fixed;
    top: 0;
    right: -110%;
    width: min(400px, 92vw);
    height: 100vh;
    background: #d7d7f9a6;
    z-index: 9999;
    transition: right 0.55s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 80px 44px 50px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(15, 6, 99, 0.18);
    display: flex;
    flex-direction: column;
  }

  .offcanvas-custom.active {
    right: 0;
  }

  /* Decorative top stripe */
  .offcanvas-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  }

  .offcanvas-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    background: var(--navy);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    transition: all 0.3s;
  }

  .offcanvas-close:hover {
    background: var(--primary);
    transform: rotate(90deg) scale(1.1);
  }

  .offcanvas-header {

    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s 0.1s;
  }

  .offcanvas-custom.active .offcanvas-header {
    opacity: 1;
    transform: translateX(0);
  }

  .offcanvas-logo {
    font-family: "Crimson Pro", serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .offcanvas-tagline {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  /* Divider */
  .offcanvas-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    margin-bottom: 28px;
    opacity: 0;
    transition: opacity 0.4s 0.25s;
  }

  .offcanvas-custom.active .offcanvas-divider {
    opacity: 0.2;
  }

  .offcanvas-menu {
    list-style: none;
    margin-bottom: 36px;
    flex: 1;
  }

  .offcanvas-menu li {
    margin-bottom: 2px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.45s;
  }

  .offcanvas-custom.active .offcanvas-menu li {
    opacity: 1;
    transform: translateX(0);
  }

  .offcanvas-custom.active .offcanvas-menu li:nth-child(1) {
    transition-delay: 0.15s;
  }

  .offcanvas-custom.active .offcanvas-menu li:nth-child(2) {
    transition-delay: 0.22s;
  }

  .offcanvas-custom.active .offcanvas-menu li:nth-child(3) {
    transition-delay: 0.29s;
  }

  .offcanvas-custom.active .offcanvas-menu li:nth-child(4) {
    transition-delay: 0.36s;
  }

  .offcanvas-custom.active .offcanvas-menu li:nth-child(5) {
    transition-delay: 0.43s;
  }

  .offcanvas-custom.active .offcanvas-menu li:nth-child(6) {
    transition-delay: 0.50s;
  }

  .offcanvas-menu a {
    font-family: "Crimson Pro", serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s;
  }

  .offcanvas-menu a .link-num {
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    margin-top: 4px;
    min-width: 22px;
  }

  .offcanvas-menu a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
  }

  .offcanvas-menu a:hover::after {
    width: 100%;
  }

  .offcanvas-menu a:hover {
    color: var(--primary);
    padding-left: 6px;
  }

  /* CTA block */
  .offcanvas-cta {
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s 0.55s;
  }

  .offcanvas-custom.active .offcanvas-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .offcanvas-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
  }

  .offcanvas-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 6, 99, 0.3);
  }

  .offcanvas-btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
  }

  .offcanvas-btn-outline:hover {
    background: var(--navy);
    color: white;
    box-shadow: 0 12px 30px rgba(26, 26, 46, 0.2);
  }

  /* ───────────────────────────────────────────────
       RESPONSIVE BREAKPOINTS
    ─────────────────────────────────────────────── */

  /* Desktop: show desktop nav + actions, hide mobile */
  @media (min-width: 1025px) {
    .mobile-actions {
      display: none !important;
    }

    .desktop-nav {
      display: flex;
    }

    .desktop-actions {
      display: flex;
    }
  }

  /* Tablet: hide desktop links, show mobile hamburger */
  @media (max-width: 1024px) {
    .desktop-nav {
      display: none !important;
    }

    .desktop-actions {
      display: none !important;
    }

    .mobile-actions {
      display: flex !important;
    }

    .top-nav {
      padding: 0 20px;
    }
  }

  /* Small mobile tweaks */
  @media (max-width: 480px) {
    .logo {
      font-size: 24px;
    }

    .mobile-actions .btn-outline-custom {
      display: none;
    }

    /* hide register btn on very small, keep hamburger */
  }

  /* Demo page spacer */
  .demo-content {
    padding-top: 100px;
    text-align: center;
    color: var(--navy);
    font-family: "Crimson Pro", serif;
    font-size: 24px;
    padding-bottom: 60px;
    opacity: 0.35;
  }

  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    /* font-family: "Courier Prime", monospace; */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: slideInFromLeft 0.8s ease-out;
    box-shadow: 0 4px 20px rgba(45, 91, 255, 0.1);
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.3);
    }
  }

  .hero-title {
    font-family: "Crimson Pro", serif;
    font-size: clamp(70px, 11vw, 140px);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 25px;
    color: var(--navy);
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
  }

  .hero-title .gradient-text {
    background: linear-gradient(135deg,
        var(--primary) 0%,
        var(--secondary) 50%,
        var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    animation: slideInFromLeft 0.8s ease-out 0.4s both;
  }

  .hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.6;
    animation: slideInFromLeft 0.8s ease-out 0.6s both;
  }

  .hero-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
    animation: slideInFromLeft 0.8s ease-out 0.8s both;
  }

  .meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--navy);
    font-weight: 500;
  }

  .meta-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }

  /* Countdown - Card Style */
  .countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 50px 0;
    animation: fadeInUp 0.8s ease-out 1s both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .countdown-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .countdown-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .countdown-card:hover::before {
    transform: scaleX(1);
  }

  .countdown-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }

  .countdown-value {
    font-family: "Courier Prime", monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 8px;
  }

  .countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 700;
  }

  /* Hero Visual - Collage */
  .hero-visual {
    position: relative;
    height: 650px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
  }

  .visual-card {
    position: absolute;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: white;
    border: 3px solid white;
  }

  .visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .visual-card:hover img {
    transform: scale(1.1);
  }

  .visual-card:hover {
    transform: translateY(-15px) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  }

  .card-1 {
    width: 320px;
    height: 400px;
    top: 0;
    right: 15%;
    transform: rotate(3deg);
    z-index: 3;
  }

  .card-2 {
    width: 280px;
    height: 320px;
    bottom: 80px;
    right: 0;
    transform: rotate(-4deg);
    z-index: 2;
  }

  .card-3 {
    width: 240px;
    height: 280px;
    top: 45%;
    left: 5%;
    transform: rotate(2deg);
    z-index: 4;
  }

  .card-4 {
    width: 200px;
    height: 240px;
    bottom: 0;
    left: 30%;
    transform: rotate(-3deg);
    z-index: 1;
  }

  .card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  /* Content Section */
  .content-section {
    padding: 30px 0;
    position: relative;
  }

  .section-eyebrow {
    font-family: "Courier Prime", monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .section-eyebrow::before {
    content: "";
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }

  .section-title {
    font-family: "Crimson Pro", serif;
    font-size: clamp(45px, 7vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--navy);
  }

  .section-msg-title {
    font-family: "Crimson Pro", serif;
    font-size: clamp(30px, 4vw, 25px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--navy);
  }

  .section-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #555;

    margin-bottom: 30px;
  }

  /* Feature Grid - Masonry */
  .feature-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }

  .feature-box {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }

  .feature-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg,
        rgb(45 91 255 / 20%),
        rgba(255, 107, 157, 0.05));
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.4s;
  }

  .feature-box:hover::after {
    width: 300px;
    height: 300px;
  }

  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }

  .feature-num {
    font-family: "Courier Prime", monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
    position: relative;
    text-align: end;
    z-index: 2;
  }

  .feature-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
  }

  .feature-heading {
    font-family: "Crimson Pro", serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
    position: relative;
    z-index: 2;
  }

  .feature-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    position: relative;
    z-index: 2;
  }

  /* Team Grid */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
  }

  .team-member {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
  }

  .team-member::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
  }

  .team-member:hover::before {
    transform: scaleX(1);
  }

  .team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
  }

  .team-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    transition: transform 0.4s;
  }

  .team-member:hover .team-photo {
    transform: scale(1.05);
  }

  .team-details {
    padding: 30px;
  }

  .team-name {
    font-family: "Crimson Pro", serif;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
  }

  .team-position {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg,
        transparent,
        transparent 35px,
        rgba(255, 255, 255, 0.05) 35px,
        rgba(255, 255, 255, 0.05) 70px);
  }

  .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
  }

  .cta-heading {
    font-family: "Crimson Pro", serif;
    font-size: clamp(42px, 6vw, 20px);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .cta-subheading {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-light-custom {
    padding: 18px 45px;
    background: white;
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-light-custom:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

  .btn-ghost-custom {
    padding: 18px 45px;
    background: transparent;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-ghost-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05) translateY(-3px);
  }

  /* Footer */
  .footer {
    background: var(--navy);
    color: white;
    padding: 50px 0 0px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 3fr 3fr 3fr;
    gap: 30px;
    /* justify-content: center; */
  }

  .footer-brand-section h3 {
    font-family: "Crimson Pro", serif;
    font-size: 38px;
    font-weight: 800;

  }

  .footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;

  }

  .social-icons {
    display: flex;
    gap: 12px;
  }

  .social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
  }

  .social-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-5px);
  }

  .footer-heading {
    font-family: "Crimson Pro", serif;
    font-size: 24px;
    font-weight: 700;
  }

  .footer-heading-h4 {
    font-family: "Crimson Pro", serif;
    font-size: 18px;
    font-weight: 700;
  }

  .footer-list {
    list-style: none;
  }

  .footer-list li {
    margin-bottom: 12px;
  }

  .footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }

  .footer-list a:hover {
    color: white;
    transform: translateX(5px);
  }

  .footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 50px 0 40px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
  }

  @media (max-width: 992px) {
    .feature-masonry {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .feature-masonry {
      grid-template-columns: 1fr;
    }
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .top-nav {
      padding: 20px 25px;
    }

    .offcanvas-custom {
      width: 100%;
      padding: 60px 35px;
    }

    .offcanvas-menu a {
      font-size: 32px;
    }

    .hero {
      padding: 100px 0 60px;
    }

    .hero-title {
      font-size: 55px;
    }

    .countdown-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
      height: auto;
      margin-top: 50px;
    }

    .visual-card {
      position: relative !important;
      width: 100% !important;
      height: 300px !important;
      margin-bottom: 20px;
      transform: none !important;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4 {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
    }

    .feature-masonry {
      grid-template-columns: 1fr;
      justify-content: center;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }

    .nav-actions {
      display: none;
    }
  }


  /* msg & committee */

  @media (min-width: 992px) {
    .col-lg-2 {
      flex: 0 0 20%;
      max-width: 20%;
    }
  }


  /* ==========================
   PAST PRESIDENT SECTION
========================== */

  .past-presidents-section {
    background: #f7faff;
    position: relative;
    overflow: hidden;
  }

  .past-presidents-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 93, 143, .05);
    top: -150px;
    right: -150px;
  }

  .section-badge {
    background: #005D8F;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
  }

  .section-subtitle {
    color: #666;
    max-width: 700px;
    margin: auto;
  }

  .president-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    border: 1px solid rgba(0, 0, 0, .05);
  }

  .president-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
  }

  .president-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 18px 25px;
    position: relative;
  }

  .president-header h4 {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
  }

  .president-header::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 60px;
    height: 4px;
    background: #fff;
    transform: translateY(-50%);
  }

  .president-content {
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
  }

  .president-content img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #eef6fb;
    flex-shrink: 0;
  }

  .president-info h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0C1763;
    margin-bottom: 8px;
  }

  .president-info span {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .president-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
  }

  /* Responsive */

  @media(max-width:768px) {

    .president-content {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .president-content img {
      width: 140px;
      height: 160px;
    }

    .president-header h4 {
      font-size: 18px;
    }

    .president-info h5 {
      font-size: 20px;
    }
  }

  /* Footer Logo */

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
  }

  .footer-logo-text {
    display: flex;
    flex-direction: column;
  }

  .footer-logo-text span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    letter-spacing: 1px;
  }

  .footer-heading {
    margin-bottom: 0;
    line-height: 1.1;
  }

  /* Tablet */
  @media (max-width:768px) {

    .footer-logo img {
      width: 60px;
      height: 60px;
    }

    .footer-heading {
      font-size: 28px;
    }

    .footer-logo-text span {
      font-size: 13px;
    }
  }

  /* Mobile */
  @media (max-width:480px) {

    .footer-logo {
      justify-content: center;
      text-align: center;
      flex-direction: column;
    }

    .footer-logo img {
      width: 55px;
      height: 55px;
    }

    .footer-heading {
      font-size: 24px;
    }
  }

  /* Regstration Page */

  .registration-page {
    padding-top: 60px;
}

.guidelines-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(
        135deg,
        rgba(15,6,99,.95),
        rgba(3,74,102,.95)
    );
    overflow:hidden;
}

.guidelines-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-150px;
    right:-120px;
}

.guidelines-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,184,0,.08);
    bottom:-120px;
    left:-100px;
}

.info-card{
    position:relative;
    z-index:2;
    height:100%;
    padding:40px;
    border-radius:30px;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    transition:.4s ease;
    overflow:hidden;
}

.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.25);
}

.info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        #ffb800,
        #fff
    );
}

.info-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#0f0663;
    font-size:32px;
    margin-bottom:25px;
}

.info-card h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
}

.info-list{
    list-style:none;
    padding:0;
    margin:0;
}

.info-list li{
    color:#fff;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
    position:relative;
    padding-left:35px;
    line-height:1.7;
}

.info-list li:last-child{
    border-bottom:none;
}

.info-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:12px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#ffb800;
    color:#0f0663;
    font-size:13px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.refund-card .info-icon{
    background:#ffb800;
    color:#0f0663;
}

@media(max-width:768px){

    .guidelines-section{
        padding:70px 0;
    }

    .info-card{
        padding:30px;
    }

    .info-card h3{
        font-size:24px;
    }

    .info-icon{
        width:65px;
        height:65px;
        font-size:26px;
    }
}

/* 
.section-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    backdrop-filter:blur(10px);
} */

.pricing-main-title{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
    letter-spacing: 1px;
}

.pricing-subtitle{
    color:rgba(255,255,255,0.85);
    font-size:18px;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* Equal Height Cards */
.pricing-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.pricing-card .card-body{
    flex:1;
}

.table td {
    vertical-align: middle;
}

.table td:last-child {
    white-space: nowrap;
}

.special-letter {
  font-size: 13px;
}

/* Responsive */
@media(max-width:768px){

    .pricing-main-title{
        font-size:32px;
    }

    .pricing-subtitle{
        font-size:15px;
    }
}

.registration-cta-section{
    padding:80px 0;
    background:#f8fbff;
}

.registration-cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:60px 40px;
    border-radius:30px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.registration-cta-box::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(15,6,99,.05);
}

.registration-cta-box::after{
    content:"";
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(3,74,102,.05);
}

.cta-badge{
    display:inline-block;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.registration-cta-box h2{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;
}

.registration-cta-box p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    max-width:700px;
    margin:0 auto 35px;
}

.cta-btn-group{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-register-btn{
    background:linear-gradient(135deg,var(--primary));
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.cta-register-btn:hover{
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(15,6,99,.25);
}

.cta-outline-btn{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:15px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.cta-outline-btn:hover{
    background:var(--primary);
    color:#fff;
}

@media(max-width:768px){

    .registration-cta-box{
        padding:40px 25px;
    }

    .registration-cta-box h2{
        font-size:30px;
    }

    .registration-cta-box p{
        font-size:15px;
    }

    .cta-btn-group{
        flex-direction:column;
    }

    .cta-register-btn,
    .cta-outline-btn{
        width:100%;
    }
}


/* workshops */

.workshop-roadmap {
    position: relative;
    padding-left: 70px;
}

.center-line {
    position: absolute;
    left: 24px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #00e5ff,
        #00a6b8,
        #005d8f
    );
    border-radius: 50px;
}

.workshop-item {
    position: relative;
    margin-bottom: 25px;
}

.pulse-dot {
    position: absolute;
    left: -54px;
    top: 28px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00d4ff;
    z-index: 5;
}

.pulse-dot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    animation: pulse 2s infinite;
}

.workshop-box {
    position: relative;
    overflow: hidden;
    padding: 22px 25px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all .4s ease;
}

.workshop-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
}

.workshop-box:hover::before {
    animation: shine 1s linear;
}

.workshop-box:hover {
    transform: translateX(12px);
    box-shadow: 0 0 30px rgba(0,166,184,.4);
}

.count {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #00d4ff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.workshop-box h4 {
    margin: 0;
    /* color: #fff; */
    font-weight: 700;
    font-size: 22px;
}

.item1 .workshop-box {
    border-left: 5px solid #ff4b4b;
}

.item2 .workshop-box {
    border-left: 5px solid #ff4fd8;
}

.item3 .workshop-box {
    border-left: 5px solid #00cfff;
}

.item4 .workshop-box {
    border-left: 5px solid #ff9d00;
}

.item5 .workshop-box {
    border-left: 5px solid #ffd600;
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes shine {

    from {
        left: -120%;
    }

    to {
        left: 120%;
    }
}

/* Slider */

.workshopSwiper{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.workshopSwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.swiper-pagination-bullet-active{
    background:#00A6B8;
}

/* Floating Animation */

.workshop-card{
    animation:floatCard 4s ease-in-out infinite;
}

.workshop-card:nth-child(2){
    animation-delay:.5s;
}

.workshop-card:nth-child(3){
    animation-delay:1s;
}

.workshop-card:nth-child(4){
    animation-delay:1.5s;
}

.workshop-card:nth-child(5){
    animation-delay:2s;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

/* Responsive */

@media(max-width:991px){

    .workshopSwiper img{
        height:500px;
    }

    .section-title h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .workshop-card{
        margin-left:40px;
    }

    .workshop-card h4{
        font-size:18px;
    }

    .workshopSwiper img{
        height:350px;
    }

    .section-title h2{
        font-size:28px;
    }
}