/* ===========================
   GLOBAL & RESETS
=========================== */

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

html, body {
    width: 100%;
    overflow-x: hidden;
    background: #07143b;
    font-family: "Inter", sans-serif;
}


/* =========================================
   NAVBAR - PREMIUM BLUE THEME
========================================= */

:root{

    --navbar-height: 82px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {

    width: 100%;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 99999;

    background:
        rgba(7,23,57,0.94);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.18);
}

/* =========================================
   CONTAINER
========================================= */

.nav-container {

    max-width: 1320px;

    margin: auto;

    padding: 16px 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.nav-logo {

    display: flex;

    align-items: center;

    text-decoration: none;
}

.nav-logo img {

    height: 72px;

    width: auto;

    object-fit: contain;

    display: block;
}

/* =========================================
   DESKTOP MENU
========================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 10px;
}

/* LINKS */
.nav-menu a {

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    padding: 11px 18px;

    border-radius: 12px;

    transition: 0.28s ease;

    position: relative;
}

/* HOVER */
.nav-menu a:hover {

    background:
        rgba(255,255,255,0.08);

    color: #f0be4c;

    transform: translateY(-2px);
}

/* CTA BUTTON */
.nav-cta {
    background: linear-gradient(135deg, #f0be4c, #e6a832);
    color: #071739 !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #f8d06a, #f0be4c) !important;
    color: #071739 !important;
    transform: translateY(-2px);
}

/* =========================================
   HAMBURGER
========================================= */

.hamburger {

    width: 30px;

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    cursor: pointer;

    z-index: 999999;
}

/* LINES */
.hamburger span {

    width: 100%;
    height: 3px;

    background: #ffffff;

    border-radius: 50px;

    transition: 0.3s ease;
}

/* ACTIVE */
.hamburger.active span:nth-child(1) {

    transform:
        translateY(9px)
        rotate(45deg);
}

.hamburger.active span:nth-child(2) {

    opacity: 0;
}

.hamburger.active span:nth-child(3) {

    transform:
        translateY(-9px)
        rotate(-45deg);
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {

    position: absolute;

    top: calc(100% + 12px);

    right: 5%;

    width: 260px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 18px;

    border-radius: 24px;

    background:
        linear-gradient(180deg,
        #071739 0%,
        #0b2249 100%);

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.28);

    backdrop-filter: blur(18px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(-10px)
        scale(0.98);

    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        visibility 0.28s ease;
}

/* ACTIVE */
.mobile-menu.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(0)
        scale(1);
}

/* MOBILE LINKS */
.mobile-menu a {

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    padding: 14px 16px;

    border-radius: 14px;

    transition: 0.25s ease;
}

/* HOVER */
.mobile-menu a:hover {

    background:
        rgba(255,255,255,0.08);

    color: #f0be4c;
}

/* JOIN PROGRAM CTA */
.mobile-cta {
    background: #f3bd4f !important;
    color: #071739 !important;
    font-weight: 700 !important;
    text-align: center;
    border-radius: 14px;
    margin-top: 6px;
}

.mobile-cta:hover {
    background: #f8d06a !important;
    color: #071739 !important;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .nav-menu {

        display: none;
    }

    .hamburger {

        display: flex;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .nav-container {

        padding: 14px 20px;
    }

    .nav-logo img {

        height: 58px;
    }

    .mobile-menu {

        right: 20px;

        width: calc(100% - 40px);

        max-width: 320px;
    }
}

/* =========================================
   BODY OFFSET
========================================= */

body {

    padding-top: var(--navbar-height);
}


/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #071739 0%, #081c4d 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 7% 40px;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

/* LEFT SIDE */
.hero-left {
    width: 50%;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #f3bd4f;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 15px;
}

.hero-title {
    font-size: clamp(38px, 4.3vw, 66px);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 22px;
}

.hero-brand {
    color: #f3bd4f;
    font-style: italic;
}

.hero-line {
    width: 180px;
    height: 4px;
    border-radius: 20px;
    background: #f3bd4f;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 620px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    text-decoration: none !important;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-primary-btn {
    background: #f3bd4f;
    color: #071739 !important;
}

.hero-primary-btn:hover {
    transform: translateY(-5px);
}

.hero-secondary-btn {
    border: 2px solid #f3bd4f;
    color: #ffffff !important;
}

.hero-secondary-btn:hover {
    background: #f3bd4f;
    color: #071739 !important;
}

/* RIGHT SIDE */
.hero-right {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* SLIDER */
.hero-slider {
    width: 100%;
    aspect-ratio: 4125 / 3500;
    max-height: clamp(420px, 39vw, 560px);
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

/* SLIDES */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.18),
        inset 0 1px 1px rgba(255,255,255,0.08);
}

/* CSS SLIDE CARDS */
.hero-slide-card {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slide-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid rgba(243, 189, 79, 0.18);
}

/* SLIDE 1 — CAT Score */
.slide-cat {
    background: linear-gradient(145deg, #0d2054 0%, #071739 60%, #0a1c42 100%);
}

.slide-cat .slide-stat {
    font-size: 72px;
    font-weight: 900;
    color: #f3bd4f;
    line-height: 1;
    letter-spacing: -2px;
}

.slide-cat .slide-stat span {
    font-size: 32px;
    font-weight: 700;
    color: #f3bd4f;
}

/* SLIDE 2 — Results */
.slide-results {
    background: linear-gradient(145deg, #071739 0%, #0c2040 60%, #071739 100%);
}

.slide-stats-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 8px 0;
}

.slide-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(243,189,79,0.08);
    border: 1px solid rgba(243,189,79,0.2);
    border-radius: 16px;
    padding: 14px 16px;
}

.slide-stat-item strong {
    font-size: 28px;
    font-weight: 900;
    color: #f3bd4f;
    line-height: 1;
}

.slide-stat-item span {
    font-size: 11px;
    color: #a8bbd4;
    font-weight: 500;
}

/* SLIDE 3 — IIM */
.slide-iim {
    background: linear-gradient(145deg, #0a1f48 0%, #071739 50%, #0d1e3d 100%);
}

.slide-iim-name {
    font-size: 42px;
    font-weight: 900;
    color: #f3bd4f;
    line-height: 1.15;
    letter-spacing: -1px;
}

/* SHARED ELEMENTS */
.slide-icon {
    font-size: 44px;
    line-height: 1;
}

.slide-label {
    font-size: 13px;
    font-weight: 600;
    color: #a8bbd4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-desc {
    font-size: 15px;
    color: #c8d8eb;
    max-width: 260px;
    line-height: 1.5;
}

.slide-tag {
    font-size: 13px;
    font-weight: 700;
    color: #071739;
    background: #f3bd4f;
    padding: 6px 18px;
    border-radius: 50px;
    margin-top: 6px;
}

/* ARROWS */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: rgba(7,23,57,0.9);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.hero-arrow:hover {
    background: #f3bd4f;
    color: #071739;
}

.hero-prev {
    left: -20px;
}

.hero-next {
    right: -20px;
}

/* DOTS */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.hero-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: 0.3s ease;
}

.hero-dots span.active {
    width: 34px;
    border-radius: 20px;
    background: #f3bd4f;
}

/* GLOW EFFECTS */
.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.hero-section::before {
    top: -150px;
    left: -150px;
    background: rgba(52, 102, 255, 0.12);
}

.hero-section::after {
    bottom: -150px;
    right: -150px;
    background: rgba(243,189,79,0.08);
}

/* TABLET */
@media (max-width: 1200px) {

    .hero-section {
        padding-top: 110px;
    }
}

/* MOBILE */
@media (max-width: 992px) {

    .hero-section {
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 80px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-slider {
        max-width: 500px;
        height: 500px;
        margin: auto;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

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

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-btn {
        width: auto;
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-slider {
        height: 420px;
    }

    .hero-prev {
        left: -10px;
    }

    .hero-next {
        right: -10px;
    }
}


/* =========================================
   GLASSMORPHISM RESULTS SECTION
========================================= */

.glass-results-section {
    padding: 100px 20px;
    background:
        radial-gradient(circle at top left, rgba(41, 98, 255, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(243,189,79,0.12), transparent 30%),
        linear-gradient(135deg, #071739 0%, #081c4d 100%);
    overflow: hidden;
    position: relative;
}

/* HEADER */
.glass-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.glass-results-header h2 {
    font-size: 46px;
    color: #ffffff;
    margin-bottom: 14px;
}

.glass-results-header p {
    font-size: 18px;
    color: #ffffff;
}

/* WRAPPER */
.glass-results-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.glass-result-card {
    position: relative;
    padding: 45px 30px;
    border-radius: 28px;
    overflow: hidden;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 8px 32px rgba(0,0,0,0.18),
        inset 0 1px 1px rgba(255,255,255,0.08);

    transition: 0.35s ease;
}

/* HOVER */
.glass-result-card:hover {
    transform: translateY(-10px);
}

/* GLOW */
.glass-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(243,189,79,0.18);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(40px);
}

/* NUMBER */
.glass-result-card h3 {
    position: relative;
    z-index: 2;
    font-size: 72px;
    color: #f3bd4f;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 800;
}

/* SCORE */
.glass-result-card span {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
}

/* TEXT */
.glass-result-card p {
    position: relative;
    z-index: 2;
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
}

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

    .glass-results-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .glass-results-section {
        padding: 80px 20px;
    }

    .glass-results-header h2 {
        font-size: 36px;
    }

    .glass-result-card {
        padding: 38px 24px;
    }

    .glass-result-card h3 {
        font-size: 58px;
    }

    .glass-result-card span {
        font-size: 24px;
    }
}


/* =========================================
   COMPACT ABOUT SECTION
   BLUE PREMIUM THEME
========================================= */

.about-section {

    width: 100%;

    padding: 55px 5%;

    background:
        radial-gradient(circle at top left,
        rgba(240,190,76,0.05),
        transparent 28%),
        linear-gradient(180deg,
        #071739 0%,
        #0b2249 100%);

    overflow: hidden;
}

/* =========================================
   CONTAINER
========================================= */

.about-container {

    max-width: 1280px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 36px;
}

/* =========================================
   LEFT IMAGE
========================================= */

.about-image-box {

    flex: 0.95;

    position: relative;
}

.about-image-box img {

    width: 100%;

    border-radius: 22px;

    height: 540px;

    object-fit: cover;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.22);
}

/* IMAGE OVERLAY */
.about-image-box::after {

    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 42%;

    background:
        linear-gradient(to bottom,
        rgba(0,0,0,0),
        rgba(7,23,57,0.88));

    border-radius: 22px;
}

/* TAG */
.image-tag {

    position: absolute;

    bottom: 18px;
    left: 18px;

    background:
        linear-gradient(135deg,
        rgba(240,190,76,0.20),
        rgba(240,190,76,0.10));

    color: #f0be4c;

    padding: 10px 16px;

    border-radius: 40px;

    font-weight: 700;

    font-size: 12px;

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    z-index: 2;
}

/* =========================================
   RIGHT CONTENT
========================================= */

.about-content {

    flex: 1.05;
}

/* TITLE */
.about-title {

    font-size: 46px;

    font-weight: 800;

    color: #ffffff;

    line-height: 1.1;

    margin-bottom: 16px;
}

.about-title span {

    color: #f0be4c;
}

/* DESCRIPTION */
.about-description {

    font-size: 16px;

    color: #ffffff;
	
    line-height: 1.8;

    margin-bottom: 24px;

    max-width: 640px;
}

/* =========================================
   FEATURES
========================================= */

.about-features {

    display: flex;

    flex-direction: column;

    gap: 14px;
}

/* FEATURE CARD */
.feature-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    background:
        linear-gradient(135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03));

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    transition: 0.35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.14);
}

/* HOVER */
.feature-item:hover {

    transform: translateX(6px);

    border-color: rgba(240,190,76,0.18);
}

/* ICON */
.feature-icon {

    width: 44px;
    height: 44px;

    min-width: 44px;

    background:
        linear-gradient(135deg,
        rgba(240,190,76,0.18),
        rgba(240,190,76,0.08));

    color: #f0be4c;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    font-size: 18px;
}

/* FEATURE TEXT */
.feature-item p {

    font-size: 14px;

    color: #ffffff;

    margin: 0;

    line-height: 1.6;
}

/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1399px) {

    .about-title {

        font-size: 40px;
    }

    .about-description {

        font-size: 15px;
    }

    .about-image-box img {

        height: 500px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .about-container {

        flex-direction: column;

        text-align: center;

        gap: 36px;
    }

    .about-content {

        flex: 1;
    }

    .about-title {

        font-size: 36px;
    }

    .about-description {

        margin-left: auto;
        margin-right: auto;

        font-size: 15px;
    }

    .about-features {

        max-width: 700px;

        margin: auto;
    }

    .feature-item {

        justify-content: flex-start;

        text-align: left;
    }

    .about-image-box img {

        height: auto;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-section {

        padding: 65px 20px;
    }

    .about-container {

        flex-direction: column;

        gap: 34px;
    }

    /* TITLE */
    .about-title {

        font-size: 30px;

        line-height: 1.25;
    }

    /* DESCRIPTION */
    .about-description {

        font-size: 14px;

        line-height: 1.8;
    }

    /* FEATURE */
    .feature-item {

        padding: 14px 16px;

        gap: 12px;
    }

    .feature-item p {

        font-size: 13px;
    }

    /* ICON */
    .feature-icon {

        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    /* TAG */
    .image-tag {

        font-size: 11px;

        padding: 8px 12px;

        bottom: 14px;
        left: 14px;
    }

    /* IMAGE */
    .about-image-box img {

        height: auto;

        border-radius: 18px;
    }
}


/* =========================================
   INTERACTIVE LEARNING PATHWAY
   FINAL FIXED CSS
========================================= */

.interactive-pathway-section {

    padding: 90px 5%;

    background:
        radial-gradient(circle at top left,
        rgba(240,190,76,0.05),
        transparent 28%),
        linear-gradient(180deg,
        #071739 0%,
        #0b2249 100%);

    overflow: hidden;

    position: relative;
}

/* =========================================
   HEADER
========================================= */

.interactive-pathway-header {

    text-align: center;

    margin-bottom: 60px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

/* TAG */
.interactive-pathway-tag {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 40px;

    background: rgba(255,255,255,0.06);

    color: #f0be4c;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;

    border: 1px solid rgba(255,255,255,0.08);
}

/* TITLE */
.interactive-pathway-header h2 {

    font-size: 58px;

    line-height: 1.1;

    color: #ffffff;

    margin-bottom: 18px;

    text-align: center;
}

.interactive-pathway-header h2 span {

    color: #f0be4c;
}

/* TEXT */
.interactive-pathway-header p {

    font-size: 18px;

    color: #ffffff;

    text-align: center;

    max-width: 720px;
}

/* =========================================
   DESKTOP LAYOUT
========================================= */

.pathway-desktop-layout {

    display: grid;

    grid-template-columns: 34% 66%;

    gap: 32px;

    align-items: flex-start;
}

/* =========================================
   LEFT SIDE
========================================= */

.pathway-left {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* TAB */
.pathway-tab {

    background:
        linear-gradient(135deg, #071739, #0b2249);
		

    border-radius: 30px;

    padding: 20px 24px;

    display: flex;

    align-items: center;

    gap: 18px;

    cursor: pointer;

    transition: 0.35s ease;

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);

    min-height: 96px;
}

/* HOVER */
.pathway-tab:hover {

    transform: translateX(5px);

    border-color: rgba(240,190,76,0.18);
}

/* ACTIVE */
.pathway-tab.active {

    background:
        linear-gradient(135deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.05));
	

    border-color: rgba(240,190,76,0.18);

    transform: translateX(8px);
}

/* NUMBER */
.pathway-number {

    width: 56px;
    height: 56px;

    min-width: 56px;

    border-radius: 18px;

	background:
        linear-gradient(135deg,
        rgba(240,190,76,0.18),
        rgba(240,190,76,0.10));

    
	border: 1px solid rgba(255,255,255,0.08);


    display: flex;

    align-items: center;

    justify-content: center;

    color: #f0be4c;

    font-size: 18px;
    font-weight: 800;
}

/* TITLE */
.pathway-tab h3 {

    font-size: 21px;

    color: #ffffff;

    line-height: 1.3;

    transition: 0.3s ease;
}

.pathway-tab.active h3 {

    color: #071739;
}

/* =========================================
   RIGHT SIDE
========================================= */

.pathway-right {

    position: relative;

    width: 100%;
}

/* CONTENT */
.pathway-content {

    display: none;

    background:
        linear-gradient(135deg,
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.04));

    border-radius: 36px;

    padding: 44px;

    color: #ffffff;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.22);

    animation: fadePathway 0.35s ease;

    height: auto;

    align-self: start;
}

/* ACTIVE */
.pathway-content.active {

    display: inline-block;

    width: 100%;
}

/* GLOW */
.pathway-content::before {

    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    background: rgba(240,190,76,0.08);

    border-radius: 50%;

    top: -120px;
    right: -120px;

    filter: blur(24px);
}

/* ICON */
.pathway-content-icon {

    width: 84px;
    height: 84px;

    border-radius: 26px;

    background:
        linear-gradient(135deg,
        rgba(240,190,76,0.20),
        rgba(240,190,76,0.08));

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 38px;

    margin-bottom: 26px;

    position: relative;
    z-index: 2;
}

/* TITLE */
.pathway-content h3 {

    font-size: 50px;

    line-height: 1.1;

    margin-bottom: 18px;

    color: #ffffff;

    position: relative;
    z-index: 2;
}

/* TEXT */
.pathway-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #ffffff;

    margin-bottom: 30px;

    max-width: 720px;

    position: relative;
    z-index: 2;
}

/* LIST */
.pathway-content ul {

    list-style: none;

    padding: 0;

    margin: 0;

    position: relative;
    z-index: 2;
}

.pathway-content ul li {

    position: relative;

    padding-left: 24px;

    margin-bottom: 14px;

    font-size: 16px;

    color: #ffffff;
}

/* BULLET */
.pathway-content ul li::before {

    content: "•";

    position: absolute;

    left: 0;

    color: #f0be4c;

    font-size: 20px;
}
/* =========================================
   FORCE ACTIVE BUTTON WHITE
========================================= */

.pathway-tab.active {

    background: #ffffff !important;

    background-image: none !important;

    border: 1px solid rgba(240,190,76,0.25);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);
}

/* ACTIVE TEXT */
.pathway-tab.active h3 {

    color: #071739 !important;
}

/* =========================================
   MOBILE ACTIVE BUTTON
========================================= */

.pathway-mobile-tab.active {

    background: #ffffff !important;

    background-image: none !important;

    border: 1px solid rgba(240,190,76,0.25);
}

/* ACTIVE TEXT */
.pathway-mobile-tab.active h3 {

    color: #071739 !important;
}
/* =========================================
   MOBILE LAYOUT
========================================= */

.pathway-mobile-layout {

    display: none;
}

/* =========================================
   MOBILE VIEW
========================================= */

@media (max-width: 768px) {

    .interactive-pathway-section {

        padding: 70px 20px;
    }

    /* HEADER */
    .interactive-pathway-header {

        margin-bottom: 42px;
    }

    .interactive-pathway-header h2 {

        font-size: 38px;

        line-height: 1.15;
    }

    .interactive-pathway-header p {

        font-size: 15px;
    }

    /* HIDE DESKTOP */
    .pathway-desktop-layout {

        display: none;
    }

    /* SHOW MOBILE */
    .pathway-mobile-layout {

        display: flex;

        flex-direction: column;

        gap: 18px;
    }

    /* ITEM */
    .pathway-item {

        width: 100%;
    }

    /* MOBILE TAB */
    .pathway-mobile-tab {

        width: 100%;

        border-radius: 30px;

        padding: 22px;

        background:
            linear-gradient(135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03));

        display: flex;

        align-items: center;

        gap: 18px;

        cursor: pointer;

        transition: 0.35s ease;

        border: 1px solid rgba(255,255,255,0.08);

        backdrop-filter: blur(14px);

        box-shadow:
            0 10px 30px rgba(0,0,0,0.18);
    }

    /* ACTIVE */
    .pathway-mobile-tab.active {

        background:
            linear-gradient(135deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.05));

        border-color: rgba(240,190,76,0.18);
    }

    /* TITLE */
    .pathway-mobile-tab h3 {

        font-size: 18px;

        color: #ffffff;
    }

    /* NUMBER */
    .pathway-mobile-tab .pathway-number {

        width: 56px;
        height: 56px;

        min-width: 56px;

        border-radius: 18px;

        background:
            linear-gradient(135deg,
            rgba(240,190,76,0.18),
            rgba(240,190,76,0.10));

        color: #f0be4c;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 16px;
        font-weight: 800;
    }

    /* MOBILE DESC */
    .pathway-mobile-desc {

        display: none;

        margin-top: 14px;

        margin-bottom: 8px;

        background:
            linear-gradient(135deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.04));

        border-radius: 30px;

        padding: 28px;

        color: #ffffff;

        position: relative;

        overflow: hidden;

        border: 1px solid rgba(255,255,255,0.08);

        backdrop-filter: blur(18px);

        box-shadow:
            0 18px 40px rgba(0,0,0,0.14);

        animation: smoothAccordion 0.35s ease;
    }

    /* ACTIVE */
    .pathway-mobile-desc.active {

        display: block;
    }

    /* ICON */
    .pathway-mobile-desc .pathway-content-icon {

        width: 68px;
        height: 68px;

        border-radius: 22px;

        background:
            linear-gradient(135deg,
            rgba(240,190,76,0.20),
            rgba(240,190,76,0.08));

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 28px;

        margin-bottom: 20px;
    }

    /* TITLE */
    .pathway-mobile-desc h4 {

        font-size: 24px;

        color: #ffffff;

        margin-bottom: 18px;
    }

    /* LIST */
    .pathway-mobile-desc ul {

        list-style: none;

        padding: 0;

        margin: 0;
    }

    .pathway-mobile-desc ul li {

        position: relative;

        padding-left: 22px;

        margin-bottom: 14px;

        font-size: 14px;

        line-height: 1.9;

        color: #ffffff;
    }

    /* BULLET */
    .pathway-mobile-desc ul li::before {

        content: "•";

        position: absolute;

        left: 0;

        color: #f0be4c;

        font-size: 18px;
    }
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadePathway {

    from {

        opacity: 0;

        transform: translateY(10px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

@keyframes smoothAccordion {

    from {

        opacity: 0;

        transform: translateY(-10px) scale(0.98);
    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);
    }
}


/* =========================================
   COMPACT PREMIUM COURSES SECTION
   BLUE PREMIUM THEME
========================================= */

.premium-courses-section {
    padding: 55px 5%;
    background:
        radial-gradient(circle at top left,
        rgba(240,190,76,0.05),
        transparent 28%),
        linear-gradient(180deg,
        #071739 0%,
        #0b2249 100%);
    overflow: hidden;
}

/* HEADER */
.premium-courses-header {
    text-align: center;
    margin-bottom: 32px;
}

.premium-course-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    background: rgba(255,255,255,0.06);
    color: #f0be4c;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.premium-courses-header h2 {
    font-size: 42px;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 10px;
    font-weight: 800;
}

.premium-courses-header h2 span {
    color: #e6b34e;
}

.premium-courses-header p {
    font-size: 15px;
    color: #ffffff;
}

/* GRID */
.premium-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.premium-course-card:only-child {
    grid-column: 2;
}

/* CARD */
.premium-course-card {
    background:
        linear-gradient(135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03));

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(16px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.18);

    transition: 0.35s ease;

    display: flex;

    flex-direction: column;

    height: 100%;
}

.premium-course-card:hover {
    transform: translateY(-8px);

    border-color: rgba(240,190,76,0.20);

    box-shadow:
        0 24px 50px rgba(0,0,0,0.24);
}

/* IMAGE */
.premium-course-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.premium-course-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s ease;
}

.premium-course-card:hover .premium-course-image img {
    transform: scale(1.04);
}

/* BADGE */
.premium-course-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    background: #e6b34e;

    color: #071739;

    padding: 7px 14px;

    border-radius: 40px;

    font-size: 11px;
    font-weight: 700;
}

/* CONTENT */
.premium-course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* TOP */
.premium-course-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.premium-course-category {
    background:
        linear-gradient(135deg,
        rgba(240,190,76,0.18),
        rgba(240,190,76,0.10));

    color: #f0be4c;

    padding: 5px 11px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 700;
}

.premium-course-rating {
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}

/* TITLE */
.premium-course-content h3 {
    font-size: 22px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 10px;
}

/* DESC */
.premium-course-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 14px;
}

/* FEATURES */
.premium-course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.premium-course-features span {
    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.08);

    color: #ffffff;

    padding: 5px 9px;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 600;

    width: fit-content;
}

/* POINTS */
.premium-course-points {
    list-style: none;
    margin-bottom: 18px;
}

.premium-course-points li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.35;
    font-size: 12px;
}

.premium-course-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e6b34e;
    font-weight: 800;
}

/* BOTTOM */
.premium-course-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* PRICE */
.premium-course-price h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 3px;
}

.premium-course-price span {
    color: rgba(255,255,255,0.42);
    text-decoration: line-through;
    font-size: 12px;
}

/* BUTTON */
.premium-course-btn {
    padding: 11px 18px;
    border-radius: 11px;

    background: #ffffff;

    color: #071739;

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;

    transition: 0.3s ease;

    white-space: nowrap;
}

.premium-course-btn:hover {
    background: #e6b34e;
    color: #071739;
}

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

    .premium-courses-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: auto;
    }
}

@media (max-width: 768px) {

    .premium-courses-section {
        padding: 60px 20px;
    }

    .premium-courses-header h2 {
        font-size: 34px;
    }

    .premium-course-content {
        padding: 18px;
    }

    .premium-course-content h3 {
        font-size: 21px;
    }

    .premium-course-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-course-btn {
        width: 100%;
        text-align: center;
    }

    /* FIX IMAGE CROPPING ON MOBILE */
    .premium-course-image {
        height: auto;
        aspect-ratio: 2 / 1;
    }

    .premium-course-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #071739;
    }
}


/* =========================================
   COMPACT CURVED ROADMAP SECTION
========================================= */

.curved-roadmap-section {

    padding: 80px 4%;

    background:
        radial-gradient(circle at top left, rgba(230,179,78,0.08), transparent 25%),
        #071739;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

/* =========================================
   HEADER
========================================= */

.curved-roadmap-header {

    text-align: center;

    margin-bottom: 45px;
}

/* TAG */
.curved-roadmap-tag {

    display: inline-block;

    padding: 6px 16px;

    border-radius: 40px;

    background: rgba(255,255,255,0.08);

    color: #e6b34e;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 16px;
}

/* TITLE */
.curved-roadmap-header h2 {

    font-size: 44px;

    line-height: 1.05;

    color: #ffffff;

    margin-bottom: 14px;
}

.curved-roadmap-header h2 span {
    color: #e6b34e;
}

/* TEXT */
.curved-roadmap-header p {

    font-size: 15px;

    color: #ffffff;

    max-width: 680px;

    margin: auto;

    line-height: 1.7;
}

/* =========================================
   CONTAINER
========================================= */

.curved-roadmap-container {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 12px;

    overflow-x: auto;

    padding: 80px 0 50px;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

/* HIDE SCROLLBAR */
.curved-roadmap-container::-webkit-scrollbar {
    display: none;
}

/* =========================================
   ROAD LINE
========================================= */

.roadmap-line {

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(to right, #e6b34e, #f8d57f);

    border-radius: 20px;

    transform: translateY(-50%);

    z-index: 1;
}

/* =========================================
   ITEM
========================================= */

.roadmap-item {

    position: relative;

    flex: 1;
    min-width: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    z-index: 2;
}

/* CURVE EFFECT */
.roadmap-item.top {
    transform: translateY(-50px);
}

.roadmap-item.bottom {
    transform: translateY(50px);
}

/* =========================================
   NODE
========================================= */

.roadmap-dot {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background:
        linear-gradient(135deg, #e6b34e, #f5cc72);

    color: #071739;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 0 0 8px rgba(230,179,78,0.10),
        0 10px 25px rgba(0,0,0,0.22);

    margin-bottom: 18px;

    position: relative;
}

/* PULSE */
.roadmap-dot::before {

    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 2px solid rgba(230,179,78,0.22);

    animation: roadmapPulse 2.5s infinite;
}

/* PULSE ANIMATION */
@keyframes roadmapPulse {

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

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

/* =========================================
   CARD
========================================= */

.roadmap-card {

    background:
        linear-gradient(180deg, #0b2249 0%, #071739 100%);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 22px;

    padding: 18px;

    width: 100%;
    max-width: 185px;

    text-align: center;

    position: relative;

    overflow: hidden;

    transition: 0.35s ease;
}

/* GLOW */
.roadmap-card::before {

    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    background: rgba(230,179,78,0.08);

    border-radius: 50%;

    top: -90px;
    right: -90px;

    filter: blur(18px);
}

/* HOVER */
.roadmap-card:hover {

    transform: translateY(-6px);

    border-color: rgba(230,179,78,0.28);
}

/* DATE */
.roadmap-card span {

    display: inline-block;

    color: #e6b34e;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 10px;
}

/* TITLE */
.roadmap-card h3 {

    font-size: 18px;

    color: #ffffff;

    margin-bottom: 10px;

    position: relative;
    z-index: 2;
}

/* TEXT */
.roadmap-card p {

    font-size: 12px;

    line-height: 1.6;

    color: #ffffff;

    position: relative;
    z-index: 2;
}

/* FINAL STEP */
.final-step .roadmap-dot {

    background:
        linear-gradient(135deg, #f8d57f, #e6b34e);
}

/* =========================================
   MOBILE ROADMAP DESIGN
========================================= */

@media (max-width: 768px) {

    /* SECTION */
    .curved-roadmap-section {

        padding: 70px 20px;

        min-height: auto;
    }

    /* HEADER */
    .curved-roadmap-header {

        margin-bottom: 50px;

        text-align: left;
    }

    .curved-roadmap-header h2 {

        font-size: 36px;

        line-height: 1.15;
    }

    .curved-roadmap-header p {

        font-size: 14px;

        line-height: 1.7;
    }

    /* =========================================
       CONTAINER
    ========================================= */

    .curved-roadmap-container {

        display: flex;

        flex-direction: column;

        gap: 55px;

        overflow: visible;

        padding: 0;

        position: relative;
    }

    /* REMOVE HORIZONTAL LINE */
    .roadmap-line {

        display: none;
    }

    /* =========================================
       VERTICAL LINE
    ========================================= */

    .curved-roadmap-container::before {

        content: "";

        position: absolute;

        left: 24px;

        top: 0;

        width: 5px;

        height: 100%;

        background:
            linear-gradient(to bottom, #e6b34e, #f5cc72);

        border-radius: 20px;
    }

    /* =========================================
       ITEM
    ========================================= */

    .roadmap-item {

        width: 100%;

        min-width: 100%;

        display: flex;

        flex-direction: row;

        align-items: flex-start;

        gap: 26px;

        transform: none !important;

        position: relative;
    }

    /* =========================================
       NODE
    ========================================= */

    .roadmap-dot {

        width: 74px;
        height: 74px;

        min-width: 74px;

        border-radius: 50%;

        background:
            linear-gradient(135deg, #e6b34e, #f5cc72);

        color: #071739;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 28px;
        font-weight: 800;

        box-shadow:
            0 0 0 12px rgba(230,179,78,0.10);

        margin-bottom: 0;

        position: relative;

        z-index: 3;
    }

    /* REMOVE PULSE */
    .roadmap-dot::before {

        display: none;
    }

    /* =========================================
       CARD
    ========================================= */

    .roadmap-card {

        width: 100%;

        padding: 28px 26px;

        border-radius: 32px;

        background:
            linear-gradient(180deg, #0b2249 0%, #071739 100%);

        border: 1px solid rgba(255,255,255,0.08);

        position: relative;

        overflow: hidden;
    }

    /* GLOW */
    .roadmap-card::before {

        content: "";

        position: absolute;

        width: 160px;
        height: 160px;

        background: rgba(230,179,78,0.08);

        border-radius: 50%;

        top: -100px;
        right: -100px;

        filter: blur(18px);
    }

    /* DATE */
    .roadmap-card span {

        display: inline-block;

        color: #e6b34e;

        font-size: 13px;
        font-weight: 700;

        margin-bottom: 16px;

        letter-spacing: 1px;

        position: relative;
        z-index: 2;
    }

    /* TITLE */
    .roadmap-card h3 {

        font-size: 24px;

        line-height: 1.2;

        color: #ffffff;

        margin-bottom: 16px;

        position: relative;
        z-index: 2;
    }

    /* TEXT */
    .roadmap-card p {

        font-size: 15px;

        line-height: 1.9;

        color: #ffffff;

        position: relative;
        z-index: 2;
    }

    /* FINAL STEP */
    .final-step .roadmap-dot {

        background:
            linear-gradient(135deg, #f8d57f, #e6b34e);
    }
}


/* =====================================================
   MBA CALL-TO-ACTION SECTION
===================================================== */

.mba-cta-section {
    position: relative;
    padding: 120px 20px;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
                #071739;
    color: #ffffff;
    overflow: hidden;
}

/* Center container */
.mba-cta-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* Title */
.mba-cta-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.mba-cta-title span {
    color: #e6b34e;
}

/* Subtitle */
.mba-cta-subtitle {
    font-size: 20px;
    opacity: 0.85;
    margin: 20px auto 40px;
    max-width: 740px;
}

/* Buttons Row */
.mba-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

/* Buttons Shared Styling */
.cta-btn {
    padding: 16px 34px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.32s ease;
}

/* Primary Button */
.cta-btn.primary {
    background: #e6b34e;
    color: #0b2249;
    box-shadow: 0 6px 20px rgba(230, 179, 78, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(230, 179, 78, 0.4);
}

/* Secondary Button */
.cta-btn.secondary {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.cta-btn.secondary:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.cta-btn.secondary img {
    width: 20px;
    filter: brightness(0) invert(1);
}

/* Features List */
.mba-cta-features {
    list-style: none;
    padding: 0;
    margin-top: 14px;

    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;

    font-size: 16px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .mba-cta-title {
        font-size: 38px;
    }
    .mba-cta-subtitle {
        font-size: 18px;
    }
    .cta-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* ===============================================
   FOOTER SECTION
=============================================== */

.footer-section {
    background: #071739;
    padding: 80px 20px 30px;
    color: #d8e1f0;
    font-family: inherit;
}

/* Layout */
.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
}

/* Headings */
.footer-col h3,
.footer-col h4 {
    color: #e6b34e;
    font-weight: 700;
    margin-bottom: 12px;
}

/* About Paragraph */
.footer-about p {
    color: #d8e1f0;
    line-height: 1.6;
    max-width: 380px;
}

/* Links */
.footer-links a {
    display: block;
    margin: 5px 0;
    color: #d8e1f0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #e6b34e;
    transform: translateX(4px);
}

/* Contact lines */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

/* Contact icons */
.footer-icon {
    width: 18px;
    height: 18px;
    opacity: 0.9;
    color: #d8e1f0;
    flex-shrink: 0;
}

/* Divider Line */
.footer-divider {
    max-width: 1200px;
    margin: 40px auto 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Social Icons */
.footer-social a {
    margin-left: 16px;
    color: #d8e1f0;
}

.footer-social-icon {
    width: 28px;
    height: 28px;
    opacity: 0.75;
    transition: 0.3s ease;
}

.footer-social a:hover .footer-social-icon {
    opacity: 1;
    transform: translateY(-3px);
}

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

@media (max-width: 700px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Large screens (1440px+) — keep content from stretching too wide */
@media (min-width: 1440px) {
    .hero-section {
        padding-left: max(7%, calc((100vw - 1380px) / 2));
        padding-right: max(7%, calc((100vw - 1380px) / 2));
    }
}


