* {
    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%;
}

: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) 100%
    );
    color: #fff;
}

.red-gradient {
    background: linear-gradient(
        135deg,
        var(--deep-red) 0%,
        var(--deep-red) 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) !important;
}

.text-red {
    color: var(--deep-red) !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) !important;
    --bs-btn-border-color: var(--primary-blue) !important;
    --bs-btn-hover-bg: var(--primary-blue) !important;
    --bs-btn-hover-border-color: var(--primary-blue) !important;
    --bs-btn-active-bg: var(--primary-blue) !important;
    --bs-btn-active-border-color: var(--primary-blue) !important;
    --bs-btn-disabled-color: var(--primary-blue) !important;
    --bs-btn-disabled-border-color: var(--primary-blue) !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;
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--elegant-gold) !important;
    --bs-btn-border-color: var(--elegant-gold) !important;
    --bs-btn-hover-bg: var(--elegant-gold) !important;
    --bs-btn-hover-border-color: var(--elegant-gold) !important;
    --bs-btn-active-bg: var(--elegant-gold) !important;
    --bs-btn-active-border-color: var(--elegant-gold) !important;
    --bs-btn-disabled-bg: var(--elegant-gold) !important;
    --bs-btn-disabled-border-color: var(--elegant-gold) !important;
}

.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);
}

.top-bar {
    background: var(--elegant-gold-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: white;

    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;
}

@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;
    }
}

@keyframes move {
    from {
        transform: translateX(0);
    }

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

.hero {
    /* height: 90vh; */
    background:
        linear-gradient(
            115deg,
            rgba(11, 37, 69, 0.92) 0%,
            rgba(107, 4, 15, 0.7) 100%
        ),
        url(../images/hm-banner.png) center/cover;
    /* background: url('assets/images/hm-banner.png') center/cover; */
    position: relative;
}

.hero-section {
    /* height: 80vh; */
    background: var(--primary-blue-dark);
    /* background: url('assets/images/hm-banner.png') center/cover; */
    position: relative;
}

.nav-wrap {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
}

.lux-nav {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 20px 0px 0px 20px;
    padding: 18px 28px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.logo-card {
    background: #fdf8f5;
    border-radius: 0 0 28px 0px;
    padding: 18px 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.logo-card img {
    height: 80px;
    padding: 8px 14px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 5px;
}

.apply-btn {
    background: var(--primary-blue);
    padding: 12px 26px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.apply-btn:hover {
    background: var(--elegant-gold);
    color: #111;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 240px;
}

.hero p {
    max-width: 650px;
    font-size: 1.1rem;
}

.stat {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat h3 {
    color: var(--primary-blue);
    font-weight: 800;
}

.scrolled {
    position: fixed !important;
    top: 0px !important;
    background: var(--primary-blue) !important;
}

.scrolled .lux-nav {
    background: var(--primary-blue);
    backdrop-filter: none;
    box-shadow: none;
}

.scrolled .logo-card {
    background: none;
    box-shadow: none;
}

.scrolled .logo-card img {
    background-color: #fdf8f5;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .lux-nav {
        border-radius: 20px;
    }
}

.banner-bottom-card {
    background: #fdf8f5;
    border-radius: 28px 0px 0px 0px;
    padding: 16px 0px;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, .12); */
    position: absolute;
    bottom: 0;
}

/* Large Desktop */
@media (max-width: 1600px) {
    .lux-nav {
        padding: 15px 0px;
    }
}

/* Laptop 1440px */
@media (max-width: 1440px) {
    .logo-card {
        width: 270px;
        padding: 15px 20px;
    }

    .logo-card img {
        height: 75px;
    }

    .lux-nav {
        padding: 15px 0px;
    }

    .navbar-nav .nav-link {
        margin: 0 8px;
        font-size: 14px;
    }
}

/* Laptop 1366px */
@media (max-width: 1366px) {
    .logo-card {
        width: 245px;
        padding: 15px;
    }

    .logo-card img {
        width: 100%;
        height: auto;
    }

    .lux-nav {
        padding: 13px 0px;
    }

    .navbar-nav .nav-link {
        margin: 0 5px;
        font-size: 14px;
    }

    .apply-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .nav-wrap {
        /* position: fixed; */
        /* top: 0px; */
        left: 0;
        width: 100%;
        z-index: 9999;
        background: var(--primary-blue);
        padding: 14px 20px;
        transition: 0.35s;
    }

    .lux-nav {
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
    }

    .logo-card {
        width: 230px;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .logo-card img {
        background: #fdf8f5;
        border-radius: 12px;
        padding: 8px 14px;
    }

    .navbar-toggler {
        width: 50px;
        height: 50px;
        border: 2px solid rgba(255, 255, 255, 0.7) !important;
        border-radius: 12px;
        color: #fff;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* FULL SCREEN MENU */

    .navbar-collapse {
        position: fixed;

        top: 145px;

        left: 0;

        width: 100%;

        height: calc(100vh - 108px);

        background: var(--primary-blue);

        padding: 50px 40px;

        overflow-y: auto;

        transform: translateX(100%);

        transition: 0.35s ease;

        display: flex !important;

        flex-direction: column;

        justify-content: flex-start;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        width: 100%;

        margin: 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        color: #fff !important;

        font-size: 18px;

        font-weight: 700;

        padding: 18px 0;

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

        /* text-align: right; */
    }

    .navbar-nav .nav-link:hover {
        color: var(--elegant-gold) !important;
    }

    .apply-btn {
        width: 100%;

        margin-top: 35px;

        text-align: center;

        border-radius: 12px;
    }

    /* Hide Desktop Mega Menu */

    .academic-dropdown {
        display: none !important;
    }

    /* Mobile Dropdown */

    .mobile-academic-menu {
        display: none;

        width: 100%;

        margin-top: 8px;

        padding-left: 25px;
    }

    .mobile-academic-menu.show {
        display: block;
    }

    .mobile-academic-menu a {
        display: block;

        color: #fff;

        text-decoration: none;

        padding: 14px 0;

        font-size: 16px;

        font-weight: 500;

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

    .mobile-academic-menu a:last-child {
        border-bottom: none;
    }

    .mobile-academic-menu a:hover {
        color: var(--elegant-gold);
    }

    .academic-toggle {
        display: flex !important;

        /* justify-content: flex-end; */

        align-items: center;

        gap: 12px;
    }

    .academic-toggle i {
        transition: 0.3s;
    }

    .academic-toggle.active-icon i {
        transform: rotate(180deg);
    }

    /* Mobile accordion */

    .custom-dropdown {
        position: relative;
    }

    .custom-dropdown .dropdown-menu-custom,
    .custom-dropdown .mobile-academic-menu {
        position: static !important;

        transform: none !important;

        opacity: 1 !important;

        visibility: visible !important;

        display: none;

        width: 100%;

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

        border-radius: 14px;

        box-shadow: none;

        margin: 10px 0 15px;

        padding: 0;

        overflow: hidden;
    }

    .custom-dropdown.open > .dropdown-menu-custom,
    .custom-dropdown.open > .mobile-academic-menu {
        display: block;
    }

    .custom-dropdown .dropdown-menu-custom a,
    .mobile-academic-menu a {
        display: block;

        color: #fff;

        padding: 14px 22px;

        font-size: 15px;

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

    .custom-dropdown .dropdown-menu-custom a:last-child,
    .mobile-academic-menu a:last-child {
        border-bottom: none;
    }

    .custom-dropdown .dropdown-menu-custom a:hover,
    .mobile-academic-menu a:hover {
        background: rgba(255, 255, 255, 0.08);

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

.custom-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;

    top: 100%;

    left: 0;

    min-width: 280px;

    background: #fff;

    border-radius: 18px;

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

    padding: 15px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: 0.35s;

    z-index: 9999;
}

.custom-dropdown:hover > .dropdown-menu-custom {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

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

    padding: 12px 16px;

    color: var(--deep-red);

    text-decoration: none;

    font-weight: 600;

    border-radius: 10px;

    transition: 0.3s;
}

.dropdown-menu-custom a:hover {
    background: var(--primary-blue-light);

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

.mega-course-dropdown {
    position: static;
}

.academic-dropdown {
    width: 840px;

    padding: 35px;

    transform: translateX(-50%) translateY(20px);

    background: #fff;

    border-radius: 22px;
}

.academic-card {
    display: block;

    padding: 28px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #ececec;

    text-decoration: none;

    color: #222;

    height: 100%;

    transition: 0.35s;
}

.academic-card:hover {
    border-color: var(--primary-blue);

    transform: translateY(-8px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.course-icon {
    width: 70px;

    height: 70px;

    border-radius: 18px;

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

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;
}

.course-icon i {
    color: var(--primary-blue);

    font-size: 28px;
}

.academic-card small {
    color: var(--elegant-gold-dark);

    font-weight: 700;

    letter-spacing: 1px;
}

.academic-card h5 {
    margin: 15px 0;

    font-size: 22px;

    font-weight: 700;
}

.academic-card h5 span {
    display: block;

    color: var(--primary-blue);

    margin-top: 6px;
}

.academic-card p {
    color: #666;

    min-height: 48px;
}

.course-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    color: var(--deep-red);

    font-weight: 700;
}

.mobile-academic-menu {
    display: none;
}

.recognition-item img {
    height: 70px;
    margin-bottom: 14px;
}

.recognition-item h6 {
    font-family: "DM Serif Display", serif;
    /* font-weight: 700; */
    margin-bottom: 5px;
    color: var(--primary-blue-dark);
}

.recognition-item span {
    font-size: 14px;
    color: #666;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 60px;
}

.hero-content .row {
    min-height: calc(100vh - 360px);
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-family: "DM Serif Display", serif;
    font-size: 56px;
    line-height: 1.08;
    color: #fff;
}

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

.hero-desc {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 28px 0 40px;
}

.hero-btn {
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 700;
    align-items: center;
    text-decoration: none;
    transition: 0.35s;
}

.hero-btn-primary {
    background: var(--deep-red);
    color: #fff;
}

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

.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #111;
}

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

@media (max-width: 1199px) {
    .hero {
        min-height: auto;
        padding: 180px 0 0px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content .row {
        min-height: auto;
        justify-content: center;
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 58px;
        line-height: 1.08;
        max-width: 800px;
        margin: auto;
    }

    .hero-desc {
        max-width: 700px;
        margin: 30px auto;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 45px;
    }

    .banner-bottom-card {
        position: relative;

        left: auto;

        bottom: auto;

        right: auto;

        transform: none;

        width: 100%;

        max-width: 100%;

        margin-top: 60px;
        border-radius: 0px;
    }

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

    .hero-section {
        padding-top: 180px;
        height : auto;
        padding-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 160px 0 0px;
    }

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

    .hero-desc {
        font-size: 17px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;

        gap: 18px;
    }

    .hero-btn {
        width: 280px;
    }

    .banner-bottom-card {
        padding: 35px;
    }

    .banner-bottom-card .row {
        row-gap: 30px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 140px 0 0px;
    }

    .hero-title {
        font-size: 34px;

        line-height: 1.18;
    }

    .hero-desc {
        font-size: 16px;

        line-height: 1.8;

        margin: 25px auto;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 15px;
    }

    .hero-btn {
        width: 100%;

        max-width: 320px;
    }

    .banner-bottom-card {
        margin-top: 40px;

        padding: 25px 20px;
    }

    .banner-bottom-card .row {
        row-gap: 25px;
    }

    .banner-bottom-card img {
        height: 55px;
    }

    .banner-bottom-card h6 {
        font-size: 18px;

        margin-top: 10px;
    }

    .banner-bottom-card p {
        font-size: 13px;

        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 0;
    }

    .hero-tag {
        font-size: 14px;
    }

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

    .hero-desc {
        font-size: 15px;
    }

    .banner-bottom-card {
        padding: 22px 15px;
    }

    .banner-bottom-card img {
        height: 48px;
    }

    .banner-bottom-card h6 {
        font-size: 16px;
    }
}

/* Actual section css */
.content-section {
    margin-top: 180px;
}

/*=============================
COMMON SECTION
==============================*/

.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(0, 78, 158, 0.08);
    border: 1px solid rgba(0, 78, 158, 0.15);
    color: var(--deep-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.section-badge i {
    color: var(--deep-red);
    font-size: 15px;
}

.section-title {
    font-family: "DM Serif Display", serif;
    font-size: 48px;
    line-height: 1.18;
    color: var(--primary-blue);
    margin-bottom: 22px;
}

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

.section-subtitle {
    line-height: 1.9;
    color: var(--text-muted);
}

.section-divider {
    width: 85px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--elegant-gold)
    );
    margin-top: 28px;
}

/* Left Alignment */

.section-header.left {
    text-align: left;
}

.section-header.left .section-divider {
    margin-left: 0;
}

/* Center Alignment */

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

.section-header.center .section-subtitle {
    margin: auto;
}

.section-header.center .section-divider {
    margin: 28px auto 0;
}

/* Responsive */

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 40px;
    }

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

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.8;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
}

.about-images {
    position: relative;
    padding: 40px;
}

.img-main {
    width: 85%;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.img-small {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 48%;
    border-radius: 24px;
    border: 8px solid #fff;
    box-shadow: var(--shadow-lg);
}

.experience-box {
    position: absolute;
    left: 0;
    bottom: 60px;
    background: var(--deep-red);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-box h2 {
    font-size: 42px;
    margin: 0;
    font-weight: 800;
}

.about-feature {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.about-feature .icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: var(--primary-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 22px;
    flex-shrink: 0;
}

.about-feature h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.about-feature p {
    color: #666;
    margin: 0;
}

.stat-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: 0.35s;
    height: 100%;
}

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

.stat-card h2 {
    font-family: "DM Serif Display", serif;
    color: var(--primary-blue);
    font-size: 42px;
    margin-bottom: 10px;
}

.about-card {
    height: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: 0.35s;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-card i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: auto auto 25px;
}

.about-card h4 {
    font-family: "DM Serif Display", serif;
    margin-bottom: 15px;
    color: var(--deep-red-dark);
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .about-images {
        padding: 0;
        margin-top: 30px;
    }

    .img-main {
        width: 100%;
    }

    .img-small {
        position: relative;
        width: 70%;
        margin-top: -80px;
        left: 30%;
    }

    .experience-box {
        left: 15px;
        bottom: 20px;
        padding: 15px 20px;
    }
}

/*==================================================
HOTEL RECRUITERS SECTION
==================================================*/

.hotel-slider-container {
    position: relative;
    padding: 80px 0;
    z-index: 2;
}

/*==================================================
SLICK FIX
==================================================*/

.hotel-slider {
    margin: 0 -15px;
}

.hotel-slider .slick-track {
    display: flex !important;
}

.hotel-slider .slick-slide {
    height: inherit !important;
    display: flex !important;
    padding: 0 15px;
}

.hotel-slider .slick-slide > div {
    display: flex;
    width: 100%;
}

.hotel-slider .hotel-card {
    width: 100%;
}

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

.hotel-card {
    background: var(--primary-blue);

    color: #fff;

    border-radius: 22px;

    overflow: hidden;

    transition: var(--transition);

    display: flex;

    flex-direction: column;

    height: 100%;

    min-height: 690px;

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

.hotel-card:hover {
    background: var(--primary-blue-dark);

    transform: translateY(-8px);

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

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

.hotel-logo-container {
    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

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

    flex-shrink: 0;
}

.hotel-logo {
    max-width: 180px;

    max-height: 90px;

    object-fit: contain;

    transition: 0.4s;
}

.hotel-card:hover .hotel-logo {
    transform: scale(1.05);
}

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

.hotel-building-img {
    position: relative;

    height: 240px;

    overflow: hidden;

    flex-shrink: 0;
}

.hotel-building-img img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.hotel-card:hover .hotel-building-img img {
    transform: scale(1.08);
}

/*==================================================
TYPE
==================================================*/

.hotel-type {
    position: absolute;

    top: 18px;

    right: 18px;

    background: var(--elegant-gold);

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    padding: 6px 14px;

    border-radius: 50px;
}

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

.hotel-info {
    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    text-align: center;

    padding: 25px;
}

.hotel-info h5 {
    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;
}

.hotel-info p {
    flex: 1;

    margin-bottom: 0;

    line-height: 1.8;

    opacity: 0.9;
}

/*==================================================
STATS
==================================================*/

.hotel-stats {
    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-shrink: 0;

    padding: 20px 25px;

    background: rgba(0, 0, 0, 0.18);

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

.stat-item {
    flex: 1;

    text-align: center;
}

.stat-item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;

    font-size: 24px;

    font-weight: 700;

    color: #fff;
}

.stat-label {
    display: block;

    margin-top: 4px;

    font-size: 13px;

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

/*==================================================
ARROWS
==================================================*/

.slick-arrow {
    width: 52px;

    height: 52px;

    background: var(--primary-blue);

    border-radius: 50%;

    transition: 0.3s;

    z-index: 5;
}

.slick-arrow:hover {
    background: var(--elegant-gold);
}

.slick-arrow::before {
    color: #fff;

    font-size: 20px;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

/*==================================================
DOTS
==================================================*/

.slick-dots {
    margin-top: 25px;
}

.slick-dots li button:before {
    font-size: 12px;

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

.slick-dots li.slick-active button:before {
    color: var(--elegant-gold);
}

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

@media (max-width: 1200px) {
    .slick-prev {
        left: -35px;
    }

    .slick-next {
        right: -35px;
    }
}

@media (max-width: 991px) {
    .hotel-card {
        min-height: 650px;
    }
}

@media (max-width: 768px) {
    .hotel-slider-container {
        padding: 60px 0;
    }

    .hotel-card {
        min-height: auto;
    }

    .hotel-building-img {
        height: 220px;
    }

    .slick-arrow {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hotel-logo-container {
        height: 130px;
    }

    .hotel-building-img {
        height: 200px;
    }

    .hotel-info {
        padding: 20px;
    }

    .hotel-stats {
        padding: 16px;
    }
}

.s-about-program {
    position: relative;
}

.s-about-program .img-wrapper {
    margin-inline: auto;
    text-align: center;
}

.s-about-program .text-wrapper {
    background-color: var(--elegant-gold);
    padding: 3rem;
    border-radius: 1rem;
    margin: auto;
}

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

.s-counter {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex: 1;
}

.s-counter .title {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.faculty-section {
    position: relative;
}

.faculty-image {
    position: relative;
}

.faculty-image img {
    width: 100%;
    box-shadow: var(--shadow-lg);
    transition: 0.4s;
}

.faculty-image:hover img {
    transform: scale(1.02);
}

.faculty-exp-card {
    position: absolute;

    bottom: 25px;
    right: 25px;

    background: #fff;

    padding: 18px 24px;

    border-radius: 20px;

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

    text-align: center;
}

.faculty-exp-card span {
    display: block;

    font-size: 42px;

    font-weight: 700;

    color: var(--primary-blue);

    line-height: 1;
}

.faculty-exp-card small {
    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.6;
}

.faculty-feature {
    display: flex;

    gap: 20px;

    margin-top: 28px;

    padding: 20px;

    background: #fff;

    border-radius: 18px;

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

    transition: 0.35s;
}

.faculty-feature:hover {
    transform: translateX(8px);

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

.faculty-icon {
    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: var(--primary-blue);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    flex-shrink: 0;
}

.faculty-feature h5 {
    margin-bottom: 8px;

    font-weight: 700;

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

.faculty-feature p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

@media (max-width: 991px) {
    .faculty-exp-card {
        right: 20px;

        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .faculty-exp-card {
        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 20px;

        width: 220px;
    }

    .faculty-feature {
        padding: 18px;
    }

    .faculty-icon {
        width: 55px;

        height: 55px;

        font-size: 20px;
    }
}

.infra-card {
    background: #fff;

    border-radius: 22px;

    padding: 28px;

    text-align: center;

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

    transition: 0.35s;

    height: 100%;
}

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

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

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

    margin: auto auto 20px;

    background: var(--deep-red);

    border-radius: 18px;

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

    color: #fff;

    font-size: 30px;
}

.infra-card h5 {
    font-weight: 700;

    margin-bottom: 12px;

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

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

    margin: 0;

    line-height: 1.8;
}

@media (max-width: 991px) {
    .infra-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .infra-card {
        padding: 22px;
    }
}

.training-step {
    position: relative;

    display: flex;

    gap: 25px;

    align-items: flex-start;

    padding: 0 0 35px 0;

    margin-bottom: 35px;
}

.training-step:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 33px;

    top: 70px;

    width: 3px;

    height: 100%;

    background: #d9e5f5;
}

.training-icon {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    border-radius: 18px;

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

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

    color: #fff;

    font-size: 28px;

    box-shadow: 0 10px 25px rgba(0, 78, 158, 0.25);
}

.training-step h5 {
    font-weight: 700;

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

    margin-bottom: 10px;
}

.training-step p {
    color: var(--text-muted);

    line-height: 1.8;

    margin: 0;
}

.training-section img {
    transition: 0.4s;
}

.training-section img:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .training-step {
        margin-top: 30px;
    }

    .training-section img {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .training-step {
        gap: 18px;
    }

    .training-icon {
        width: 55px;
        height: 55px;

        font-size: 22px;
    }

    .training-step:not(:last-child)::after {
        left: 26px;
    }
}

.visual-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 45px 35px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 78, 158, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: 0.45s;
}

.visual-card::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)
    );
}

.visual-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(0, 78, 158, 0.04);
    transition: 0.4s;
}

.visual-card:hover {
    transform: translateY(-15px);

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

.visual-card:hover::after {
    transform: scale(1.4);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: white;
}

.visual-card-icon {
    width: 90px;

    height: 90px;

    border-radius: 24px;

    background: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto auto 28px;

    transform: rotate(-8deg);

    transition: 0.4s;

    box-shadow: 0 18px 35px rgba(0, 78, 158, 0.25);
}

.visual-card:hover .visual-card-icon {
    transform: rotate(0deg) scale(1.08);
}

.visual-card-icon i {
    font-size: 34px;

    color: #fff;
}

.visual-card h5 {
    font-size: 28px;

    color: var(--primary-blue);

    margin-bottom: 20px;

    line-height: 1.3;
}

.visual-card p {
    font-size: 16px;

    line-height: 1.9;

    color: #666;
}

.visual-card-image {
    height: 500px;

    overflow: hidden;

    position: relative;

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

.visual-card-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

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

.career-image-overlay {
    position: absolute;

    left: 25px;

    right: 25px;

    bottom: 25px;

    padding: 28px;

    border-radius: 22px;

    backdrop-filter: blur(18px);

    background: rgb(13 110 253 / 71%);

    color: #fff;

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

.stats-circle {
    width: 190px;

    height: 190px;

    background: var(--deep-red);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    box-shadow: 0 25px 60px rgba(0, 78, 158, 0.35);
}

.stats-circle::before {
    content: "";

    position: absolute;

    inset: -10px;

    border: 2px dashed rgba(255, 255, 255, 0.4);

    border-radius: 50%;

    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-element {
    animation: float 5s ease-in-out infinite;
}

/* vision mission css  */

/*==================================================
FOUNDATION SECTION
==================================================*/

.foundation-section {
    position: relative;
    overflow: hidden;
}

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

.foundation-image {
    position: relative;
}

.foundation-image img {
    width: 100%;

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

    transition: var(--transition);
}

.foundation-image:hover img {
    transform: scale(1.02);
}

.foundation-vision {
    display: flex;

    gap: 22px;

    margin: 40px 0;

    padding: 28px;

    background: #fff;

    border-radius: 24px;

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

    transition: var(--transition);
}

.foundation-vision:hover {
    transform: translateY(-8px);

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

.vision-icon {
    width: 75px;

    height: 75px;

    border-radius: 20px;

    background: var(--primary-blue);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    flex-shrink: 0;
}

.foundation-vision span {
    display: block;

    font-size: 13px;

    font-weight: 700;

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

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.foundation-vision h3 {
    font-size: 28px;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 12px;

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

.foundation-vision p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

.foundation-stat {
    background: #fff;

    padding: 28px 20px;

    border-radius: 22px;

    text-align: center;

    height: 100%;

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

    transition: var(--transition);
}

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

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

.foundation-stat h3 {
    margin: 0 0 10px;

    font-size: 38px;

    font-weight: 700;

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

.foundation-stat small {
    color: var(--text-muted);

    line-height: 1.6;

    display: block;
}

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

@media (max-width: 1199px) {
    .foundation-vision h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .foundation-image {
        margin-top: 40px;
    }

    .foundation-floating {
        left: 20px;

        right: 20px;

        max-width: unset;
    }
}

@media (max-width: 767px) {
    .foundation-vision {
        flex-direction: column;

        padding: 22px;
    }

    .vision-icon {
        width: 65px;

        height: 65px;

        font-size: 24px;
    }

    .foundation-floating {
        position: relative;

        left: auto;

        bottom: auto;

        right: auto;

        margin-top: 20px;
    }

    .foundation-stat {
        padding: 22px 15px;
    }

    .foundation-stat h3 {
        font-size: 30px;
    }

    .foundation-vision h3 {
        font-size: 22px;
    }
}

/*==================================================
VISION & MISSION
==================================================*/

.vision-mission-section {
    position: relative;
    overflow: hidden;
}

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

.vision-card,
.mission-card {
    position: relative;

    background: #fff;

    padding: 40px;

    height: 100%;

    overflow: hidden;

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

    transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);

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

/* Top Border */

.vision-card::before,
.mission-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 6px;
}

.vision-card::before {
    background: var(--primary-blue);
}

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

/*=========================
ICON
=========================*/

.vm-icon {
    width: 85px;

    height: 85px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    margin-bottom: 25px;
}

.vision-card .vm-icon {
    background: var(--primary-blue-light);

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

.mission-card .vm-icon {
    background: var(--deep-red-soft);

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

/*=========================
LABEL
=========================*/

.vm-label {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 40px;

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

    color: var(--primary-blue);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}

.mission-card .vm-label {
    background: rgba(193, 18, 31, 0.08);

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

/*=========================
TITLE
=========================*/

.vision-card h3,
.mission-card h3 {
    font-size: 32px;

    line-height: 1.3;

    font-weight: 700;

    margin-bottom: 18px;

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

.vision-card p,
.mission-card p {
    color: var(--text-muted);

    line-height: 1.9;

    margin-bottom: 28px;
}

/*=========================
DIVIDER
=========================*/

.vm-divider {
    width: 70px;

    height: 4px;

    border-radius: 20px;

    background: var(--elegant-gold);

    margin-bottom: 25px;
}

/*=========================
CHECK LIST
=========================*/

.vm-list {
    list-style: none;

    margin: 0;

    padding: 0;
}

.vm-list li {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 12px 0;

    font-weight: 600;

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

.vm-list i {
    color: var(--primary-blue);

    font-size: 18px;
}

.mission-card .vm-list i {
    color: var(--deep-red);
}

.vm-highlight {
    margin-top: 80px;

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

    padding: 45px;

    border-radius: 28px;

    color: #fff;

    position: relative;

    overflow: hidden;
}

.vm-highlight::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

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

    right: -70px;
    top: -70px;
}

.vm-highlight span {
    display: block;

    font-size: 20px;

    line-height: 1.8;

    font-weight: 500;
}

.vm-highlight .btn {
    padding: 15px 34px;

    font-weight: 600;
}

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

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

    .vm-highlight {
        text-align: center;

        padding: 35px 28px;
    }

    .vm-highlight span {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .vm-icon {
        width: 70px;
        height: 70px;

        font-size: 28px;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 26px;
    }

    .vm-highlight {
        padding: 30px 22px;
    }

    .vm-highlight span {
        font-size: 16px;
    }

    .vm-highlight .btn {
        width: 100%;

        margin-top: 20px;
    }
}

/*==================================================
CORE VALUES SECTION
==================================================*/

.core-values-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

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

.value-card {
    position: relative;

    background: #fff;

    border-radius: 28px;

    padding: 35px;

    overflow: hidden;

    height: 100%;

    transition: var(--transition);

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

    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.value-number {
    position: absolute;

    right: 25px;

    top: 20px;

    font-size: 70px;

    font-weight: 800;

    color: #eef3f8;

    line-height: 1;

    user-select: none;
}

.value-icon {
    width: 80px;

    height: 80px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: var(--primary-blue);

    font-size: 32px;

    margin-bottom: 25px;
}

.col-lg-3:nth-child(2) .value-icon {
    background: var(--deep-red-soft);

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

.col-lg-3:nth-child(3) .value-icon {
    background: var(--elegant-gold-light);

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

.col-lg-3:nth-child(4) .value-icon {
    background: #eafaf4;

    color: #20b486;
}

/*=================================
TITLE
==================================*/

.value-card h4 {
    font-size: 24px;

    font-weight: 700;

    color: var(--text-dark);

    margin-bottom: 15px;
}

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

    line-height: 1.9;

    margin-bottom: 25px;
}

.value-card a {
    color: var(--primary-blue);

    font-weight: 700;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: 0.3s;
}

.value-card:hover a {
    gap: 14px;
}

.col-lg-3:nth-child(2) .value-card a {
    color: var(--deep-red);
}

.col-lg-3:nth-child(3) .value-card a {
    color: var(--elegant-gold-dark);
}

.col-lg-3:nth-child(4) .value-card a {
    color: #20b486;
}

/*=================================
QUOTE STRIP
==================================*/

.values-strip {
    margin-top: 90px;

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

    padding: 45px 50px;

    border-radius: 30px;

    color: #fff;

    position: relative;

    overflow: hidden;
}

.values-strip::before {
    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    border-radius: 50%;

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

    right: -70px;

    top: -70px;
}

.values-strip::after {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

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

    left: -60px;

    bottom: -60px;
}

.values-strip > * {
    position: relative;

    z-index: 2;
}

.values-strip h3 {
    font-size: 28px;

    line-height: 1.6;

    margin: 0;

    color: #fff;

    font-weight: 600;
}

.values-strip h3 i {
    color: var(--elegant-gold);
}

.values-strip .btn {
    padding: 14px 34px;

    border: 2px solid rgba(255, 255, 255, 0.4);

    color: #fff;

    transition: 0.3s;
}

.values-strip .btn:hover {
    background: #fff;

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

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

@media (max-width: 1199px) {
    .value-number {
        font-size: 58px;
    }
}

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

    .values-strip {
        text-align: center;

        padding: 40px 30px;
    }

    .values-strip h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .value-card {
        padding: 25px;
    }

    .value-icon {
        width: 65px;

        height: 65px;

        font-size: 26px;
    }

    .value-number {
        font-size: 48px;
    }

    .value-card h4 {
        font-size: 22px;
    }

    .values-strip {
        padding: 30px 22px;
    }

    .values-strip h3 {
        font-size: 20px;
    }

    .values-strip .btn {
        width: 100%;
        margin-top: 20px;
    }
}

.career-pathway-section {
    position: relative;
    overflow: hidden;
}

.career-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.career-block {
    background: #fff;

    padding: 35px;

    position: relative;

    overflow: hidden;

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

    transition: var(--transition);

    height: 100%;
}

.career-block:hover {
    transform: translateY(-10px);

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

.career-block::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 6px;

    height: 100%;
}

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

.certificate::before {
    background: var(--deep-red);
}

.degree::before {
    background: var(--elegant-gold);
}

.career-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;
}

.career-number {
    width: 60px;

    height: 60px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: var(--primary-blue);

    font-size: 22px;

    font-weight: 700;
}

.certificate .career-number {
    background: var(--deep-red-soft);

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

.degree .career-number {
    background: var(--elegant-gold-light);

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

.career-duration {
    font-size: 13px;

    font-weight: 700;

    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: 1px;
}

.career-title {
    margin-bottom: 25px;
}

.career-title h3 {
    font-family: "DM Serif Display", serif;

    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 15px;

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

.career-title p {
    color: var(--text-muted);

    line-height: 1.8;

    margin: 0;
}

.career-arrow {
    text-align: center;

    color: var(--elegant-gold);

    font-size: 24px;

    margin: 22px 0;
}

.career-skills {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.career-skills div {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 12px 15px;

    border-radius: 14px;

    background: #f9fafb;

    transition: 0.3s;

    font-weight: 600;
}

.career-skills div:hover {
    background: var(--primary-blue-light);

    transform: translateX(8px);
}

.certificate .career-skills div:hover {
    background: var(--deep-red-soft);
}

.degree .career-skills div:hover {
    background: var(--elegant-gold-light);
}

.career-skills i {
    color: var(--primary-blue);
}

.certificate .career-skills i {
    color: var(--deep-red);
}

.degree .career-skills i {
    color: var(--elegant-gold);
}

.career-bottom {
    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #ececec;
}

.career-bottom small {
    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 12px;

    display: block;

    margin-bottom: 8px;
}

.career-bottom h5 {
    font-size: 22px;

    font-weight: 700;

    margin: 0;

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

@media (max-width: 1199px) {
    .career-wrapper {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 767px) {
    .career-title h3 {
        font-size: 28px;
    }

    .career-number {
        width: 52px;

        height: 52px;

        font-size: 18px;
    }

    .career-block {
        padding: 25px;
    }

    .career-skills div {
        padding: 10px 12px;
    }
}

.career-destination-wrapper {
    margin-top: 90px;
}

.destination-card {
    background: #fff;

    border-radius: 22px;

    padding: 28px 18px;

    text-align: center;

    height: 100%;

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

    transition: var(--transition);

    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.destination-icon {
    width: 75px;

    height: 75px;

    margin: 0 auto 18px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: var(--deep-red);

    font-size: 30px;

    transition: 0.35s;
}

.destination-card:hover .destination-icon {
    background: var(--deep-red);

    color: #fff;
}

.destination-card h6 {
    font-weight: 700;

    margin-bottom: 6px;

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

.destination-card small {
    color: var(--text-muted);

    line-height: 1.6;
}

.career-growth {
    margin-top: 90px;

    position: relative;
}

.career-growth-line {
    display: flex;

    justify-content: space-between;

    position: relative;

    gap: 20px;
}

.career-growth-line::before {
    content: "";

    position: absolute;

    top: 38px;

    left: 8%;

    right: 8%;

    height: 4px;

    background: #e9edf2;

    z-index: 0;
}

.growth-stage {
    position: relative;

    z-index: 2;

    flex: 1;

    text-align: center;
}

.growth-circle {
    width: 78px;

    height: 78px;

    margin: auto auto 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

    color: var(--primary-blue);

    font-size: 30px;

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

    transition: 0.35s;
}

.growth-stage:hover .growth-circle {
    background: var(--primary-blue);

    color: #fff;

    transform: scale(1.08);
}

.growth-stage h6 {
    font-weight: 700;

    margin-bottom: 6px;

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

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

.cta {
    background: var(--primary-blue);

    border-radius: 30px;

    padding: 55px;

    color: #fff;

    position: relative;

    overflow: hidden;
}

.cta::before {
    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

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

    right: -70px;

    top: -70px;
}

.cta::after {
    content: "";

    position: absolute;

    width: 170px;

    height: 170px;

    border-radius: 50%;

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

    left: -60px;

    bottom: -60px;
}

.cta > * {
    position: relative;

    z-index: 2;
}

.cta-badge {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

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

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;

    letter-spacing: 1px;
}

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

    font-size: 44px;

    line-height: 1.2;

    margin-bottom: 18px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);

    line-height: 1.8;

    margin-bottom: 0;
}

.cta .btn {
    border-radius: 50px;

    padding: 15px 36px;

    font-weight: 700;
}

@media (max-width: 991px) {
    .career-growth-line {
        flex-wrap: wrap;
    }

    .career-growth-line::before {
        display: none;
    }

    .growth-stage {
        flex: 0 0 calc(50% - 10px);

        margin-bottom: 30px;
    }

    .cta {
        text-align: center;

        padding: 40px 30px;
    }

    .cta h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .destination-card {
        padding: 22px 15px;
    }

    .destination-icon {
        width: 60px;

        height: 60px;

        font-size: 24px;
    }

    .growth-stage {
        flex: 0 0 100%;
    }

    .growth-circle {
        width: 65px;

        height: 65px;

        font-size: 24px;
    }

    .cta {
        padding: 35px 25px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta .btn {
        width: 100%;

        margin-top: 20px;
    }
}

.aeren-footer {
    background: var(--primary-blue-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
    );
}

/*==================================================
LEARNING PHILOSOPHY SECTION
==================================================*/

.learning-philosophy-section {
    position: relative;
    overflow: hidden;
}

/*==============================
LEFT HIGHLIGHT
==============================*/

.learning-highlight {
    display: flex;

    align-items: center;

    gap: 18px;

    background: #fff;

    padding: 22px;

    border-radius: 22px;

    margin-top: 35px;

    border: 1px solid rgba(0, 0, 0, 0.05);

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

.learning-highlight-icon {
    width: 72px;

    height: 72px;

    border-radius: 20px;

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

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 28px;

    flex-shrink: 0;
}

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

.learning-card {
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    height: 100%;

    overflow: hidden;

    transition: 0.35s ease;

    border: 1px solid #edf1f7;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

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

    box-shadow: 0 20px 55px rgba(0, 78, 158, 0.12);
}

/*==============================
BACKGROUND SHAPE
==============================*/

.learning-card::after {
    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

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

    right: -60px;

    top: -60px;

    opacity: 0.9;
}

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

.learning-card-number {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border-radius: 50px;

    background: rgba(199, 162, 82, 0.12);

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

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 22px;

    position: relative;

    z-index: 2;
}

/*=========================================
ICON
=========================================*/

.learning-card-icon {
    width: 78px;

    height: 78px;

    border-radius: 22px;

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

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 30px;

    margin-bottom: 24px;

    position: relative;

    z-index: 2;

    transition: 0.35s;

    box-shadow: 0 15px 35px rgba(0, 78, 158, 0.18);
}

.learning-card:hover .learning-card-icon {
    transform: rotate(-8deg) scale(1.08);

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

/*=========================================
TITLE
=========================================*/

.learning-card h4 {
    font-size: 26px;

    font-weight: 700;

    color: var(--primary-blue);

    margin-bottom: 15px;

    line-height: 1.3;

    position: relative;

    z-index: 2;
}

/*=========================================
DESCRIPTION
=========================================*/

.learning-card p {
    margin: 0;

    line-height: 1.9;

    color: var(--text-muted);

    position: relative;

    z-index: 2;
}

/*=========================================
HOVER EFFECT
=========================================*/

.learning-card:hover h4 {
    color: var(--deep-red);
}

.learning-card:hover .learning-card-number {
    background: var(--elegant-gold);

    color: #fff;
}

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

@media (max-width: 991px) {
    .learning-highlight {
        margin-bottom: 15px;
    }

    .learning-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .learning-highlight {
        flex-direction: column;

        text-align: center;

        padding: 20px;
    }

    .learning-highlight-icon {
        width: 65px;

        height: 65px;

        font-size: 24px;
    }

    .learning-card {
        padding: 24px;
    }

    .learning-card h4 {
        font-size: 22px;
    }

    .learning-card-icon {
        width: 65px;

        height: 65px;

        font-size: 24px;
    }

    .learning-card-number {
        width: 38px;

        height: 38px;

        font-size: 13px;
    }
}

.legacy-box {
    display: flex;

    gap: 25px;

    align-items: flex-start;

    padding: 30px;

    margin-bottom: 25px;

    background: #fff;

    border-radius: 22px;

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

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

    transition: 0.35s;
}

.legacy-box:hover {
    transform: translateX(10px);
}

.legacy-icon {
    width: 75px;

    height: 75px;

    border-radius: 20px;

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

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 28px;

    flex-shrink: 0;
}

.legacy-box h4 {
    color: var(--primary-blue);

    font-weight: 700;

    margin-bottom: 10px;
}

.legacy-box p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

@media (max-width: 768px) {
    .legacy-box {
        flex-direction: column;

        text-align: center;
    }

    .legacy-icon {
        margin: auto;
    }
}

.recognition-logo-box {
    text-align: center;

    position: relative;
}

.recognition-logo-circle {
    width: 170px;

    height: 170px;

    margin: auto;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border: 8px solid #f5f7fb;

    transition: 0.35s;
}

.recognition-logo-circle img {
    max-width: 90px;

    max-height: 90px;

    object-fit: contain;
}

.recognition-logo-box:hover .recognition-logo-circle {
    transform: translateY(-10px);

    border-color: var(--primary-blue-light);

    box-shadow: 0 25px 60px rgba(0, 78, 158, 0.15);
}

.recognition-logo-box h5 {
    margin-top: 25px;

    color: var(--primary-blue);

    font-weight: 700;
}

.recognition-logo-box small {
    color: #6c757d;

    line-height: 1.7;

    display: block;

    max-width: 180px;

    margin: auto;
}

@media (max-width: 768px) {
    .recognition-logo-circle {
        width: 140px;

        height: 140px;
    }

    .recognition-logo-circle img {
        max-width: 75px;
    }
}

/*=========================================
BRAND ETHOS
=========================================*/

.ethos-wrapper {
    max-width: 1000px;
    margin: auto;
}

.ethos-row {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 45px 0;
    border-bottom: 1px solid #edf1f7;
    transition: 0.35s;
}

.ethos-row:hover {
    transform: translateX(12px);
}

.ethos-no {
    font-size: 72px;
    font-weight: 800;
    color: #e9eef6;
    line-height: 1;
    min-width: 90px;
    transition: 0.35s;
}

.ethos-row:hover .ethos-no {
    color: var(--primary-blue);
}

.ethos-content {
    flex: 1;
}

.ethos-content span {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--elegant-gold-dark);
    margin-bottom: 12px;
}

.ethos-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.ethos-content p {
    margin: 0;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 700px;
}

/*=========================================
QUOTE
=========================================*/

.ethos-quote {
    text-align: center;

    padding: 70px 40px 40px;
}

.ethos-quote span {
    display: inline-block;

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

    letter-spacing: 2px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;
}

.ethos-quote blockquote {
    font-size: 42px;

    line-height: 1.4;

    font-weight: 700;

    color: var(--primary-blue);

    max-width: 900px;

    margin: auto;
}

/*=========================================
BOTTOM STATS
=========================================*/

.ethos-stat h2 {
    font-size: 56px;

    font-weight: 800;

    color: var(--deep-red);

    margin-bottom: 8px;
}

.ethos-stat p {
    margin: 0;

    color: var(--text-muted);

    font-weight: 500;
}

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

@media (max-width: 991px) {
    .ethos-row {
        gap: 25px;

        padding: 35px 0;
    }

    .ethos-no {
        font-size: 56px;

        min-width: 70px;
    }

    .ethos-content h3 {
        font-size: 28px;
    }

    .ethos-quote blockquote {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .ethos-row {
        flex-direction: column;

        gap: 15px;
    }

    .ethos-no {
        font-size: 44px;
    }

    .ethos-content h3 {
        font-size: 24px;
    }

    .ethos-quote {
        padding: 50px 20px;
    }

    .ethos-quote blockquote {
        font-size: 26px;
    }

    .ethos-stat h2 {
        font-size: 40px;
    }
}

.journey-line {
    position: relative;

    margin-top: 80px;
}

.journey-progress {
    position: absolute;

    top: 62px;

    left: 10%;

    right: 10%;

    height: 3px;

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

.journey-item {
    position: relative;

    text-align: center;

    padding-top: 60px;
}

.journey-dot {
    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #fff;

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

    position: absolute;

    top: 28px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

    transition: 0.3s;
}

.journey-item.active .journey-dot {
    background: var(--elegant-gold);

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

    transform: translateX(-50%) scale(1.4);
}

.journey-item h3 {
    color: var(--primary-blue);

    font-weight: 800;

    margin-bottom: 12px;
}

.journey-item h5 {
    font-weight: 700;

    margin-bottom: 15px;
}

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

    line-height: 1.8;

    max-width: 220px;

    margin: auto;
}

.journey-item:hover .journey-dot {
    transform: translateX(-50%) scale(1.3);
}

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

    .journey-item {
        padding-top: 20px;

        margin-bottom: 35px;
    }

    .journey-dot {
        position: relative;

        top: auto;

        left: auto;

        transform: none;

        margin: 0 auto 20px;
    }

    .journey-item.active .journey-dot {
        transform: scale(1.2);
    }
}

.box-icon-blue {
    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;
}

.box-icon-blue::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1px dashed rgba(199, 162, 82, 0.5);
}

.box-icon-red {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-red-dark), var(--deep-red));
    color: #fff;
    font-size: 28px;
    position: relative;
}

.box-icon-red::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1px dashed rgba(199, 162, 82, 0.5);
}

.vision-card {
    /* display: flex; */
    align-items: stretch;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: 0.35s;
}

.vision-card:hover {
    transform: translateY(-6px);
}

.vision-icon {
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
}

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

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

.vision-content {
    padding: 0px 30px;
    flex: 1;
}

.vision-content span {
    color: var(--elegant-gold);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.vision-content h4 {
    margin: 10px 0 15px;
    font-size: 1.8rem;
    color: #0d2b4d;
    font-weight: 700;
}

.vision-content p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.vision-image {
    position: relative;
}

.vision-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--elegant-gold);
    left: -20px;
    top: -20px;
    z-index: 0;
}

.vision-image::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--elegant-gold);
    right: -20px;
    bottom: -20px;
    z-index: 0;
}

.vision-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 650px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .vision-card {
        flex-direction: column;
    }

    .vision-icon {
        width: 100%;
        height: 90px;
    }

    .vision-image img {
        height: auto;
    }

    .vision-image::before {
        display: none;
    }

    .vision-image::after {
        display: none;
    }

    .vision-content {
        padding: 30px;
    }
}

.value-item {
    display: flex;

    gap: 30px;

    align-items: flex-start;

    padding: 40px 30px;

    border-bottom: 1px solid #eceff5;

    position: relative;

    transition: 0.35s;

    height: 100%;
}

.value-item::before {
    content: "";

    position: absolute;

    left: 0;

    top: 35px;

    width: 4px;

    height: 70px;

    background: linear-gradient(var(--primary-blue), var(--elegant-gold));

    opacity: 0;

    transition: 0.35s;
}

.value-item:hover {
    background: #fff;

    padding-left: 45px;
}

.value-item:hover::before {
    opacity: 1;
}

.value-number {
    font-size: 64px;

    font-weight: 800;

    color: #edf1f6;

    line-height: 1;

    min-width: 80px;

    transition: 0.35s;
}

.value-item:hover .value-number {
    color: var(--deep-red);
}

.value-item h3 {
    color: var(--primary-blue);

    font-weight: 700;

    margin-bottom: 12px;

    font-size: 28px;
}

.value-item p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.9;
}

@media (max-width: 768px) {
    .value-item {
        padding: 30px 20px;

        gap: 18px;
    }

    .value-number {
        font-size: 42px;

        min-width: 55px;
    }

    .value-item h3 {
        font-size: 22px;
    }
}

.strategic-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.pillar-box {
    background: #fff;

    padding: 35px;

    border-radius: 22px;

    position: relative;

    transition: 0.35s;

    height: 100%;

    border: 1px solid #edf2f7;
}

.pillar-box:hover {
    transform: translateY(-8px);

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

.pillar-no {
    display: inline-flex;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    align-items: center;

    justify-content: center;

    background: var(--primary-blue);

    color: #fff;

    font-weight: 700;

    margin-bottom: 20px;
}

.pillar-box h4 {
    color: var(--primary-blue);

    font-weight: 700;

    margin-bottom: 15px;
}

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

    margin-bottom: 0;

    line-height: 1.9;
}

.pillar-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: 30px;

    margin: 18px 0 20px;

    transition: 0.35s;
}

.pillar-box:hover .pillar-icon {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );

    color: #fff;

    transform: translateY(-6px) rotate(-8deg);

    box-shadow: 0 15px 35px rgba(0, 78, 158, 0.18);
}

.approach-item {
    display: flex;

    align-items: center;

    padding: 30px 10px;

    border-bottom: 1px solid #edf2f7;

    transition: 0.35s;
}

.approach-item:hover {
    padding-left: 20px;

    background: #fafcff;
}

.approach-icon {
    width: 80px;

    height: 80px;

    border-radius: 22px;

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

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    color: var(--deep-red);

    margin-right: 25px;

    flex-shrink: 0;

    transition: 0.35s;
}

.approach-item:hover .approach-icon {
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-dark));

    color: #fff;
}

.approach-content {
    flex: 1;
}

.approach-content h4 {
    font-weight: 700;

    color: var(--primary-blue);

    margin-bottom: 8px;
}

.approach-content p {
    margin: 0;

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

.approach-arrow {
    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #f6f8fb;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--elegant-gold);

    transition: 0.35s;
}

.approach-item:hover .approach-arrow {
    background: var(--elegant-gold);

    color: #fff;

    transform: translateX(6px);
}

@media (max-width: 768px) {
    .approach-item {
        flex-direction: column;

        text-align: center;
    }

    .approach-icon {
        margin: 0 0 20px;
    }

    .approach-arrow {
        display: none;
    }
}

.chairman-card {
    background: #fff;

    padding: 60px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.chairman-badge {
    width: 180px;

    height: 180px;

    margin: auto;

    border-radius: 50%;

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

    color: #fff;

    font-size: 72px;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 25px 60px rgba(0, 78, 158, 0.18);
}

.mini-stat {
    background: var(--deep-red-soft);

    padding: 20px 10px;

    border-radius: 18px;
}

.mini-stat h4 {
    color: var(--primary-blue);

    font-weight: 700;

    margin-bottom: 4px;
}

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

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

    .chairman-badge {
        width: 150px;

        height: 150px;

        font-size: 56px;

        margin-bottom: 20px;
    }
}

.legacy-feature {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #edf1f7;
}

.legacy-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;

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

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

    color: #fff;
    font-size: 28px;

    flex-shrink: 0;
}

.legacy-feature small {
    display: block;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;

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

    margin-bottom: 6px;
}

.legacy-feature h4 {
    color: var(--primary-blue);

    font-weight: 700;

    margin-bottom: 10px;
}

.legacy-feature p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

/* Right */

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

    padding: 50px;

    border-radius: 30px;

    color: #fff;

    height: 100%;
}

.legacy-tag {
    display: inline-block;

    padding: 8px 18px;

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

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

.legacy-highlight h3 {
    font-size: 38px;

    font-weight: 700;

    margin-bottom: 20px;
}

.legacy-highlight p {
    opacity: 0.92;

    line-height: 1.9;
}

.legacy-years {
    display: flex;

    align-items: center;

    margin-top: 40px;

    padding-top: 30px;

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

.legacy-years span {
    font-size: 12px;

    letter-spacing: 2px;

    display: block;

    opacity: 0.8;
}

.legacy-years h2 {
    font-size: 48px;

    font-weight: 800;

    margin-bottom: 5px;
}

.legacy-years p {
    margin: 0;

    font-size: 14px;
}

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

    .legacy-highlight h3 {
        font-size: 30px;
    }

    .legacy-years {
        flex-direction: column;

        text-align: center;
    }

    .legacy-years .vr {
        display: none;
    }
}

/*======================================
OUR PHILOSOPHY
======================================*/

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

    padding: 55px;

    border-radius: 30px;

    color: #fff;

    height: 100%;
}

.philosophy-label {
    display: inline-block;

    padding: 8px 18px;

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

    border-radius: 30px;

    font-size: 13px;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

.philosophy-main h2 {
    font-size: 56px;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 25px;
}

.philosophy-main p {
    line-height: 2;

    opacity: 0.9;
}

.belief-line {
    width: 80px;

    height: 4px;

    background: var(--elegant-gold);

    margin: 35px 0;

    border-radius: 20px;
}

.philosophy-main small {
    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0.8;
}

/* RIGHT */

.principle-item {
    display: flex;

    gap: 30px;

    padding: 28px 0;

    border-bottom: 1px solid #edf2f7;
}

.principle-number {
    font-size: 52px;

    font-weight: 800;

    color: #edf1f7;

    min-width: 70px;

    line-height: 1;

    transition: 0.3s;
}

.principle-item:hover .principle-number {
    color: var(--primary-blue);
}

.principle-text {
    flex: 1;
}

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

    font-weight: 700;

    margin-bottom: 10px;
}

.principle-text p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

@media (max-width: 991px) {
    .philosophy-main {
        margin-bottom: 20px;

        padding: 40px;
    }

    .philosophy-main h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .principle-item {
        gap: 18px;
    }

    .principle-number {
        font-size: 36px;

        min-width: 45px;
    }

    .philosophy-main h2 {
        font-size: 34px;
    }
}

/* ===============================
OUR COMMITMENT
================================ */

.commitment-quote {
    margin-top: 40px;

    padding-left: 30px;

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

.commitment-quote i {
    color: var(--elegant-gold);

    font-size: 28px;

    margin-bottom: 15px;
}

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

    line-height: 1.6;

    font-weight: 700;

    margin: 0;
}

/* Right */

.commitment-box {
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    height: 100%;

    transition: 0.35s;

    overflow: hidden;

    border: 1px solid #edf2f7;
}

.commitment-box:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.commitment-number {
    position: absolute;

    top: 20px;

    right: 25px;

    font-size: 50px;

    font-weight: 800;

    color: #eef3f8;

    line-height: 1;
}

.commitment-icon {
    width: 70px;

    height: 70px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: var(--primary-blue);

    font-size: 28px;

    margin-bottom: 25px;

    transition: 0.35s;
}

.commitment-box:hover .commitment-icon {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );

    color: #fff;

    transform: rotate(-8deg);
}

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

    font-weight: 700;

    margin-bottom: 15px;
}

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

    margin: 0;

    line-height: 1.8;
}

@media (max-width: 768px) {
    .commitment-box {
        padding: 28px;
    }

    .commitment-number {
        font-size: 38px;
    }
}

.community-wrapper {
    background: #fff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.community-box {
    padding: 55px;

    position: relative;
}

.community-box:first-child {
    border-right: 1px solid #edf2f7;
}

.community-icon {
    width: 80px;

    height: 80px;

    border-radius: 24px;

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

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    margin-bottom: 25px;
}

.community-label {
    display: inline-block;

    font-size: 12px;

    letter-spacing: 2px;

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

    font-weight: 700;

    margin-bottom: 15px;
}

.community-box h3 {
    color: var(--primary-blue);

    font-weight: 700;

    margin-bottom: 25px;
}

.community-box blockquote {
    font-size: 20px;

    line-height: 1.9;

    color: #4d5c6d;

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

    padding-left: 25px;

    margin-bottom: 40px;

    font-style: italic;
}

.community-author {
    padding-top: 20px;

    border-top: 1px solid #edf2f7;
}

.community-author strong {
    display: block;

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

.community-author span {
    color: var(--text-muted);

    font-size: 14px;
}

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

    .community-box:first-child {
        border-right: none;

        border-bottom: 1px solid #edf2f7;
    }
}

@media (max-width: 768px) {
    .community-box blockquote {
        font-size: 18px;
    }
}

.director-wrapper {
    background: #fff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.director-profile {
    /* background: var(--primary-blue);

        color: #fff; */

    padding: 45px 35px;

    height: 100%;

    text-align: center;
}

.director-avatar {
    width: 110px;

    height: 110px;

    margin: auto;

    border-radius: 50%;

    background: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 42px;

    margin-bottom: 25px;
}

.director-label {
    display: inline-block;

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 12px;

    /* color: #fff; */
}

.director-profile h3 {
    color: var(--primary-blue);
    font-weight: 700;

    margin-bottom: 10px;
}

.director-profile p {
    opacity: 0.85;
}

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

    padding-top: 25px;

    border-top: 1px solid var(--primary-blue);

    font-style: italic;

    line-height: 1.8;
}

.director-content {
    padding: 50px;
}

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

    line-height: 1.9;
}

.director-highlight {
    margin: 35px 0;

    padding: 35px;

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

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

    border-radius: 15px;
}

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

    font-size: 28px;

    margin-bottom: 15px;
}

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

    line-height: 1.6;

    margin: 0;

    font-weight: 700;
}

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

    padding-top: 20px;

    border-top: 1px solid #eee;
}

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

    font-weight: 700;

    margin-bottom: 5px;
}

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

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

.accreditation-intro {
    height: 100%;

    padding: 45px 35px;

    border-radius: 28px;

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

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    overflow: hidden;
}

.accreditation-intro::before {
    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    border-radius: 50%;

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

    top: -90px;

    right: -90px;
}

.intro-tag {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

    opacity: 0.9;
}

.accreditation-intro h3 {
    font-size: 42px;

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 20px;
}

.accreditation-intro p {
    line-height: 1.9;

    opacity: 0.9;

    margin-bottom: 40px;
}

.intro-circle {
    width: 180px;

    height: 180px;

    border-radius: 50%;

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

    border: 2px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.intro-circle h2 {
    font-size: 52px;

    font-weight: 800;

    margin-bottom: 6px;

    color: #fff;
}

.intro-circle span {
    width: 120px;

    font-size: 14px;

    line-height: 1.5;
}

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

.accreditation-card {
    height: 100%;

    background: #fff;

    border-radius: 24px;

    padding: 30px;

    border: 1px solid #edf2f7;

    transition: 0.35s;

    position: relative;

    overflow: hidden;
}

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

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

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

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.35s;
}

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

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

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

/*==========================================
    TOP
    ==========================================*/

.accreditation-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;
}

.accreditation-top span {
    font-size: 42px;

    font-weight: 800;

    color: #edf1f6;

    line-height: 1;

    transition: 0.35s;
}

.accreditation-card:hover .accreditation-top span {
    color: var(--primary-blue);
}

/*==========================================
ICON
==========================================*/

.accreditation-logo {
    width: 90px;

    height: 90px;

    background: #fff;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #edf2f7;

    overflow: hidden;

    transition: 0.35s;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.accreditation-logo img {
    width: 70%;

    height: 70%;

    object-fit: contain;

    transition: 0.35s;
}

.accreditation-card:hover .accreditation-logo {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 78, 158, 0.12);

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

.accreditation-card:hover .accreditation-logo img {
    transform: scale(1.08);
}

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

.accreditation-card small {
    display: block;

    font-size: 12px;

    letter-spacing: 2px;

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

    font-weight: 700;

    margin-bottom: 10px;
}

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

    font-size: 23px;

    font-weight: 700;

    margin-bottom: 15px;
}

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

    line-height: 1.8;

    margin-bottom: 22px;
}

.accreditation-footer {
    display: inline-block;

    padding: 10px 18px;

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

    color: var(--primary-blue);

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;
}

/*==========================================
BOTTOM STATS
==========================================*/

.accreditation-stats {
    margin-top: 50px;

    padding-top: 35px;

    border-top: 1px solid #edf2f7;
}

.stat-box {
    background: #f8fbff;

    border-radius: 20px;

    padding: 30px 20px;

    transition: 0.35s;

    border: 1px solid transparent;

    height: 100%;
}

.stat-box:hover {
    transform: translateY(-5px);

    border-color: var(--primary-blue-light);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.stat-box h2 {
    color: var(--primary-blue);

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 10px;
}

.stat-box p {
    margin: 0;

    color: var(--text-muted);

    font-weight: 600;
}

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

@media (max-width: 991px) {
    .accreditation-intro {
        padding: 35px;

        margin-bottom: 20px;

        align-items: center;

        text-align: center;
    }

    .accreditation-intro h3 {
        font-size: 34px;
    }

    .intro-circle {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .accreditation-card {
        padding: 25px;
    }

    .accreditation-card h4 {
        font-size: 20px;
    }

    .accreditation-top span {
        font-size: 32px;
    }

    .accreditation-icon {
        width: 60px;

        height: 60px;

        font-size: 24px;
    }

    .intro-circle {
        width: 150px;

        height: 150px;
    }

    .intro-circle h2 {
        font-size: 40px;
    }

    .intro-circle span {
        width: 95px;

        font-size: 12px;
    }

    .stat-box {
        padding: 22px 15px;
    }

    .stat-box h2 {
        font-size: 32px;
    }
}

/*======================================
AICTE APPROVAL
======================================*/

.aicte-wrapper {
    background: #fff;

    border-radius: 30px;

    padding: 50px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.aicte-logo-box {
    width: 220px;

    height: 220px;

    margin: auto;

    background: #fff;

    border-radius: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 30px;

    border: 1px solid #edf2f7;

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

.aicte-logo-box img {
    width: 100%;

    object-fit: contain;
}

.certificate-card {
    border: 2px dashed var(--primary-blue-light);

    border-radius: 25px;

    padding: 35px;
}

.certificate-head {
    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    border-bottom: 1px solid #edf2f7;

    padding-bottom: 25px;
}

.certificate-head small {
    color: var(--elegant-gold-dark);

    font-weight: 700;

    letter-spacing: 2px;
}

.certificate-head h3 {
    color: var(--primary-blue);

    margin-top: 10px;

    font-weight: 700;
}

.certificate-badge {
    background: var(--primary-blue);

    color: #fff;

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;
}

.approval-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 0;

    font-weight: 600;
}

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

    font-size: 18px;
}

.certificate-footer {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #edf2f7;
}

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

    .aicte-logo-box {
        width: 180px;

        height: 180px;

        margin-bottom: 20px;
    }
}

/*======================================
UNIVERSITY AFFILIATION
======================================*/

.affiliation-wrapper {
    background: #fff;

    border-radius: 30px;

    padding: 50px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.university-logo-box {
    width: 220px;

    height: 220px;

    margin: auto;

    background: #fff;

    border-radius: 30px;

    padding: 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid #edf2f7;

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

.university-logo-box img {
    width: 100%;

    object-fit: contain;
}

.established-box {
    background: var(--primary-blue);

    color: #fff;

    border-radius: 20px;

    padding: 25px;
}

.established-box small {
    letter-spacing: 2px;

    opacity: 0.9;
}

.established-box h2 {
    font-size: 52px;

    font-weight: 800;

    margin: 8px 0;
}

.affiliation-card {
    border: 2px dashed var(--primary-blue-light);

    border-radius: 25px;

    padding: 35px;
}

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

    .university-logo-box {
        width: 180px;

        height: 180px;
    }
}

/*======================================
NAAC ACCREDITATION
======================================*/

.naac-wrapper {
    background: #fff;

    border-radius: 30px;

    padding: 50px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.naac-logo-box {
    width: 220px;

    height: 220px;

    margin: auto;

    background: #fff;

    border-radius: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 25px;

    border: 1px solid #edf2f7;

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

.naac-logo-box img {
    width: 100%;

    object-fit: contain;
}

.naac-quality-box {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );

    color: #fff;

    border-radius: 20px;

    padding: 25px;
}

.naac-quality-box small {
    letter-spacing: 2px;

    opacity: 0.9;

    font-weight: 600;
}

.naac-quality-box h3 {
    font-size: 36px;

    font-weight: 700;

    margin: 10px 0;
}

.naac-card {
    border: 2px dashed var(--primary-blue-light);

    border-radius: 25px;

    padding: 35px;
}

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

    .naac-logo-box {
        width: 180px;

        height: 180px;

        margin-bottom: 20px;
    }
}

/*======================================
ISO CERTIFICATION
======================================*/

.iso-wrapper {
    background: #fff;

    border-radius: 30px;

    padding: 50px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.iso-logo-box {
    width: 220px;

    height: 220px;

    margin: auto;

    background: #fff;

    border-radius: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 25px;

    border: 1px solid #edf2f7;

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

.iso-logo-box img {
    width: 100%;

    object-fit: contain;
}

.iso-standard-box {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );

    color: #fff;

    border-radius: 20px;

    padding: 25px;
}

.iso-standard-box small {
    display: block;

    letter-spacing: 2px;

    font-size: 12px;

    opacity: 0.9;

    margin-bottom: 10px;
}

.iso-standard-box h3 {
    font-size: 42px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 12px;
}

.iso-standard-box p {
    margin: 0;

    opacity: 0.9;
}

.iso-card {
    border: 2px dashed var(--primary-blue-light);

    border-radius: 25px;

    padding: 35px;
}

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

    .iso-logo-box {
        width: 180px;

        height: 180px;

        margin-bottom: 20px;
    }
}

/*=====================================
Student Advantages
=====================================*/

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

    color: #fff;

    padding: 35px;

    border-radius: 24px;

    margin-top: 35px;
}

.advantage-highlight h3 {
    font-weight: 700;

    margin-bottom: 15px;
}

.advantage-highlight p {
    opacity: 0.9;

    line-height: 1.8;
}

/* Right */

.advantage-item {
    display: flex;

    align-items: flex-start;

    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid #edf2f7;

    transition: 0.35s;
}

.advantage-item:hover {
    padding-left: 18px;
}

.advantage-icon {
    width: 75px;

    height: 75px;

    border-radius: 20px;

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

    color: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    flex-shrink: 0;

    transition: 0.35s;
}

.advantage-item:hover .advantage-icon {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );

    color: #fff;

    transform: rotate(-8deg);
}

.advantage-item span {
    display: block;

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

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

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

    font-weight: 700;

    margin-bottom: 10px;
}

.advantage-item p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

@media (max-width: 991px) {
    .advantage-highlight {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .advantage-item {
        gap: 18px;
    }

    .advantage-icon {
        width: 60px;

        height: 60px;

        font-size: 24px;
    }
}

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

.quality-left {
    height: 100%;
}

.quality-label {
    display: inline-block;

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

    color: var(--primary-blue);

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.quality-left h3 {
    font-size: 40px;

    font-weight: 700;

    color: var(--primary-blue);

    line-height: 1.25;

    margin-bottom: 20px;
}

.quality-left > p {
    color: var(--text-muted);

    line-height: 1.9;

    margin-bottom: 35px;
}

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

.quality-feature {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid #edf2f7;

    transition: 0.35s;
}

.quality-feature:hover {
    padding-left: 12px;
}

.quality-icon {
    width: 70px;

    height: 70px;

    border-radius: 18px;

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

    color: var(--primary-blue);

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;

    font-size: 28px;

    transition: 0.35s;
}

.quality-feature:hover .quality-icon {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );

    color: #fff;

    transform: rotate(-8deg);
}

.quality-feature h5 {
    font-weight: 700;

    color: var(--primary-blue);

    margin-bottom: 8px;
}

.quality-feature p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

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

.quality-journey {
    background: #f8fbff;

    border-radius: 24px;

    padding: 35px;

    height: 100%;

    border: 1px solid #edf2f7;
}

.journey-heading {
    margin-bottom: 35px;
}

.journey-heading span {
    display: inline-block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

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

    margin-bottom: 10px;
}

.journey-heading h3 {
    color: var(--primary-blue);

    font-weight: 700;
}

/*=========================================
TIMELINE
=========================================*/

.journey-line {
    position: relative;

    padding-left: 30px;
}

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

    position: absolute;

    left: 18px;

    top: 15px;

    bottom: 15px;

    width: 2px;

    background: #dfe7ef;
}

.journey-step {
    position: relative;

    padding-bottom: 45px;
}

.journey-step:last-child {
    padding-bottom: 0;
}

.journey-circle {
    position: absolute;

    left: -30px;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: var(--primary-blue);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 13px;

    font-weight: 700;

    z-index: 2;

    transition: 0.35s;
}

.journey-step:hover .journey-circle {
    background: var(--elegant-gold);

    transform: scale(1.08);
}

.journey-content {
    background: #fff;

    border-radius: 20px;

    padding: 25px;

    margin-left: 35px;

    border: 1px solid #edf2f7;

    transition: 0.35s;
}

.journey-step:hover .journey-content {
    transform: translateX(8px);

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

.journey-content i {
    width: 60px;

    height: 60px;

    border-radius: 16px;

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

    color: var(--primary-blue);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

    margin-bottom: 18px;

    transition: 0.35s;
}

.journey-step:hover .journey-content i {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );

    color: #fff;

    transform: rotate(-8deg);
}

.journey-content h5 {
    font-weight: 700;

    color: var(--primary-blue);

    margin-bottom: 10px;
}

.journey-content p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

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

@media (max-width: 991px) {
    .quality-left {
        margin-bottom: 20px;
    }

    .quality-left h3 {
        font-size: 34px;
    }

    .quality-journey {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .quality-left h3 {
        font-size: 28px;
    }

    .quality-feature {
        gap: 15px;
    }

    .quality-icon {
        width: 60px;

        height: 60px;

        font-size: 22px;
    }

    .journey-line {
        padding-left: 20px;
    }

    .journey-circle {
        width: 34px;

        height: 34px;

        left: -20px;

        font-size: 11px;
    }

    .journey-content {
        margin-left: 25px;

        padding: 20px;
    }

    .journey-content i {
        width: 50px;

        height: 50px;

        font-size: 20px;
    }
}
