
        :root {
            --primary-color: #0d0400;
            --secondary-color: #fef0e5;
            --text-color: #8f8f8f;
            --accent-color: #ff8500;
            --dark-color: #ff4400;
            --white-color: #ffffff;
            --divider-color: #dfe1de;
            --dark-divider-color: #ffffff33;
            --default-font: "Fustat", sans-serif;
        }

        .our-faqs-content {
            position: sticky;
            top: 20px;
        }

        /* Section with overlay */
        .our-edge-section {
            background: url('../images/bg1.jpg') no-repeat center/cover;
            padding: 100px 0 150px;
            position: relative;
            color: var(--white-color);
        }

        .our-edge-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
        }

        .our-edge-section .container {
            position: relative;
            z-index: 2;
        }

        /* Headings */
        .section-label {
            color: var(--accent-color);
            font-weight: 600;
        }

        .our-edge-section h2 {
            font-size: 42px;
            font-weight: 700;
        }

        .our-edge-section h2 span {
            color: var(--accent-color);
        }

        .subtitle {
            color: var(--text-color);
            margin-bottom: 50px;
        }

        /* Cards Wrapper */
        .edge-cards {
            margin-top: 50px;
        }

        /* Card Design */
        .edge-card {
            background-color: #000000;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.13);
            padding: 40px;
            padding-top: 125px;
            text-align: start;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.4s ease;
        }

        /* Hover Card */
        .edge-card:hover {
            transform: translateY(-10px);
            border-color: transparent;
        }

        /* ICON */
        .edge-card i {
            font-size: 60px;
            color: var(--accent-color);
            display: inline-block;
            transition: transform 0.6s ease;
        }

        /* Rotate Icon */
        .edge-card:hover i {
            transform: rotate(360deg);
        }

        /* Title */
        .edge-card h4 {
            font-size: 21px;
            margin: 30px 0;
            color: var(--white-color);
            position: relative;
            display: inline-block;
            transition: color 0.3s ease;
        }

        /* Animated underline */
        .edge-card h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0%;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.4s ease;
        }

        /* Hover Title */
        .edge-card:hover h4 {
            color: var(--accent-color);
        }

        .edge-card:hover h4::after {
            width: 100%;
        }

        /* Paragraph */
        .edge-card p {
            font-size: 14px;
            color: var(--text-color);
            transition: color 0.3s ease;
        }

        .edge-card:hover p {
            color: #ccc;
        }

        /* Card Number */
        .card-number {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 50px;
            line-height: 1;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.15);
        }

        /* Dot */
        .card-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--accent-color);
            position: absolute;
            top: 40px;
            left: 40px;
        }

        /* Smooth Hover Glow (extra premium feel) */
        .edge-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 30px;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
            opacity: 0;
            transition: 0.4s;
        }

        .edge-card:hover::before {
            opacity: 1;
        }













        /* SECTION */
        .curriculum-section {
            background: var(--secondary-color);
            padding: 80px 0;
        }

        /* CARD */
        .curriculum-card {
            background: var(--white-color);
            border-radius: 25px;
            padding: 30px;
            height: 100%;
            transition: all 0.4s ease;

            position: relative;
            overflow: hidden;
        }

        /* ICON */
        .curriculum-card i {
            font-size: 30px;
            color: var(--accent-color);
            background: linear-gradient(135deg, #fff0e6, #ffe0cc);
            padding: 15px;
            border-radius: 50%;
            display: inline-block;
            margin-bottom: 20px;
            transition: all 0.5s ease;
        }

        /* UNIQUE ICON HOVER (not same rotate) */
        .curriculum-card:hover i {
            transform: translateY(-5px) scale(1.1);
            background: linear-gradient(135deg, var(--accent-color), var(--dark-color));
            color: var(--white-color);
            box-shadow: 0 10px 25px rgba(255, 133, 0, 0.3);
        }

        /* TITLE */
        .curriculum-card h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            transition: 0.3s;
        }

        /* TEXT */
        .curriculum-card p {
            font-size: 14px;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        /* LIST FLEX */
        .curriculum-card ul {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0;
            margin: 0;
        }

        .curriculum-card ul li {
            list-style: none;
            font-size: 12px;
            padding: 6px 10px;
            background: #fff5eb;
            border-radius: 20px;
            color: var(--primary-color);
            position: relative;
            transition: 0.3s;
            border-bottom: 2px solid rgba(255, 133, 0, 0.2);
        }

        /* LIST HOVER UNDERLINE EFFECT */
        .curriculum-card ul li:hover {
            border-bottom: 2px solid var(--accent-color);
            background: #ffe8d6;
        }

        /* CARD HOVER */
        .curriculum-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 50px rgba(255, 133, 0, 0.15);
        }

        /* TOP GLOW LINE */
        .curriculum-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--accent-color), var(--dark-color));
            transition: 0.4s;
        }

        .curriculum-card:hover::before {
            width: 100%;
        }













        /* ══════════════════════════════════
       LOCATION
    ══════════════════════════════════ */
        .loc-section {
            background: var(--secondary-color);
            padding: 110px 0;
        }

        .loc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 52px;
            align-items: start;
        }

        .loc-left h2 {
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1.18;
            margin-bottom: 10px;
        }

        .loc-left p {
            font-size: 15px;
            color: var(--text-color);
            max-width: 480px;
            margin-bottom: 24px;
        }

        .addr-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid var(--divider-color);
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 32px;
            box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
        }

        .addr-badge i {
            color: var(--accent-color);
            font-size: 16px;
        }

        .route-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .route-card {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: #fff;
            border-radius: 16px;
            padding: 20px 22px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
            transition: transform .3s, box-shadow .3s;
        }

        .route-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 32px rgba(0, 0, 0, .1);
        }

        .route-ic {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: linear-gradient(120deg, rgba(255, 133, 0, .15), rgba(255, 68, 0, .08));
            border: 1px solid rgba(255, 133, 0, .2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .route-ic i {
            font-size: 20px;
            color: var(--accent-color);
        }

        .route-body strong {
            display: block;
            font-size: 14px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 4px;
        }

        .route-body p {
            font-size: 13px;
            color: var(--text-color);
            margin: 0;
            line-height: 1.65;
        }

        .loc-right {
            position: sticky;
            top: 100px;
        }

        .map-shell {
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
            position: relative;
        }

        .map-shell iframe {
            width: 100%;
            height: 480px;
            border: 0;
            display: block;
            filter: grayscale(.25) contrast(1.05);
            transition: filter .4s;
        }

        .map-shell:hover iframe {
            filter: grayscale(0);
        }

        .map-float {
            position: absolute;
            bottom: 18px;
            left: 18px;
            background: #fff;
            border-radius: 14px;
            padding: 14px 18px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
            max-width: 240px;
        }

        .map-float strong {
            display: block;
            font-size: 13px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 3px;
        }

        .map-float span {
            font-size: 11px;
            color: var(--text-color);
            line-height: 1.5;
            display: block;
        }

        .map-float a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
            margin-top: 8px;
        }

        .map-float a:hover {
            color: var(--dark-color);
        }

        /* ══════════════════════════════════
       CAREER
    ══════════════════════════════════ */
        .career-section {
            background: var(--primary-color);
            padding: 110px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .career-section::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 800px 600px at 85% 10%, rgba(255, 133, 0, .1) 0%, transparent 55%),
                radial-gradient(ellipse 600px 500px at 5% 90%, rgba(255, 68, 0, .08) 0%, transparent 55%);
        }

        .career-section>.container {
            position: relative;
            z-index: 2;
        }

        .career-top {
            margin-bottom: 52px;
        }

        .career-top h2 {
            font-size: clamp(30px, 4vw, 52px);
            font-weight: 800;
            color: #fff;
            line-height: 1.14;
            margin-bottom: 10px;
        }

        .career-top p {
            font-size: 16px;
            color: rgba(255, 255, 255, .45);
            max-width: 520px;
        }

        /* role cards */
        .roles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 52px;
        }

        .role-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 22px;
            padding: 30px 26px;
            position: relative;
            overflow: hidden;
            transition: border-color .3s, transform .3s;
            cursor: default;
        }

        .role-card::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--dark-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s;
        }

        .role-card:hover {
            border-color: rgba(255, 133, 0, .3);
            transform: translateY(-6px);
        }

        .role-card:hover::before {
            transform: scaleX(1);
        }

        .role-icon-wrap {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: rgba(255, 133, 0, .12);
            border: 1px solid rgba(255, 133, 0, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .role-icon-wrap i {
            font-size: 24px;
            color: var(--accent-color);
        }

        .demand-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 133, 0, .12);
            color: var(--accent-color);
            border: 1px solid rgba(255, 133, 0, .22);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .06em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 100px;
            margin-bottom: 10px;
        }

        .demand-tag i {
            font-size: 11px;
        }

        .role-title {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .role-salary {
            font-size: 21px;
            font-weight: 800;
            background: linear-gradient(120deg, var(--accent-color), var(--dark-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .role-salary small {
            font-size: 12px;
            color: rgba(255, 255, 255, .3);
            -webkit-text-fill-color: rgba(255, 255, 255, .3);
        }

        .role-desc {
            font-size: 12px;
            color: rgba(255, 255, 255, .4);
            line-height: 1.7;
            margin: 0;
        }

        /* companies */
        .co-strip {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 44px;
        }

        .co-strip-head {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .3);
            margin-bottom: 18px;
        }

        .co-strip-head i {
            font-size: 13px;
            color: rgba(255, 133, 0, .6);
        }

        .co-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .co-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .55);
            font-size: 12px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 100px;
            transition: all .25s;
            cursor: default;
        }

        .co-chip i {
            font-size: 12px;
            color: rgba(255, 133, 0, .5);
        }

        .co-chip:hover {
            background: rgba(255, 133, 0, .14);
            border-color: rgba(255, 133, 0, .35);
            color: var(--accent-color);
        }

        .co-chip:hover i {
            color: var(--accent-color);
        }

        /* ── responsive ── */
        @media(max-width:960px) {
            .stat-bar {
                grid-template-columns: repeat(2, 1fr);
            }

            .fees-grid {
                grid-template-columns: 1fr;
            }

            .loc-grid {
                grid-template-columns: 1fr;
            }

            .loc-right {
                position: static;
            }

            .roles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:600px) {
            .stat-bar {
                grid-template-columns: repeat(2, 1fr);
            }

            .roles-grid {
                grid-template-columns: 1fr;
            }

            .price-card,
            .batch-card {
                padding: 28px 22px;
            }
        }
    









 /* ── shared util ── */
    .section-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent-color);
      background: rgba(255, 133, 0, .12);
      border: 1px solid rgba(255, 133, 0, .28);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .section-pill i {
      font-size: 12px;
    }

    .grad-text {
      background: linear-gradient(120deg, var(--accent-color), var(--dark-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .btn-orange {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(120deg, var(--dark-color), var(--accent-color));
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: opacity .25s, transform .2s;
    }

    .btn-orange:hover {
      opacity: .88;
      transform: translateY(-2px);
      color: #fff;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .18);
      font-size: 15px;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 100px;
      text-decoration: none;
      transition: all .25s;
    }

    .btn-ghost:hover {
      background: rgba(255, 133, 0, .18);
      border-color: rgba(255, 133, 0, .4);
      color: var(--accent-color);
    }

    /* ══════════════════════════════════
       FEES & SCHEDULE
    ══════════════════════════════════ */
    .fees-section {
      background: var(--primary-color);
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }

    .fees-section .blob1 {
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 133, 0, .16) 0%, transparent 65%);
      top: -250px;
      right: -200px;
      pointer-events: none;
    }

    .fees-section .blob2 {
      position: absolute;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 68, 0, .1) 0%, transparent 65%);
      bottom: -150px;
      left: -100px;
      pointer-events: none;
    }

    .fees-section>.container {
      position: relative;
      z-index: 2;
    }

    .fees-head {
      text-align: center;
      margin-bottom: 56px;
    }

    .fees-head h2 {
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 800;
      color: #fff;
      line-height: 1.12;
      margin-bottom: 12px;
    }

    .fees-head p {
      color: rgba(255, 255, 255, .5);
      font-size: 16px;
      max-width: 500px;
      margin: 0 auto;
    }

    /* stat bar */
    .stat-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 48px;
    }

    .stat-bar .sc {
      background: rgba(255, 255, 255, .04);
      padding: 30px 20px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .08);
      transition: background .3s;
    }

    .stat-bar .sc:last-child {
      border-right: none;
    }

    .stat-bar .sc:hover {
      background: rgba(255, 133, 0, .1);
    }

    .sc-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      margin: 0 auto 12px;
      background: rgba(255, 133, 0, .15);
      border: 1px solid rgba(255, 133, 0, .25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sc-icon i {
      font-size: 20px;
      color: var(--accent-color);
    }

    .sc-num {
      font-size: 36px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 4px;
    }

    .sc-num span {
      color: var(--accent-color);
    }

    .sc-lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
      font-weight: 600;
      letter-spacing: .04em;
    }

    /* main 2-col grid */
    .fees-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    /* pricing card */
    .price-card {
      background: linear-gradient(150deg, rgba(255, 133, 0, .18), rgba(255, 68, 0, .08));
      border: 1px solid rgba(255, 133, 0, .28);
      border-radius: 24px;
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
    }

    .price-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--dark-color), var(--accent-color));
    }

    .seat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 133, 0, .18);
      color: var(--accent-color);
      border: 1px solid rgba(255, 133, 0, .3);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 13px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .seat-badge i {
      font-size: 12px;
    }

    .orig-price {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .35);
      font-size: 17px;
      text-decoration: line-through;
      margin-bottom: 4px;
    }

    .final-row {
      display: flex;
      align-items: flex-end;
      gap: 14px;
      margin-bottom: 6px;
    }

    .final-price {
      font-size: clamp(48px, 5vw, 68px);
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .final-price sup {
      font-size: 26px;
      font-weight: 700;
      vertical-align: super;
    }

    .off-badge {
      background: linear-gradient(120deg, var(--dark-color), var(--accent-color));
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      padding: 5px 13px;
      border-radius: 100px;
      margin-bottom: 6px;
      align-self: center;
    }

    .fine {
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      margin-bottom: 24px;
    }

    /* emi */
    .emi-box {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 14px;
      padding: 16px 18px;
      margin-bottom: 24px;
    }

    .emi-ic {
      width: 46px;
      height: 46px;
      min-width: 46px;
      border-radius: 12px;
      background: linear-gradient(120deg, var(--dark-color), var(--accent-color));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .emi-ic i {
      font-size: 22px;
      color: #fff;
    }

    .emi-txt strong {
      display: block;
      color: #fff;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 2px;
    }

    .emi-txt small {
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
    }

    /* cert pills */
    .cert-head {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin: 24px 0 12px;
    }

    .cert-head i {
      font-size: 14px;
      color: var(--accent-color);
    }

    .cert-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .cert-p {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .7);
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
      transition: all .25s;
      cursor: default;
    }

    .cert-p:hover {
      background: rgba(255, 133, 0, .2);
      border-color: rgba(255, 133, 0, .4);
      color: var(--accent-color);
    }

    /* batch card */
    .batch-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 24px;
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
    }

    .batch-card h3 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
    }

    .batch-card .bsub {
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      margin-bottom: 24px;
    }

    .batch-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .batch-row {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
      padding: 14px 18px;
      transition: all .25s;
      cursor: default;
    }

    .batch-row:hover {
      background: rgba(255, 133, 0, .1);
      border-color: rgba(255, 133, 0, .3);
    }

    .bdot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--accent-color);
      box-shadow: 0 0 0 4px rgba(255, 133, 0, .2);
    }

    .bdot.wk {
      background: #38bdf8;
      box-shadow: 0 0 0 4px rgba(56, 189, 248, .2);
    }

    .binfo {
      flex: 1;
    }

    .btype {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent-color);
      margin-bottom: 2px;
    }

    .btype.wk {
      color: #38bdf8;
    }

    .bdate {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    .btime {
      font-size: 12px;
      color: rgba(255, 255, 255, .38);
      white-space: nowrap;
    }

    .batch-cta {
      margin-top: 20px;
    }


















        /* HIGHLIGHTS SECTION */
.highlights-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hl-card {
    background: var(--white-color);
    border-radius: 18px;
    padding: 28px 24px 24px;
    border: 1.5px solid #f0ede8;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hl-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--hl-accent);
    border-radius: 18px 18px 0 0;
}

.hl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.hl-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
    color: var(--hl-accent);
}

.hl-value {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.hl-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hl-desc {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 960px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}


 /* ══════════════ LEAD FORM ══════════════ */
        .lead-form-section {
            background: var(--secondary-color);
            padding: 80px 0;
        }

        .lead-form-wrap {
            background: var(--white-color);
            border-radius: 24px;
            padding: 48px 44px;
            box-shadow: 0 8px 48px rgba(0, 0, 0, 0.07);
            max-width: 680px;
            margin: 0 auto;
        }

        .lead-form-wrap h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 6px;
        }

        .lead-form-wrap h2 span {
            color: var(--accent-color);
        }

        .lead-form-wrap .form-sub {
            font-size: 14px;
            color: var(--text-color);
            margin-bottom: 28px;
        }

        .lead-form-wrap .form-group {
            margin-bottom: 16px;
        }

        .lead-form-wrap input[type="text"],
        .lead-form-wrap input[type="tel"],
        .lead-form-wrap input[type="email"] {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid var(--divider-color);
            border-radius: 12px;
            font-family: var(--default-font);
            font-size: 14px;
            color: var(--primary-color);
            outline: none;
            transition: border-color 0.3s;
        }

        .lead-form-wrap input:focus {
            border-color: var(--accent-color);
        }

        .batch-options {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .batch-options label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            padding: 8px 16px;
            border: 1.5px solid var(--divider-color);
            border-radius: 100px;
            transition: all 0.25s;
        }

        .batch-options label:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        .batch-options input[type="checkbox"] {
            accent-color: var(--accent-color);
        }

        .btn-form-submit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-color);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            padding: 15px 32px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            width: 100%;
            justify-content: center;
            transition: background 0.3s;
            font-family: var(--default-font);
        }

        .btn-form-submit:hover {
            background: var(--dark-color);
        }

        .seat-notice {
            text-align: center;
            font-size: 12px;
            color: var(--text-color);
            margin-top: 12px;
        }

        .seat-notice i {
            color: var(--accent-color);
        }