/* ======== BASE RESET & FONTS ======== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --dark-bg: #0B1120;
    --dark-surface: #1E293B;
    --primary-blue: #176BFF;
    --primary-hover: #D33828;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --text-gray: #94A3B8;
    --bg-light: #FFFFFF;
    --bg-very-light: #F8FAFC;
    --yellow-hlt: #FCD34D;
    --yellow-text: #F59E0B;
    --red-tag: #FCA5A5;
    --green-tag: #86EFAC;
    --border-light: #E2E8F0;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ======== TYPOGRAPHY & UTILITIES ======== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.text-blue {
    color: var(--primary-blue);
}

.text-yellow {
    color: var(--yellow-text);
}

.text-white {
    color: #fff;
}

.text-gray {
    color: var(--text-gray);
}

.text-muted {
    color: var(--text-muted);
}

.text-red {
    color: #DC2626;
}

.bg-white {
    background: var(--bg-light);
}

.bg-very-light {
    background: var(--bg-very-light);
}

.bg-blue {
    background: var(--primary-blue);
}

.dark-theme {
    background-color: var(--dark-bg);
    color: #fff;
}

.py-80 {
    padding: 80px 0;
}

.py-5 {
    padding: 3rem 0;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.w-100 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.text-highlight {
    color: var(--yellow-hlt);
}

/* Fallback */
.text-highlight {
    background: linear-gradient(90deg, #FDE047 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* ======== BUTTONS ======== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-main);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary-blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-transparent {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: #fff;
    color: var(--primary-blue);
}

.btn-white:hover {
    background: #f8fafc;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ======== NAVBAR ======== */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #fff;
}

.logo img {
    height: 35px;
}

/* ======== HERO SECTION ======== */
.hero-section.custom-hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    background: #0B101A;
}

.custom-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border: none;
    padding-top: 15px;
}

.custom-nav .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #E2E8F0;
    transition: 0.3s;
    text-transform: capitalize;
}

.custom-nav .nav-links a:hover {
    color: #fff;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: url('../image/training/t4.png') center right/cover no-repeat;
    z-index: 1;
    opacity: 0.5;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0B101A 40%, rgba(11, 16, 26, 0.85) 60%, transparent 100%);
    z-index: 2;
}

.custom-hero .hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* VIDEO CARD EXACT REPLICA */
/* VERTICAL VIDEO CARD (9:16) */
.video-overlay-card {
    position: relative;
    width: 280px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vo-bg-blue {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1D4ED8 0%, #002277 100%);
    z-index: 1;
}

.vo-person-img {
    position: absolute;
    bottom: 0;
    left: -10px;
    height: 105%;
    width: auto;
    max-width: 55%;
    object-fit: cover;
    z-index: 3;
    filter: drop-shadow(5px 0 10px rgba(0, 0, 0, 0.3));
}

.vo-content {
    position: absolute;
    bottom: 80px;
    right: 20px;
    z-index: 4;
    text-align: right;
    width: 90%;
}

.vo-play {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.vo-play:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.05);
}

.vo-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vo-name span {
    background: #176BFF;
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ======== MARQUEE ======== */
.marquee-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
}

.marquee-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: scroll-left 25s linear infinite;
}

.marquee-track img {
    height: 40px;
    display: inline-block;
    margin: 0 40px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ======== WHAT'S STOPPING YOU ======== */
.stopping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stopping-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-dark {
    background: #1E293B;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-blue-gradient {
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
    color: #fff;
}

.stopping-img {
    height: 280px;
    width: 100%;
}

.stopping-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stopping-body {
    padding: 40px;
    flex: 1;
}

.card-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tag-red {
    background: #FEE2E2;
    color: #991B1B;
}

.tag-green {
    background: #DCFCE7;
    color: #166534;
}

.cross-list li,
.check-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
    align-items: flex-start;
}

.cross-list i,
.check-list i {
    margin-top: 4px;
    font-size: 1.2rem;
}

/* ======== ADVANTAGES ======== */
.adv-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.black-box {
    background: #0B1120;
    border-radius: 16px;
    padding: 32px 24px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.black-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.adv-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.black-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.black-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ======== SUCCESS STORIES ======== */
.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.nav-arrow.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.stories-grid-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.stories-grid-carousel::-webkit-scrollbar {
    display: none;
}

.story-card {
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.s-avatar {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.s-info {
    padding: 20px;
}

.s-info h5 {
    font-size: 1.2rem;
}

.s-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.s-info hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin-bottom: 15px;
}

.hike-badge {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.read-story {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ======== VIDEO SECTION EXPERTS ======== */
.expert-video-box {
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.expert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 40px;
}

.expert-overlay h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.expert-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ======== PROFILES ======== */
.profiles-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.profile-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
}

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

.profile-card:hover img {
    transform: scale(1.05);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
}

.profile-overlay h5 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.profile-overlay p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ======== SYLLABUS SECTION ======== */
.syllabus-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.syllabus-tabs {
    flex: 0.3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sys-tab {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.3s;
}

.sys-tab small {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.sys-tab.active {
    background: #1E293B;
    border-color: var(--primary-blue);
    color: #fff;
}

.syllabus-content {
    flex: 0.7;
}

.syl-card-box {
    background: #1E293B;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.curriculum-list .c-item {
    margin-bottom: 20px;
}

.c-item h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.c-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.tools-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tool-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%);
}

/* ======== AI MASTERS STATS ======== */
.masters-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.masters-img {
    flex: 0.5;
    border-radius: 20px;
    overflow: hidden;
}

.masters-stats {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.master-stat-card {
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.master-stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.master-stat-card p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ======== CAREER OUTCOMES ======== */
.outcomes-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.outcome-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.out-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.transition-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-very-light);
    padding: 15px;
    border-radius: 8px;
}

.transition-box small {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.transition-box p {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 2px;
}

/* ======== HIRING PARTNERS ======== */
.hp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hp-box {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.hp-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.hp-logos img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.hp-logos img:hover {
    filter: none;
    opacity: 1;
}

/* ======== TESTIMONIALS ======== */
.test-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card {
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.t-head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-head img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.t-head h5 {
    font-size: 1.1rem;
}

/* ======== INSTITUTE & GALLERY ======== */
.inst-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.inst-img {
    flex: 0.5;
    border-radius: 16px;
    overflow: hidden;
}

.inst-info {
    flex: 0.5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* ======== APPLY FORM SECTION ======== */
.apply-flex {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.apply-left {
    flex: 0.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apply-right {
    flex: 0.6;
}

.p-30 {
    padding: 40px;
}

.radius-12 {
    border-radius: 16px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.fw-bold {
    font-weight: 600;
}

.text-lg {
    font-size: 1.1rem;
}

.border-0 {
    border: none !important;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 991px) {

    .hero-container,
    .stopping-grid,
    .stopping-grid-new,
    .syllabus-flex,
    .masters-flex,
    .apply-flex,
    .inst-flex {
        flex-direction: column;
    }

    .hero-media {
        margin-top: 40px;
        justify-content: center;
    }

    .stopping-img {
        height: 200px;
    }

    .adv-grid-4,
    .profiles-grid-4,
    .outcomes-grid-4,
    .gallery-grid,
    .profiles-grid-3,
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-grid-2,
    .test-grid-3 {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hp-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .campus-images {
        flex-direction: column;
        align-items: center;
    }

    .campus-images img {
        width: 100% !important;
        height: auto !important;
    }

    .nav-links,
    .nav-btn {
        display: none;
        /* simple mobile nav hide for now */
    }

    .stories-grid-carousel {
        grid-template-columns: 1fr !important;
    }

    .projects-grid {
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .adv-grid-4,
    .profiles-grid-4,
    .outcomes-grid-4,
    .gallery-grid,
    .profiles-grid-3,
    .mentors-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr !important;
    }

    .hp-grid-new {
        grid-template-columns: 1fr !important;
    }

    .expert-video-section>div>div {
        flex-direction: column;
    }
}

/* Extracted from Navbar & Hero */
.nav-container {
    padding: 10px 20px;
}

.logo {
    gap: 10px;
}

.logo-img {
    height: 60px;
}

.logo-text {
    color: white;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.5rem;
    letter-spacing: 1.2px;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.nav-btn .btn {
    background: white;
    color: #1e293b;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.hero-container {
    align-items: flex-start;
}

.hero-content {
    flex: 1.1;
    padding-top: 20px;
}

.hero-tagline {
    letter-spacing: 2px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-legacy {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 95%;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-stats-alert {
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-apply {
    background: #EA4335;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-download {
    background: transparent;
    border: none;
    color: white;
    padding: 14px 10px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
}

.btn-download i {
    margin-right: 8px;
}

.hero-footer {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-media {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats-row {
    margin-top: 30px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.hs-item h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: white;
}

.hs-item p {
    font-size: 0.65rem;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 600;
    color: white;
}

.hero-stats-subtext {
    color: white;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    opacity: 0.5;
}

/* Marquee Section */
.marquee-section .record-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #94A3B8;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.marquee-section .section-title {
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 3rem;
}

.marquee-wrapper {
    padding: 10px 0;
    margin-top: 30px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.marquee-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    z-index: 2;
}

.marquee-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, white, transparent);
    z-index: 2;
}

.marquee-logos-track {
    display: flex;
    gap: 50px;
    align-items: center;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.marquee-logos-track img {
    height: 75px;
    object-fit: contain;
}

.marquee-section .marquee-footer {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

/* Stopping You Section */
.stopping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 20px;
}

.stopping-title {
    font-size: 2.2rem;
    max-width: 600px;
    color: #0F172A;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

.btn-see-how {
    background: #EA4335;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stopping-grid-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}

.stopping-card-left {
    flex: 0.4;
    min-width: 300px;
    background: url("../image/training/train4.png") center/cover;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.scl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.scl-title {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 2rem;
    color: white;
    font-weight: 700;
    max-width: 250px;
    line-height: 1.2;
}

.scl-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.scl-content p:first-child {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.scl-content p:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.stopping-card-right {
    flex: 0.6;
    min-width: 300px;
    background: linear-gradient(135deg, #0A43B8 0%, #002277 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.scr-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.scr-content {
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scr-header-box {
    max-width: 70%;
}

.scr-header-box h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scr-header-box h2 {
    font-size: 3rem;
    line-height: 1.1;
    color: #FFD700;
    font-weight: 800;
    margin-bottom: 1rem;
}

.scr-header-box h3:last-child {
    margin-bottom: 0;
}

.scr-list-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 80%;
}

.scr-list {
    color: white;
    padding-left: 20px;
    font-weight: 500;
    list-style-type: disc;
}

.scr-list li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.scr-list li:last-child {
    margin-bottom: 0;
}

.scr-person {
    position: absolute;
    right: -50px;
    bottom: 0;
    height: 70%;
    object-fit: contain;
    z-index: 1;
    border-radius: 10px;
}


/* Projects Section */
.projects-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #94A3B8;
    font-weight: 700;
}

.projects-title {
    font-size: 2.5rem;
    color: #1E293B;
}

.projects-desc {
    color: #475569;
    font-size: 1.05rem;
}

.carousel-container {
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #F1F5F9;
    color: #475569;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn-prev {
    left: -20px;
}

.carousel-btn-next {
    right: -20px;
}

.projects-grid {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.project-card {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(to bottom, #001144, #0044CC);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    border: 1px solid #1E3A8A;
    text-align: left;
}

.project-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.project-h4-light {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.project-h4-bold {
    font-weight: 700;
    color: #FFD700;
    font-size: 1.8rem;
    line-height: 1.1;
}

.project-h4-sm {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.1;
    margin-top: 5px;
    color: white;
}

.project-image {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 55%;
    object-fit: cover;
    object-position: top;
    z-index: 2;
    border-radius: 50% 50% 0 0;
    border: 2px solid white;
    border-bottom: none;
}

.project-play-btn {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 3;
    cursor: pointer;
}

/* Success Stories */
.stories-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #F59E0B;
    font-weight: 700;
}

.stories-title {
    font-size: 2.2rem;
    color: #1E293B;
    max-width: 500px;
    line-height: 1.2;
    font-weight: 600;
}

.stories-desc {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 20px;
}

.nav-arrow {
    background: #F8FAFC;
    border: none;
    color: #475569;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 10px;
}

.nav-arrow:hover {
    background: #E2E8F0;
}

.stories-grid-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.story-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.story-quote {
    color: #176BFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.story-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 65%;
    z-index: 2;
    position: relative;
}

.story-student-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
}

.story-student-img-alt {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 60%;
    height: 50%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
}

.story-info-light {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.story-info-dark {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #176BFF;
    padding: 15px 20px;
    border-radius: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(23, 107, 255, 0.3);
}

.story-name-light {
    color: #0F172A;
    font-size: 1rem;
    margin-bottom: 2px;
}

.story-role-light {
    color: #94A3B8;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.story-name-dark {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 2px;
}

.story-role-dark {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.story-logo-dark {
    height: 15px;
    filter: brightness(0) invert(1);
}

.story-logo-light {
    height: 15px;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
}

.story-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 120px;
    background: linear-gradient(to right, white 50%, transparent);
    z-index: 1;
}

.btn-more-stories {
    background: #EA4335;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Outcomes Section */
.outcomes-wrapper {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.outcomes-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #94A3B8;
    font-weight: 700;
}

.outcomes-title {
    font-size: 2.2rem;
    color: #1E293B;
    font-weight: 600;
}

.outcomes-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
    text-align: left;
    flex-wrap: wrap;
}

.outcomes-left-card {
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A1A 0%, #171E36 100%);
    border: 1px solid #2D3748;
    min-height: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.outcomes-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: luminosity;
}

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

.outcomes-subtitle {
    color: white;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 5px;
    opacity: 0.9;
}

.outcomes-main-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.outcomes-badge {
    background: #176BFF;
    color: white;
    display: inline-block;
    padding: 4px 16px;
    font-weight: 700;
    font-size: 1.1rem;
}

.outcomes-stats-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-radius: 8px;
}

.outcomes-stat-item {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.outcomes-stat-item:last-child {
    border-right: none;
}

.outcomes-stat-val {
    color: white;
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
}

.outcomes-stat-label {
    color: #94A3B8;
    font-size: 0.8rem;
    margin: 0;
    margin-top: 5px;
}

.outcomes-yt-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
    background: red;
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}



/* Expert Video - Right Card */
.outcomes-right-card {
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: #0B101A;
    min-height: 400px;
}

.outcomes-person {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 90%;
    object-fit: cover;
    object-position: top;
    opacity: 1;
}

.outcomes-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.outcomes-quote-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
}

.outcomes-quote-icon {
    color: rgba(255, 255, 255, 0.1);
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
}

.outcomes-quote-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.outcomes-quote-author {
    color: #94A3B8;
    font-size: 0.95rem;
    text-align: right;
}

.outcomes-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 30px;
    z-index: 3;
    filter: brightness(0) invert(1) opacity(0.5);
}

/* Floating Navigation Pill */
.floating-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    align-items: center;
    border: 1px solid #E2E8F0;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 90vw;
}

.fn-item {
    padding: 8px 16px;
    border-radius: 100px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.fn-item:hover {
    color: #176BFF;
}

.fn-item.active {
    background: #176BFF;
    color: white;
}

.fn-item.active:hover {
    color: white;
}

/* Tools Section */
.tools-marquee-box {
    background: #F8FAFC;
    padding: 25px 0;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.tools-track img {
    height: 55px;
    filter: none;
    opacity: 1;
    margin: 0 40px;
}

/* Profiles Section */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.profile-title {
    color: #176BFF;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.profile-desc {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-apply-outline {
    background: transparent;
    color: #176BFF;
    border: 2px solid #176BFF;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Mentors Section */
.mentors-bg {
    background: #0B101A;
}

.mentors-section-title {
    font-size: 2.5rem;
    color: white;
}

.mentors-subtitle {
    color: #94A3B8;
    opacity: 0.8;
}

.mentors-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mentor-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1E293B;
}

.mentor-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.mentor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #0B101A, transparent);
    text-align: left;
}

.mentor-name {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.mentor-role {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.mentor-company {
    color: #FFD700;
    font-size: 0.9rem;
}

.mentor-logo {
    height: 20px;
}

/* Syllabus Section */
.syllabus-bg {
    background: #0B101A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.syllabus-title {
    font-size: 2.5rem;
}

.syllabus-flex-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-height: 500px;
}

.syllabus-tabs-wrapper {
    flex: 0.35;
    padding-right: 15px;
    overflow-y: auto;
    max-height: 500px;
}

.syllabus-tab-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sys-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.sys-tab-btn.active {
    background: #176BFF;
    color: white;
    border: none;
}

.sys-tab-mod {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.syllabus-content-wrapper {
    flex: 0.65;
    background: #1E293B;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.s-cont-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.curr-item-title {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.curr-item-desc {
    color: #94A3B8;
    font-size: 0.95rem;
    margin-left: 25px;
}

.tools-heading {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tool-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-size: 0.85rem;
}

.btn-syllabus-download {
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    background: transparent;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* Modern B.Tech Redesign CSS */

/* Screen 1: Syllabus */
.btech-syllabus-section {
    background: #11141E;
    padding: 80px 0;
    color: white;
    font-family: "Inter", sans-serif;
}

.bs-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.bs-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 600px;
    color: white;
}

.bs-buttons {
    display: flex;
    gap: 15px;
}

.bs-btn-dark {
    background: #2A303C;
    border: 1px solid #334155;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-btn-blue {
    background: #EA4335;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.bs-card {
    background: #1E232B;
    border-radius: 12px;
    border: 1px solid #334155;
    overflow: hidden;
}

.bs-tabs-row {
    display: flex;
    border-bottom: 1px solid #334155;
    overflow-x: auto;
}

.bs-tab {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    color: #94A3B8;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    white-space: nowrap;
}

.bs-tab.active {
    color: white;
    border-bottom: 2px solid #176BFF;
}

.bs-content-area {
    padding: 40px;
}

.bs-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bs-year {
    color: #93C5FD;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bs-year::after {
    content: "";
    display: block;
    height: 1px;
    width: 50px;
    background: #334155;
}

.bs-module-title {
    font-size: 2rem;
    color: #60A5FA;
    font-weight: 700;
    margin-bottom: 10px;
}

.bs-module-desc {
    color: #CBD5E1;
    font-size: 1.05rem;
}

.bs-btn-view {
    border: 1px solid #475569;
    background: transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bs-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 35px;
    margin-bottom: 15px;
    display: block;
}

.bs-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bs-skill-pill {
    background: #334155;
    color: #E2E8F0;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Screen 2: Outcomes */
.btech-outcomes-section {
    background: white;
    padding: 80px 0;
    font-family: "Inter", sans-serif;
}

.bo-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #0F172A;
    margin-bottom: 50px;
}

.bo-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bo-left {
    flex: 0.45;
    min-width: 320px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
    width: 100%;
}

.bo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bo-name-tag {
    position: absolute;
    top: 40px;
    left: 40px;
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    z-index: 2;
    line-height: 1;
}

.bo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.bo-role-box {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #0A43B8;
    color: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
}

.bo-role-sub {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.bo-role-main {
    font-size: 1.4rem;
    font-weight: 800;
}

.bo-right {
    flex: 0.55;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.bo-top-row {
    display: flex;
    gap: 20px;
}

.bo-stat-card {
    flex: 1;
    background: #176BFF;
    color: white;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bo-stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.bo-stat-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.bo-mid-row {
    background: #18181B;
    color: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.bo-mid-sub {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #A1A1AA;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bo-mid-main {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FCD34D;
    line-height: 1.1;
}

.bo-bottom-row {
    background: #176BFF;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.bo-bottom-left {
    position: relative;
    z-index: 2;
    width: 40%;
}

.bo-bottom-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.bo-bottom-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
}



/* Screen 3: Apply Form */
.btech-plan-section {
    background: #0B214D;
    padding: 80px 0;
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
}

.bp-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.bp-left {
    flex: 0.55;
    color: white;
}

.bp-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.bp-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bp-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.bp-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #E2E8F0;
    line-height: 1.5;
    font-weight: 500;
}

.bp-list li::before {
    content: "�";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}

.bp-btn {
    background: white;
    color: #176BFF;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.bp-right {
    flex: 0.45;
    position: relative;
}

.bp-img-wrapper {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(to top, rgba(23, 107, 255, 0.2), transparent);
}

.bp-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    border-radius: 12px;
}

/* Screen 4: Success Stories */
.btech-stories-section {
    background: #F8FAFC;
    padding: 80px 0;
    font-family: "Inter", sans-serif;
}

.fts-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1E293B;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.fts-title::before,
.fts-title::after {
    content: "";
    height: 1px;
    width: 100px;
    background: #CBD5E1;
}

.fts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.fts-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #CBD5E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fts-nav-prev {
    left: -50px;
}

.fts-nav-next {
    right: -50px;
}

.fts-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fts-top {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 30px 20px;
    position: relative;
    min-height: 200px;
}

.fts-top-text {
    width: 65%;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.fts-landed {
    color: #2563EB;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.fts-logo {
    height: 25px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.fts-person {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 95%;
    width: 45%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
}

.fts-bottom {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fts-story-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1E293B;
    margin-bottom: 10px;
    line-height: 1.4;
}

.fts-story-desc {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.fts-btn-read {
    background: #F1F5F9;
    color: #0F172A;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.fts-btn-read:hover {
    background: #E2E8F0;
}

/* Screen 5: Campus/Degree */
.btech-degree-section {
    background: #11141E;
    padding: 60px 0 100px;
    font-family: "Inter", sans-serif;
}

.bd-card {
    background: white;
    border-radius: 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
}

.bd-left {
    flex: 0.42;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-img {
    inset: 0;
    width: 100%;
    object-fit: cover;
}

.bd-right {
    flex: 0.58;
    padding: 50px 40px;
}

.bd-tag {
    color: #F97316;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bd-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 15px;
}

.bd-desc {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.bd-desc strong {
    color: #334155;
}

.bd-pills {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.bd-pill {
    background: #3B82F6;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bd-unlock-title {
    color: #475569;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bd-unlock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bd-uc {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px 15px;
}

.bd-uc-title {
    color: #1E293B;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.bd-uc-desc {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.5;
}
