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

body {
    font-family: "Montserrat", sans-serif !important;
    background-color: #fdf8f5;
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

section {
    padding: 5rem 0 !important;
}

:root {
    --primary-blue: #004e9e;
    --primary-blue-dark: #003d7a;
    --primary-blue-light: #ecf0f9;
    --deep-red: #c1121f;
    --deep-red-dark: #8b0d15;
    --deep-red-soft: #fdeff1;
    --elegant-gold: #c7a252;
    --elegant-gold-dark: #a07d38;
    --elegant-gold-light: #fff8e7;
    --accent-red: #e63946;
    --gray-light: #f7f9fc;
    --gray-border: #e9edf2;
    --text-dark: #1e2a3e;
    --text-muted: #5a6e85;
    --shadow-elegant: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
    --shadow-sm:
        0 10px 25px -5px rgba(0, 0, 0, 0.05),
        0 8px 10px -6px rgba(0, 0, 0, 0.02);

    --shadow-md:
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 10px 10px -5px rgba(0, 0, 0, 0.01);

    --shadow-lg:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 15px 25px -10px rgba(0, 0, 0, 0.08);

    --shadow-xl:
        0 35px 80px -15px rgba(0, 0, 0, 0.2),
        0 25px 40px -20px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-lux: all 0.4s cubic-bezier(0.2, 0.95, 0.4, 1.05);
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--elegant-gold-dark);
    border-radius: 10px;
}

#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--elegant-gold-dark);
    width: 50px;
    height: 50px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transition: 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.bg-red {
    background-color: var(--deep-red);
    color: #fff;
}

.bg-gold {
    background-color: var(--elegant-gold);
    color: #fff;
}

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

.bg-soft-red {
    background-color: var(--deep-red-soft);
}

.blue-gradient {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
    color: #fff;
}

.red-gradient {
    background: linear-gradient(
        135deg,
        var(--deep-red) 0%,
        var(--deep-red-dark) 100%
    );
    color: #fff;
}

.gold-gradient {
    background: linear-gradient(
        135deg,
        var(--elegant-gold) 0%,
        var(--elegant-gold-dark) 100%
    );
    color: #fff;
}

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

.text-red {
    color: var(--deep-red-dark) !important;
}

.text-gold {
    color: var(--elegant-gold) !important;
}

.border-blue {
    border: 1px solid var(--primary-blue);
}

.border-red {
    border: 1px solid var(--deep-red);
}

.border-gold {
    border: 1px solid var(--elegant-gold);
}

.shadow-blue {
    box-shadow: 0 10px 30px rgba(0, 78, 158, 0.15);
}

.shadow-red {
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.15);
}

.shadow-gold {
    box-shadow: 0 10px 30px rgba(199, 162, 82, 0.18);
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-blue-dark) !important;
    --bs-btn-border-color: var(--primary-blue-dark) !important;
    --bs-btn-hover-bg: var(--primary-blue-dark) !important;
    --bs-btn-hover-border-color: var(--primary-blue-dark) !important;
    --bs-btn-active-bg: var(--primary-blue-dark) !important;
    --bs-btn-active-border-color: var(--primary-blue-dark) !important;
    --bs-btn-disabled-color: var(--primary-blue-dark) !important;
    --bs-btn-disabled-border-color: var(--primary-blue-dark) !important;
}

.btn-outline-danger {
    --bs-btn-color: var(--deep-red) !important;
    --bs-btn-border-color: var(--deep-red) !important;
    --bs-btn-hover-bg: var(--deep-red) !important;
    --bs-btn-hover-border-color: var(--deep-red) !important;
    --bs-btn-active-bg: var(--deep-red) !important;
    --bs-btn-active-border-color: var(--deep-red) !important;
    --bs-btn-disabled-color: var(--deep-red) !important;
    --bs-btn-disabled-border-color: var(--deep-red) !important;
}

/* TOP BAR */
/* ===================================
   PREMIUM TOP BAR
=================================== */

.top-bar {
    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    padding: 10px 0;

    position: relative;

    z-index: 1000;

    overflow: hidden;
}

.top-bar::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        var(--elegant-gold),
        #f6d77c,
        var(--elegant-gold)
    );
}

.top-bar .container {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.top-left,
.top-right {
    display: flex;

    align-items: center;

    gap: 12px;
}

.top-item {
    color: #fff;

    font-size: 14px;

    font-weight: 500;

    display: flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    transition: 0.3s;
}

.top-item:hover {
    color: #fff;
}

.top-item i {
    color: var(--elegant-gold);

    font-size: 14px;
}

.social-link {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    border-radius: 50%;

    transition: 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);

    color: var(--elegant-gold);

    transform: translateY(-2px);
}

.powered-by {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-left: 18px;

    margin-left: 10px;

    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.powered-by span {
    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    font-weight: 500;
}

.powered-by img {
    height: 32px;

    width: auto;

    object-fit: contain;
}

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

@media (max-width: 991px) {
    .top-bar {
        padding: 12px 0;
    }

    .top-bar .container {
        flex-direction: column;

        gap: 12px;
    }

    .top-left {
        flex-wrap: wrap;

        justify-content: center;

        gap: 10px 15px;
    }

    .top-right {
        justify-content: center;

        flex-wrap: wrap;
    }

    .top-item {
        font-size: 12px;
    }

    .powered-by {
        border-left: none;

        padding-left: 0;

        margin-left: 0;
    }

    .powered-by img {
        height: 28px;
    }
}

.aeren-navbar {
    background: #fff;

    position: sticky;
    top: 0;
    z-index: 999;

    min-height: 95px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

    transition: 0.35s;
}

.aeren-navbar .container {
    max-width: 1400px;
}

.navbar-brand {
    padding-right: 40px;
    position: relative;
}

.navbar-brand::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 1px;
    height: 55px;

    background: #cfb3b3;
}

.navbar-brand img {
    height: 68px;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: var(--text-dark);

    font-size: 15px;

    font-weight: 600;

    padding: 20px 18px !important;

    position: relative;

    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-red);
}

.nav-link::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 16px;

    transform: translateX(-50%);

    width: 0;
    height: 3px;

    border-radius: 20px;

    background: var(--elegant-gold);

    transition: 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.custom-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 380px;

    background: #fff;

    border-radius: 22px;

    padding: 18px;

    border-top: 4px solid var(--elegant-gold);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: 0.35s;

    z-index: 999;
}

.custom-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom a {
    display: block;

    padding: 14px 16px;

    border-radius: 12px;

    color: var(--text-dark);

    font-size: 14px;

    transition: 0.3s;
}

.dropdown-menu-custom a:hover {
    background: linear-gradient(
        90deg,
        rgba(0, 78, 158, 0.08),
        rgba(193, 18, 31, 0.08)
    );

    color: var(--deep-red);

    padding-left: 24px;
}

.apply-btn {
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-dark));

    color: #fff;

    padding: 10px 34px;

    font-weight: 700;

    letter-spacing: 0.4px;

    box-shadow: 0 15px 35px rgba(193, 18, 31, 0.25);

    transition: 0.35s;
}

.apply-btn:hover {
    transform: translateY(-4px);

    color: #fff;

    box-shadow: 0 20px 45px rgba(193, 18, 31, 0.35);
}

@media (max-width: 1199px) {
    .navbar-brand::after {
        display: none;
    }

    .navbar-brand img {
        height: 70px;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none;
    }

    .navbar-toggler i {
        color: var(--deep-red);
        font-size: 30px;
    }

    .navbar-collapse {
        margin-top: 15px;

        background: #fff;

        border-radius: 20px;

        padding: 20px;

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .nav-link {
        padding: 16px 0 !important;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu-custom {
        display: none;

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        margin-top: 10px;

        padding: 12px;

        background: #f8f9fb;

        border-radius: 18px;

        box-shadow: none;

        border: none;

        min-width: 100%;
    }

    .custom-dropdown.active > .dropdown-menu-custom {
        display: block;
    }

    .apply-btn {
        width: 100%;
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}

.hero-editorial {
    position: relative;
    overflow: hidden;

    min-height: 75vh;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at top left,
            rgba(0, 78, 158, 0.05),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(193, 18, 31, 0.05),
            transparent 40%
        ),
        #fafbfd;

    padding: 60px 0 !important;
}

.hero-blob {
    position: absolute;

    border-radius: 50%;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;

    background: rgba(0, 78, 158, 0.05);

    top: -200px;
    left: -200px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;

    background: rgba(193, 18, 31, 0.05);

    bottom: -150px;
    right: -150px;
}

.hero-tag {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 24px;

    border-radius: 50px;

    background: #eef5ff;

    color: var(--primary-blue);

    font-weight: 700;

    margin-bottom: 25px;
}

.hero-tag i {
    color: var(--elegant-gold);
}

.hero-heading {
    color: var(--primary-blue-dark);
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-heading span {
    color: var(--deep-red-dark) !important;
}

.hero-subtitle {
    color: var(--text-muted);

    max-width: 650px;

    margin-bottom: 35px;
}

.hero-buttons {
    margin-bottom: 35px;
}

.btn-red {
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-dark));

    color: #fff;

    font-weight: 700;
}

.btn-outline {
    border: 2px solid var(--elegant-gold);

    color: var(--primary-blue);

    padding: 14px 24px;

    font-weight: 700;
}

.btn-outline-red {
    border: 2px solid var(--deep-red);

    color: var(--deep-red);

    font-weight: 700;
}

.btn-outline-red:hover {
    color: white;
    background-color: var(--deep-red);
}

.hero-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.hero-features span {
    display: flex;

    gap: 10px;

    font-weight: 600;
}

.hero-features i {
    color: var(--elegant-gold);
}

.hero-image-area {
    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 550px;
}

.hero-image-box {
    position: relative;

    width: 100%;
    max-width: 520px;
    z-index: 2;
}

/* Background Shape */

.hero-bg-shape {
    position: absolute;

    width: 280px;
    height: 240px;

    right: -40px;
    top: -30px;

    background: var(--deep-red-soft);

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

    backdrop-filter: blur(10px);

    z-index: -1;
}

/* Main Image */

.hero-main-image {
    width: 100%;

    display: block;

    position: relative;

    z-index: 2;

    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.shape-dots {
    position: absolute;

    width: 110px;

    opacity: 0.9;

    z-index: 1;
}

.shape-top {
    top: -14px;
    left: 28px;
}

.shape-bottom {
    right: 28px;
    bottom: -11px;
}

.hero-recognitions {
    margin-top: 40px;

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.recognition-item {
    background: #fff;

    padding: 14px 18px;

    border-radius: 18px;

    border: 1px solid rgba(199, 162, 82, 0.18);

    box-shadow: var(--shadow-sm);

    display: flex;

    align-items: center;

    gap: 12px;

    transition: 0.35s;
}

.recognition-item:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.recognition-item img {
    width: 42px;

    height: 42px;

    object-fit: contain;
}

.recognition-item span {
    font-size: 0.85rem;

    font-weight: 600;

    color: var(--primary-blue-dark);

    white-space: nowrap;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.logo-item {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text-dark);
    height: 70px;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--elegant-gold);
    background: #ffffff;
}

.logo-item .logo-text {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
}

.logo-item .logo-text.small {
    font-size: 0.6rem;
}

.logo-item img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .logo-item {
        font-size: 0.6rem;
        padding: 10px 8px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }

    .logo-item {
        font-size: 0.55rem;
        padding: 8px 6px;
        min-height: 38px;
    }
}

/* ==========================================
        HERO MOBILE RESPONSIVE
        ========================================== */

@media (max-width: 991.98px) {
    .hero-editorial {
        min-height: auto;
        padding: 50px 0 !important;
    }

    .hero-heading {
        font-size: 2.6rem !important;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 25px;
    }

    .hero-buttons {
        margin-bottom: 25px;
    }

    .hero-features {
        margin-bottom: 40px;
    }

    .hero-image-area {
        min-height: auto;
        margin-top: 20px;
    }

    .hero-image-box {
        width: 100%;
        max-width: 420px;
        margin: auto;
    }

    .hero-main-image {
        width: 100%;
        border-radius: 0;
    }

    .hero-bg-shape {
        width: 180px;
        height: 180px;
        right: -20px;
        top: -20px;
    }

    .shape-top {
        width: 80px;
        left: 10px;
        top: -15px;
    }

    .shape-bottom {
        width: 80px;
        right: 10px;
        bottom: -15px;
    }

    .hero-recognitions {
        justify-content: center;
        margin-top: 35px;
        gap: 12px;
    }

    .hero-recognitions span {
        font-size: 14px;
        width: calc(50% - 6px);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2.1rem !important;
    }

    .hero-tag {
        font-size: 13px;
        padding: 10px 18px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-recognitions span {
        width: 100%;
    }

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

    .hero-image-box {
        max-width: 100%;
    }

    .shape-top,
    .shape-bottom {
        width: 70px;
        opacity: 0.7;
    }
}

.aeren-footer {
    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    position: relative;
}

.footer-title {
    font-weight: 700;

    margin-bottom: 25px;

    position: relative;

    padding-bottom: 10px;
}

.footer-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 45px;
    height: 3px;

    background: var(--elegant-gold);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-bottom-link {
    color: rgba(255, 255, 255, 0.85);

    transition: 0.3s;
}

.footer-links a:hover,
.footer-bottom-link:hover {
    color: var(--elegant-gold);
}

.footer-contact li {
    display: flex;

    gap: 12px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    color: var(--elegant-gold);

    margin-top: 4px;
}

.footer-social {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: #fff;

    transition: 0.3s;
}

.footer-social:hover {
    background: var(--elegant-gold);

    color: #fff;

    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);

    margin: 40px 0 25px;
}

.aeren-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--elegant-gold),
        transparent
    );
}

/* ====================================
        REUSABLE SECTION STYLES
        ==================================== */

.section-tag {
    display: inline-block;

    color: var(--deep-red);

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.hero-section {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 2.5rem;

    line-height: 1.1;

    margin-bottom: 20px;
}

.hero-section span {
    color: var(--elegant-gold-dark);
}

.section-subtitle {
    font-size: 1.1rem;

    color: var(--text-dark);

    line-height: 1.9;

    margin-bottom: 20px;

    max-width: 700px;
}

/* ====================================
        ABOUT SECTION
 ==================================== */

.about-image-wrapper {
    position: relative;

    max-width: 600px;

    margin: auto;
}

.about-main-image {
    width: 100%;

    aspect-ratio: 1/1;

    object-fit: cover;

    border-radius: 50%;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-floating-icon {
    position: absolute;

    bottom: 20px;
    right: 40px;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 55px;

    color: var(--elegant-gold);

    border: 2px solid rgba(199, 162, 82, 0.2);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-content {
    color: var(--text-muted);

    line-height: 1.9;
}

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

@media (max-width: 991px) {
    .about-main-image {
        border-radius: 35px;
    }

    .about-floating-icon {
        width: 90px;
        height: 90px;

        font-size: 35px;

        right: 20px;
        bottom: -20px;
    }
}

.aeren-stats-section {
    margin-top: 60px;

    padding-top: 20px;
}

.premium-stat {
    padding: 20px 40px;

    border-right: 1px solid rgba(0, 0, 0, 0.12);

    height: 100%;
}

.premium-stat h3 {
    font-family: "DM Serif Display", serif;

    font-size: 4rem;

    line-height: 1;

    margin-bottom: 20px;

    color: var(--deep-red-dark);

    font-weight: 400;
}

.premium-stat p {
    color: var(--text-dark);

    font-size: 1.05rem;

    line-height: 1.8;

    margin: 0;

    max-width: 220px;
}

@media (max-width: 991px) {
    .premium-stat {
        border-right: none;

        border-bottom: 1px solid rgba(0, 0, 0, 0.08);

        padding: 30px 0;
    }

    .premium-stat:last-child {
        border-bottom: none;
    }

    .premium-stat h3 {
        font-size: 3rem;
    }

    .premium-stat p {
        max-width: 100%;
    }
}

/* Cards */

.vision-card {
    background: #fff;
    border: 1px solid #edf0f5;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: 0.35s;
}

.vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--deep-red));
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.vision-number {
    font-family: "DM Serif Display", serif;
    font-size: 4rem;
    color: rgba(0, 78, 158, 0.08);
    display: block;
    line-height: 1;
}

.vision-card h4 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin: 10px 0 15px;
}

/* Values */

.values-section {
    margin-top: 100px;
}

.pillar-card {
    background: #fff;
    border: 1px solid rgba(233, 196, 106, 0.3);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition-lux);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-card i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 22px;
}

.pillar-card h6 {
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.pillar-card span {
    color: var(--text-muted);
    font-size: 14px;
}

.pillar-card:hover {
    transform: translateY(-12px);
    border-color: var(--elegant-gold);
    box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.2);
}

/* Legacy */

.legacy-block {
    margin-top: 100px;
    padding: 60px;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );
    color: #fff;
    border-radius: 30px;
}

.legacy-est {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
}

.legacy-heading {
    font-family: "DM Serif Display", serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.legacy-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.legacy-badges div {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
}

.legacy-badges strong {
    display: block;
    font-size: 1.5rem;
    color: var(--elegant-gold);
}

.legacy-badges span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile */

@media (max-width: 991px) {
    .legacy-block {
        padding: 35px;
    }

    .legacy-heading {
        font-size: 2rem;
    }

    .legacy-badges {
        margin-top: 30px;
    }
}

/* placement section */

.placement-image-area {
    position: relative;
    max-width: 550px;
    margin-left: auto;
}

.placement-shape {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(
        135deg,
        rgba(0, 78, 158, 0.08),
        rgba(193, 18, 31, 0.08)
    );
    border-radius: 50%;
    top: 50px;
    left: 50px;
}

.placement-main-image {
    position: relative;
    width: 100%;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.placement-float-card {
    position: absolute;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.placement-float-card h3 {
    font-family: "DM Serif Display", serif;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.card-one {
    top: 116px;
    left: -50px;
}

.card-two {
    top: 15px;
    right: -60px;
}

/* CHECKLIST */

.career-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.career-check-list div {
    font-weight: 600;
    color: var(--text-dark);
}

.career-check-list i {
    color: var(--deep-red);
    margin-right: 10px;
}

/* SUPPORT */

.support-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.support-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* TIMELINE */

.placement-timeline-wrapper {
    margin-top: 100px;
}

.placement-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.placement-timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e6e6e6;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-step span {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto auto 15px;
    color: #fff;
    font-weight: 700;

    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
}

/* RECRUITERS */

.recruiter-section {
    margin-top: 100px;
}

.recruiters-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}

@media (max-width: 1200px) {
    .recruiters-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

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

@media (max-width: 768px) {
    .recruiters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.recruiter-logo {
    background: #fff;
    border-radius: 18px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: 0.3s ease;
}

.recruiter-logo:hover {
    transform: translateY(-5px);
}

.recruiter-logo img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.85;
}

.recruiter-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
/* CTA */

.career-cta {
    margin-top: 100px;
    padding: 60px;
    border-radius: 30px;
    color: #fff;

    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );
}

/* MOBILE */

@media (max-width: 991px) {
    .career-check-list {
        grid-template-columns: 1fr;
    }

    .placement-float-card {
        position: static;
        margin-top: 15px;
    }

    .placement-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .placement-timeline::before {
        display: none;
    }

    .career-cta {
        padding: 35px;
    }
}

.skill-image-wrapper {
    position: relative;
    max-width: 550px;
}

.skill-shape {
    position: absolute;

    width: 280px;
    height: 280px;

    background: linear-gradient(
        135deg,
        rgba(0, 78, 158, 0.08),
        rgba(193, 18, 31, 0.08)
    );

    border-radius: 50%;

    top: -50px;
    left: -76px;
}

.skill-main-image {
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.skill-float-badge {
    position: absolute;

    right: -40px;
    bottom: 40px;

    background: var(--elegant-gold);

    padding: 18px 25px;

    border-radius: 25px;

    z-index: 3;

    box-shadow: var(--shadow-md);
}

.skill-float-badge span {
    font-weight: 700;
    color: white;
}

/* FEATURES */

.skill-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.skill-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-blue-light);

    color: var(--primary-blue);

    font-size: 22px;
}

.skill-feature h5 {
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.skill-feature p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* PILLARS */

.skill-modern-card {
    background: #fff;
    border: 1px solid rgba(199, 162, 82, 0.25);
    border-radius: 32px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.skill-modern-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--deep-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.skill-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

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

.skill-modern-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.skill-modern-icon i {
    font-size: 30px;
    color: var(--deep-red);
}

.skill-modern-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--elegant-gold-dark);
    margin-bottom: 12px;
}

.skill-modern-card h4 {
    font-family: "DM Serif Display", serif;
    color: var(--primary-blue-dark);
    font-size: 2rem;
    margin-bottom: 18px;
}

.skill-modern-card p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .placement-timeline {
        display: block;
    }

    .skill-modern-card {
        padding: 30px;
        border-radius: 24px;
    }

    .skill-modern-card h4 {
        font-size: 1.7rem;
    }

    .skill-modern-icon {
        width: 70px;
        height: 70px;
    }
}

/* MOBILE */

@media (max-width: 991px) {
    .skill-image-wrapper {
        margin: auto;
    }

    .skill-float-badge {
        position: static;

        margin-top: 15px;

        display: inline-block;
    }

    .skill-feature {
        align-items: flex-start;
    }
}

/* Content Card */

.sports-content-card {
    background: #fff;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(199, 162, 82, 0.15);
}

.sports-content-card p {
    color: var(--text-muted);
    line-height: 1.9;
}

/* Features */

.sports-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.sports-features li {
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.sports-features i {
    color: var(--deep-red);
    margin-right: 10px;
}

/* Tags */

.sports-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sports-tags span {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.sports-tags span:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* Volleyball Hero */

.sports-hero-image {
    height: 100%;
}

.sports-hero-image img {
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* Gallery */

.sport-gallery-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.sport-gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}

.sport-gallery-card:hover img {
    transform: scale(1.08);
}

.sport-gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.1)
    );
    z-index: 1;
}

.sport-overlay {
    position: absolute;
    left: 25px;
    bottom: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 2;
}

.sport-gallery-card.wide img {
    height: 380px;
}

/* Banner */

.sports-culture-banner {
    margin-top: 80px;
    padding: 60px;
    border-radius: 30px;

    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    overflow: hidden;
    position: relative;
}

.sports-culture-banner h3 {
    font-family: "DM Serif Display", serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sports-culture-banner p {
    opacity: 0.9;
    margin-bottom: 0;
}

.sports-stat h2 {
    font-family: "DM Serif Display", serif;
    font-size: 4rem;
    color: var(--elegant-gold);
    margin-bottom: 0;
}

.sports-stat span {
    font-size: 1rem;
    color: #fff;
}

/* Mobile */

@media (max-width: 991px) {
    .sports-hero-image img {
        height: 450px;
    }

    .sports-culture-banner {
        padding: 35px;
    }

    .sports-culture-banner h3 {
        font-size: 2rem;
    }

    .sports-stat {
        text-align: left;
        margin-top: 30px;
    }

    .sport-gallery-card.wide img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .sports-content-card {
        padding: 25px;
    }

    .sports-hero-image img {
        height: 350px;
    }

    .sport-gallery-card img {
        height: 220px;
    }
}

.sport-box {
    padding: 25px 10px;
    text-align: center;
    transition: 0.3s;
    background: var(--deep-red-soft);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    transition: var(--transition-lux);
    border: 1px solid rgba(233, 196, 106, 0.3);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.why-aeren-image {
    position: relative;
}

.image-shape {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(0, 78, 158, 0.08),
        rgba(193, 18, 31, 0.08)
    );
    top: -30px;
    left: -30px;
}

.why-aeren-image img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Cards */

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

.why-card {
    background: #fff;
    border: 1px solid rgba(199, 162, 82, 0.15);
    border-radius: 24px;
    padding: 25px;
    transition: 0.35s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.why-card.full {
    grid-column: 1/-1;
}

.why-number {
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    color: var(--deep-red-dark);
}

.why-card h5 {
    color: var(--primary-blue-dark);
    margin: 10px 0;
    font-weight: 600;
}

.why-badge {
    display: inline-block;
    margin-top: 15px;
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Journey */

.journey-wrapper {
    margin-top: 100px;
}

.journey-roadmap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
}

.journey-roadmap::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e6e6e6;
}

.journey-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.journey-item span {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 15px;

    border-radius: 50%;

    color: #fff;
    font-weight: 700;

    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
}

.journey-item h6 {
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.journey-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile */

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .journey-roadmap {
        grid-template-columns: 1fr;
    }

    .journey-roadmap::before {
        display: none;
    }
}

/* ======================
   ORBIT
====================== */

.recognition-hub {
    position: relative;

    width: 900px;
    height: 800px;

    margin: 60px auto;
}

.recognition-hub::before {
    content: "";

    position: absolute;

    inset: 60px;

    border: 2px dashed rgba(199, 162, 82, 0.25);

    border-radius: 50%;
}

.recognition-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: var(--shadow-md);
}

.recognition-center h2 {
    font-family: "DM Serif Display", serif;

    font-size: 4rem;

    margin: 0;

    color: #fff;
}

.orbit-card {
    position: absolute;

    width: 200px;
    height: 200px;

    background: #fff;

    border-radius: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: var(--shadow-md);

    border: 1px solid rgba(199, 162, 82, 0.15);
}

.orbit-card img {
    max-width: 140px;
    max-height: 140px;
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.orbit-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ======================
   CARDS
====================== */

.recognition-card {
    background: #fff;

    padding: 35px;

    height: 100%;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-sm);

    transition: 0.35s;

    position: relative;
}

.recognition-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-md);
}

.recognition-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );
}

.card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;
}

.card-top img {
    height: 55px;

    width: auto;
}

.recognition-id {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: var(--primary-blue-light);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 700;

    color: var(--primary-blue-dark);
}

.recognition-card small {
    color: var(--deep-red);

    font-weight: 700;

    letter-spacing: 2px;

    display: block;

    margin-bottom: 12px;
}

.recognition-card h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 15px;
}

.recognition-card p {
    color: var(--text-muted);

    line-height: 1.9;
}

.recognition-badge {
    display: inline-block;

    margin-top: 20px;

    padding: 10px 18px;

    border-radius: 50px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    font-size: 0.85rem;

    font-weight: 600;
}

/* ======================
   BOTTOM STRIP
====================== */

.recognition-strip {
    margin-top: 80px;

    padding: 40px;

    border-radius: 30px;

    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    text-align: center;
}

.stat-box h3 {
    font-family: "DM Serif Display", serif;

    font-size: 3rem;

    color: var(--elegant-gold);

    margin-bottom: 10px;
}

.stat-box span {
    color: #fff;
}

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

@media (max-width: 991px) {
    .recognition-hub {
        width: 320px;
        height: 320px;
    }

    .recognition-center {
        width: 140px;
        height: 140px;
    }

    .recognition-center h2 {
        font-size: 2.5rem;
    }

    .orbit-card {
        width: 75px;
        height: 75px;
    }

    .orbit-card img {
        max-width: 45px;
    }

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

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

/* Image */

.achievement-image {
    position: relative;
}

.achievement-image img {
    width: 100%;
    box-shadow: var(--shadow-md);
}

.achievement-badge {
    position: absolute;

    bottom: 25px;
    left: 25px;

    background: #fff;

    padding: 20px 25px;

    border-radius: 20px;

    box-shadow: var(--shadow-md);
}

.achievement-badge strong {
    display: block;

    font-size: 2rem;

    color: var(--deep-red-dark);

    font-family: "DM Serif Display", serif;
}

/* Journey */

.achievement-journey {
    margin-top: 80px;

    position: relative;
}

.achievement-journey::before {
    content: "";

    position: absolute;

    left: 35px;

    top: 0;

    width: 2px;

    height: 100%;

    background: rgba(199, 162, 82, 0.3);
}

.achievement-journey-item {
    display: flex;

    gap: 30px;

    margin-bottom: 50px;

    position: relative;
}

.achievement-journey-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.achievement-journey-content {
    background: #fff;

    padding: 30px;

    border-radius: 24px;

    box-shadow: var(--shadow-lg);

    flex: 1;
}

.achievement-journey-content h5 {
    font-weight: 600;
    color: var(--primary-blue-dark);

    margin-bottom: 12px;
}

.achievement-journey-content p {
    color: var(--text-muted);

    margin: 0;
}

/* Banner */

.improvement-banner {
    margin-top: 80px;

    padding: 60px;

    border-radius: 30px;

    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;
}

.improvement-banner h3 {
    font-family: "DM Serif Display", serif;

    font-size: 2.5rem;

    margin-bottom: 20px;
}

.quality-pillars {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.pillar-box {
    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    padding: 18px 20px;

    border-radius: 15px;

    text-align: center;

    font-weight: 600;
}

/* Mobile */

@media (max-width: 991px) {
    .improvement-banner {
        padding: 35px;
    }

    .quality-pillars {
        margin-top: 30px;
    }

    .achievement-journey::before {
        left: 25px;
    }

    .achievement-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* Other Pages */
/* ====================================
   COMMON PAGE HERO
==================================== */

.page-hero {
    position: relative;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    padding: 140px 0 90px !important;

    color: #fff;
}

.page-hero-pattern {
    position: absolute;

    inset: 0;

    background-image: radial-gradient(
        rgba(255, 255, 255, 0.08) 1px,
        transparent 1px
    );

    background-size: 25px 25px;

    opacity: 0.4;
}

.page-breadcrumb {
    margin-bottom: 35px;
}

.page-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;
}

.page-breadcrumb .active {
    color: var(--elegant-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--elegant-gold);
}

.page-hero-tag {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

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

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

    backdrop-filter: blur(10px);

    font-size: 0.7rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 25px;
}

.page-hero-title {
    font-family: "DM Serif Display", serif;

    font-weight: 400;

    margin-bottom: 25px;

    color: #fff;
}

.page-hero-title span {
    color: var(--elegant-gold);
}

.page-hero-description {
    max-width: 800px;

    font-size: 1.1rem;

    line-height: 1.9;

    color: rgba(255, 255, 255, 0.85);
}

/* Decorative Shapes */

.page-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

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

    top: -250px;
    right: -200px;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

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

    bottom: -180px;
    left: -150px;
}

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

@media (max-width: 991px) {
    .page-hero {
        padding: 120px 0 70px !important;
    }

    .page-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 100px 0 60px !important;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero-description {
        font-size: 1rem;
    }
}

/* About Page */
.about-premium-section {
    position: relative;
}

/* Image */

.about-premium-image-wrapper {
    position: relative;
}

.about-premium-image {
    width: 100%;

    object-fit: contain;

    box-shadow: var(--shadow-md);
}

/* Foundation Badge */

.foundation-badge {
    position: absolute;

    bottom: 30px;
    left: 30px;

    background: #fff;

    padding: 22px 26px;

    border-radius: 10px;

    box-shadow: var(--shadow-md);

    max-width: 250px;
}

.foundation-badge strong {
    display: block;

    font-family: "DM Serif Display", serif;

    font-size: 3rem;

    line-height: 1;

    color: var(--deep-red-dark);
}

.foundation-badge span {
    font-size: 0.9rem;

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

/* Feature List */

.about-feature-list {
    margin-top: 35px;
}

.about-feature-item {
    display: flex;

    gap: 18px;

    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;

    min-width: 60px;

    border-radius: 18px;

    background: var(--primary-blue-light);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary-blue);

    font-size: 20px;
}

.about-feature-item h6 {
    color: var(--primary-blue-dark);

    font-weight: 700;

    margin-bottom: 6px;
}

.about-feature-item p {
    margin: 0;

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

.about-feature-card {
    background: #fff;

    border: 1px solid rgba(199, 162, 82, 0.15);

    border-radius: 20px;

    padding: 22px;

    height: 100%;

    transition: 0.35s;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.about-feature-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);

    border-color: var(--elegant-gold);
}

.about-feature-card .feature-icon {
    width: 55px;
    height: 55px;

    border-radius: 15px;

    background: var(--primary-blue-light);

    color: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;

    font-size: 18px;
}

.about-feature-card h4 {
    color: var(--primary-blue-dark);

    font-weight: 600;

    margin-bottom: 8px;
}

.about-feature-card p {
    color: var(--text-muted);

    font-size: 0.9rem;

    margin-bottom: 0;
}

/* Bottom Banner */

/* Responsive */

@media (max-width: 576px) {
    .foundation-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;

        max-width: none;
    }
}

.ethos-manifesto {
    text-align: center;
    margin: 30px auto;

    max-width: 850px;

    padding: 40px;

    border-top: 1px solid rgba(199, 162, 82, 0.25);
    border-bottom: 1px solid rgba(199, 162, 82, 0.25);
}

.ethos-small-title {
    display: block;

    letter-spacing: 3px;

    color: var(--deep-red);

    font-size: 0.85rem;

    font-weight: 700;

    margin-bottom: 20px;
}

.ethos-manifesto h3 {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 3rem;

    line-height: 1.2;

    margin: 0;
}

/* Stats */

.ethos-stats-row {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 50px;

    text-align: center;
}

.ethos-stats-row strong {
    display: block;

    font-family: "DM Serif Display", serif;

    font-size: 4rem;

    color: var(--deep-red-dark);

    line-height: 1;
}

.ethos-stats-row span {
    color: var(--text-muted);
}

.stats-divider {
    width: 1px;
    height: 80px;

    background: rgba(199, 162, 82, 0.3);
}

/* Editorial Cards */

.ethos-editor-card {
    padding: 35px 35px;
    box-shadow: var(--shadow-md);
    background: #fff;
    border-top: 3px solid var(--elegant-gold);

    height: 100%;
}

.editor-label {
    display: block;

    letter-spacing: 2px;

    color: var(--deep-red);

    font-size: 0.8rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.ethos-editor-card h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 15px;

    font-family: "DM Serif Display", serif;
}

.ethos-editor-card p {
    color: var(--text-muted);

    line-height: 1.9;

    margin-bottom: 0;
}

@media (max-width: 991px) {
    .ethos-manifesto h3 {
        font-size: 2rem;
    }

    .ethos-stats-row {
        gap: 25px;
    }

    .ethos-stats-row strong {
        font-size: 3rem;
    }
}

.culture-image-wrapper {
    position: relative;
}

.culture-main-image {
    width: 100%;

    object-fit: contain;

    box-shadow: var(--shadow-md);
}

/* Floating Quote */

.culture-quote-card {
    position: absolute;

    left: -50px;
    bottom: 225px;

    max-width: 320px;

    background: #fff;

    padding: 25px;

    border-radius: 10px;

    box-shadow: var(--shadow-md);

    border-left: 4px solid var(--elegant-gold);
}

.culture-quote-card i {
    font-size: 1.8rem;

    color: var(--deep-red);

    margin-bottom: 12px;
}

.culture-quote-card p {
    margin: 0;

    color: var(--text-dark);

    line-height: 1.8;

    font-weight: 500;
}

/* Mobile */

@media (max-width: 991px) {
    .culture-main-image {
        height: 450px;
    }

    .culture-quote-card {
        left: 15px;
        right: 15px;
        bottom: 15px;

        max-width: none;
    }
}

@media (max-width: 576px) {
    .culture-main-image {
        height: 350px;
    }

    .culture-quote-card {
        padding: 18px;
    }
}

/* Leadership Banner */

.leadership-banner {
    margin-top: 90px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    border-radius: 32px;

    padding: 60px;

    color: #fff;
}

.banner-label {
    color: var(--elegant-gold);

    letter-spacing: 2px;

    font-weight: 700;
}

.leadership-banner h3 {
    font-family: "DM Serif Display", serif;

    font-size: 2.5rem;

    margin: 15px 0;
}

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

.banner-year strong {
    display: block;

    font-size: 5rem;

    color: var(--elegant-gold);

    font-family: "DM Serif Display", serif;
}

/* Values */

.value-modern-card {
    background: #fff;

    border-radius: 28px;

    padding: 35px;

    height: 100%;

    position: relative;

    box-shadow: var(--shadow-sm);

    transition: 0.35s;
}

.value-modern-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.value-modern-card span {
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 2rem;

    font-family: "DM Serif Display", serif;

    color: rgba(199, 162, 82, 0.25);
}

.value-modern-card h5 {
    color: var(--primary-blue-dark);
    font-weight: 600;

    margin-bottom: 15px;
}

.value-modern-card p {
    color: var(--text-muted);

    margin-bottom: 0;
}

.about-journey-v2 {
    position: relative;
}

.timeline-v2 {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.timeline-v2::before {
    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 2px;

    height: 100%;

    background: #d8d8d8;

    transform: translateX(-50%);
}

/* Item */

.timeline-item-v2 {
    display: grid;

    grid-template-columns: 240px 100px 1fr;

    align-items: center;

    margin-bottom: 60px;
}

.timeline-item-v2.reverse {
    grid-template-columns: 1fr 100px 240px;
}

/* Year */

.timeline-year {
    display: inline-block;

    padding: 8px 24px;

    border-radius: 40px;

    color: #fff;

    font-weight: 700;

    margin-bottom: 15px;
}

.timeline-year.blue {
    background: var(--primary-blue-dark);
}

.timeline-year.gold {
    background: var(--elegant-gold-dark);
}

/* Icon */

.timeline-icon-side {
    text-align: center;
}

.timeline-icon-box {
    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: #fff;

    border: 2px dashed rgba(0, 78, 158, 0.25);

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    box-shadow: var(--shadow-md);
}

.timeline-icon-box.gold-border {
    border-color: rgba(199, 162, 82, 0.35);
}

.timeline-icon-box.active {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );
}

.timeline-icon-box i {
    font-size: 55px;

    color: var(--primary-blue-dark);
}

.timeline-icon-box.active i {
    color: #fff;
}

/* Center */

.timeline-center-v2 {
    display: flex;
    justify-content: center;
}

.timeline-dot-v2 {
    width: 28px;
    height: 28px;

    background: #fff;

    border-radius: 50%;

    border: 6px solid var(--primary-blue-dark);

    position: relative;
}

.timeline-dot-v2.gold {
    border-color: var(--elegant-gold-dark);
}

.timeline-dot-v2::before {
    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 1px solid rgba(0, 78, 158, 0.2);
}

/* Content */

.timeline-content-v2 {
    background: #fff;

    padding: 40px;

    box-shadow: var(--shadow-md);

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(199, 162, 82, 0.15);
}

.timeline-content-v2::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background: var(--primary-blue-light);

    border-radius: 50%;

    right: -150px;
    top: -60px;

    opacity: 0.7;
}

.timeline-dots {
    margin-bottom: 15px;
}

.timeline-dots span {
    width: 8px;
    height: 8px;

    background: var(--elegant-gold);

    border-radius: 50%;

    display: inline-block;

    margin-right: 6px;
}

.timeline-content-v2 h4 {
    color: var(--primary-blue-dark);

    font-weight: 700;

    margin-bottom: 15px;
}

.timeline-line-small {
    width: 70px;

    height: 3px;

    background: var(--elegant-gold);

    margin-bottom: 20px;
}

.timeline-content-v2 p {
    color: var(--text-muted);

    margin-bottom: 0;

    line-height: 1.9;
}

/* Active Card */

.active-card {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );
}

.active-card h4,
.active-card p {
    color: #fff;
}

.active-card::before {
    background: rgba(255, 255, 255, 0.08);
}

/* Mobile */

@media (max-width: 991px) {
    .timeline-v2::before {
        left: 30px;
    }

    .timeline-item-v2,
    .timeline-item-v2.reverse {
        display: block;

        position: relative;

        padding-left: 80px;
    }

    .timeline-center-v2 {
        position: absolute;

        left: 16px;

        top: 60px;
    }

    .timeline-icon-side {
        text-align: left;

        margin-bottom: 20px;
    }

    .timeline-icon-box {
        width: 100px;
        height: 100px;
    }

    .timeline-icon-box i {
        font-size: 35px;
    }
}

.aeren-advantage-section {
    position: relative;
}

.advantage-showcase-image {
    position: relative;
}

.advantage-showcase-image img {
    width: 100%;

    box-shadow: var(--shadow-md);
}

.advantage-floating-stats {
    position: absolute;

    bottom: 25px;
    left: 25px;

    display: flex;

    gap: 15px;
}

.advantage-floating-stats div {
    background: #fff;

    padding: 20px;

    border-radius: 10px;

    box-shadow: var(--shadow-md);

    min-width: 130px;

    text-align: center;
}

.advantage-floating-stats strong {
    display: block;

    font-size: 2rem;

    color: var(--deep-red-dark);

    font-family: "DM Serif Display", serif;
}

.advantage-floating-stats span {
    font-size: 0.85rem;

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

/* Top Badges */

.advantage-top-badges {
    display: flex;

    gap: 20px;

    margin-bottom: 35px;
}

.top-badge {
    flex: 1;

    background: #fff;

    padding: 20px;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

    display: flex;

    gap: 15px;

    align-items: center;
}

.top-badge i {
    width: 50px;
    height: 50px;

    border-radius: 15px;

    background: var(--primary-blue-light);

    color: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;
}

.top-badge h6 {
    font-weight: 600;
    margin-bottom: 4px;

    color: var(--primary-blue-dark);
}

.top-badge p {
    margin: 0;

    font-size: 0.85rem;

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

/* Rows */

.advantage-row {
    display: flex;

    gap: 25px;

    padding: 20px 0;

    border-bottom: 1px solid var(--gray-border);
}

.advantage-row span {
    font-size: 2rem;

    color: var(--elegant-gold-dark);

    font-family: "DM Serif Display", serif;

    min-width: 60px;
}

.advantage-row h5 {
    font-weight: 600;
    color: var(--primary-blue-dark);

    margin-bottom: 6px;
}

.advantage-row p {
    margin: 0;

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

.common-cta-box {
    position: relative;

    overflow: hidden;

    padding: 80px 60px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    box-shadow: var(--shadow-md);
}

/* Decorative Shapes */

.common-cta-box::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

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

    top: -180px;
    right: -100px;
}

.common-cta-box::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

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

    left: -100px;
    bottom: -100px;
}

.common-cta-tag {
    display: inline-flex;

    align-items: center;

    padding: 10px 20px;

    border-radius: 50px;

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

    color: #fff;

    font-size: 0.85rem;

    font-weight: 600;

    margin-bottom: 20px;

    backdrop-filter: blur(10px);
}

.common-cta-heading {
    color: #fff;

    font-family: "DM Serif Display", serif;

    font-size: 3.5rem;

    line-height: 1.15;

    margin-bottom: 20px;
}

.common-cta-heading span {
    color: var(--elegant-gold);
}

.common-cta-text {
    max-width: 850px;

    color: rgba(255, 255, 255, 0.88);

    line-height: 1.9;

    margin-bottom: 35px;
}

.common-cta-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}

.common-btn-primary {
    height: 58px;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #fff;

    color: var(--primary-blue-dark);

    font-weight: 700;

    transition: 0.3s;
}

.common-btn-primary:hover {
    transform: translateY(-3px);

    color: var(--primary-blue-dark);
}

.common-btn-outline {
    height: 58px;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

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

    color: #fff;

    transition: 0.3s;
}

.common-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* vision page css  */
.aeren-philosophy-section {
    position: relative;
}

/* Cards */

.philosophy-card {
    position: relative;

    overflow: hidden;

    padding: 50px;

    min-height: 420px;

    border-radius: 35px;

    background: #fff;

    box-shadow: var(--shadow-md);
}

/* Vision Background */

.vision-card-main {
    background:
        linear-gradient(rgba(244, 245, 255, 0.7), rgba(244, 245, 255, 0.9)),
        url("../images/vision.webp");

    background-size: cover;
    background-position: right center;
}

/* Mission Background */

.mission-card-main {
    background:
        linear-gradient(rgba(241, 249, 248, 0.7), rgba(241, 249, 248, 0.9)),
        url("../images/mission.webp");

    background-size: cover;
    background-position: right center;
}

.philosophy-icon {
    width: 70px;
    height: 70px;

    border-radius: 20px;

    background: var(--primary-blue);

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    margin-bottom: 30px;
}

.mission-icon {
    background: var(--deep-red);
}

.philosophy-label {
    display: block;

    color: var(--deep-red);

    font-size: 0.9rem;

    letter-spacing: 4px;

    font-weight: 600;

    margin-bottom: 18px;
}

.philosophy-card h3 {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 2.2rem;

    line-height: 1.2;

    margin-bottom: 20px;
}

.philosophy-card p {
    color: var(--text-muted);

    line-height: 1.9;
}

.philosophy-line {
    width: 120px;
    height: 4px;

    margin-top: 25px;

    border-radius: 10px;

    background: linear-gradient(90deg, var(--primary-blue), var(--deep-red));
}

/* Mobile */

@media (max-width: 991px) {
    .philosophy-card {
        min-height: auto;

        padding: 35px;
    }

    .philosophy-card h3 {
        font-size: 1.9rem;
    }
}

.values-modern-section {
    margin-top: 70px;

    position: relative;
}

.value-modern-card {
    height: 100%;

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    text-align: center;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-sm);

    transition: 0.35s ease;
}

.value-modern-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-md);

    border-color: var(--elegant-gold);
}

.value-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );

    color: #fff;

    font-size: 28px;

    position: relative;
}

.value-icon::after {
    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 26px;

    border: 1px dashed rgba(199, 162, 82, 0.5);
}

.value-modern-card h5 {
    color: var(--primary-blue-dark);

    font-weight: 600;

    margin-bottom: 12px;
}

.value-modern-card p {
    color: var(--text-muted);

    margin-bottom: 0;

    line-height: 1.8;
}

@media (max-width: 991px) {
    .value-modern-card {
        padding: 30px;
    }

    .value-icon {
        width: 70px;
        height: 70px;

        font-size: 24px;
    }
}

.strategic-pillars-section {
    position: relative;
}

.pillar-premium-card {
    position: relative;

    height: 100%;

    background: #fff;

    border-radius: 30px;

    padding: 40px;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition: 0.35s;
}

.pillar-premium-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-md);

    border-color: var(--elegant-gold);
}

.pillar-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-family: "DM Serif Display", serif;

    font-size: 4rem;

    line-height: 1;

    color: rgba(199, 162, 82, 0.15);
}

.pillar-icon {
    width: 75px;
    height: 75px;

    border-radius: 20px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    margin-bottom: 25px;
}

.pillar-premium-card h4 {
    color: var(--primary-blue-dark);

    font-weight: 600;

    margin-bottom: 15px;
}

.pillar-premium-card p {
    color: var(--text-muted);

    line-height: 1.8;

    margin-bottom: 0;
}

@media (max-width: 991px) {
    .pillar-premium-card {
        padding: 30px;
    }

    .pillar-number {
        font-size: 3rem;
    }
}

.mission-approach-section {
    position: relative;
}

.approach-timeline {
    position: relative;

    max-width: 1000px;

    margin: auto;
}

.approach-timeline::before {
    content: "";

    position: absolute;

    left: 50%;

    top: 0;
    bottom: 0;

    width: 3px;

    background: var(--elegant-gold);
}

.approach-item {
    width: 45%;

    background: #fff;

    padding: 30px;

    border-radius: 24px;

    margin-bottom: 40px;

    box-shadow: var(--shadow-sm);

    position: relative;
}

.approach-item.left {
    margin-right: auto;
}

.approach-item.right {
    margin-left: auto;
}

.approach-item::after {
    content: "";

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: var(--primary-blue-dark);

    border: 4px solid #fff;

    position: absolute;

    top: 35px;
}

.approach-item.left::after {
    right: -60px;
}

.approach-item.right::after {
    left: -58px;
}

.approach-item h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 12px;
}

.approach-item p {
    margin: 0;

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

@media (max-width: 991px) {
    .approach-timeline::before {
        left: 20px;
    }

    .approach-item {
        width: 100%;
        margin-left: 40px !important;
    }

    .approach-item::after {
        left: -28px !important;
    }
}

/* chairman message css */
.chairman-message-section {
    position: relative;
}

.chairman-message-box {
    background: #fff;

    border-radius: 35px;

    padding: 50px;

    box-shadow: var(--shadow-md);
}

.chairman-profile {
    text-align: center;

    padding: 40px 30px;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );

    color: #fff;

    height: 100%;
}

.chairman-avatar {
    width: 130px;
    height: 130px;

    margin: auto auto 25px;

    border-radius: 50%;

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

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 55px;

    color: #fff;
}

.chairman-tag {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

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

    font-size: 0.8rem;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.chairman-profile h3 {
    color: #fff;

    margin-bottom: 5px;
}

.designation {
    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 30px;
}

.chairman-stats {
    display: grid;

    gap: 15px;
}

.chairman-stats div {
    background: rgba(255, 255, 255, 0.08);

    padding: 15px;

    border-radius: 15px;
}

.chairman-stats strong {
    display: block;

    font-size: 1.5rem;
}

.message-label {
    color: var(--deep-red);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 3px;
}

.chairman-content h3 {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 3rem;

    margin: 15px 0;
}

.chairman-content h5 {
    color: var(--deep-red-dark);

    margin-bottom: 25px;
}

.chairman-content p {
    color: var(--text-muted);

    line-height: 1.9;
}

.chairman-signature {
    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid var(--gray-border);
}

.chairman-signature strong {
    display: block;

    color: var(--primary-blue-dark);
}

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

@media (max-width: 991px) {
    .chairman-message-box {
        padding: 30px;
    }

    .chairman-content h3 {
        font-size: 2rem;
    }
}

.legacy-showcase-section {
    position: relative;
}

.legacy-stat-card {
    background: #fff;

    border-radius: 28px;

    padding: 40px;

    text-align: center;

    height: 100%;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(199, 162, 82, 0.15);

    transition: 0.35s;
}

.legacy-stat-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.legacy-stat-icon {
    width: 80px;
    height: 80px;

    margin: auto auto 25px;

    border-radius: 22px;

    background: var(--primary-blue-light);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary-blue-dark);

    font-size: 30px;
}

.legacy-stat-card h3 {
    font-family: "DM Serif Display", serif;

    font-size: 3rem;

    color: var(--deep-red-dark);

    margin-bottom: 10px;
}

.legacy-stat-card h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 15px;
}

.legacy-stat-card p {
    color: var(--text-muted);

    margin-bottom: 0;
}

/* Story Box */

.legacy-story-box {
    margin-top: 50px;

    padding: 60px;

    border-radius: 35px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;
}

.legacy-label {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--elegant-gold);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 3px;
}

.legacy-story-box h3 {
    font-family: "DM Serif Display", serif;

    font-size: 3rem;

    margin-bottom: 25px;
}

.legacy-story-box p {
    color: rgba(255, 255, 255, 0.85);

    line-height: 1.9;
}

.legacy-highlight {
    text-align: center;

    padding: 40px;

    border-radius: 25px;

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

    backdrop-filter: blur(10px);
}

.legacy-highlight span {
    display: block;

    color: var(--elegant-gold);

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.legacy-highlight strong {
    display: block;

    font-family: "DM Serif Display", serif;

    font-size: 5rem;

    line-height: 1;
}

.legacy-highlight p {
    margin-top: 10px;

    margin-bottom: 0;
}

@media (max-width: 991px) {
    .legacy-story-box {
        padding: 35px;
    }

    .legacy-story-box h3 {
        font-size: 2rem;
    }

    .legacy-highlight {
        margin-top: 30px;
    }
}

.philosophy-hub-section {
    position: relative;
}

.philosophy-core-card {
    position: relative;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    padding: 50px;

    height: 100%;

    overflow: hidden;

    color: #fff;

    border-radius: 30px;

    box-shadow: var(--shadow-lg);
}

.core-label {
    display: inline-block;

    letter-spacing: 3px;

    font-size: 0.8rem;

    color: var(--elegant-gold);

    margin-bottom: 20px;

    font-weight: 700;
}

.philosophy-core-card h3 {
    font-family: "DM Serif Display", serif;

    font-size: 3rem;

    margin-bottom: 20px;

    color: #fff;
}

.philosophy-core-card p {
    color: rgba(255, 255, 255, 0.85);

    line-height: 1.9;
}

.core-circle {
    width: 110px;
    height: 110px;

    border-radius: 50%;

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

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 35px;
}

.core-circle i {
    font-size: 40px;

    color: var(--elegant-gold);
}

/* Mini Cards */

.philosophy-mini-card {
    background: #fff;

    border-radius: 24px;

    padding: 35px;

    height: 100%;

    position: relative;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-sm);

    transition: 0.35s;
}

.philosophy-mini-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.philosophy-mini-card span {
    position: absolute;

    top: 20px;
    right: 25px;

    font-family: "DM Serif Display", serif;

    font-size: 2rem;

    color: rgba(199, 162, 82, 0.2);
}

.philosophy-mini-card i {
    width: 65px;
    height: 65px;

    border-radius: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary-blue-light);

    color: var(--primary-blue);

    font-size: 22px;

    margin-bottom: 20px;
}

.philosophy-mini-card h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 15px;

    font-weight: 700;
}

.philosophy-mini-card p {
    color: var(--text-muted);

    margin-bottom: 0;

    line-height: 1.8;
}

@media (max-width: 991px) {
    .philosophy-core-card {
        padding: 35px;
    }

    .philosophy-core-card h3 {
        font-size: 2.2rem;
    }
}

.commitment-roadmap-section {
    position: relative;
}

.commitment-roadmap {
    max-width: 1100px;

    margin: auto;

    position: relative;
}

.commitment-roadmap::before {
    content: "";

    position: absolute;

    left: 40px;
    top: 0;

    width: 3px;
    height: 100%;

    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.commitment-item {
    display: flex;

    gap: 30px;

    margin-bottom: 35px;

    position: relative;
}

.commitment-icon {
    width: 80px;
    height: 80px;

    min-width: 80px;

    border-radius: 24px;

    background: #fff;

    border: 2px solid rgba(199, 162, 82, 0.2);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;

    color: var(--primary-blue);

    position: relative;

    z-index: 2;

    box-shadow: var(--shadow-sm);
}

.commitment-content {
    flex: 1;

    background: #fff;

    padding: 30px;

    border-radius: 24px;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-sm);

    transition: 0.35s;
}

.commitment-content:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.commitment-content span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--deep-red);

    font-weight: 700;

    letter-spacing: 2px;
}

.commitment-content h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 15px;

    font-weight: 700;
}

.commitment-content p {
    margin-bottom: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

@media (max-width: 768px) {
    .commitment-roadmap::before {
        left: 30px;
    }

    .commitment-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;

        font-size: 20px;
    }

    .commitment-content {
        padding: 22px;
    }
}

.milestone-ribbon-section {
    position: relative;
}

.milestone-ribbon {
    position: relative;

    margin-top: 70px;
}

.milestone-line {
    position: absolute;

    top: 73px;

    left: 5%;

    width: 90%;

    height: 4px;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.milestone-box {
    position: relative;

    text-align: center;

    padding-top: 40px;
}

.milestone-dot {
    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #fff;

    border: 5px solid var(--primary-blue);

    margin: 0 auto 25px;

    position: relative;

    z-index: 2;
}

.milestone-year {
    display: block;

    font-family: "DM Serif Display", serif;

    font-size: 2.3rem;

    color: var(--deep-red-dark);

    margin-bottom: 10px;
}

.milestone-box h5 {
    color: var(--primary-blue-dark);

    font-weight: 700;

    min-height: 48px;
}

.milestone-box p {
    color: var(--text-muted);

    font-size: 0.95rem;

    line-height: 1.7;
}

.milestone-box.active .milestone-dot {
    border-color: var(--deep-red);

    transform: scale(1.25);
}

.milestone-box.active .milestone-year {
    color: var(--primary-blue-dark);
}

@media (max-width: 991px) {
    .milestone-line {
        display: none;
    }

    .milestone-box {
        background: #fff;

        padding: 30px;

        border-radius: 24px;

        box-shadow: var(--shadow-sm);

        margin-bottom: 20px;
    }

    .milestone-dot {
        margin-bottom: 15px;
    }
}

.community-message-section {
    position: relative;
}

.community-card {
    height: 100%;

    padding: 45px;

    border-radius: 32px;

    position: relative;

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.students-card {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );

    color: #fff;
}

.parents-card {
    background: linear-gradient(135deg, var(--deep-red-dark), var(--deep-red));

    color: #fff;
}

.community-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;
}

.community-badge {
    padding: 10px 18px;

    border-radius: 50px;

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

    font-size: 0.8rem;

    letter-spacing: 2px;

    font-weight: 600;
}

.community-top i {
    font-size: 34px;

    opacity: 0.9;
}

.community-card h3 {
    font-family: "DM Serif Display", serif;

    color: #fff;

    font-size: 2.2rem;

    margin-bottom: 25px;
}

.community-card blockquote {
    margin: 0;

    padding-left: 25px;

    border-left: 4px solid var(--elegant-gold);

    font-size: 1.05rem;

    line-height: 2;

    color: rgba(255, 255, 255, 0.92);
}

.community-author {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.community-author strong {
    display: block;

    color: #fff;
}

.community-author span {
    color: rgba(255, 255, 255, 0.75);

    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .community-card {
        padding: 30px;
    }

    .community-card h3 {
        font-size: 1.8rem;
    }
}

.director-desk-section {
    position: relative;
}

.director-wrapper {
    overflow: hidden;

    border-radius: 35px;

    background: #fff;

    box-shadow: var(--shadow-md);
}

/* Left */

.director-profile {
    height: 100%;

    padding: 50px 35px;

    text-align: center;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );

    color: #fff;
}

.director-avatar {
    width: 140px;
    height: 140px;

    margin: 0 auto 25px;

    border-radius: 50%;

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

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 60px;
}

.director-tag {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

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

    font-size: 0.8rem;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.director-profile h3 {
    color: #fff;

    margin-bottom: 8px;
}

.director-profile h6 {
    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 5px;
}

.director-profile p {
    color: rgba(255, 255, 255, 0.75);
}

.director-quote {
    margin-top: 30px;

    padding: 20px;

    border-radius: 20px;

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

    line-height: 1.8;

    font-style: italic;
}

/* Right */

.director-content {
    padding: 60px;
}

.message-label {
    display: inline-block;

    color: var(--deep-red);

    letter-spacing: 3px;

    font-size: 0.85rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.director-content h3 {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    margin-bottom: 25px;
}

.director-content p {
    color: var(--text-muted);

    line-height: 1.9;
}

.director-highlight {
    margin: 35px 0;

    padding: 30px;

    border-left: 5px solid var(--elegant-gold);

    background: var(--gray-light);

    border-radius: 0 20px 20px 0;
}

.director-highlight i {
    color: var(--elegant-gold);

    font-size: 24px;

    margin-bottom: 15px;
}

.director-highlight h5 {
    color: var(--primary-blue-dark);

    margin: 0;

    font-family: "DM Serif Display", serif;
}

.director-signature {
    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid var(--gray-border);
}

.director-signature strong {
    display: block;

    color: var(--primary-blue-dark);
}

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

@media (max-width: 991px) {
    .director-content {
        padding: 35px;
    }

    .director-profile {
        padding: 40px 25px;
    }

    .director-avatar {
        width: 110px;
        height: 110px;
        font-size: 45px;
    }
}

.legacy-impact-section {
    position: relative;
}

.legacy-stats-wrapper {
    margin-bottom: 50px;
}

.legacy-number-card {
    background: #fff;

    padding: 40px;

    text-align: center;

    border-radius: 28px;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(199, 162, 82, 0.15);

    height: 100%;

    transition: 0.35s;
}

.legacy-number-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.legacy-number-card h3 {
    font-family: "DM Serif Display", serif;

    font-size: 4rem;

    color: var(--deep-red-dark);

    margin-bottom: 10px;
}

.legacy-number-card h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 15px;

    font-weight: 700;
}

.legacy-number-card p {
    color: var(--text-muted);

    margin: 0;
}

/* Bottom Pillars */

.legacy-pillars {
    background: linear-gradient(
        90deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    padding: 35px;

    border-radius: 30px;
}

.legacy-pillar {
    text-align: center;

    color: #fff;
}

.legacy-pillar i {
    width: 70px;
    height: 70px;

    border-radius: 18px;

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

    display: flex;

    align-items: center;
    justify-content: center;

    margin: auto auto 18px;

    font-size: 24px;
}

.legacy-pillar h6 {
    color: #fff;

    margin: 0;

    font-weight: 600;
}

@media (max-width: 991px) {
    .legacy-number-card {
        padding: 30px;
    }

    .legacy-number-card h3 {
        font-size: 3rem;
    }
}

.ibm-philosophy-section {
    position: relative;
}

.ibm-core-card {
    position: relative;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    border-radius: 35px;

    padding: 60px;

    text-align: center;

    color: #fff;

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.core-tag {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--elegant-gold);

    letter-spacing: 3px;

    font-size: 0.8rem;

    font-weight: 700;
}

.ibm-core-card h3 {
    font-family: "DM Serif Display", serif;

    color: #fff;

    font-size: 2.8rem;

    line-height: 1.2;

    margin-bottom: 20px;
}

.ibm-core-card p {
    color: rgba(255, 255, 255, 0.85);

    line-height: 1.9;
}

.core-circle {
    width: 120px;
    height: 120px;

    margin: 35px auto 0;

    border-radius: 50%;

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

    display: flex;

    align-items: center;
    justify-content: center;
}

.core-circle i {
    color: var(--elegant-gold);

    font-size: 45px;
}

/* Side Cards */

.ibm-pillar-card {
    background: #fff;

    padding: 30px;

    border-radius: 24px;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(199, 162, 82, 0.15);

    transition: 0.35s;
}

.ibm-pillar-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 65px;
    height: 65px;

    border-radius: 18px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    margin-bottom: 20px;
}

.ibm-pillar-card h5 {
    color: var(--primary-blue-dark);

    font-weight: 700;

    margin-bottom: 12px;
}

.ibm-pillar-card p {
    color: var(--text-muted);

    margin-bottom: 0;

    line-height: 1.8;
}

@media (max-width: 991px) {
    .ibm-core-card {
        padding: 40px 30px;
    }

    .ibm-core-card h3 {
        font-size: 2rem;
    }
}

.commitment-modern-section {
    position: relative;
}

/* Image */

.commitment-image-wrapper {
    position: relative;

    padding: 30px 20px 20px;
}

.commitment-main-image {
    width: 100%;

    object-fit: contain;

    border-radius: 35px;

    box-shadow: var(--shadow-md);
}

/* Floating Stats */

.floating-stat {
    position: absolute;

    background: #fff;

    border-radius: 22px;

    padding: 18px 24px;

    box-shadow: var(--shadow-md);

    z-index: 2;
}

.floating-stat strong {
    display: block;

    font-family: "DM Serif Display", serif;

    font-size: 1.8rem;

    line-height: 1;

    color: var(--primary-blue-dark);
}

.floating-stat span {
    display: block;

    color: var(--text-muted);

    font-size: 0.85rem;

    margin-top: 6px;
}

.alumni-stat {
    top: 0;

    right: 0;
}

.years-stat {
    bottom: 0;

    left: 40px;
}

/* Highlight Card */

.commitment-highlight-card {
    display: flex;

    align-items: center;

    gap: 25px;

    background: linear-gradient(
        135deg,
        rgba(199, 162, 82, 0.08),
        rgba(0, 78, 158, 0.05)
    );

    border: 1px solid rgba(199, 162, 82, 0.25);

    border-left: 5px solid var(--elegant-gold);

    border-radius: 28px;

    padding: 28px;
}

.highlight-icon {
    width: 70px;

    height: 70px;

    min-width: 70px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;
}

.commitment-highlight-card h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 8px;
}

.commitment-highlight-card p {
    margin: 0;

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

/* Feature Cards */

.commitment-feature-card {
    height: 100%;

    background: #fff;

    border-radius: 28px;

    padding: 30px;

    border: 1px solid rgba(199, 162, 82, 0.12);

    box-shadow: var(--shadow-sm);

    transition: 0.35s;
}

.commitment-feature-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: #f8f1e3;

    color: var(--deep-red);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    margin-bottom: 20px;
}

.commitment-feature-card h5 {
    color: var(--primary-blue-dark);

    font-weight: 700;

    margin-bottom: 12px;

    line-height: 1.4;
}

.commitment-feature-card p {
    color: var(--text-muted);

    margin-bottom: 0;

    line-height: 1.8;
}

/* Mobile */

@media (max-width: 991px) {
    .commitment-main-image {
        height: 400px;
    }

    .floating-stat {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 15px;
    }

    .commitment-highlight-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .commitment-main-image {
        height: 320px;
    }

    .commitment-feature-card {
        padding: 25px;
    }
}

.ibm-milestone-section {
    position: relative;
}

.director-milestone-track {
    position: relative;

    max-width: 1000px;

    margin: auto;
}

.director-milestone-track::before {
    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 3px;

    height: 100%;

    transform: translateX(-50%);

    background: linear-gradient(
        to bottom,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.director-milestone-row {
    display: flex;

    align-items: center;

    margin-bottom: 50px;

    position: relative;
}

.director-milestone-row.left {
    justify-content: flex-start;
}

.director-milestone-row.right {
    justify-content: flex-end;
}

.director-milestone-card {
    width: 42%;

    background: #fff;

    padding: 35px;

    border-radius: 28px;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(199, 162, 82, 0.15);

    transition: 0.35s;
}

.director-milestone-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.director-milestone-card.active {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;
}

.director-milestone-year {
    display: inline-block;

    margin-bottom: 12px;

    font-family: "DM Serif Display", serif;

    font-size: 2rem;

    color: var(--deep-red-dark);
}

.director-milestone-card.active .director-milestone-year {
    color: var(--elegant-gold);
}

.director-milestone-card h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 12px;

    font-weight: 700;
}

.director-milestone-card.active h4 {
    color: #fff;
}

.director-milestone-card p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

.director-milestone-card.active p {
    color: rgba(255, 255, 255, 0.85);
}

.director-milestone-dot {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    width: 72px;

    height: 72px;

    border-radius: 50%;

    background: #fff;

    border: 3px solid var(--elegant-gold);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-blue);

    font-size: 24px;

    box-shadow: var(--shadow-sm);

    z-index: 2;
}

.director-milestone-dot.active {
    background: var(--primary-blue-dark);

    color: #fff;
}

@media (max-width: 991px) {
    .director-milestone-track::before {
        left: 35px;
    }

    .director-milestone-row {
        justify-content: flex-start !important;

        padding-left: 90px;
    }

    .director-milestone-card {
        width: 100%;
    }

    .director-milestone-dot {
        left: 35px;
    }
}

.aicte-approval-section {
    position: relative;
}

.aicte-approval-box {
    background: #fff;

    border-radius: 35px;

    padding: 60px;

    box-shadow: var(--shadow-md);

    border: 1px solid rgba(199, 162, 82, 0.15);

    overflow: hidden;

    position: relative;
}

.aicte-approval-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 6px;

    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

/* Left */

.aicte-seal-area {
    text-align: center;
}

.approval-badge {
    display: inline-block;

    padding: 8px 20px;

    border-radius: 50px;

    background: var(--elegant-gold-light);

    color: var(--elegant-gold-dark);

    font-weight: 700;

    margin-bottom: 20px;
}

.aicte-logo-circle {
    width: 220px;
    height: 220px;

    margin: auto;

    border-radius: 50%;

    background: #fff;

    border: 3px solid rgba(199, 162, 82, 0.2);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: var(--shadow-md);
}

.aicte-logo-circle img {
    width: 140px;
}

.approval-status {
    margin-top: 25px;

    background: var(--primary-blue-dark);

    color: #fff;

    padding: 14px 20px;

    border-radius: 50px;

    font-weight: 700;
}

.approval-status i {
    color: var(--elegant-gold);

    margin-right: 8px;
}

/* Features */

.aicte-feature {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 18px;

    background: #fff;

    border-radius: 16px;

    border: 1px solid rgba(199, 162, 82, 0.12);

    box-shadow: var(--shadow-sm);
}

.aicte-feature i {
    color: var(--primary-blue);

    font-size: 18px;
}

.aicte-feature span {
    font-weight: 600;

    color: var(--text-dark);
}

/* Footer */

.approval-footer {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--gray-border);

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.approval-footer strong {
    display: block;

    color: var(--primary-blue-dark);
}

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

.approval-year {
    background: var(--deep-red-soft);

    color: var(--deep-red-dark);

    padding: 10px 20px;

    border-radius: 50px;

    font-weight: 700;
}

.verify-aicte-btn {
    display: inline-flex;

    align-items: center;

    margin-top: 25px;

    padding: 14px 28px;

    background: var(--primary-blue-dark);

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;
}

.verify-aicte-btn:hover {
    background: var(--deep-red-dark);

    color: #fff;
}

@media (max-width: 991px) {
    .aicte-approval-box {
        padding: 35px;
    }

    .approval-footer {
        flex-direction: column;

        gap: 15px;

        align-items: flex-start;
    }

    .aicte-logo-circle {
        width: 180px;
        height: 180px;
    }

    .aicte-logo-circle img {
        width: 110px;
    }
}

.university-affiliation-section {
    position: relative;
}

.affiliation-wrapper {
    background: #fff;

    border-radius: 35px;

    padding: 60px;

    box-shadow: var(--shadow-md);

    border: 1px solid rgba(199, 162, 82, 0.15);

    overflow: hidden;

    position: relative;
}

.affiliation-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

/* Seal Card */

.university-seal-card {
    text-align: center;

    background: linear-gradient(135deg, var(--primary-blue-dark), #0a5fc0);

    color: #fff;

    padding: 40px 30px;

    border-radius: 30px;

    height: 100%;

    position: relative;

    overflow: hidden;
}

.heritage-tag {
    display: inline-block;

    padding: 8px 18px;

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

    border-radius: 50px;

    font-size: 0.8rem;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.university-seal-card h2 {
    font-size: 4rem;

    font-family: "DM Serif Display", serif;

    color: var(--elegant-gold);

    margin-bottom: 20px;
}

.seal-circle {
    width: 130px;
    height: 130px;

    margin: auto;

    border-radius: 50%;

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

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 50px;

    margin-bottom: 20px;
}

.university-seal-card h4 {
    color: #fff;

    margin-bottom: 8px;
}

.university-seal-card p {
    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 20px;
}

.affiliation-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 22px;

    border-radius: 50px;

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

    font-weight: 700;
}

/* Features */

.affiliation-feature {
    display: flex;

    gap: 18px;

    background: var(--gray-light);

    padding: 20px;

    border-radius: 18px;

    height: 100%;
}

.affiliation-feature .feature-icon {
    width: 55px;
    height: 55px;

    border-radius: 15px;

    background: #fff;

    color: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.affiliation-feature h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 6px;

    font-size: 1rem;
}

.affiliation-feature p {
    margin: 0;

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

/* Trust Strip */

.affiliation-trust-strip {
    margin-top: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(
        135deg,
        rgba(0, 78, 158, 0.04),
        rgba(199, 162, 82, 0.08)
    );

    border-radius: 25px;

    padding: 25px;
}

.trust-item {
    /* display: flex; */

    align-items: center;

    gap: 10px;

    font-weight: 700;

    color: var(--primary-blue-dark);

    padding: 0 25px;
}

.trust-item i {
    color: var(--elegant-gold);

    font-size: 20px;
}

.trust-divider {
    width: 1px;

    height: 35px;

    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .affiliation-wrapper {
        padding: 35px;
    }

    .affiliation-trust-strip {
        flex-direction: column;

        gap: 20px;
    }

    .trust-divider {
        display: none;
    }
}

.affiliation-status-section {
    position: relative;
}

.recognition-dual-wrapper {
    background: #fff;

    border-radius: 35px;

    padding: 50px;

    box-shadow: var(--shadow-md);

    border: 1px solid rgba(199, 162, 82, 0.15);
}

/* Panels */

.recognition-panel {
    height: 100%;

    background: #fff;

    border-radius: 30px;

    padding: 35px;

    border: 1px solid rgba(199, 162, 82, 0.15);

    position: relative;

    transition: 0.3s;
}

.recognition-panel:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.university-panel {
    border-top: 5px solid var(--primary-blue);
}

.approval-panel {
    border-top: 5px solid var(--deep-red);
}

/* Header */

.recognition-header {
    display: flex;

    gap: 18px;

    align-items: center;

    margin-bottom: 20px;
}

.recognition-logo {
    width: 80px;
    height: 80px;

    border-radius: 20px;

    background: var(--primary-blue-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-blue);

    font-size: 32px;
}

.recognition-logo img {
    width: 55px;
}

.recognition-label {
    display: block;

    color: var(--deep-red);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.recognition-header h4 {
    color: var(--primary-blue-dark);

    margin: 0;

    font-weight: 700;
}

/* Status */

.recognition-status {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 18px;

    background: var(--elegant-gold-light);

    color: var(--elegant-gold-dark);

    border-radius: 50px;

    font-weight: 700;

    margin-bottom: 20px;
}

.recognition-status i {
    color: #28a745;
}

.recognition-panel p {
    color: var(--text-muted);

    line-height: 1.9;
}

/* Footer */

.recognition-footer-tag {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--gray-border);

    color: var(--primary-blue-dark);

    font-weight: 700;
}

/* Connector */

.recognition-connector {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    height: 100%;
}

.connector-circle {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    margin-bottom: 15px;
}

.recognition-connector span {
    font-weight: 700;

    color: var(--primary-blue-dark);

    text-align: center;
}

/* Mobile */

@media (max-width: 991px) {
    .recognition-dual-wrapper {
        padding: 30px;
    }

    .recognition-connector {
        padding: 20px 0;
    }
}

.student-benefits-section {
    position: relative;
}

.benefits-intro-card {
    height: 100%;

    padding: 45px;

    border-radius: 32px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-intro-card h2 {
    font-family: "DM Serif Display", serif;

    font-size: 2.7rem;

    color: #fff;

    margin: 20px 0;
}

.benefits-intro-card h2 span {
    color: var(--elegant-gold);
}

.benefits-intro-card p {
    color: rgba(255, 255, 255, 0.85);

    line-height: 1.9;
}

.benefits-badge {
    margin-top: 30px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 50px;

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

    font-weight: 600;
}

.benefits-badge i {
    color: var(--elegant-gold);
}

/* Benefit Cards */

.benefit-card-modern {
    height: 100%;

    background: #fff;

    border-radius: 28px;

    padding: 30px;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-sm);

    transition: 0.35s;
}

.benefit-card-modern:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;

    border-radius: 20px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin-bottom: 20px;
}

.benefit-tag {
    display: inline-block;

    padding: 6px 14px;

    border-radius: 30px;

    background: var(--elegant-gold-light);

    color: var(--elegant-gold-dark);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.benefit-card-modern h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 12px;

    font-weight: 700;
}

.benefit-card-modern p {
    color: var(--text-muted);

    line-height: 1.8;

    margin: 0;
}

@media (max-width: 991px) {
    .benefits-intro-card {
        padding: 35px;
    }

    .benefits-intro-card h2 {
        font-size: 2rem;
    }
}

.quality-framework-section {
    position: relative;
}

/* Quality Grid */

.quality-standards-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.quality-standard-card {
    background: #fff;

    border-radius: 25px;

    padding: 30px;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-sm);

    transition: 0.35s;
}

.quality-standard-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.quality-icon {
    width: 70px;
    height: 70px;

    border-radius: 20px;

    background: var(--primary-blue-light);

    color: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    margin-bottom: 20px;
}

.quality-standard-card h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 12px;

    font-weight: 700;
}

.quality-standard-card p {
    color: var(--text-muted);

    margin: 0;

    line-height: 1.8;
}

/* Journey */

.approval-journey-card {
    background: #fff;

    border-radius: 30px;

    padding: 35px;

    box-shadow: var(--shadow-md);

    border-top: 5px solid var(--elegant-gold);

    height: 100%;
}

.approval-journey-heading span {
    color: var(--deep-red);

    font-size: 0.8rem;

    letter-spacing: 2px;

    font-weight: 700;
}

.approval-journey-heading h4 {
    color: var(--primary-blue-dark);

    margin-top: 10px;

    margin-bottom: 30px;
}

.approval-journey-step {
    display: flex;

    gap: 20px;

    margin-bottom: 30px;
}

.approval-step-no {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));

    color: #fff;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.approval-journey-step h6 {
    color: var(--primary-blue-dark);

    margin-bottom: 8px;

    font-weight: 700;
}

.approval-journey-step p {
    color: var(--text-muted);

    margin: 0;

    line-height: 1.8;
}

/* Compliance */

.compliance-banner {
    margin-top: 50px;

    padding: 35px;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    color: #fff;
}

.compliance-icon {
    width: 80px;
    height: 80px;

    border-radius: 50%;

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

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    color: var(--elegant-gold);
}

.compliance-banner h4 {
    color: #fff;

    margin-bottom: 8px;
}

.compliance-banner p {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);
}

.verify-status-btn {
    white-space: nowrap;

    padding: 14px 26px;

    border-radius: 50px;

    background: #fff;

    color: var(--primary-blue-dark);

    text-decoration: none;

    font-weight: 700;
}

.verify-status-btn:hover {
    color: var(--deep-red-dark);
}

/* Mobile */

@media (max-width: 991px) {
    .quality-standards-grid {
        grid-template-columns: 1fr;
    }

    .compliance-banner {
        flex-direction: column;

        text-align: center;
    }
}

/*=========================================================
 COMMITTEE DIRECTORY SECTION
=========================================================*/

.committee-directory-section {
    position: relative;
}

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

.committee-header {
    background: #fff;

    border-radius: 32px;

    padding: 60px;

    margin-bottom: 45px;

    border: 1px solid rgba(199, 162, 82, 0.15);

    box-shadow: var(--shadow-md);

    position: relative;

    overflow: hidden;
}

.committee-header::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 8px;

    height: 100%;

    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.committee-stats {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 35px;
}

.committee-stat {
    min-width: 130px;

    background: var(--gray-light);

    border-radius: 20px;

    padding: 18px;

    text-align: center;

    transition: 0.35s;

    border: 1px solid transparent;
}

.committee-stat:hover {
    transform: translateY(-5px);

    border-color: rgba(199, 162, 82, 0.3);

    box-shadow: var(--shadow-sm);
}

.committee-stat h3 {
    font-family: "DM Serif Display", serif;

    font-size: 2.4rem;

    color: var(--primary-blue-dark);

    margin-bottom: 5px;

    line-height: 1;
}

.committee-stat span {
    color: var(--text-muted);

    font-size: 0.9rem;

    font-weight: 600;
}

.committee-hero-icon {
    width: 230px;

    height: 230px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 80px;

    box-shadow: var(--shadow-lg);

    position: relative;
}

.committee-hero-icon::after {
    content: "";

    position: absolute;

    inset: 18px;

    border-radius: 50%;

    border: 2px dashed rgba(255, 255, 255, 0.25);
}

/*=========================================================
 FILTER
=========================================================*/

.committee-filter-area {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

.filter-title {
    font-weight: 700;

    color: var(--primary-blue-dark);

    margin-right: 5px;
}

.committee-filter-btn {
    border: 0;

    background: #fff;

    padding: 13px 22px;

    border-radius: 50px;

    font-weight: 600;

    color: var(--text-dark);

    border: 1px solid var(--gray-border);

    transition: 0.3s;
}

.committee-filter-btn:hover {
    color: #fff;

    background: var(--primary-blue-dark);

    border-color: var(--primary-blue-dark);
}

.committee-filter-btn.active {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    border-color: transparent;

    box-shadow: var(--shadow-sm);
}

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

.committee-card {
    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(199, 162, 82, 0.12);

    box-shadow: var(--shadow-sm);

    transition: 0.35s;

    height: 100%;

    display: flex;

    flex-direction: column;
}

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

    box-shadow: var(--shadow-lg);
}

/* top */

.committee-card-header {
    padding: 24px;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    border-bottom: 1px solid var(--gray-border);

    background: linear-gradient(
        135deg,
        rgba(0, 78, 158, 0.04),
        rgba(199, 162, 82, 0.05)
    );
}

.committee-card-header h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 6px;

    font-weight: 700;
}

.committee-card-header small {
    color: var(--text-muted);

    font-weight: 600;
}

.member-count {
    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 0.82rem;

    font-weight: 700;

    white-space: nowrap;
}

/* body */

.committee-card-body {
    padding: 24px;

    flex: 1;
}

.committee-member-row {
    display: flex;

    gap: 12px;

    align-items: center;

    margin-bottom: 14px;
}

.designation-badge {
    min-width: 95px;

    text-align: center;

    background: var(--deep-red-soft);

    color: var(--deep-red-dark);

    padding: 6px 12px;

    border-radius: 30px;

    font-size: 0.72rem;

    font-weight: 700;
}

.member-name {
    color: var(--text-dark);

    font-weight: 500;
}

.committee-more-members {
    margin-top: 18px;

    background: var(--gray-light);

    border-radius: 15px;

    text-align: center;

    padding: 10px;

    font-weight: 600;

    color: var(--primary-blue-dark);
}

/* footer */

.committee-card-footer {
    padding: 22px;

    border-top: 1px solid var(--gray-border);
}

.committee-view-btn {
    width: 100%;

    border: 0;

    padding: 14px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    font-weight: 600;

    transition: 0.3s;
}

.committee-view-btn:hover {
    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);
}

/*=========================================================
 MODAL PRE-STYLING
=========================================================*/

.committee-modal .modal-content {
    border: 0;

    border-radius: 28px;

    overflow: hidden;
}

.committee-modal .modal-header {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    padding: 22px 30px;
}

.committee-modal .modal-title {
    color: #fff;

    font-weight: 700;
}

.committee-modal .btn-close {
    filter: invert(1);
}

.committee-modal .modal-body {
    padding: 30px;
}

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

@media (max-width: 991px) {
    .committee-header {
        padding: 35px;
    }

    .committee-hero-icon {
        width: 180px;
        height: 180px;

        font-size: 60px;

        margin-top: 30px;
    }

    .committee-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .committee-card-header {
        flex-direction: column;

        gap: 15px;
    }

    .member-count {
        align-self: flex-start;
    }

    .committee-filter-area {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .committee-header {
        padding: 25px;
    }

    .committee-stat {
        width: calc(50% - 10px);
    }

    .committee-stat h3 {
        font-size: 2rem;
    }

    .committee-member-row {
        flex-direction: column;

        align-items: flex-start;
    }

    .designation-badge {
        min-width: auto;
    }
}

/*==========================================
MODAL
==========================================*/

.committee-modal-tag {
    display: inline-block;

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

    padding: 7px 15px;

    border-radius: 30px;

    font-size: 0.8rem;

    letter-spacing: 1px;

    color: #fff;
}

#committeeCategory {
    color: rgba(255, 255, 255, 0.85);
}

.committee-modal-summary {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 30px;
}

.committee-summary-box {
    background: var(--gray-light);

    border-radius: 20px;

    text-align: center;

    padding: 25px;
}

.committee-summary-box h4 {
    font-family: "DM Serif Display", serif;

    font-size: 2rem;

    color: var(--primary-blue-dark);

    margin-bottom: 5px;
}

.committee-summary-box span {
    color: var(--text-muted);
}

.committee-search {
    margin-top: 20px;
}

.committee-search input {
    height: 55px;

    border-radius: 15px;
}

.committee-table thead {
    background: var(--primary-blue-light);
}

.committee-table th {
    color: var(--primary-blue-dark);

    font-weight: 700;
}

.committee-table tbody tr {
    transition: 0.25s;
}

.committee-table tbody tr:hover {
    background: #fafafa;
}

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

.committee-role {
    display: inline-block;

    padding: 6px 14px;

    border-radius: 25px;

    font-size: 0.75rem;

    font-weight: 700;

    background: var(--deep-red-soft);

    color: var(--deep-red-dark);
}

@media (max-width: 768px) {
    .committee-modal-summary {
        grid-template-columns: 1fr;
    }
}

.advisor-image-wrapper {
    position: relative;
}

.advisor-main-image {
    width: 100%;

    object-fit: cover;

    box-shadow: var(--shadow-md);
}

.advisor-image-badge {
    position: absolute;

    bottom: 25px;

    left: 25px;

    background: #fff;

    padding: 22px;

    border-radius: 10px;

    box-shadow: var(--shadow-md);
}

.advisor-image-badge strong {
    display: block;

    font-size: 2rem;

    font-family: "DM Serif Display", serif;

    color: var(--deep-red);

    line-height: 1;
}

.advisor-image-badge span {
    color: var(--text-muted);
}

.advisor-feature {
    display: flex;

    gap: 16px;

    padding: 22px;

    background: #fff;

    border-radius: 20px;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(199, 162, 82, 0.15);

    transition: 0.3s;

    height: 100%;
}

.advisor-feature:hover {
    transform: translateY(-5px);
}

.advisor-feature i {
    width: 55px;

    height: 55px;

    border-radius: 16px;

    background: var(--primary-blue-light);

    color: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.advisor-feature h6 {
    color: var(--primary-blue-dark);

    margin-bottom: 6px;

    font-weight: 700;
}

.advisor-feature p {
    margin: 0;

    color: var(--text-muted);

    font-size: 0.92rem;
}

.advisor-stats-strip {
    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    border-radius: 30px;

    overflow: hidden;
}

.advisor-stat-box {
    padding: 35px;

    text-align: center;

    color: #fff;
}

.advisor-stat-box:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.advisor-stat-box strong {
    display: block;

    font-family: "DM Serif Display", serif;

    font-size: 3rem;

    color: var(--elegant-gold);

    line-height: 1;
}

.advisor-stat-box span {
    display: block;

    margin-top: 10px;

    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
    .advisor-main-image {
        height: 420px;
    }

    .advisor-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .advisor-stats-strip {
        grid-template-columns: 1fr;
    }
}

.advisors-directory-section {
    position: relative;
}

.advisor-category {
    margin-top: 60px;
}

.advisor-category:first-child {
    margin-top: 0;
}

.advisor-category-title {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}

.advisor-category-title span {
    width: 55px;
    height: 55px;

    border-radius: 16px;

    background: var(--primary-blue-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-blue);

    font-size: 22px;
}

.advisor-category-title h3 {
    margin: 0;

    color: var(--primary-blue-dark);

    font-weight: 700;
}

.advisor-list {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.advisor-profile {
    background: #fff;

    border-radius: 22px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(199, 162, 82, 0.15);

    transition: 0.35s;
}

.advisor-profile:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.advisor-left {
    display: flex;

    gap: 20px;

    align-items: center;
}

.advisor-avatar {
    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 32px;

    flex-shrink: 0;
}

.advisor-info h4 {
    margin-bottom: 8px;

    color: var(--primary-blue-dark);

    font-weight: 700;
}

.advisor-info h6 {
    margin-bottom: 6px;

    color: var(--deep-red-dark);

    font-weight: 600;
}

.advisor-info p {
    margin: 0;

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

.advisor-badge {
    padding: 12px 22px;

    border-radius: 50px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    font-size: 0.85rem;

    font-weight: 700;

    white-space: nowrap;
}

@media (max-width: 768px) {
    .advisor-profile {
        flex-direction: column;

        align-items: flex-start;
    }

    .advisor-badge {
        margin-left: 100px;
    }
}

.advisors-directory-section {
    position: relative;
}

.advisor-category {
    margin-top: 60px;
}

.advisor-category:first-child {
    margin-top: 0;
}

.advisor-category-title {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}

.advisor-category-title span {
    width: 55px;
    height: 55px;

    border-radius: 16px;

    background: var(--primary-blue-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-blue);

    font-size: 22px;
}

.advisor-category-title h3 {
    margin: 0;

    color: var(--primary-blue-dark);

    font-weight: 700;
}

.advisor-list {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.advisor-profile {
    background: #fff;

    border-radius: 22px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(199, 162, 82, 0.15);

    transition: 0.35s;
}

.advisor-profile:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.advisor-left {
    display: flex;

    gap: 20px;

    align-items: center;
}

.advisor-avatar {
    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 32px;

    flex-shrink: 0;
}

.advisor-info h4 {
    margin-bottom: 8px;

    color: var(--primary-blue-dark);

    font-weight: 700;
}

.advisor-info h6 {
    margin-bottom: 6px;

    color: var(--deep-red-dark);

    font-weight: 600;
}

.advisor-info p {
    margin: 0;

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

.advisor-badge {
    padding: 12px 22px;

    border-radius: 50px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    font-size: 0.85rem;

    font-weight: 700;

    white-space: nowrap;
}

@media (max-width: 768px) {
    .advisor-profile {
        flex-direction: column;

        align-items: flex-start;
    }

    .advisor-badge {
        margin-left: 100px;
    }
}

/*=========================================
AWARDS SHOWCASE
=========================================*/
.awards-showcase-section {
    position: relative;
}

.award-showcase-item {
    position: relative;

    background: #fff;

    border-radius: 32px;

    padding: 45px;

    margin-bottom: 45px;

    box-shadow: var(--shadow-md);

    border: 1px solid rgba(199, 162, 82, 0.15);

    overflow: hidden;

    transition: 0.35s;
}

.award-showcase-item:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.award-showcase-item::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 8px;

    height: 100%;

    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.award-image-box {
    position: relative;

    overflow: hidden;

    border-radius: 24px;
}

.award-image-box img {
    width: 100%;

    height: 320px;

    object-fit: contain;

    transition: 0.5s;
}

.award-showcase-item:hover .award-image-box img {
    transform: scale(1.05);
}

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

.award-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    padding: 10px 18px;

    border-radius: 40px;

    font-size: 0.85rem;

    font-weight: 700;

    margin-bottom: 18px;
}

.award-year {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--deep-red);

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.award-title {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 2.2rem;

    margin-bottom: 20px;

    line-height: 1.2;
}

/*=========================================
INFO BOXES
=========================================*/

.award-info-box {
    background: var(--gray-light);

    border-radius: 20px;

    padding: 20px;

    height: 100%;

    transition: 0.3s;

    border: 1px solid transparent;
}

.award-info-box:hover {
    border-color: rgba(199, 162, 82, 0.25);

    transform: translateY(-4px);
}

.award-info-box small {
    display: block;

    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.award-info-box strong {
    display: block;

    color: var(--primary-blue-dark);

    font-weight: 700;

    line-height: 1.5;
}

/*=========================================
DECORATION
=========================================*/

.award-showcase-item::after {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(199, 162, 82, 0.05);

    right: -70px;

    top: -70px;
}

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

@media (max-width: 991px) {
    .award-showcase-item {
        padding: 30px;
    }

    .award-image-box {
        margin-bottom: 25px;
    }

    .award-image-box img {
        height: 320px;
    }

    .award-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .award-showcase-item {
        padding: 22px;
    }

    .award-image-box img {
        height: 240px;
    }

    .award-title {
        font-size: 1.5rem;
    }

    .award-tag {
        font-size: 0.75rem;

        padding: 8px 14px;
    }
}

/*=========================================
INSTITUTION EXCELLENCE
=========================================*/

.institution-excellence-section {
    position: relative;
}

/*=========================================
MAIN DASHBOARD
=========================================*/

.institution-dashboard {
    background: #fff;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);

    border: 1px solid rgba(199, 162, 82, 0.15);

    margin-bottom: 60px;
}

/*=========================================
LEFT PANEL
=========================================*/

.institution-left {
    position: relative;

    height: 100%;

    padding: 55px;

    background: linear-gradient(
        145deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );

    color: #fff;

    overflow: hidden;
}

.institution-left::before {
    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

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

    border-radius: 50%;

    right: -100px;

    top: -100px;
}

.institution-left::after {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

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

    border-radius: 50%;

    bottom: -80px;

    left: -60px;
}

.institution-badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 40px;

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

    backdrop-filter: blur(10px);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.institution-left h3 {
    font-family: "DM Serif Display", serif;

    font-size: 2.5rem;

    line-height: 1.2;

    color: #fff;

    margin-bottom: 20px;
}

.institution-left h3 span {
    color: var(--elegant-gold);
}

.institution-left p {
    color: rgba(255, 255, 255, 0.82);

    line-height: 1.9;

    margin-bottom: 40px;
}

/*=========================================
STATS
=========================================*/

.institution-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.institution-stat {
    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);

    border-radius: 18px;

    padding: 22px;

    transition: 0.35s;
}

.institution-stat:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.14);
}

.institution-stat h2 {
    font-family: "DM Serif Display", serif;

    color: var(--elegant-gold);

    font-size: 2.3rem;

    margin-bottom: 5px;
}

.institution-stat span {
    color: rgba(255, 255, 255, 0.9);

    font-size: 0.9rem;
}

/*=========================================
RIGHT PANEL
=========================================*/

.institution-right {
    padding: 55px;

    background: #fff;
}

.achievement-block {
    display: flex;

    gap: 25px;

    align-items: flex-start;

    padding-bottom: 30px;

    margin-bottom: 30px;

    border-bottom: 1px solid var(--gray-border);

    transition: 0.3s;
}

.achievement-block:last-child {
    border-bottom: none;

    margin-bottom: 0;

    padding-bottom: 0;
}

.achievement-block:hover {
    transform: translateX(8px);
}

.achievement-icon {
    width: 75px;

    height: 75px;

    border-radius: 22px;

    background: linear-gradient(135deg, var(--primary-blue-light), #ffffff);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-blue);

    font-size: 28px;

    flex-shrink: 0;

    box-shadow: var(--shadow-sm);
}

.achievement-block span {
    display: inline-block;

    color: var(--deep-red);

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.achievement-block h5 {
    color: var(--primary-blue-dark);

    font-weight: 700;

    margin-bottom: 10px;
}

.achievement-block p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

/*=========================================
BOTTOM PANEL
=========================================*/

.institution-bottom {
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-dark));

    padding: 55px;

    border-radius: 35px;

    color: #fff;

    overflow: hidden;

    position: relative;
}

.institution-bottom::before {
    content: "";

    position: absolute;

    right: -100px;

    top: -100px;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}

.institution-bottom h3 {
    color: #fff;

    font-family: "DM Serif Display", serif;

    margin-bottom: 20px;
}

.institution-bottom p {
    color: rgba(255, 255, 255, 0.85);

    line-height: 1.9;
}

.quality-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.quality-item {
    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    border-radius: 18px;

    padding: 22px;

    text-align: center;

    transition: 0.35s;
}

.quality-item:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.16);
}

.quality-item i {
    font-size: 28px;

    color: var(--elegant-gold);

    margin-bottom: 15px;
}

.quality-item span {
    display: block;

    color: #fff;

    font-weight: 600;

    line-height: 1.5;
}

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

@media (max-width: 991px) {
    .institution-left,
    .institution-right,
    .institution-bottom {
        padding: 35px;
    }

    .institution-left {
        border-radius: 35px 35px 0 0;
    }

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

    .quality-grid {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .institution-left,
    .institution-right,
    .institution-bottom {
        padding: 25px;
    }

    .institution-left h3 {
        font-size: 2rem;
    }

    .institution-stats {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .achievement-block {
        flex-direction: column;

        gap: 18px;
    }

    .achievement-icon {
        width: 65px;

        height: 65px;

        font-size: 24px;
    }
}

/*=========================================
ACADEMIC PARTNERS
=========================================*/

.academic-partners-section {
    position: relative;
}

.partners-wrapper {
    position: relative;

    background: #fff;

    border-radius: 35px;

    padding: 50px;

    box-shadow: var(--shadow-lg);

    border: 1px solid rgba(199, 162, 82, 0.15);

    overflow: hidden;
}

.partners-wrapper::before {
    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(199, 162, 82, 0.04);

    top: -120px;

    left: -120px;
}

.partners-wrapper::after {
    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background: rgba(0, 78, 158, 0.04);

    bottom: -120px;

    right: -120px;
}

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

.partner-card {
    position: relative;

    height: 100%;

    border: 1px solid var(--gray-border);

    border-radius: 28px;

    padding: 40px;

    transition: 0.35s;

    z-index: 2;
}

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

    box-shadow: var(--shadow-md);

    border-color: rgba(199, 162, 82, 0.3);
}

/*=========================================
ICON
=========================================*/

.partner-icon {
    width: 90px;

    height: 90px;

    border-radius: 24px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 34px;

    margin-bottom: 25px;

    position: relative;

    box-shadow: var(--shadow-md);
}

.partner-icon::after {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px dashed rgba(255, 255, 255, 0.25);

    border-radius: 18px;
}

.partner-icon.secondary {
    background: linear-gradient(135deg, var(--deep-red-dark), var(--deep-red));
}

/*=========================================
LABEL
=========================================*/

.partner-label {
    display: inline-block;

    padding: 8px 16px;

    border-radius: 40px;

    /* background: var(--primary-blue-light); */

    color: var(--primary-blue-dark);

    font-size: 0.82rem;

    font-weight: 700;

    margin-bottom: 18px;
}

.partner-card h3 {
    color: var(--primary-blue-dark);

    font-family: "DM Serif Display", serif;

    margin-bottom: 12px;
}

.partner-location {
    color: var(--deep-red);

    font-weight: 600;

    margin-bottom: 25px;
}

.partner-location i {
    margin-right: 8px;
}

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

.partner-feature-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.partner-feature-list span {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: var(--gray-light);

    border-radius: 14px;

    color: var(--primary-blue-dark);

    font-size: 0.9rem;

    font-weight: 600;

    transition: 0.3s;
}

.partner-feature-list span:hover {
    background: var(--primary-blue);

    color: #fff;
}

.partner-feature-list i {
    color: var(--elegant-gold);
}

/*=========================================
BOTTOM STRIP
=========================================*/

.partners-trust-strip {
    margin-top: 45px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    border-radius: 30px;

    padding: 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    color: #fff;
}

.trust-item {
    flex: 1;

    text-align: center;

    min-width: 180px;
}

.trust-item h3 {
    color: var(--elegant-gold);

    font-family: "DM Serif Display", serif;

    margin-bottom: 6px;
}

.trust-item span {
    font-size: 0.9rem;
}

.trust-divider {
    width: 1px;

    height: 60px;
}

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

@media (max-width: 991px) {
    .partners-wrapper {
        padding: 30px;
    }

    .partner-card {
        padding: 30px;
    }

    .partners-trust-strip {
        gap: 25px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .partners-wrapper {
        padding: 20px;
    }

    .partner-card {
        padding: 25px;
    }

    .partner-feature-list {
        grid-template-columns: 1fr;
    }

    .partner-icon {
        width: 75px;

        height: 75px;

        font-size: 28px;
    }

    .partners-trust-strip {
        flex-direction: column;

        text-align: center;
    }

    .trust-item {
        width: 100%;
    }
}

.benefits-wrapper {
    background: #fff;

    border-radius: 35px;

    padding: 50px;

    box-shadow: var(--shadow-lg);
}

.benefits-content h3 {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 2.3rem;

    margin: 20px 0;
}

.benefits-content h3 span {
    color: var(--deep-red);
}

.benefit-label {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: var(--primary-blue-light);

    font-weight: 700;

    color: var(--primary-blue-dark);
}

.benefit-list {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.benefit-list div {
    font-weight: 600;

    color: var(--primary-blue-dark);
}

.benefit-list i {
    color: var(--elegant-gold);

    margin-right: 12px;
}

.benefit-card {
    display: flex;

    gap: 25px;

    padding: 28px;

    border-radius: 24px;

    background: var(--gray-light);

    margin-bottom: 20px;

    transition: 0.35s;
}

.benefit-card:hover {
    transform: translateX(10px);

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.benefit-number {
    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: "DM Serif Display", serif;

    font-size: 2rem;

    flex-shrink: 0;
}

.benefit-card span {
    display: block;

    color: var(--deep-red);

    font-weight: 700;

    margin-bottom: 8px;
}

.benefit-card h4 {
    color: var(--primary-blue-dark);

    margin-bottom: 12px;
}

.benefits-bottom {
    margin-top: 40px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.bottom-item {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    border-radius: 20px;

    padding: 25px;

    text-align: center;

    color: #fff;
}

.bottom-item i {
    font-size: 28px;

    color: var(--elegant-gold);

    margin-bottom: 15px;
}

.bottom-item h5 {
    margin: 0;

    color: #fff;
}

/*=========================================
INTERNATIONAL PARTNER
=========================================*/

.international-partner-section {
    position: relative;
}

.international-wrapper {
    position: relative;

    background: #fff;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);

    border: 1px solid rgba(199, 162, 82, 0.15);

    margin-bottom: 45px;
}

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

.international-left {
    position: relative;

    height: 100%;

    padding: 55px 40px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );

    color: #fff;

    overflow: hidden;
}

.international-left::before {
    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

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

    top: -120px;

    right: -120px;
}

.international-left::after {
    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    border: 2px dashed rgba(255, 255, 255, 0.08);

    bottom: -90px;

    left: -90px;
}

.globe-circle {
    width: 140px;

    height: 140px;

    border-radius: 50%;

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

    backdrop-filter: blur(15px);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 35px;

    position: relative;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.globe-circle::before {
    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 50%;

    border: 2px dashed rgba(255, 255, 255, 0.25);
}

.globe-circle i {
    font-size: 52px;

    color: var(--elegant-gold);
}

.partner-tag {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

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

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.international-left h3 {
    color: #fff;

    font-family: "DM Serif Display", serif;

    font-size: 2.2rem;

    line-height: 1.2;

    margin-bottom: 15px;
}

.international-left h3 span {
    color: var(--elegant-gold);
}

.partner-location {
    font-weight: 600;

    margin-bottom: 30px;
}

.partner-location i {
    margin-right: 8px;
}

.partner-status {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.partner-status span {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 18px;

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

    border-radius: 30px;

    backdrop-filter: blur(8px);

    font-size: 0.88rem;
}

.partner-status i {
    color: var(--elegant-gold);
}

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

.international-content {
    padding: 55px;
}

.international-content h3 {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 2.3rem;

    margin-bottom: 25px;
}

.international-content h3 span {
    color: var(--deep-red);
}

.international-feature {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px;

    border-radius: 18px;

    background: var(--gray-light);

    transition: 0.35s;

    height: 100%;
}

.international-feature:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-sm);

    background: #fff;
}

.international-feature i {
    width: 55px;

    height: 55px;

    border-radius: 15px;

    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;
}

.international-feature span {
    font-weight: 700;

    color: var(--primary-blue-dark);
}

/*=========================================
BOTTOM
=========================================*/

.international-benefit {
    position: relative;

    text-align: center;

    padding: 25px 20px;

    border-radius: 20px;

    background: linear-gradient(180deg, #fff, var(--gray-light));

    transition: 0.35s;

    height: 100%;
    box-shadow: var(--shadow-lg);
}

.international-benefit:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.international-benefit::before {
    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    width: 55px;

    height: 4px;

    border-radius: 10px;

    background: linear-gradient(90deg, var(--primary-blue), var(--deep-red));
}

.international-benefit i {
    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    font-size: 28px;
}

.international-benefit h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 8px;
}

.international-benefit p {
    color: var(--text-muted);

    margin: 0;
}

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

@media (max-width: 991px) {
    .international-left {
        padding: 35px;
    }

    .international-content {
        padding: 35px;
    }

    .globe-circle {
        width: 110px;

        height: 110px;
    }

    .globe-circle i {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .international-left {
        padding: 25px;
    }

    .international-content {
        padding: 25px;
    }

    .international-content h3 {
        font-size: 1.9rem;
    }

    .partner-status {
        flex-direction: column;
    }

    .partner-status span {
        justify-content: center;
    }

    .international-feature {
        padding: 16px;
    }
}

.global-benefits-wrapper {
    background: #fff;

    border-radius: 35px;

    padding: 50px;

    box-shadow: var(--shadow-lg);

    border: 1px solid rgba(199, 162, 82, 0.15);
}

.global-label {
    display: inline-block;

    padding: 10px 20px;

    border-radius: 30px;

    background: var(--primary-blue-light);

    color: var(--primary-blue-dark);

    font-weight: 700;

    margin-bottom: 20px;
}

.global-benefits-content h3 {
    font-family: "DM Serif Display", serif;

    color: var(--primary-blue-dark);

    font-size: 2.4rem;

    margin-bottom: 20px;
}

.global-benefits-content h3 span {
    color: var(--deep-red);
}

.global-highlight {
    display: flex;

    gap: 20px;

    margin-top: 35px;

    padding: 25px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;
}

.global-highlight i {
    font-size: 42px;

    color: var(--elegant-gold);
}

.global-highlight strong {
    display: block;

    margin-bottom: 8px;
}

.global-highlight p {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);
}

.global-card {
    position: relative;

    display: flex;

    gap: 25px;

    padding: 28px;

    margin-bottom: 25px;

    background: var(--gray-light);

    border-radius: 24px;

    transition: 0.35s;
}

.global-card:last-child {
    margin-bottom: 0;
}

.global-card:hover {
    transform: translateX(12px);

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.global-number {
    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--deep-red-dark)
    );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: "DM Serif Display", serif;

    font-size: 1.8rem;

    flex-shrink: 0;

    position: relative;
}

.global-card h5 {
    color: var(--primary-blue-dark);

    margin-bottom: 12px;
}

.global-card p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

@media (max-width: 991px) {
    .global-benefits-wrapper {
        padding: 30px;
    }

    .global-number::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .global-benefits-wrapper {
        padding: 20px;
    }

    .global-card {
        flex-direction: column;

        gap: 15px;
    }

    .global-benefits-content h3 {
        font-size: 2rem;
    }

    .global-highlight {
        flex-direction: column;

        text-align: center;
    }
}

/* academics dropdown css */
.academic-dropdown {
    padding: 22px;
}

.course-card {
    background: linear-gradient(135deg, #0f3557, #1b4b74);

    color: #fff;

    border-radius: 22px;

    padding: 28px;

    position: relative;

    overflow: hidden;
}

.course-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

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

    right: -70px;
    top: -70px;
}

.course-card::after {
    content: "🎬";

    position: absolute;

    right: 25px;
    bottom: 18px;

    font-size: 70px;

    opacity: 0.08;
}

.course-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

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

    padding: 8px 16px;

    border-radius: 40px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 18px;
}

.course-card h4 {
    font-size: 28px;

    font-weight: 800;

    margin-bottom: 15px;

    line-height: 1.3;
}

.course-card h4 span {
    color: #ffd56a;
}

.course-card p {
    color: rgba(255, 255, 255, 0.9);

    line-height: 1.8;

    margin-bottom: 22px;
}

.course-highlights {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 25px;
}

.course-highlights span {
    background: rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    padding: 12px;

    font-size: 14px;

    font-weight: 600;
}

.course-highlights i {
    color: #ffd56a;

    margin-right: 8px;
}

.view-course-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 24px;

    border-radius: 50px;

    background: #fff;

    color: #0f3557;

    font-weight: 700;

    transition: 0.35s;
}

.view-course-btn:hover {
    background: #ffd56a;

    color: #0f3557;

    transform: translateY(-3px);
}

@media (max-width: 1199px) {
    .navbar-collapse {
        /* position: fixed;

        top: 168px;

        left: 0; */

        width: 100%;

        height: calc(100vh - 95px);

        background: #fff;

        overflow-y: auto;

        overflow-x: hidden;

        padding: 20px;

        z-index: 9999;

        border-radius: 0;

        box-shadow: none;

        display: block;
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

  
}
