/* FinTech-inspired design system with navy blue, teal, silver, and white */

:root {
    /* FinTech Primary - Navy Blue */
    --bs-primary: #1e3a8a;
    --bs-primary-rgb: 30, 58, 138;
    
    /* FinTech Secondary - Teal */
    --bs-secondary: #0891b2;
    --bs-secondary-rgb: 8, 145, 178;
    
    /* FinTech Accent - Light Teal */
    --bs-teal: #14b8a6;
    --bs-teal-rgb: 20, 184, 166;
    
    /* Custom colors */
    --text-white-90: rgba(255, 255, 255, 0.9);
    --text-white-80: rgba(255, 255, 255, 0.8);
    --text-white-70: rgba(255, 255, 255, 0.7);
    --bg-light-gray: #f8fafc;
    --theme-navy-deep: #132d6b;
    --theme-navy: #1e3a8a;
    --theme-navy-soft: #2956b2;
    --theme-teal: #0891b2;
    --theme-teal-deep: #0f6f87;
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Custom utility classes */
.text-white-90 { color: var(--text-white-90) !important; }
.text-white-80 { color: var(--text-white-80) !important; }
.text-white-70 { color: var(--text-white-70) !important; }
.bg-light-gray { background-color: var(--bg-light-gray) !important; }
.text-teal { color: var(--bs-teal) !important; }

/* Tinted section backgrounds + card shells */
.section-tone {
    position: relative;
    overflow: hidden;
}

.section-tone::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 16%, rgba(var(--bs-primary-rgb), 0.28) 0%, rgba(var(--bs-primary-rgb), 0) 36%),
        radial-gradient(circle at 85% 82%, rgba(var(--bs-secondary-rgb), 0.14) 0%, rgba(var(--bs-secondary-rgb), 0) 40%);
}

.section-tone-about {
    background: linear-gradient(135deg, #142d72 0%, #1e3a8a 100%);
}

.section-tone-campus {
    background: linear-gradient(135deg, #17357d 0%, #244ca4 100%);
}

.section-tone-journey {
    background: linear-gradient(135deg, #122a6a 0%, #1f4395 100%);
}

.section-tone-testimonials {
    background: linear-gradient(135deg, #132e73 0%, #234a9e 100%);
}

.section-tone-cta {
    background: linear-gradient(135deg, #1a3582 0%, #2a57b5 100%);
}

.section-card-shell {
    position: relative;
    border-radius: 1.4rem;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(239, 245, 255, 0.95) 100%);
    box-shadow: 0 1.2rem 2.4rem rgba(9, 20, 51, 0.24);
    padding: clamp(1.1rem, 2vw, 2rem);
    color: #0f214f;
}

.section-card-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0) 36%);
}

.section-card-shell > * {
    position: relative;
    z-index: 1;
}

.section-card-shell-dark {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(150deg, rgba(19, 43, 103, 0.78) 0%, rgba(16, 37, 91, 0.84) 100%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 1rem 2rem rgba(8, 18, 46, 0.35);
}

.section-card-shell .display-5,
.section-card-shell .h2,
.section-card-shell .h3,
.section-card-shell h4,
.section-card-shell h5 {
    color: #10265d;
}

.section-card-shell .text-muted {
    color: #5b6c8a !important;
}

.section-card-shell .card:not(.bg-primary) {
    border-radius: 1rem;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    box-shadow: 0 0.8rem 1.8rem rgba(12, 26, 62, 0.1);
}

.section-card-shell .card:not(.bg-primary):hover {
    transform: translateY(-4px);
    box-shadow: 0 1.1rem 2.1rem rgba(12, 26, 62, 0.16) !important;
}

.section-card-shell .card:not(.bg-primary) .text-primary {
    color: #1e3a8a !important;
}

.section-card-shell .card:not(.bg-primary) .text-muted {
    color: #607293 !important;
}

.section-card-shell .badge.bg-outline-primary {
    color: #1e3a8a;
    border-color: rgba(var(--bs-primary-rgb), 0.42);
    background-color: rgba(var(--bs-primary-rgb), 0.08);
}

.section-card-shell .campus-card {
    border-color: rgba(var(--bs-primary-rgb), 0.22);
}

.section-card-shell .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.section-card-shell .btn-primary:hover {
    background-color: #1b3580;
    border-color: #1b3580;
}

/* Index landing sections (scoped) */
.hero-page {
    background: #061a3d;
    color: #e6eeff;
}

.hero-page .landing-section,
.hero-page .campus-feature,
.hero-page .career-section,
.hero-page .value-section,
.hero-page .cta-banner {
    position: relative;
    padding: 4.6rem 0;
}

.hero-page .landing-section.bg-white {
    background: linear-gradient(180deg, #0a2250 0%, #0b2a5d 100%);
}

.hero-page .landing-section.bg-surface {
    background: linear-gradient(180deg, #0b2556 0%, #102d67 100%);
}

.hero-page .landing-section.bg-white,
.hero-page .landing-section.bg-surface,
.hero-page .campus-feature,
.hero-page .career-section,
.hero-page .value-section,
.hero-page .cta-banner {
    color: #e6eeff;
}

.hero-page .landing-section.bg-white .text-muted,
.hero-page .landing-section.bg-surface .text-muted,
.hero-page .campus-feature .text-muted,
.hero-page .career-section .text-muted,
.hero-page .value-section .text-muted,
.hero-page .cta-banner .text-muted {
    color: rgba(214, 229, 255, 0.78) !important;
}

.hero-page .card.card-navy {
    border-radius: 1rem;
    border: 1px solid rgba(144, 188, 255, 0.26);
    background: linear-gradient(160deg, rgba(15, 47, 104, 0.88) 0%, rgba(12, 35, 82, 0.96) 100%);
    color: #eef5ff;
    box-shadow: 0 0.9rem 1.8rem rgba(2, 12, 34, 0.22);
}

.hero-page .card.card-navy .card-title,
.hero-page .card.card-navy .card-text,
.hero-page .card.card-navy .card-body,
.hero-page .card.card-navy p,
.hero-page .card.card-navy li,
.hero-page .card.card-navy span,
.hero-page .card.card-navy i,
.hero-page .card.card-navy .text-muted,
.hero-page .card.card-navy .text-dark,
.hero-page .card.card-navy .text-primary {
    color: #eef5ff !important;
}

.hero-page .card.card-navy .badge.bg-light {
    background: rgba(229, 239, 255, 0.14) !important;
    color: #f5f9ff !important;
    border: 1px solid rgba(191, 216, 255, 0.28);
}

.hero-page .section-header {
    text-align: center;
    margin-bottom: 2.3rem;
}

.hero-page .section-label {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8dc0ff;
    font-weight: 600;
}

.hero-page .section-label i {
    margin-right: 0.35rem;
}

.hero-page .section-label.light {
    color: #b8d6ff;
}

.hero-page .section-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.18;
    color: #ffffff;
    font-weight: 700;
}

.hero-page .section-title.light {
    color: #f3f7ff;
}

.hero-page .section-subtitle {
    margin: 0.95rem auto 0;
    max-width: 44rem;
    color: rgba(221, 234, 255, 0.8);
    font-size: 1rem;
}

.hero-page .section-subtitle.light {
    color: rgba(230, 240, 255, 0.82);
}

.hero-page .trust-strip {
    background: linear-gradient(180deg, #081f4a 0%, #0a2a5e 100%);
    border-top: 1px solid rgba(141, 178, 255, 0.18);
    border-bottom: 1px solid rgba(141, 178, 255, 0.18);
}

.hero-page .trust-inner {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    flex-wrap: wrap;
    padding: 1.1rem 0;
}

.hero-page .trust-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(208, 225, 255, 0.78);
}

.hero-page .trust-label i {
    margin-right: 0.25rem;
}

.hero-page .trust-divider {
    width: 1px;
    height: 2rem;
    background: rgba(151, 184, 255, 0.26);
}

.hero-page .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
}

.hero-page .trust-item-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #7ec3ff;
}

.hero-page .trust-item-icon {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ed3ff;
    background: rgba(126, 195, 255, 0.14);
    border: 1px solid rgba(143, 194, 255, 0.22);
    font-size: 0.9rem;
}

.hero-page .trust-stars {
    color: #f7d067;
    font-size: 0.95rem;
}

.hero-page .trust-item-text {
    display: block;
    color: #f5f9ff;
    font-weight: 600;
    line-height: 1.1;
}

.hero-page .trust-item-sub {
    display: block;
    color: rgba(210, 228, 255, 0.74);
    font-size: 0.8rem;
}

.hero-page .why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hero-page .why-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1.15rem;
    align-items: stretch;
}

.hero-page .why-sidecards {
    display: grid;
    gap: 1rem;
}

.hero-page .why-mini-card {
    min-height: 100%;
    padding: 1.05rem;
}

.hero-page .why-mini-card .card-icon {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.75rem;
}

.hero-page .why-mini-card .card-title {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.hero-page .why-mini-card .card-text {
    font-size: 0.88rem;
    line-height: 1.52;
}

.hero-page .why-compare-card {
    margin-top: 0;
    padding: 1.1rem 1.1rem 1.1rem;
    border-color: rgba(126, 195, 255, 0.22);
    background: linear-gradient(180deg, rgba(14, 46, 100, 0.94) 0%, rgba(8, 30, 74, 0.98) 100%);
    box-shadow: 0 1rem 2rem rgba(2, 12, 34, 0.18);
}

.hero-page .why-compare-card .video-hero-subtitle {
    max-width: none;
}

.hero-page .why-grid .card.card-navy {
    border-radius: 1rem;
    border: 1px solid rgba(136, 176, 255, 0.26);
    background: linear-gradient(160deg, rgba(15, 47, 104, 0.86) 0%, rgba(12, 35, 82, 0.95) 100%);
    padding: 1.2rem;
    color: #e7efff;
    box-shadow: 0 0.9rem 1.8rem rgba(2, 12, 34, 0.22);
}

.hero-page .card-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 188, 255, 0.18);
    color: #9ed3ff;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.hero-page .card-title {
    color: #ffffff;
    margin-bottom: 0.55rem;
    font-size: 1.02rem;
    font-weight: 700;
}

.hero-page .card-text {
    color: rgba(220, 235, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.58;
}

.hero-page .campus-feature {
    background: linear-gradient(180deg, #0b2a62 0%, #0c2f6f 100%);
}

.hero-page .campus-feature-inner {
    border-radius: 1.1rem;
    border: 1px solid rgba(153, 190, 255, 0.26);
    background: rgba(7, 26, 62, 0.54);
    padding: clamp(1.1rem, 2vw, 2rem);
}

.hero-page .campus-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-page .campus-card {
    border-radius: 0.95rem;
    border: 1px solid rgba(149, 189, 255, 0.28);
    background: rgba(10, 36, 82, 0.84);
    overflow: hidden;
}

.hero-page .campus-card-head {
    padding: 1rem;
    border-bottom: 1px solid rgba(153, 192, 255, 0.2);
}

.hero-page .campus-card-head.gold-accent {
    border-left: 3px solid #f5ca5c;
}

.hero-page .campus-badge {
    display: inline-flex;
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(201, 223, 255, 0.82);
}

.hero-page .campus-card-college {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.08rem;
}

.hero-page .campus-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.hero-page .campus-card-logos {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.hero-page .campus-logo-mark {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.35rem;
    box-shadow: 0 0.45rem 0.95rem rgba(5, 16, 40, 0.18);
    flex-shrink: 0;
}

.hero-page .campus-card-degree {
    color: rgba(211, 229, 255, 0.78);
    font-size: 0.9rem;
}

.hero-page .campus-card-body {
    padding: 1rem;
}

.hero-page .campus-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-page .campus-card-actions .btn {
    flex: 1 1 12rem;
}

.hero-page .shared-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    border: 1px solid rgba(147, 192, 255, 0.35);
    color: #d5e9ff;
    background: rgba(24, 63, 123, 0.55);
}

.hero-page .btn.btn-outline {
    border: 1px solid rgba(199, 223, 255, 0.44);
    color: #ffffff;
    background: transparent;
}

.hero-page .btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.hero-page .info-box {
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
}

.hero-page .dark-info-box {
    display: inline-block;
    max-width: 720px;
    border: 1px solid rgba(156, 193, 255, 0.28);
    border-left: 3px solid #f5ca5c;
    background: rgba(16, 50, 100, 0.56);
    color: rgba(223, 236, 255, 0.84);
}

.hero-page .curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-page .subject-tile {
    --tile-accent: #7ec3ff;
    --tile-glow: rgba(126, 195, 255, 0.34);
    position: relative;
    overflow: hidden;
    border-radius: 0.78rem;
    border: 1px solid rgba(154, 194, 255, 0.28);
    background: rgba(12, 42, 93, 0.74);
    color: #e7f0ff;
    padding: 0.72rem 0.78rem;
    font-size: 0.9rem;
    line-height: 1.45;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.hero-page .subject-tile::before {
    content: "";
    position: absolute;
    inset: -40% -15%;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at center, var(--tile-glow) 0%, rgba(126, 195, 255, 0) 65%);
    transition: opacity 0.24s ease;
}

.hero-page .subject-tile::after {
    content: "";
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    top: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tile-accent) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.7;
}

.hero-page .subject-tile:nth-child(3n+1) {
    --tile-accent: #7ec3ff;
    --tile-glow: rgba(126, 195, 255, 0.38);
}

.hero-page .subject-tile:nth-child(3n+2) {
    --tile-accent: #78e0cb;
    --tile-glow: rgba(120, 224, 203, 0.34);
}

.hero-page .subject-tile:nth-child(3n) {
    --tile-accent: #f6d47b;
    --tile-glow: rgba(246, 212, 123, 0.32);
}

.hero-page .subject-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 220, 255, 0.65);
    background: rgba(15, 53, 114, 0.88);
    box-shadow: 0 0 0 1px rgba(192, 220, 255, 0.24), 0 0 22px var(--tile-glow), 0 0.7rem 1.35rem rgba(5, 18, 47, 0.34);
}

.hero-page .subject-tile:hover::before {
    opacity: 1;
}

.hero-page .subject-tile:hover .subject-tile-dot {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 14px var(--tile-glow);
}

.hero-page .subject-tile-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    display: inline-block;
    background: var(--tile-accent, #7ec3ff);
    margin-right: 0.45rem;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.hero-page .subject-tile-icon {
    margin-right: 0.45rem;
    color: var(--tile-accent, #7ec3ff);
    font-size: 0.92rem;
}

.hero-page .stats-strip {
    background: linear-gradient(180deg, #0a275c 0%, #0a2f6a 100%);
    border-top: 1px solid rgba(152, 192, 255, 0.2);
    border-bottom: 1px solid rgba(152, 192, 255, 0.2);
}

.hero-page .stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    text-align: center;
    padding: 1.2rem 0;
}

.hero-page .strip-stat-num {
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
}

.hero-page .strip-stat-icon {
    display: block;
    color: rgba(184, 213, 255, 0.88);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.hero-page .strip-stat-num.gold {
    color: #f5ca5c;
}

.hero-page .strip-stat-label {
    display: block;
    color: rgba(214, 231, 255, 0.78);
    font-size: 0.8rem;
}

.hero-page .career-section {
    background: linear-gradient(180deg, #0b2a62 0%, #0e3878 100%);
}

.hero-page .career-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-page .career-card {
    border-radius: 0.85rem;
    border: 1px solid rgba(155, 195, 255, 0.25);
    background: rgba(14, 46, 100, 0.78);
    padding: 0.85rem;
}

.hero-page .career-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #9fd2ff;
    background: rgba(120, 186, 255, 0.16);
    border: 1px solid rgba(155, 195, 255, 0.28);
    font-size: 0.95rem;
}

.hero-page .career-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.32rem;
    font-size: 0.96rem;
}

.hero-page .career-sub {
    color: rgba(216, 234, 255, 0.76);
    font-size: 0.83rem;
}

.hero-page .value-section {
    background: linear-gradient(180deg, #0b2455 0%, #0a2c64 100%);
}

.hero-page .value-quote {
    text-align: center;
    color: #f2f7ff;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    line-height: 1.45;
    margin-bottom: 1rem;
}

.hero-page .value-quote .highlight {
    color: #f6d47b;
}

.hero-page .value-note {
    text-align: center;
    color: rgba(219, 236, 255, 0.78);
    max-width: 700px;
    margin: 0 auto 2.2rem;
}

.cta-banner,
.hero-page .cta-banner {
    background: linear-gradient(135deg, var(--theme-navy-deep) 0%, var(--theme-navy) 52%, var(--theme-navy-soft) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.hero-page .cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 82% 78%, rgba(var(--bs-secondary-rgb), 0.16) 0%, rgba(var(--bs-secondary-rgb), 0) 36%);
}

.cta-banner-title,
.hero-page .cta-banner-title {
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-banner-sub,
.hero-page .cta-banner-sub {
    color: rgba(235, 244, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-banner-btns,
.hero-page .cta-banner-btns {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-page .btn.btn-xl {
    padding: 0.82rem 1.5rem;
    font-size: 1rem;
}

.hero-page .fade-up {
    animation: fadeIn 0.55s ease-out both;
}

@media (max-width: 991px) {
    .hero-page .why-grid,
    .hero-page .why-layout,
    .hero-page .curriculum-grid,
    .hero-page .career-grid,
    .hero-page .stats-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-page .campus-feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-page .campus-card-topline {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .hero-page .campus-card-topline {
        flex-direction: column;
    }

    .hero-page .trust-inner {
        gap: 0.55rem;
    }

    .hero-page .trust-divider {
        display: none;
    }

    .hero-page .why-grid,
    .hero-page .why-layout,
    .hero-page .curriculum-grid,
    .hero-page .career-grid,
    .hero-page .stats-strip-inner {
        grid-template-columns: 1fr;
    }

    .hero-page .why-sidecards {
        order: 2;
    }

    .hero-page .landing-section,
    .hero-page .campus-feature,
    .hero-page .career-section,
    .hero-page .value-section,
    .hero-page .cta-banner {
        padding: 3.2rem 0;
    }
}

/* Gradient backgrounds */
.bg-gradient-primary-secondary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

.bg-gradient-teal-blue {
    background: linear-gradient(135deg, var(--bs-teal) 0%, #3b82f6 100%);
}

.bg-gradient-blue-purple {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-circle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-circle-1 {
    width: 8rem;
    height: 8rem;
    top: 25%;
    left: 25%;
}

.hero-circle-2 {
    width: 4rem;
    height: 4rem;
    top: 75%;
    right: 25%;
    animation-delay: 1s;
}

.hero-circle-3 {
    width: 6rem;
    height: 6rem;
    top: 50%;
    right: 33%;
    animation-delay: 0.5s;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.hero-feature {
    padding: 1rem;
}

.hero-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: white;
}

.bg-teal {
    background-color: var(--bs-teal) !important;
}

/* Homepage video hero */
.hero-page .video-hero-section {
    position: relative;
    padding: 7.25rem 0 3rem;
    overflow: hidden;
    background: linear-gradient(180deg, #0a2250 0%, #0b2a5d 100%);
}

.hero-page .video-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.65) 0%, transparent 72%);
}

.video-hero-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: clamp(1rem, 3vw, 2.75rem);
}

.video-hero-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 2.5rem;
}

.video-hero-left {
    border-radius: 1.75rem;
    border: 1px solid rgba(var(--bs-teal-rgb), 0.28);
    background: rgba(3, 19, 40, 0.6);
    backdrop-filter: blur(8px);
    padding: 1.8rem;
    color: white;
}

.video-hero-kicker {
    margin: 0 0 0.75rem;
    color: var(--text-white-80);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.video-hero-title {
    margin: 0;
    font-size: clamp(1.55rem, 2.35vw, 2.25rem);
    line-height: 1.14;
    font-weight: 700;
}

.video-hero-subtitle {
    margin: 0.7rem 0 0;
    color: var(--text-white-80);
    max-width: 34rem;
    font-size: 0.93rem;
}

.video-hero-compare {
    margin-top: 1rem;
    padding: 1rem 1rem 0;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(7, 23, 54, 0.28) 100%);
}

.video-hero-compare-title {
    margin: 0 0 0.2rem;
    color: #f6d47b;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-hero-compare-pills {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.video-hero-compare-table {
    margin-top: 0.95rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 18, 43, 0.36);
}

.compare-table-head {
    display: grid;
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table-head-cell {
    padding: 0.7rem 0.95rem;
    color: rgba(210, 228, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compare-table-row {
    display: grid;
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
}

.compare-table-row + .compare-table-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table-cell {
    padding: 0.85rem 0.95rem;
    color: rgba(230, 240, 255, 0.86);
    font-size: 0.86rem;
    line-height: 1.5;
}

.compare-table-label {
    color: #ffffff;
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.compare-table-row-highlight {
    position: relative;
}

.compare-table-row-highlight .compare-table-label {
    color: #f6d47b;
}

.compare-table-row-highlight .compare-table-cell {
    background: rgba(16, 109, 95, 0.16);
}

.compare-table-row-highlight .compare-table-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f6d47b 0%, #7ee0c5 100%);
}

.compare-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}

.compare-pill i {
    flex-shrink: 0;
    font-size: 0.9rem;
}

.compare-pill small {
    color: inherit;
    opacity: 0.86;
    font-size: 0.76rem;
    font-weight: 500;
}

.compare-pill-negative {
    color: #f5d8d8;
    border: 1px solid rgba(255, 186, 186, 0.22);
    background: rgba(110, 22, 40, 0.28);
}

.compare-pill-positive {
    color: #f8fbff;
    border: 1px solid rgba(143, 220, 198, 0.28);
    background: rgba(16, 109, 95, 0.28);
}

.video-hero-meta {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.video-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
    color: var(--text-white-90);
}

.video-hero-meta i {
    color: var(--bs-teal);
}

.video-hero-tags {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.video-hero-tags span {
    display: inline-block;
    border: 1px solid rgba(var(--bs-teal-rgb), 0.5);
    color: white;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.84rem;
    background-color: rgba(var(--bs-teal-rgb), 0.12);
}

.video-hero-actions {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.video-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.35rem;
    border-radius: 0.85rem;
    color: white;
    background: linear-gradient(135deg, var(--theme-navy-deep) 0%, var(--theme-navy) 100%);
    box-shadow: 0 0.9rem 1.8rem rgba(19, 45, 107, 0.22);
}

.video-hero-btn:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 1rem 1.9rem rgba(19, 45, 107, 0.32);
}

.video-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.2rem;
    color: var(--theme-navy);
    border-radius: 0.85rem;
    border: 1px solid rgba(30, 58, 138, 0.18);
    background: rgba(255, 255, 255, 0.94);
}

.video-hero-btn-outline:hover {
    color: white;
    border-color: var(--theme-navy);
    background-color: var(--theme-navy);
}

.video-hero-proof {
    margin-top: 1.3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 0.95rem;
}

.proof-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.proof-label {
    margin: 0;
    color: var(--text-white-80);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.proof-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.proof-pills span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    font-weight: 500;
    font-size: 0.82rem;
    border-radius: 999px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.08);
}

.video-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-frame {
    position: relative;
    flex: 1;
    height: clamp(280px, 34vw, 390px);
    border-radius: 1.9rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 1.35rem 2.6rem rgba(3, 11, 28, 0.5);
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(3, 11, 28, 0.22) 12%, rgba(3, 11, 28, 0.55) 100%);
    pointer-events: none;
}

.video-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-copy {
    position: absolute;
    top: 1.6rem;
    left: 1.6rem;
    z-index: 2;
    max-width: 72%;
}

.video-overlay-copy span {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(2, 16, 32, 0.82);
    color: white;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.video-overlay-copy p {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 2.5rem);
    line-height: 1.1;
    color: white;
    font-weight: 700;
    text-shadow: 0 0.45rem 1.1rem rgba(1, 7, 20, 0.4);
}

.video-play-link {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 5.3rem;
    height: 5.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.85rem 1.7rem rgba(1, 12, 30, 0.28);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 0;
    cursor: pointer;
}

.video-play-link:hover {
    color: #0f172a;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 1.05rem 1.95rem rgba(1, 12, 30, 0.4);
}

.video-play-link i {
    font-size: 2.05rem;
    margin-left: 0.2rem;
}

.video-frame.is-playing .video-overlay-copy,
.video-frame.is-playing .video-play-link,
.video-frame.is-playing .video-badge {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.video-frame.is-playing::after {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-badge {
    position: absolute;
    left: 1.35rem;
    bottom: 1.35rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(var(--bs-teal-rgb), 0.9);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-badge i {
    font-size: 0.92rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out 0.3s both;
}

/* Campus Cards */
.campus-card {
    transition: all 0.3s ease;
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.campus-card img {
    transition: transform 0.3s ease;
}

.campus-card:hover img {
    transform: scale(1.05);
}

/* CTA Cards */
.cta-card {
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

/* Navigation */
.navbar.fixed-top,
.navbar.sticky-top {
    transition: background-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background-color: transparent !important;
    border-bottom: 1px solid transparent;
}

.navbar.fixed-top.navbar-scrolled,
.navbar.sticky-top.navbar-scrolled {
    background-color: transparent !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.site-logo {
    display: block;
    width: auto;
    max-width: 100%;
}

.site-logo-header {
    height: 80px;
}

.site-logo-footer {
    height: 64px;
}

.navbar-cta-btn {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
}

.navbar-cta-btn:hover,
.navbar-cta-btn:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--theme-navy);
    transform: translateY(-1px);
}

.navbar.fixed-top.navbar-scrolled .navbar-cta-btn,
.navbar.sticky-top.navbar-scrolled .navbar-cta-btn {
    background: linear-gradient(135deg, var(--theme-navy-deep) 0%, var(--theme-navy) 100%);
    border-color: var(--theme-navy);
    color: #ffffff;
    box-shadow: 0 0.8rem 1.5rem rgba(19, 45, 107, 0.18);
}

.navbar.fixed-top.navbar-scrolled .navbar-cta-btn:hover,
.navbar.sticky-top.navbar-scrolled .navbar-cta-btn:hover,
.navbar.fixed-top.navbar-scrolled .navbar-cta-btn:focus,
.navbar.sticky-top.navbar-scrolled .navbar-cta-btn:focus {
    background: linear-gradient(135deg, #102659 0%, #183277 100%);
    border-color: #183277;
    color: #ffffff;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.45rem;
    vertical-align: 0.15em;
}

.navbar-dropdown {
    min-width: 20rem;
    margin-top: 0.8rem;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    background: rgba(6, 22, 48, 0.94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 1.2rem 2.4rem rgba(2, 8, 23, 0.34);
}

.navbar-dropdown .dropdown-item {
    padding: 0.8rem 0.9rem;
    border-radius: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
    white-space: normal;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navbar-dropdown .dropdown-item:hover,
.navbar-dropdown .dropdown-item:focus,
.navbar-dropdown .dropdown-item.active {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.22);
    transform: translateX(2px);
}

.navbar-dropdown .dropdown-divider {
    margin: 0.45rem 0;
    border-top-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 991.98px) {
    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        margin-top: 0.55rem;
        padding: 0.65rem 0.75rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background-color: rgba(var(--bs-primary-rgb), 0.92);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .navbar.fixed-top .navbar-collapse .btn,
    .navbar.sticky-top .navbar-collapse .btn {
        padding: 0.42rem 0.8rem;
        font-size: 0.82rem;
        line-height: 1.2;
    }

    .site-logo-header {
        height: 44px;
    }

    .site-logo-footer {
        height: 52px;
    }

    .navbar-dropdown {
        min-width: 100%;
        margin-top: 0.5rem;
        padding: 0.45rem;
        border-radius: 0.85rem;
        box-shadow: none;
    }

    .navbar-dropdown .dropdown-item {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn {
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0.85rem;
    padding: 0.74rem 1.28rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--theme-navy-deep) 0%, var(--theme-navy) 100%);
    border-color: var(--theme-navy);
    color: #ffffff;
    box-shadow: 0 0.85rem 1.65rem rgba(19, 45, 107, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #102659 0%, #183277 100%);
    border-color: #183277;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, #0f6f87 0%, #0a819c 100%);
    border-color: #0f6f87;
    color: #ffffff;
    box-shadow: 0 0.85rem 1.65rem rgba(10, 98, 120, 0.16);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0b5f74 0%, #0a6f86 100%);
    border-color: #0b5f74;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--theme-navy);
}

.cta-banner-primary {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--theme-navy-deep);
    box-shadow: 0 0.95rem 1.9rem rgba(8, 18, 44, 0.18);
}

.cta-banner-primary:hover,
.cta-banner-primary:focus {
    background: #eef4ff;
    border-color: #eef4ff;
    color: var(--theme-navy-deep);
    transform: translateY(-1px);
}

.btn-outline-primary,
.hero-page .btn.btn-outline {
    border-color: rgba(var(--bs-primary-rgb), 0.2);
    color: var(--theme-navy);
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.hero-page .btn.btn-outline:hover {
    border-color: var(--theme-navy);
    background-color: var(--theme-navy);
    color: #ffffff;
}

/* Cards */
.card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Badges */
.badge.bg-outline-primary {
    color: var(--bs-primary);
    background-color: transparent;
    border: 1px solid var(--bs-primary);
}

/* Accordion */
.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

/* Carousel indicators */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--bs-secondary);
}

.carousel-indicators button.active {
    background-color: var(--bs-primary);
}

#testimonialsCarousel {
    padding-bottom: 3rem;
}

#testimonialsCarousel .carousel-indicators {
    bottom: -0.5rem;
    margin-bottom: 0;
}

#testimonialsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 0.3rem;
    background-color: rgba(158, 211, 255, 0.38);
}

#testimonialsCarousel .carousel-indicators .active {
    background-color: #9ed3ff;
}

#testimonialsCarousel .carousel-item {
    padding: 0.25rem 0;
}

#testimonialsCarousel .testimonial-track-wrap {
    overflow: hidden;
    padding: 0.25rem 0;
}

#testimonialsCarousel .testimonial-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

#testimonialsCarousel .testimonial-slide {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 0 0.8rem;
}

#testimonialsCarousel .testimonial-slide .card,
#testimonialsCarousel .testimonial-loading.card {
    background: linear-gradient(160deg, rgba(15, 47, 104, 0.9) 0%, rgba(12, 35, 82, 0.97) 100%);
    border: 1px solid rgba(144, 188, 255, 0.26);
}

#testimonialsCarousel .testimonial-slide .card,
#testimonialsCarousel .testimonial-slide .card h5,
#testimonialsCarousel .testimonial-slide .card p,
#testimonialsCarousel .testimonial-slide .card .text-muted,
#testimonialsCarousel .testimonial-slide .card blockquote,
#testimonialsCarousel .testimonial-loading.card,
#testimonialsCarousel .testimonial-loading.card p {
    color: #eef5ff !important;
}

@media (max-width: 1199px) {
    #testimonialsCarousel .testimonial-slide {
        flex-basis: calc(100% / 2);
        max-width: calc(100% / 2);
    }
}

@media (max-width: 767px) {
    #testimonialsCarousel {
        padding-bottom: 3.5rem;
    }

    #testimonialsCarousel .testimonial-slide {
        flex-basis: 100%;
        max-width: 100%;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }
}

/* Article Content Styling */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--bs-primary);
}

.article-content h4 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 0.5rem;
}

.article-content .alert {
    margin: 2rem 0;
}

/* Breadcrumb styling */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--bs-primary);
}

.breadcrumb-item.active {
    color: var(--bs-primary);
}

/* Social sharing buttons */
.btn-outline-primary:hover,
.btn-outline-info:hover,
.btn-outline-success:hover,
.btn-outline-secondary:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-card-shell {
        border-radius: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 1199px) {
    .video-hero-wrap {
        gap: 1.75rem;
    }

    .video-frame {
        height: clamp(260px, 38vw, 350px);
    }
}

@media (max-width: 991px) {
    .video-hero-section {
        padding-top: 6.8rem;
    }

    .video-hero-wrap {
        grid-template-columns: 1fr;
    }

    .video-hero-left {
        padding: 1.8rem;
    }

    .video-frame {
        height: clamp(240px, 45vw, 320px);
    }
}

@media (max-width: 768px) {
    .video-hero-section {
        padding: 6.4rem 0 2.3rem;
    }

    .video-hero-container {
        padding-inline: 0.75rem;
    }

    .video-hero-left {
        padding: 1.4rem;
    }

    .video-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .video-hero-btn,
    .video-hero-btn-outline {
        width: 100%;
    }

    .video-overlay-copy {
        top: 1rem;
        left: 1rem;
        max-width: 80%;
    }

    .video-play-link {
        width: 4.4rem;
        height: 4.4rem;
    }

    .video-play-link i {
        font-size: 1.7rem;
    }

    .video-frame {
        height: clamp(210px, 56vw, 270px);
        border-radius: 1.2rem;
    }

    .hero-circle-1 {
        width: 4rem;
        height: 4rem;
    }
    
    .hero-circle-2 {
        width: 2rem;
        height: 2rem;
    }
    
    .hero-circle-3 {
        width: 3rem;
        height: 3rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .hero-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .video-hero-title {
        font-size: 1.4rem;
    }

    .video-hero-subtitle {
        font-size: 0.86rem;
    }

    .video-hero-compare {
        padding: 0.9rem 0.9rem 0;
    }

    .hero-page .why-mini-card {
        padding: 0.95rem;
    }

    .compare-table-head,
    .compare-table-row {
        grid-template-columns: 1fr;
    }

    .compare-table-head-cell:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .compare-table-label {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .compare-pill {
        width: 100%;
        justify-content: flex-start;
        border-radius: 1rem;
    }

    .video-hero-meta span {
        font-size: 0.8rem;
    }

    .video-overlay-copy p {
        font-size: 1.3rem;
    }

    .hero-card {
        padding: 1rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .fs-4 {
        font-size: 1.125rem !important;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
}

/* Object fit utility for older browsers */
.object-fit-cover {
    object-fit: cover;
}

/* Ensure proper spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (min-width: 768px) {
    .py-5 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

/* Footer */
.site-footer {
    position: relative;
    padding: 4.5rem 0 1.6rem;
    background:
        radial-gradient(circle at 15% 18%, rgba(84, 141, 255, 0.16) 0%, rgba(84, 141, 255, 0) 28%),
        radial-gradient(circle at 85% 82%, rgba(20, 184, 166, 0.12) 0%, rgba(20, 184, 166, 0) 30%),
        linear-gradient(180deg, #0d214f 0%, #091736 100%);
    border-top: 1px solid rgba(180, 209, 255, 0.14);
}

.site-footer-top {
    padding-bottom: 2.2rem;
}

.site-footer-bottom {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(229, 239, 255, 0.72);
}

.site-footer-brand {
    max-width: 24rem;
}

.site-footer-copy {
    margin-bottom: 1.1rem;
    color: rgba(232, 241, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.7;
}

.site-footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(180, 209, 255, 0.18);
    color: #eef5ff;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer-social-link i {
    font-size: 1rem;
}

.site-footer-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-footer-title-spaced {
    margin-top: 1.6rem;
}

.site-footer-links li + li,
.site-footer-campus + .site-footer-campus,
.site-footer-contact-link + .site-footer-contact-link {
    margin-top: 0.72rem;
}

.site-footer-links a,
.site-footer-contact-link {
    color: rgba(232, 241, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-links a {
    display: inline-block;
}

.site-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.site-footer-contact-link i {
    color: #9bc2ff;
    font-size: 0.95rem;
}

.site-footer-campus-name {
    margin-bottom: 0.2rem;
    color: #ffffff;
    font-weight: 600;
}

.site-footer-campus-text {
    margin: 0;
    color: rgba(232, 241, 255, 0.72);
    font-size: 0.92rem;
}

.site-footer a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateX(2px);
}

.site-footer-social-link:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(180, 209, 255, 0.32);
    color: #ffffff !important;
}

/* Modal improvements */
.modal-content {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
    border-radius: 1rem;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    color: #10265d;
    box-shadow: 0 1.2rem 2.6rem rgba(8, 20, 50, 0.24);
}

.modal-header {
    border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.12);
}

.modal-footer {
    border-top: 1px solid rgba(var(--bs-primary-rgb), 0.12);
}

.modal-title,
.modal-body,
.modal-body p,
.modal-body .form-label,
.modal-body label,
.modal-body .text-muted,
.modal-body .text-dark {
    color: #10265d !important;
}

.modal-content .form-control,
.modal-content .form-select {
    border-color: rgba(var(--bs-primary-rgb), 0.18);
    background-color: #ffffff;
    color: #10265d;
}

.modal-content .form-control::placeholder,
.modal-content .form-select {
    color: #607293;
}

.modal-content .form-control:focus,
.modal-content .form-select:focus {
    background-color: #ffffff;
    color: #10265d;
}

.modal-content .btn-close {
    opacity: 0.75;
}

/* Form improvements */
.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Ensure consistent button heights */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Improve text readability */
.text-muted {
    color: #6c757d !important;
}

/* Ensure proper contrast for accessibility */
.bg-primary .text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.bg-primary .text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Loading states */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.accordion-button:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .modal {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .text-white,
    .text-white-90,
    .text-white-80 {
        color: black !important;
    }
}
