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

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #1e2a3e;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

/* Custom Variables - Deep Professional Red, Primary Blue, Elegant Gold */
: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-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);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.text-blue {
    color: #003d7a;
}

.text-gold {
    color: #a07d38;
}

.top-header {
    overflow: hidden;
}

.bg-blue {
    background-color: #003d7a;
    color: #fff;
}

.bg-blue:hover,
.bg-blue:hover a {
    background-color: #003d7a;
    color: #fff;
}

.bg-red {
    background-color: #c1121f;
    color: #fff;
}

.bg-red:hover,
.bg-red:hover a {
    background-color: #c1121f;
    color: #fff;
}

.bg-light {
    background: linear-gradient(135deg, #ecf0f9 0%, #fdeff1 100%);
    color: #fff;
}

.bg-gold {
    background-color: #a07d38;
}

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

/* Left angled section */
.social-bg {
    background: #a07d38;
    position: relative;
    z-index: 1;
}

.social-bg::after {
    content: "";
    position: absolute;
    top: 0;
    right: -45px;
    width: 90px;
    height: 100%;
    background: #a07d38;
    transform: skewX(-30deg);
    z-index: -1;
}

.contact-bg {
    background: #08235e;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Social Icons */
.social-icon {
    color: #fff;
    margin-right: 15px;
    transition: 0.3s;
    padding: 10px 0;
}

.contact-section {
    padding: 8px 0;
}

.social-icon:last-child {
    margin-right: 0;
}

.social-icon:hover {
    color: #08235e;
}

/* Contact */
.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding-right: 15px;
    margin-right: 10px;
    border-right: 2px solid rgb(255, 255, 255);
}

.contact-item i {
    color: #a07d38;
    font-size: 15px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #a07d38;
}

/* Badge */
.powered-badge {
    background: #a07d38;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 10px;
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #1c2b4a;
    margin: 0 10px;
    font-size: 14px;
}

.admission-btn {
    background: #c1121f;
    color: #fff;
    padding: 10px 30px;
    border-radius: 0;
    font-weight: 600;
}

.admission-btn:hover {
    background: #c1121f;
    color: #fff;
}

/* Sticky Navbar */
.navbar {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Sticky class added on scroll */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.35s ease;
}

.modal-content {
    border-radius: 50px 0;
}

.modal-body {
    padding: 0%;
}

.enquiry:hover {
    background-color: #003d7a;
    color: #fff;
}

.social-icon a {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c1121f;
    text-decoration: none;
    transition: 0.3s;
}

/* .isbm-logo {
    padding: 3px;
} */

.isbm-logo img {
    height: 28px;
    padding: 3px;
}

/* about us */

/* Image Wrapper */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.main-image {
    width: 100%;
    border-radius: 20px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    text-align: center;
    min-width: 130px;
    z-index: 2;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: #c1121f;
    margin-bottom: 8px;
}

.floating-card h6 {
    margin: 0;
    font-weight: 700;
    color: #003d7a;
}

.floating-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Card Positions */
.card-one {
    top: 30px;
    left: -40px;
}

.card-two {
    bottom: 50px;
    right: -30px;
}

.card-three {
    bottom: -20px;
    left: 30%;
}

.about-section {
    background: #fff;
}

.about-tag {
    color: #c1121f;
    font-weight: 700;
    border-bottom: 2px solid #a07d38;
    padding-bottom: 5px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #003d7a;
}

.section-title span {
    color: #a07d38;
}

/* Image */
.image-wrapper {
    position: relative;
}

.main-image {
    border-radius: 25px;
    width: 100%;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 15px;
    padding: 15px 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 130px;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: #003d7a;
    margin-bottom: 8px;
}

.floating-card h5 {
    margin: 0;
    font-weight: 700;
    color: #003d7a;
}

.floating-card p {
    margin: 0;
    font-size: 13px;
}

.card-one {
    top: 30px;
    left: -30px;
}

.card-two {
    right: -30px;
    bottom: 60px;
}

.card-three {
    left: 30%;
    bottom: -25px;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

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

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

/* Feature Cards */
.about-feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

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

.about-feature-card i {
    font-size: 26px;
    color: #c1121f;
    margin-bottom: 12px;
}

.about-feature-card h6 {
    font-weight: 700;
    color: #003d7a;
}

.about-feature-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
}

/* Hero Wrapper */
.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 50vh;
}

/* Image */
.hero-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
}

/* Optional Overlay */
.hero-overlay-content {
    position: absolute;
    left: 60px;
    bottom: 60px;
    color: #fff;
    z-index: 2;
}

.hero-overlay-content h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-overlay-content p {
    font-size: 16px;
    margin: 0;
}

/* Dark Overlay */
.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000ab;
    z-index: 1;
}

.apply-btn {
    background: var(--deep-red);
    color: white;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(193, 18, 31, 0.3);
    border: none;
}

.apply-btn:hover {
    background: var(--deep-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(199, 162, 82, 0.3);
    color: white;
}

/* footer */

.footer-section {
    background: #003d7a;
    position: relative;
    color: #fff;
    padding-top: 70px;
    overflow: hidden;
}

.footer-top {
    padding-bottom: 60px;
}

.footer-box h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-box p {
    color: #d5dede;
    line-height: 1.9;
}

.footer-box p a {
    color: #fff;
    text-decoration: underline;
}

.border-start-custom {
    border-left: 1px solid #a07d38;
    padding-left: 25px;
    height: 100%;
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003d7a;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact i {
    width: 42px;
    height: 42px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #a07d38;
    padding-left: 5px;
}

.footer-bottom {
    background: #a07d38;
    padding: 22px 15px;
    font-size: 15px;
}

.footer-bottom span {
    color: #a07d38;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    background: #fff;
    color: #000;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
}

.stats-section {
    background: linear-gradient(135deg, #ecf0f9 0%, #fdeff1 100%);
    position: relative;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: 70px 25px;
    border-right: 1px solid #e3e3e3;
    position: relative;
}

.stat-box h2 {
    font-size: 58px;
    font-weight: 700;
    color: #091b4a;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-box p {
    margin: 0;
    color: #c1121f;
    font-size: 20px;
    font-weight: 600;
}

/* Decorative top-left */
.shape-left {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 120px;
    height: 120px;
    background: #ffd7dc;
    clip-path: polygon(
        50% 0%,
        65% 40%,
        100% 50%,
        65% 60%,
        50% 100%,
        35% 60%,
        0% 50%,
        35% 40%
    );
    opacity: 0.7;
}

/* Decorative bottom-right */
.shape-right {
    position: absolute;
    right: -10px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    background: #d9dade;
    clip-path: polygon(
        50% 0%,
        65% 40%,
        100% 50%,
        65% 60%,
        50% 100%,
        35% 60%,
        0% 50%,
        35% 40%
    );
    opacity: 0.8;
}

/* Section */
.program-area {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Content Area */
.about-content {
    position: relative;
    z-index: 2;
}

.section-title2 .subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #091b4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

/* Search Box */
.program-search {
    margin-top: 30px;
}

.program-search-outer {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.program-search-outer input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 20px;
    font-size: 15px;
    background: transparent;
}

.program-search-outer .btn2 {
    border: none;
    background: #091b4a;
    color: #fff;
    padding: 18px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.program-search-outer .btn2:hover {
    background: #084298;
}

/* Popular Search */
.program-search-reslute {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.program-search-reslute .text {
    font-weight: 600;
    color: #1e293b;
}

.program-search-reslute ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.program-search-reslute ul li a {
    display: inline-block;
    padding: 8px 16px;
    background: #eef2ff;
    color: #091b4a;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.program-search-reslute ul li a:hover {
    background: #091b4a;
    color: #fff;
}

/* CTA Program Cards */
.program-search-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.program-search-cta:hover {
    transform: translateY(-4px);
}

.program-search-cta strong {
    color: #0f172a;
    font-size: 17px;
    font-weight: 600;
}

.program-search-cta .btn {
    width: 45px;
    height: 45px;
    background: #091b4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.program-search-cta .btn:hover {
    background: #084298;
    transform: rotate(45deg);
}

/* Image Section */
.s-about-img {
    position: relative;
    text-align: center;
}

.s-about-img img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Student Badge */
.program-students {
    position: absolute;
    top: 10px;
    left: -20px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    animation: floatCard 3s ease-in-out infinite;
}

.program-students strong {
    display: block;
    font-size: 22px;
    color: #091b4a;
}

/* Help Box */
.program-call {
    position: absolute;
    bottom: 20px;
    right: -80px;
    background: #091b4a;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: floatCard 3s ease-in-out infinite;
}

.program-call img {
    width: 45px;
    height: 45px;
}

.program-call strong {
    display: block;
    font-size: 18px;
    margin-top: 4px;
}

.health-care-area {
    background: linear-gradient(135deg, #ecf0f9 0%, #fdeff1 100%);
    overflow: hidden;
}

.health-card {
    position: relative;
}

.health-card .img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Main floating content */
.right-card .health-care-content {
    background: #fff;
    padding: 40px;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    top: -70px;
    left: 60px;
}

/* Left cards */
.left-card .health-care-content,
.small-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
    border-radius: 10px;
    position: relative;
}

.left-card .health-care-content:hover,
.small-card:hover {
    transform: translateY(-5px);
}

.health-care-content h3,
.health-care-content h4 {
    color: #071c5a;
    font-weight: 700;
    margin-bottom: 15px;
}

.health-care-content h3 {
    font-size: 38px;
    line-height: 1.2;
}

.health-care-content h4 {
    font-size: 24px;
    line-height: 1.4;
}

.health-care-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more-btn {
    color: #071c5a;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: #ff4d5a;
}

/* Desktop layout */
.left-card {
    margin-top: -20px;
}

.right-card {
    margin-top: 100px;
}

.row.g-2.mt-4 {
    position: relative;
    top: -194px;
    left: 28px;
    max-width: 590px;
}

.health-care-content.cg {
    position: relative;
    top: 59px;
}

.row.g-1.mt-4.content {
    width: 590px;
    position: relative;
    right: 35px;
    top: -680px;
}

.health-care-content.ch {
    position: relative;
    top: -5px;
}

.col-lg-6.pedagogical {
    min-height: auto;
}

/* Bottom */
.more-health-care p {
    font-size: 22px;
    color: #555;
}

.more-health-care .active {
    color: #ff4d5a;
}

.faculty-section {
    background: #003f73;
}

.faculty-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    height: 320px;
}

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

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

.faculty-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 49, 91, 0.95) 0%,
        rgba(0, 49, 91, 0.75) 25%,
        rgba(0, 49, 91, 0.1) 60%,
        transparent 100%
    );
}

.faculty-content {
    position: absolute;
    left: 35px;
    bottom: 30px;
    z-index: 2;
}

.faculty-content h3 {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.faculty-card:hover .faculty-content h3 {
    color: #ffc107;
}

a.btn.view-all-btn.bg-red {
    height: 40px;
    margin-top: 40px;
}

.btn-call {
    white-space: nowrap;
}

.professor-slider .slick-track {
    display: flex;
}

.professor-slider .slick-slide {
    height: inherit;
}

.professor-slider .card {
    margin: 10px;
}

.about-university img {
    object-fit: cover;
}

.about-university .lead {
    line-height: 1.8;
    opacity: 0.9;
}

img.img-fluid.rounded-4.w-100.img-2 {
    height: 450px;
}

img.img-fluid.rounded-4.w-100.img-2.span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

img.img-fluid.rounded-4.w-100.img {
    height: 250px;
}

.sport-box {
    padding: 25px 10px;
    text-align: center;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    transition: var(--transition-lux);
    border: 1px solid #003f73;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.call-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.call-circle::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.call-circle::after {
    content: "";
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.call-circle i {
    font-size: 32px;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #c1121f;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.form-control {
    border: 0;
    background: #f7f7f7;
}

.search-dropdown {
    min-width: 300px;
}

.hero-logo svg {
    fill: #fff;
    stroke: #ffffff;
    opacity: 0.8;
    /* optional */
}

.hero-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    /* optional */
}

.hero-logo {
    background-image: url("logo.webp");
    filter: brightness(0) invert(1);
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Base Styles */
.home-section {
    background-color: #0a1a3a;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* Overlay Styles */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 26, 58, 0.9) 0%,
        rgba(10, 26, 58, 0.7) 50%,
        rgba(10, 26, 58, 0.4) 100%
    );
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 2rem;
    padding: 2rem;
}

/* Text Content Styles */
.hero-text-content {
    flex: 1;
    color: white;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4d1a);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    opacity: 0.95;
    max-width: 600px;
}

.hero-btn {
    background: linear-gradient(90deg, #ff6b35, #ff4d1a);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Logo Styles */
.hero-logo-wrapper {
    flex: 0 0 auto;
    animation: fadeInRight 0.8s ease-out;
}

.hero-logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Large Devices (1200px and down) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo-img {
        max-width: 350px;
    }

    .hero-content-wrapper {
        padding: 1.5rem;
    }
}

/* Tablet Devices (992px and down) */
@media (max-width: 992px) {
    .hero-image {
        height: 450px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 1rem 0;
    }

    .hero-logo-img {
        max-width: 280px;
    }

    .hero-content-wrapper {
        gap: 1.5rem;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Medium Devices (768px and down) - Tablet Portrait */
@media (max-width: 768px) {
    .hero-image {
        height: auto;
        min-height: 600px;
        object-fit: cover;
    }

    .hero-overlay-content {
        background: linear-gradient(
            135deg,
            rgba(10, 26, 58, 0.95) 0%,
            rgba(10, 26, 58, 0.85) 100%
        );
    }

    .hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 1rem auto;
        max-width: 90%;
    }

    .hero-logo-wrapper {
        text-align: center;
    }

    .hero-logo-img {
        max-width: 250px;
        height: auto;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Small Devices (576px and down) - Mobile */
@media (max-width: 576px) {
    .hero-image-wrapper {
        min-height: 500px;
    }

    .hero-image {
        min-height: 500px;
        height: auto;
        object-position: 70% center;
    }

    .hero-content-wrapper {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-title::after {
        bottom: -8px;
        width: 60px;
        height: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin: 0.75rem auto;
        line-height: 1.5;
    }

    .hero-logo-img {
        max-width: 200px;
    }

    .hero-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

/* Extra Small Devices (375px and down) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-logo-img {
        max-width: 160px;
    }

    .hero-content-wrapper {
        padding: 1rem;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-image {
        min-height: 100vh;
        height: auto;
    }

    .hero-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 1rem;
    }

    .hero-text-content {
        text-align: left;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-title::after {
        left: 0;
        transform: none;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin: 0.5rem 0;
    }

    .hero-logo-img {
        max-width: 150px;
    }

    .hero-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-logo-img {
        max-width: 450px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-text-content,
    .hero-logo-wrapper {
        animation: none;
    }

    .hero-btn {
        transition: none;
    }
}

/* Base Styles */
.home-section {
    background-color: #0a1a3a;
    /* Dark blue */
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image {
    height: 100%;
    object-fit: cover;
}

/* Overlay Content */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgb(10 26 58 / 0%) 0%,
        rgb(10 26 58 / 0%) 100%
    );
}

.hero-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

/* Text Content */
.hero-text-content {
    flex: 1;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: #ff6b35;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, transparent);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btn {
    background: linear-gradient(90deg, #ff6b35, #ff4d1a);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Right Image */
.hero-image-right {
    flex: 0 0 auto;
    margin-right: 2rem;
}

.hero-image-right img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-text-content {
    display: flex;
    flex-direction: column;
}

.hero-section {
    background: rgba(199, 162, 82, 0.15);
    color: var(--elegant-gold);
    font-weight: 700;
    font-size: 13px;
    width: fit-content;
}

.hero-title {
    margin-top: 0;
}

.journey-cta-card {
    position: relative;
    overflow: hidden;
    padding: 50px 60px;
    border-radius: 40px;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        #18386f 50%,
        var(--deep-red-dark) 100%
    );
    box-shadow: var(--shadow-md);
}

.vision-mission-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue-light) 0%,
        #ffffff 50%,
        var(--deep-red-soft) 100%
    );
    position: relative;
}

.section-desc {
    max-width: 700px;
    font-size: 1.05rem;
}

.vm-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

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

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

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

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

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
}

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

.values-card .vm-icon {
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.vm-card p,
.mission-list li {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.mission-list {
    padding-left: 18px;
    margin: 0;
}

.mission-list li {
    margin-bottom: 12px;
}

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

.value-tags span {
    padding: 8px 16px;
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

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

    .vm-card h3 {
        font-size: 24px;
    }
}

.brand-ethos-section {
    background: #fff;
    position: relative;
}

.ethos-desc {
    max-width: 750px;
}

.ethos-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

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

.ethos-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

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

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

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

.ethos-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.belief-card .ethos-icon {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.intent-card .ethos-icon {
    background: var(--deep-red-soft);
    color: var(--deep-red);
}

.identity-card .ethos-icon {
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
}

.ethos-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.ethos-card p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
}

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

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

.approach-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue-light) 0%,
        #ffffff 50%,
        var(--deep-red-soft) 100%
    );
}

.approach-badge {
    background: rgba(0, 78, 158, 0.08);
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.approach-desc {
    max-width: 700px;
}

.approach-timeline {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.approach-timeline::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-blue),
        var(--deep-red),
        var(--elegant-gold)
    );
}

.approach-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.approach-number {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.approach-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    transition: var(--transition);
}

.approach-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.approach-content h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.approach-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.8;
}

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

    .approach-item {
        gap: 20px;
    }

    .approach-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 16px;
    }

    .approach-content {
        padding: 20px;
    }
}

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

.values-desc {
    max-width: 700px;
}

.value-box {
    text-align: center;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

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

.value-box::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--elegant-gold);
    display: block;
    margin: 20px auto 0;
    transition: var(--transition);
}

.value-box:hover::after {
    width: 100px;
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 30px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    transform: rotate(-45deg);
    font-size: 32px;
}

.value-icon.blue {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

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

.value-icon.gold {
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
}

.value-box h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .value-icon {
        width: 75px;
        height: 75px;
    }

    .value-icon i {
        font-size: 26px;
    }
}

.journey-section {
    background: #fff;
}

.journey-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 70px 60px;
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark) 0%,
        var(--primary-blue) 50%,
        var(--deep-red) 100%
    );
    box-shadow: var(--shadow-md);
}

.journey-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.journey-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    line-height: 1.8;
    font-size: 17px;
}

.journey-btn-primary {
    background: var(--elegant-gold);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.journey-btn-primary:hover {
    background: var(--elegant-gold-dark);
    color: #fff;
    transform: translateY(-3px);
}

.journey-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

.circle-one,
.circle-two {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.circle-one {
    width: 280px;
    height: 280px;
    top: -120px;
    right: -80px;
}

.circle-two {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -60px;
}

@media (max-width: 991px) {
    .journey-wrapper {
        padding: 50px 30px;
        text-align: center;
    }

    .journey-title {
        font-size: 2.2rem;
    }

    .journey-btn-primary,
    .journey-btn-outline {
        width: 100%;
        margin-bottom: 12px;
    }
}

.strategic-pillars {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--primary-blue-light) 100%
    );
}

.pillar-disc {
    max-width: 750px;
    color: var(--text-muted);
}

.pillar-wrappers {
    position: relative;
    max-width: 1100px;
    margin: auto;
    min-height: 700px;
}

/* Center */

.center-core {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.center-core h4 {
    font-size: 28px;
    font-weight: 700;
}

.center-core p {
    margin: 0;
    opacity: 0.85;
}

/* Pillars */

.pillar-item.pillar {
    width: 260px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: absolute;
    transition: var(--transition);
    display: block;
}

.pillar-item h5 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.pillar-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 14px;
}

/* Positions */

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

.pillar-2 {
    top: 140px;
    right: 0;
}

.pillar-3 {
    bottom: 120px;
    right: 40px;
}

.pillar-4 {
    bottom: 120px;
    left: 40px;
}

.pillar-5 {
    top: 140px;
    left: 0;
}

.pillar-6 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile */

@media (max-width: 991px) {
    .pillar-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .center-core,
    .pillar-item {
        position: static;
        transform: none !important;
        width: 100%;
    }

    .center-core {
        height: auto;
        padding: 40px 20px;
        border-radius: 25px;
        margin-bottom: 20px;
    }
}

.about-institution {
    background: #fff;
}

.about-title span {
    color: var(--primary-blue);
}

.about-highlight {
    background: var(--primary-blue-light);
    border-left: 5px solid var(--primary-blue);
    padding: 25px;
    border-radius: 15px;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.foundation-box {
    background: var(--deep-red-soft);
    padding: 25px;
    border-radius: 15px;
}

.foundation-box h5 {
    color: var(--deep-red);
    font-weight: 700;
}

.story-content p,
.group-content p {
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 25px;
}

.isbm-group-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue-light) 0%,
        #ffffff 100%
    );
}

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

.stat-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-box span {
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-title {
        font-size: 2.2rem;
    }

    .stats-panel {
        margin-bottom: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.advantage-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
    font-weight: 600;
}

.advantage-desc {
    max-width: 750px;
    color: var(--text-muted);
}

.advantage-feature {
    background: linear-gradient(
        135deg,
        var(--primary-blue-dark),
        var(--primary-blue)
    );
    color: #fff;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-feature h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.advantage-feature h3 span {
    color: var(--elegant-gold);
}

.advantage-feature p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 500;
}

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

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

.advantage-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.adv-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

/* .adv-item:nth-child(even) {
    margin-top: 40px;
} */

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

.adv-item span {
    display: inline-block;
    font-size: 40px;
    font-weight: 800;
    color: rgba(0, 78, 158, 0.1);
    margin-bottom: 10px;
}

.adv-item h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.adv-item p {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .advantage-grid,
    .advantage-grid-2 {
        grid-template-columns: 1fr;
    }
    /* 
    .adv-item:nth-child(even) {
        margin-top: 0;
    } */

    .advantage-feature {
        padding: 35px;
    }

    .advantage-feature h3 {
        font-size: 2rem;
    }
}

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

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

.legacy-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.highlight-pill {
    background: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.highlight-pill i {
    color: var(--primary-blue);
    margin-right: 8px;
}

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

.welfare-card {
    grid-column: span 2;
}

.impact-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.impact-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

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

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

.welfare {
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
}

.impact-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.impact-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
}

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

    .welfare-card {
        grid-column: auto;
    }
}

.journey-badge {
    display: inline-block;
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.journey-description {
    max-width: 750px;
    color: var(--text-muted);
}

.timeline-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 80px;
}

.timeline-line.time {
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--deep-red),
        var(--elegant-gold)
    );
}

.timeline-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.timeline-marker {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

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

.timeline-marker.red {
    background: var(--deep-red);
}

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

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

.timeline-card {
    margin-top: 35px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

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

.timeline-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.timeline-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.featured-card {
    border: 2px solid var(--elegant-gold);
}

@media (max-width: 991px) {
    .timeline-wrapper {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-card {
        margin-top: 20px;
    }
}

.journey-timeline-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 1;
}

.timeline-wrapper {
    margin-bottom: 60px;
}

.timeline-card.time {
    height: 280px;
    /* same height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.learning-framework {
    margin: auto;
}

.framework-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.framework-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .framework-item {
        flex-direction: column;
        text-align: center;
    }
}

.director-message-section {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--primary-blue-light) 100%
    );
}

.director-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

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

.director-image {
    width: 280px;
    height: 280px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
    border: 5px solid var(--primary-blue-light);
}

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

.director-info {
    margin-top: 20px;
}

.director-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.director-info p {
    color: var(--deep-red);
    font-weight: 600;
}

.message-card {
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: rgba(0, 78, 158, 0.1);
    margin-bottom: 15px;
}

.message-card p {
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 18px;
}

.director-signature {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-border);
}

.director-signature h5 {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.director-signature h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.director-signature span {
    color: var(--deep-red);
    font-weight: 600;
}

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

    .director-image {
        width: 220px;
        height: 220px;
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-4px) scale(1.05);
}

#scrollTopBtn .arrow {
    position: absolute;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke: #ffffff;
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.25s linear;
}

/* CTA CSS */
.journey-cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 32px;
    background: url("../images/about/magnific.webp") center center / cover
        no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 40px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--elegant-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

.cta-description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .journey-cta-banner {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Program page css */
.programme-panel {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.programme-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.programme-side {
    width: 260px;
    position: relative;
    padding: 35px 25px;
    color: #fff;
    overflow: hidden;
}

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

.gold-theme {
    background: linear-gradient(
        135deg,
        var(--elegant-gold),
        var(--elegant-gold-dark)
    );
}

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

.programme-no {
    position: absolute;
    bottom: -30px;
    right: 10px;
    font-size: 120px;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
}

.programme-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.programme-icon i {
    font-size: 40px;
}

.programme-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

.programme-main {
    flex: 1;
    padding: 35px;
}

.programme-main h3 {
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.programme-subtitle {
    color: #6c757d;
    margin-bottom: 0;
}

.feature-line {
    padding: 10px 0;
    font-weight: 500;
    color: #495057;
}

.feature-line i {
    color: var(--deep-red);
    margin-right: 12px;
}

.programme-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: 0.3s;
}

.programme-btn:hover {
    color: #fff;
    transform: scale(1.08);
}

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

    .programme-side {
        width: 100%;
    }

    .programme-btn {
        width: 100%;
        height: 55px;
        border-radius: 12px;
        margin-top: 20px;
    }
}

.programme-overview-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.overview-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.curriculum-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    background: linear-gradient(135deg, var(--primary-blue-light), #fff);
    padding: 25px;
    border-radius: 24px;
    border-left: 5px solid var(--primary-blue);
}

.curriculum-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

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

.curriculum-box p {
    margin: 0;
    color: var(--text-muted);
}

.overview-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.overview-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

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

.overview-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
}

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

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

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

.overview-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.blue-card .overview-icon {
    background: rgba(0, 78, 158, 0.1);
    color: var(--primary-blue);
}

.gold-card .overview-icon {
    background: rgba(199, 162, 82, 0.15);
    color: var(--elegant-gold-dark);
}

.red-card .overview-icon {
    background: rgba(193, 18, 31, 0.1);
    color: var(--deep-red);
}

.overview-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.overview-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.programme-combination-section {
    background: linear-gradient(
        135deg,
        #fff 0%,
        var(--primary-blue-light) 100%
    );
    position: relative;
    overflow: hidden;
}

.pathway-wrapper {
    position: relative;
}

.pathway-wrapper::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 50px;
    bottom: 50px;
    width: 4px;
    background: linear-gradient(
        to bottom,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.pathway-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    padding-left: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.pathway-card:hover {
    transform: translateX(10px);
}

.pathway-count {
    position: absolute;
    left: 15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 22px;
}

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

.pathway-gold .pathway-count {
    background: var(--elegant-gold);
}

.pathway-red .pathway-count {
    background: var(--deep-red);
}

.pathway-dark .pathway-count {
    background: var(--primary-blue-dark);
}

.pathway-content {
    flex: 1;
}

.pathway-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pathway-subjects {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.pathway-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.pathway-arrow {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

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

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

.pathway-red .pathway-arrow {
    background: var(--deep-red);
}

.pathway-dark .pathway-arrow {
    background: var(--primary-blue-dark);
}

@media (max-width: 768px) {
    .pathway-wrapper::before {
        display: none;
    }

    .pathway-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .pathway-count {
        position: relative;
        left: auto;
        margin-bottom: 15px;
    }
}

.curriculum-section {
    background: #fff;
    position: relative;
}

.curriculum-board {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.curriculum-board::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.subject-column {
    padding: 50px;
    height: 100%;
}

.compulsory {
    background: linear-gradient(135deg, #fff, var(--primary-blue-light));
}

.optional {
    background: linear-gradient(135deg, #fff, var(--deep-red-soft));
}

.column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.column-header i {
    font-size: 30px;
}

.compulsory .column-header i {
    color: var(--primary-blue);
}

.optional .column-header i {
    color: var(--deep-red);
}

.column-header h3 {
    margin: 0;
    font-weight: 800;
    color: var(--text-dark);
}

.subject-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 24px;
    background: #fff;
    transition: 0.35s;
}

.subject-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.subject-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.compulsory .subject-icon {
    background: rgba(0, 78, 158, 0.08);
    color: var(--primary-blue);
}

.optional .subject-icon {
    background: rgba(193, 18, 31, 0.08);
    color: var(--deep-red);
}

.subject-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.subject-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .curriculum-board::after {
        display: none;
    }

    .subject-column {
        padding: 30px;
    }
}

.science-highlights-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue-light) 0%,
        #fff 50%,
        var(--deep-red-soft) 100%
    );
    overflow: hidden;
}

.science-orbit {
    position: relative;
    max-width: 1100px;
    margin: auto;
    min-height: 700px;
}

.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 342px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    padding: 12px;
    z-index: 5;
}

.center-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px;
}

.center-content i {
    font-size: 55px;
    color: var(--elegant-gold);
    margin-bottom: 20px;
}

.center-content h3 {
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.center-content p {
    color: var(--text-muted);
    margin: 0;
}

.orbit-card {
    position: absolute;
    width: 320px;
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

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

.orbit-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.orbit-1 .orbit-icon {
    background: rgba(0, 78, 158, 0.1);
    color: var(--primary-blue);
}

.orbit-2 .orbit-icon {
    background: rgba(199, 162, 82, 0.15);
    color: var(--elegant-gold-dark);
}

.orbit-3 .orbit-icon {
    background: rgba(193, 18, 31, 0.1);
    color: var(--deep-red);
}

.orbit-4 .orbit-icon {
    background: rgba(0, 78, 158, 0.1);
    color: var(--primary-blue);
}

.orbit-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.orbit-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* Positions */

.orbit-1 {
    top: 0;
    left: 50px;
}

.orbit-2 {
    top: 0;
    right: 50px;
}

.orbit-3 {
    bottom: 0;
    left: 50px;
}

.orbit-4 {
    bottom: 0;
    right: 50px;
}

/* Connector Lines */

.science-orbit::before,
.science-orbit::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border: 2px dashed rgba(0, 78, 158, 0.15);
    border-radius: 50%;
}

.science-orbit::after {
    width: 550px;
    height: 550px;
    border-color: rgba(193, 18, 31, 0.12);
}

/* Mobile */

@media (max-width: 991px) {
    .science-orbit {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .orbit-center,
    .orbit-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .orbit-center {
        height: auto;
        border-radius: 30px;
    }

    .center-content {
        border-radius: 25px;
        height: auto;
        padding: 30px;
    }

    .science-orbit::before,
    .science-orbit::after {
        display: none;
    }
}

.science-admission-section {
    background: linear-gradient(
        135deg,
        #fff 0%,
        var(--primary-blue-light) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Left */

.eligibility-wrapper {
    position: sticky;
    top: 30px;
}

.eligibility-title,
.journey-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.eligibility-title i,
.journey-heading i {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #fff;
    font-size: 24px;
}

.eligibility-title h3,
.journey-heading h3 {
    margin: 0;
    font-weight: 800;
    color: var(--primary-blue-dark);
}

.eligibility-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    border-left: 5px solid var(--primary-blue);
}

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

.admission-badge {
    display: inline-block;
    background: rgba(0, 78, 158, 0.1);
    color: var(--primary-blue);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.admission-badge.red {
    background: rgba(193, 18, 31, 0.1);
    color: var(--deep-red);
}

.eligibility-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Journey */

.journey-process {
    position: relative;
}

.journey-process::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 100px;
    bottom: 50px;
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
}

.journey-step {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-no {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.step-content h4 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Alternate Accent */

.journey-step:nth-child(3) .step-no {
    border-color: var(--elegant-gold);
    color: var(--elegant-gold-dark);
}

.journey-step:nth-child(4) .step-no {
    border-color: var(--deep-red);
    color: var(--deep-red);
}

.journey-step:nth-child(5) .step-no {
    border-color: var(--primary-blue);
}

/* Mobile */

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

    .journey-step {
        gap: 15px;
    }

    .step-no {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 18px;
    }

    .step-content {
        padding: 20px;
    }
}

.document-verification-section {
    background: #fff;
}

.verification-wrapper {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* LEFT PANEL */

.verification-summary {
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );
    color: #fff;
    padding: 50px 40px;
    text-align: center;
}

.summary-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin-bottom: 25px;
}

.verification-summary h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

.verification-summary p {
    opacity: 0.9;
    line-height: 1.8;
}

.verification-progress {
    height: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    margin: 30px 0 15px;
    overflow: hidden;
}

.progress-fill {
    width: 100%;
    height: 100%;
    background: var(--elegant-gold);
}

/* DOCUMENTS */

.document-list {
    padding: 40px;
}

.document-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eef2f7;
    margin-bottom: 20px;
    transition: 0.35s;
}

.document-row:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 78, 158, 0.08);
}

.doc-status {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(0, 78, 158, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.doc-content {
    flex: 1;
}

.doc-content h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-blue-dark);
}

.doc-content p {
    margin: 0;
    color: var(--text-muted);
}

.doc-tag {
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(193, 18, 31, 0.08);
    color: var(--deep-red);
}

/* MOBILE */

@media (max-width: 991px) {
    .verification-summary {
        border-radius: 0;
    }

    .document-row {
        flex-wrap: wrap;
    }

    .doc-tag {
        margin-left: 85px;
    }
}

.pedagogy-section {
    background: linear-gradient(180deg, #fff, var(--primary-blue-light));
    position: relative;
}

.learning-framework {
    position: relative;
}

.framework-line {
    position: absolute;
    top: 85px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--elegant-gold),
        var(--deep-red)
    );
    z-index: 0;
}

.framework-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    z-index: 2;
}

.framework-card:hover {
    transform: translateY(-12px);
}

.framework-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;

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

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

.framework-icon i {
    color: #fff;
    font-size: 34px;
}

.framework-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-blue-dark);
}

.framework-card h6 {
    color: var(--deep-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.framework-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

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

    .faculty-dashboard {
        --bs-gutter-x: 0.9rem;
        --bs-gutter-y: 0.9rem;
    }

    .metric-card {
        min-height: 110px;
        padding: 20px 12px;
        border-radius: 18px;
    }

    .metric-card h3 {
        font-size: 2rem;
    }

    .metric-card p,
    .metric-card.special span {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .metric-card.special i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

.faculty-dashboard {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.metric-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 20px;
    height: 100%;
    min-height: 140px;

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

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

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

.metric-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.metric-card p {
    margin: 0;
    color: var(--text-muted);
}

.metric-card.special {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.metric-card.special i {
    font-size: 40px;
    margin-bottom: 15px;
}

.faculty-highlight {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--deep-red);
}

.jc-admission-section {
    background: linear-gradient(135deg, #fff, var(--primary-blue-light));
}

.admission-command-center {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* SIDEBAR */

.command-sidebar {
    height: 100%;
    padding: 40px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );
    color: #fff;
}

.sidebar-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.command-sidebar h3 {
    font-weight: 700;
    margin-bottom: 25px;
}

.admission-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00d26a;
}

.sidebar-meta div {
    margin-bottom: 20px;
}

.sidebar-meta strong {
    display: block;
    margin-bottom: 6px;
}

/* CENTER */

.command-main {
    padding: 40px;
}

.command-header {
    margin-bottom: 30px;
}

.command-header h4 {
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.overview-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.overview-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(0, 78, 158, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.overview-item h5 {
    font-weight: 700;
}

/* RIGHT */

.command-right {
    height: 100%;
    background: #f8fafc;
    padding: 40px;
}

.documents-panel h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.documents-panel ul {
    list-style: none;
    padding: 0;
}

.documents-panel li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 28px;
}

.documents-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--deep-red);
    font-weight: 700;
}

.note-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(199, 162, 82, 0.12);
    border-left: 4px solid var(--elegant-gold);
}

.contact-panel {
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-dark));
    color: #fff;
}

.contact-panel span {
    display: block;
    margin-bottom: 10px;
}

.contact-panel a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.career-command-section {
    background: linear-gradient(135deg, #fff, var(--primary-blue-light));
}

.career-command-wrapper {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* LEFT */

.career-command-left {
    padding: 60px 50px;
    height: 100%;
    text-align: center;
}

.career-circle {
    width: 180px;
    background-color: var(--primary-blue-dark);
    color: white;
    height: 180px;
    border-radius: 25%;
    margin: auto auto 30px;
    border: 8px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.career-circle span {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.career-circle small {
    font-size: 16px;
}

.career-command-left h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.career-command-left p {
    opacity: 0.9;
    line-height: 1.9;
}

/* RIGHT */

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

.training-item {
    padding: 35px;
    border-bottom: 1px solid #edf2f7;
    border-right: 1px solid #edf2f7;
    transition: 0.35s;
}

.training-item:hover {
    background: #f8fbff;
}

.training-item i {
    width: 70px;
    height: 70px;
    border-radius: 18px;

    background: rgba(0, 78, 158, 0.08);
    color: var(--primary-blue);

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

    font-size: 28px;
    margin-bottom: 20px;
}

.training-item:nth-child(2) i,
.training-item:nth-child(5) i {
    background: rgba(193, 18, 31, 0.08);
    color: var(--deep-red);
}

.training-item:nth-child(3) i,
.training-item:nth-child(6) i {
    background: rgba(199, 162, 82, 0.15);
    color: var(--elegant-gold-dark);
}

.training-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-blue-dark);
}

.training-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.training-item:nth-child(2n) {
    border-right: none;
}

.training-item:nth-last-child(-n + 2) {
    border-bottom: none;
}

/* MOBILE */

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

    .training-item {
        border-right: none;
    }

    .training-item:last-child {
        border-bottom: none;
    }
}

.career-destination-section {
    background: linear-gradient(135deg, #fff, var(--primary-blue-light));
}

.career-map {
    position: relative;
    height: 750px;
    max-width: 1200px;
    margin: auto;
}

/* CENTER HUB */

.career-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-content {
    width: 260px;
    height: 260px;
    border-radius: 25%;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));

    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.hub-content i {
    font-size: 50px;
    margin-bottom: 15px;
}

.hub-content h3 {
    font-weight: 700;
}

/* CAREER NODES */

.career-path {
    position: absolute;
    width: 240px;
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.career-path:hover {
    transform: translateY(-8px);
}

.career-path span {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 78, 158, 0.08);
    display: block;
}

.career-path h4 {
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.career-path p {
    margin: 0;
    color: var(--text-muted);
}

/* POSITIONS */

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

.cs {
    top: 140px;
    right: 0;
}

.cma {
    bottom: 140px;
    right: 0;
}

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

.startup {
    bottom: 140px;
    left: 0;
}

.digital {
    top: 140px;
    left: 0;
}

/* MOBILE */

@media (max-width: 991px) {
    .career-map {
        height: auto;
        display: grid;
        gap: 20px;
    }

    .career-hub,
    .career-path {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none !important;
        width: 100%;
    }

    .hub-content {
        width: 100%;
        height: auto;
        border-radius: 30px;
    }
}

/* end programme page css */

.admission-info-card,
.documents-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf2f7;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.info-header i {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #003f73;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-header h4 {
    margin: 0;
    font-weight: 700;
    color: #003d7a;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f4f7fb;
    color: #c41230;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #003d7a;
}

.info-item p {
    margin: 0;
    color: #6c757d;
}

.document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 14px;
    background: #f8fafc;
    margin-bottom: 12px;
    font-weight: 500;
    color: #002855;
}

.document-list li i {
    color: #003f73;
    font-size: 18px;
}

.note-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
    color: #000;
}

.note-box i {
    color: #ffc107;
    margin-right: 8px;
}

.payment-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    text-align: center;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

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

.payment-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 20px;
    background: #003f73;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.featured {
    border: 2px solid #c41230;
}

.payment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.payment-tags span {
    background: #f4f7fb;
    color: #003f73;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.dd-box {
    background: #003f73;
    color: #fff;
    padding: 15px;
    border-radius: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-process-section {
    background: #fff;
}

.process-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    font-weight: 600;
}

.payment-timeline {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.payment-timeline::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-blue),
        var(--deep-red),
        var(--elegant-gold)
    );
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.step-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-content h4 {
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 12px;
}

.step-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .payment-timeline::before {
        left: 24px;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .process-step {
        gap: 15px;
    }

    .step-content {
        padding: 20px;
    }
}

.financial-support-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue-light) 0%,
        #ffffff 100%
    );
}

.support-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
    font-weight: 600;
}

.finance-box {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.finance-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.finance-header i {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.finance-header h4 {
    margin: 0;
    font-weight: 700;
}

.plan-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.plan-item span {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--deep-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.plan-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

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

.loan-text {
    color: var(--text-muted);
    line-height: 1.8;
}

.bank-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.bank-pill {
    padding: 10px 18px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border-radius: 30px;
    font-weight: 600;
}

.loan-note {
    background: var(--deep-red-soft);
    color: var(--deep-red);
    padding: 18px;
    border-radius: 15px;
    font-weight: 500;
}

.loan-note i {
    margin-right: 8px;
}

.payment-guidelines-section {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--primary-blue-light) 100%
    );
}

.guideline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guideline-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.guideline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guideline-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.guideline-item h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.guideline-item ul {
    margin: 0;
    padding-left: 18px;
}

.guideline-item li {
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Support Panel */

.support-panel {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );
    color: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
}

.support-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.support-panel p {
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info {
    margin: 30px 0;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    text-align: left;
}

.contact-box i {
    color: var(--elegant-gold);
    width: 20px;
}

.support-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--elegant-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.support-btn:hover {
    background: var(--elegant-gold-dark);
    color: #fff;
}

.faq-showcase-section {
    background: linear-gradient(135deg, #fff, var(--deep-red-soft));
}

.faq-showcase-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-count {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 70px;
    font-weight: 800;
    color: rgba(0, 78, 158, 0.08);
    line-height: 1;
}

.faq-showcase-card h4 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.faq-showcase-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.faq-showcase-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-blue),
        var(--deep-red)
    );
}

.connect-hub-section {
    background: linear-gradient(135deg, var(--primary-blue-light), #fff);
}

.contact-hub {
    position: relative;
    height: 650px;
    max-width: 900px;
    margin: auto;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center img {
    height: 55px;
}

.hub-card {
    position: absolute;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    width: 250px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.hub-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--deep-red);
}

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

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

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

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

.hub-card a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 991px) {
    .contact-hub {
        height: auto;
        display: grid;
        gap: 20px;
    }

    .hub-center,
    .hub-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

    .hub-center {
        margin-bottom: 20px;
    }
}

.admission-desk-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue-light) 0%,
        #ffffff 50%,
        var(--deep-red-soft) 100%
    );
}

.admission-desk-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.desk-content {
    padding-right: 20px;
}

.desk-description {
    color: var(--text-muted);
    line-height: 1.9;
    margin: 20px 0 35px;
}

.desk-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.desk-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.desk-feature i {
    color: var(--deep-red);
    font-size: 18px;
}

.desk-feature span {
    font-weight: 600;
}

.desk-contact {
    margin-top: 35px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

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

.desk-contact h5 {
    margin: 5px 0 0;
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.desk-call-btn {
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.desk-call-btn:hover {
    color: #fff;
    background: var(--deep-red-dark);
}

.desk-form-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.desk-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--deep-red),
        var(--elegant-gold)
    );
}

.desk-form-card h4 {
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.desk-form-card .form-control,
.desk-form-card .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
}

.desk-submit-btn {
    width: 100%;
    border: 0;
    padding: 15px;
    border-radius: 12px;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.desk-submit-btn:hover {
    background: var(--primary-blue-dark);
}

@media (max-width: 991px) {
    .admission-desk-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .desk-content {
        padding-right: 0;
    }

    .desk-contact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.campus-experience-section {
    background: linear-gradient(135deg, #fff, var(--primary-blue-light));
}

.campus-map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.campus-map-wrapper iframe {
    width: 100%;
    height: 720px;
    border: 0;
}

.location-floating-card {
    position: absolute;
    top: 180px;
    left: 6px;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.location-floating-card h4 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.location-floating-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 991px) {
    .campus-map-wrapper iframe {
        height: 500px;
    }

    .location-floating-card {
        position: static;
        width: 100%;
        border-radius: 0;
    }
}

/* JOURNEY CTA */
.journey-cta-section {
    background: #fff;
}

.journey-cta-card {
    position: relative;
    overflow: hidden;
    padding: 50px 60px;
    border-radius: 40px;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        #18386f 50%,
        var(--deep-red-dark) 100%
    );
    box-shadow: var(--shadow-md);
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(199, 162, 82, 0.15);
    color: var(--elegant-gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-badge i {
    font-size: 0.9rem;
}

/* Title */

.cta-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

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

/* Description */
.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-primary:hover {
    background: var(--deep-red-dark);
    color: #fff;
    transform: translateY(-3px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

/* Stats */
.cta-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--elegant-gold);
    line-height: 1;
}

.stat-text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* Image */
.cta-image-wrapper {
    position: relative;
}

.cta-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

/* Floating Card */
.floating-achievement {
    position: absolute;
    left: -40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.floating-achievement i {
    color: var(--deep-red);
    font-size: 1.4rem;
}

.floating-achievement strong {
    display: block;
    color: var(--text-dark);
}

.floating-achievement span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 992px) {
    .journey-cta-card {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-image-wrapper img {
        height: 450px;
    }

    .floating-achievement {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .journey-cta-card {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .cta-title {
        font-size: 2.3rem;
    }

    .cta-stats {
        gap: 24px;
    }

    .cta-image-wrapper img {
        height: 350px;
    }
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

.institutions-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 12px;
    border-radius: 10px;

    background: linear-gradient(135deg, #c1121f 0%, #a30f1a 100%);
    border: 1px solid #c1121f;

    color: #fff !important;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
    font-size: 14px;
}

.institutions-link i {
    font-size: 13px;
}

.institutions-link:hover {
    background: rgb(160, 125, 56);
    border-color: rgb(160, 125, 56);
    color: #fff;
}

@media (max-width: 1440px) {
    .institutions-link {
        padding: 6px 12px;
        font-size: 12px;
    }

    .institutions-link i {
        font-size: 11px;
    }
}

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

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

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

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

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

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

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

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

.recruiter-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.aeren-hero-section {
    position: relative;
    background: var(--primary-blue-dark);
}

.aeren-hero-wrapper {
    min-height: 560px;
    border-radius: 0 0 46px 46px;
}

.aeren-hero-bg {
    height: 560px;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.05);
}

.aeren-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 61, 122, 0.96) 0%,
            rgba(0, 78, 158, 0.88) 42%,
            rgba(0, 78, 158, 0.42) 72%,
            rgba(0, 0, 0, 0.55) 100%
        ),
        radial-gradient(
            circle at 18% 28%,
            rgba(199, 162, 82, 0.26),
            transparent 34%
        );
    z-index: 1;
}

.hero-overlay-content {
    z-index: 5;
}

.aeren-hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    width: fit-content;
}

.hero-breadcrumb a,
.hero-breadcrumb span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.hero-breadcrumb .separator {
    color: var(--elegant-gold);
}

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

.aeren-hero-badge {
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(199, 162, 82, 0.16);
    color: var(--elegant-gold);
    border: 1px solid rgba(199, 162, 82, 0.35);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    width: fit-content;
}

.aeren-hero-title {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.8px;
    margin-bottom: 22px;
}

.aeren-hero-title span {
    display: block;
    color: var(--elegant-gold);
    position: relative;
}

.aeren-hero-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 130px;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--elegant-gold), var(--deep-red));
}

.aeren-hero-text {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

.aeren-apply-btn {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-dark));
    color: #fff;
    border: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 18px 36px rgba(193, 18, 31, 0.34);
    transition: all 0.35s ease;
}

.aeren-apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.6s;
}

.aeren-apply-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(193, 18, 31, 0.44);
}

.aeren-apply-btn:hover::before {
    left: 130%;
}

.hero-mini-info {
    gap: 12px;
    padding: 10px 16px 10px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero-mini-info span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--elegant-gold);
    color: var(--primary-blue-dark);
    font-size: 18px;
}

.hero-mini-info small,
.hero-mini-info strong {
    display: block;
    line-height: 1.2;
}

.hero-mini-info small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.hero-mini-info strong {
    color: #fff;
    font-size: 14px;
}

.aeren-hero-brand-card {
    width: 380px;
    min-height: 330px;
    position: relative;
}

.brand-card-inner {
    position: relative;
    z-index: 3;
    min-height: 330px;
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(236, 240, 249, 0.88)
    );
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.brand-card-inner::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    border: 1px dashed rgba(0, 78, 158, 0.24);
    pointer-events: none;
}

.brand-card-inner::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(193, 18, 31, 0.09);
}

.brand-card-glow {
    position: absolute;
    inset: -18px;
    background: radial-gradient(
        circle,
        rgba(199, 162, 82, 0.42),
        transparent 68%
    );
    filter: blur(10px);
}

.brand-card-label {
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 50px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 28px;
}

.aeren-hero-logo {
    max-width: 280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brand-card-footer {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    position: relative;
    z-index: 2;
}

.brand-card-footer div {
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 78, 158, 0.1);
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 78, 158, 0.08);
}

.brand-card-footer strong,
.brand-card-footer small {
    display: block;
}

.brand-card-footer strong {
    color: var(--primary-blue);
    font-size: 15px;
    font-weight: 900;
}

.brand-card-footer small {
    color: #667085;
    font-size: 12px;
    margin-top: 2px;
}

.hero-dot-pattern {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(
        rgba(199, 162, 82, 0.65) 2px,
        transparent 2px
    );
    background-size: 16px 16px;
    z-index: 2;
    opacity: 0.6;
}

.hero-dot-one {
    left: 34px;
    bottom: 38px;
}

.hero-dot-two {
    right: 26%;
    top: 46px;
    transform: rotate(12deg);
}

.hero-gold-line {
    position: absolute;
    left: 0;
    bottom: 78px;
    width: 38%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--elegant-gold),
        transparent
    );
    z-index: 2;
}

.hero-red-shape {
    position: absolute;
    right: -90px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 56px;
    background: rgba(193, 18, 31, 0.34);
    transform: rotate(28deg);
    z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
    .aeren-hero-wrapper {
        min-height: 620px;
        border-radius: 0 0 30px 30px;
    }

    .aeren-hero-bg {
        height: 620px;
    }

    .aeren-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 61, 122, 0.97) 0%,
            rgba(0, 78, 158, 0.88) 100%
        );
    }

    .aeren-hero-content {
        padding: 70px 0;
    }

    .aeren-hero-title {
        letter-spacing: -1px;
    }

    .aeren-hero-text {
        font-size: 16px;
    }

    .hero-dot-two {
        right: 10px;
    }
}

@media (max-width: 575px) {
    .aeren-hero-wrapper {
        min-height: 680px;
    }

    .aeren-hero-bg {
        height: 680px;
    }

    .hero-breadcrumb {
        gap: 8px;
        padding: 9px 13px;
    }

    .hero-breadcrumb a,
    .hero-breadcrumb span {
        font-size: 12px;
    }

    .aeren-hero-badge {
        font-size: 11px;
        line-height: 1.5;
        border-radius: 20px;
    }

    .aeren-apply-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-mini-info {
        width: 100%;
        border-radius: 20px;
    }
}

/* PRINCIPAL MESSAGE */
.principal-section {
    position: relative;
}

.principal-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 70px;
}

.principal-content {
    position: relative;
}

.inspiration-quote {
    background: #fff;
    border-radius: 20px;
    padding: 18px 16px;
    margin-bottom: 24px;
    border-left: 4px solid var(--elegant-gold);
    display: flex;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.inspiration-quote i {
    color: var(--elegant-gold);
    font-size: 1.5rem;
}

.inspiration-quote span {
    display: block;
    margin-top: 8px;
    color: var(--deep-red);
    font-weight: 700;
}

.principal-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.pillar-item {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.pillar-item i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* RIGHT SIDE */

.chairman-image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.chairman-image {
    position: relative;
    width: 340px;
    height: 400px;
    flex: none;
}

.chairman-image .image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: var(--primary-blue-light);
}

.chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    display: block;
}

.chairman-image::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 200px;
    height: 200px;
    border-bottom: 3px solid var(--elegant-gold);
    border-left: 3px solid var(--elegant-gold);
    border-radius: 0 0 0 24px;
    z-index: 3;
}

.chairman-image::after {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 200px;
    height: 200px;
    border-top: 3px solid var(--elegant-gold);
    border-right: 3px solid var(--elegant-gold);
    border-radius: 0 24px 0 0;
    z-index: 3;
}

.chairman-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 90%;
}

.quote-callout {
    width: 100%;
    max-width: 420px;
    background: var(--elegant-gold-light);
    border-left: 4px solid var(--elegant-gold);
    padding: 24px 16px;
    border-radius: 16px;
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-callout i {
    color: var(--deep-red);
    font-size: 1.1rem;
    margin-right: 8px;
}

.quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--elegant-gold-dark);
    font-weight: 500;
}

/* MOBILE */

@media (max-width: 992px) {
    .principal-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .principal-profile {
        order: -1;
    }

    .principal-pillars {
        grid-template-columns: 1fr;
    }

    .principal-image {
        height: 350px;
    }
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillars-subtitle {
    max-width: 650px;
    margin: 0px auto 0;
    color: var(--text-muted);
    font-size: 0.935rem;
    line-height: 1.5;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 310px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.3);
}

.pillar-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: var(--elegant-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: rotate(-5deg) scale(1.08);
    background: var(--deep-red);
}

.pillar-card:hover .pillar-icon i {
    color: #fff !important;
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--deep-red);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.889rem;
    margin-bottom: 0;
}

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

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

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

/* ==========================
                                                                                                                                                           LEGACY SECTION
                                                                                                                                                        ========================== */

.legacy-section {
    background: #fff;
    position: relative;
}

.legacy-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 20px;
}

/* STATS */

.legacy-stats {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.legacy-stat-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.legacy-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.legacy-stat-card h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--deep-red),
        var(--elegant-gold),
        var(--primary-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legacy-stat-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* IMAGE */

.legacy-visual {
    position: relative;
    min-height: 580px;
}

.legacy-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 36px;
    display: block;
    box-shadow: var(--shadow-md);
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    width: 280px;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.floating-card h5 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.floating-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* VISION */

.floating-card.vision-card {
    top: 40px;
    left: -40px;
    background: var(--deep-red-soft);
}

.floating-card.vision-card .card-icon i {
    color: var(--deep-red) !important;
}

/* MISSION */

.floating-card.mission-card {
    bottom: 120px;
    right: -40px;
    background: var(--primary-blue-light);
}

.floating-card.mission-card .card-icon {
    color: var(--primary-blue);
}

/* Mobile Fix */
@media (max-width: 991.98px) {
    .legacy-visual {
        position: relative;
        padding-bottom: 1rem;
    }

    .floating-card {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 1rem;
        border-radius: 20px;
    }

    .floating-card.vision-card,
    .floating-card.mission-card {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .legacy-badge {
        position: static;
        margin: 1rem auto 0;
        display: table;
    }
}

/* BADGE */

.legacy-badge {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 8px 18px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.legacy-badge i {
    color: var(--elegant-gold);
    margin-right: 8px;
}

/* RESPONSIVE */

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

    .legacy-visual {
        min-height: auto;
    }

    .legacy-visual img {
        height: 400px;
    }

    .floating-card {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .legacy-badge {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

.community-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 310px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.community-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
}

.community-card:hover {
    transform: translateX(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.3);
}

.community-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: var(--elegant-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.community-card:hover .community-icon {
    transform: rotate(5deg) scale(1.08);
    background: #003d7a;
}

.community-card:hover .community-icon i {
    color: #fff;
}

.community-icon i {
    font-size: 2rem;
    color: #003d7a;
}

.community-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-red);
    margin-bottom: 15px;
    line-height: 1.3;
}

.community-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.889rem;
    margin-bottom: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.testimonial-card {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

/* Decorative Corner */

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -25px;
    right: 20px;
    font-size: 180px;
    line-height: 1;
    color: var(--deep-red-soft);
    font-family: Georgia, serif;
    font-weight: 700;
    z-index: 0;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--primary-blue-light);
}

/* Quote */

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--elegant-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.quote-icon i {
    font-size: 24px;
    color: var(--deep-red);
}

.testimonial-text {
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    font-size: 0.985rem;
    line-height: 1.5;
    margin-bottom: 18px;
    font-style: italic;
}

/* Person */

.person {
    margin-top: auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-border);
}

.person-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    color: #fff;
    font-size: 18px;
}

.person-info h4 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
}

.person-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* JOURNEY CTA */
.journey-cta-section {
    background: #fff;
}

.journey-cta-card {
    position: relative;
    overflow: hidden;
    padding: 50px 60px;
    border-radius: 40px;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        #18386f 50%,
        var(--deep-red-dark) 100%
    );
    box-shadow: var(--shadow-md);
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(199, 162, 82, 0.15);
    color: var(--elegant-gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-badge i {
    font-size: 0.9rem;
}

/* Title */

.cta-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

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

/* Description */
.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-primary:hover {
    background: var(--deep-red-dark);
    color: #fff;
    transform: translateY(-3px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

/* Stats */
.cta-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--elegant-gold);
    line-height: 1;
}

.stat-text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* Image */
.cta-image-wrapper {
    position: relative;
}

.cta-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

/* Floating Card */
.floating-achievement {
    position: absolute;
    right: -20px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.floating-achievement i {
    color: var(--deep-red);
    font-size: 1.4rem;
}

.floating-achievement strong {
    display: block;
    color: var(--text-dark);
}

.floating-achievement span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 992px) {
    .journey-cta-card {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-image-wrapper img {
        height: 450px;
    }

    .floating-achievement {
        right: 40px;
    }
}

@media (max-width: 768px) {
    .journey-cta-card {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .cta-title {
        font-size: 2.3rem;
    }

    .cta-stats {
        gap: 24px;
    }

    .cta-image-wrapper img {
        height: 350px;
    }
}

/* ---------- SECTION 1: Chairman editorial ---------- */
.chairman-section {
    background: #ffffff;
    position: relative;
}

.chairman-image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 50px;
    align-items: center;
}

.chairman-image {
    position: relative;
    width: 340px;
    height: 400px;
    flex: none;
}

.chairman-image .image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: var(--primary-blue-light);
}

.chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    display: block;
}

/* .chairman-image::before {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--elegant-gold);
    border-right: 3px solid var(--elegant-gold);
    border-radius: 0 0 24px 0;
    z-index: 3;
}

.chairman-image::after {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--elegant-gold);
    border-left: 3px solid var(--elegant-gold);
    border-radius: 24px 0 0 0;
    z-index: 3;
} */

.chairman-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.chairman-content {
    flex: 0 0 60%;
    padding: 50px 0 25px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--deep-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.chairman-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.chairman-title {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
    border-left: 3px solid var(--elegant-gold);
    padding-left: 12px;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 90%;
}

.quote-callout {
    width: 100%;
    max-width: 420px;
    background: var(--elegant-gold-light);
    border-left: 4px solid var(--elegant-gold);
    padding: 24px 16px;
    border-radius: 16px;
    display: flex;
}

.quote-callout i {
    color: var(--deep-red);
    font-size: 1.1rem;
    margin-right: 8px;
}

.quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--elegant-gold-dark);
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .chairman-content {
        padding: 50px 0 50px 40px;
    }

    .bio-text {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .chairman-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chairman-image {
        width: 280px;
        height: 300px;
        margin: auto;
    }

    .chairman-content {
        padding: 15px;
    }

    .section-title2 {
        margin-bottom: 20px !important;
    }

    .section-title {
        font-size: 30px !important;
        letter-spacing: unset !important;
    }

    .bio-text {
        font-size: 0.876rem;
    }

    .chairman-card {
        box-shadow: none;
    }

    .chairman-section {
        padding: 30px 0 !important;
    }
}

.journey-section {
    background: var(--primary-blue-light);
    position: relative;
}

.journey-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.journey-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.journey-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.journey-header h2 span {
    color: var(--primary-blue);
}

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

.journey-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        var(--deep-red),
        var(--elegant-gold),
        var(--primary-blue)
    );
    border-radius: 20px;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-item.left {
    padding-right: 60px;
}

.timeline-item.right {
    margin-left: auto;
    padding-left: 60px;
}

.timeline-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.timeline-image {
    height: 200px;
}

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

.timeline-content {
    padding: 15px;
    text-align: center;
}

.timeline-icon {
    width: 72px;
    height: 72px;
    margin: -65px auto 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--elegant-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.timeline-icon i {
    font-size: 1.6rem;
    color: var(--deep-red);
}

.timeline-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--elegant-gold)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-divider {
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
    margin: 5px 0 18px 0;
}

.timeline-stat h4 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 120px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--elegant-gold);
    z-index: 2;
}

.timeline-item.left::before {
    right: -11px;
}

.timeline-item.right::before {
    left: -11px;
}

@media (max-width: 991px) {
    .journey-header h2 {
        font-size: 2.2rem;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 0px !important;
        padding-right: 0 !important;
        margin-left: 0;
    }

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

    /* .timeline-item::before {
        left: 9px !important;
        right: auto !important;
    } */

    .timeline-image {
        height: 180px;
    }

    .why-number {
        font-size: clamp(3rem, 12vw, 11rem) !important;
    }
}

.pillars-section {
    background: #ffffff;
    position: relative;
}

.pillars-subtitle {
    max-width: 650px;
    margin: 0px auto 0;
    color: var(--text-muted);
    font-size: 0.935rem;
    line-height: 1.5;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 340px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.3);
}

.pillar-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: var(--elegant-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: rotate(-5deg) scale(1.08);
    background: var(--deep-red);
}

.pillar-card:hover .pillar-icon i {
    color: #fff;
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--deep-red);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.889rem;
    margin-bottom: 0;
}

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

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

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

/* ACADEMIC GROWTH SECTION */
.growth-section {
    background: #fff;
    position: relative;
}

/* FEATURES */
.growth-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.growth-feature-card {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 10px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.growth-feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.growth-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--deep-red), var(--elegant-gold));
}

.feature-number {
    min-width: 45px;
    height: 45px;
    border-radius: 16px;
    background: var(--primary-blue-light);

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

    color: var(--primary-blue);
    font-weight: 700;
}

.growth-feature-card h5 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.growth-feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RIGHT VISUALS */

.growth-visuals {
    position: relative;
    min-height: 600px;
}

.growth-image {
    position: absolute;
    overflow: visible;
}

.growth-image-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.growth-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TOP IMAGE */

.image-top {
    width: 72%;
    height: 300px;
    top: 0;
    right: 0;
    border-radius: 28px 28px 28px 0;
}

/* BOTTOM IMAGE */
.image-bottom {
    width: 72%;
    height: 300px;
    bottom: 0;
    left: 0;
    border-radius: 28px 0 28px 28px;
}

/* TOP */
.top-card {
    left: -200px;
    top: 150px;
}

/* BOTTOM */
.bottom-card {
    right: -160px;
    top: 90px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .growth-section .col-lg-7 {
        margin-top: 30px;
    }

    .growth-title {
        font-size: 2.3rem;
    }

    .growth-visuals {
        min-height: 600px;
    }

    .image-top,
    .image-bottom {
        width: 85%;
    }

    .top-card {
        left: 0px;
    }

    .bottom-card {
        right: 0px;
    }
}

@media (max-width: 768px) {
    .growth-visuals {
        min-height: 500px;
    }

    .image-top {
        width: 100%;
        height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .image-bottom {
        width: 100%;
        height: 250px;
        border-radius: 0 0 20px 20px;
    }

    .floating-card {
        font-size: 0.85rem;
    }
}

/* JOURNEY CTA */
.journey-cta-section {
    background: #fff;
}

.journey-cta-card {
    position: relative;
    overflow: hidden;
    padding: 50px 60px;
    border-radius: 40px;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        #18386f 50%,
        var(--deep-red-dark) 100%
    );
    box-shadow: var(--shadow-md);
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(199, 162, 82, 0.15);
    color: var(--elegant-gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-badge i {
    font-size: 0.9rem;
}

/* Title */

.cta-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

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

/* Description */
.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-primary:hover {
    background: var(--deep-red-dark);
    color: #fff;
    transform: translateY(-3px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

/* Stats */
.cta-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--elegant-gold);
    line-height: 1;
}

.stat-text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* Image */
.cta-image-wrapper {
    position: relative;
}

.cta-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

/* Floating Card */
.floating-achievement {
    position: absolute;
    left: -40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.floating-achievement i {
    color: var(--deep-red);
    font-size: 1.4rem;
}

.floating-achievement strong {
    display: block;
    color: var(--text-dark);
}

.floating-achievement span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 992px) {
    .journey-cta-card {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-image-wrapper img {
        height: 450px;
    }

    .floating-achievement {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .journey-cta-card {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .cta-title {
        font-size: 2.3rem;
    }

    .cta-stats {
        gap: 24px;
    }

    .cta-image-wrapper img {
        height: 350px;
    }
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

.awards-section {
    background:
        linear-gradient(90deg, rgba(233, 237, 242, 0.45) 1px, transparent 1px),
        linear-gradient(rgba(233, 237, 242, 0.45) 1px, transparent 1px), #ffffff;
    background-size: 18px 18px;
}

.awards-timeline {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 26px;
}

.award-item {
    position: relative;
    width: 78%;
    min-height: 150px;
    padding: 30px 30px 30px 140px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: visible;
}

.award-left {
    margin-left: 70px;
}

.award-left .award-img {
    position: absolute;
    left: -55px;
    bottom: 5px;
    width: 140px;
    height: 140px;
    z-index: 3;
}

.award-right {
    justify-self: end;
    padding: 30px 140px 30px 30px;
    margin-right: 70px;
}

.award-right .award-img {
    position: absolute;
    right: -55px;
    bottom: 15px;
    width: 140px;
    height: 140px;
    z-index: 3;
}

.award-blue {
    padding: 18px 24px 18px 0;
}

.blue-card {
    background: var(--primary-blue-light);
    border-left: 6px solid var(--primary-blue);
}

.gold-card {
    background: var(--elegant-gold-light);
    border-right: 6px solid var(--elegant-gold);
}

.light-card {
    background: var(--gray-light);
    border-left: 6px solid var(--deep-red);
}

.red-soft-card {
    background: var(--deep-red-soft);
    border-right: 6px solid var(--deep-red);
}

.award-img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.15));

    transition: var(--transition);
}

.award-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.award-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-weight: 500;
    margin-right: 4px;
}

.award-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.award-item:hover .award-img img {
    transform: translateY(-8px) scale(1.05);
}

.award-img.large img {
    width: 200px;
}

@media (max-width: 768px) {
    .award-item,
    .award-right {
        width: 100%;
        grid-template-columns: 110px 1fr;
        justify-self: stretch;
        border-radius: 22px;
    }

    .award-right {
        grid-template-columns: 1fr 110px;
    }
}

@media (max-width: 768px) {
    .awards-timeline {
        gap: 70px;
    }

    .award-item,
    .award-left,
    .award-right {
        width: 100%;
        margin: 0;
        padding: 95px 22px 26px;
        border-radius: 24px;
        justify-self: stretch;
        min-height: auto;
    }

    .award-left .award-img,
    .award-right .award-img {
        position: absolute;
        left: 50%;
        right: auto;
        top: -55px;
        bottom: auto;
        transform: translateX(-50%);
        width: 150px;
        height: 120px;
        z-index: 3;
    }

    .award-img.large img,
    .award-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

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

    .award-content h3 {
        font-size: 18px;
        line-height: 1.3;
        margin-top: 2rem;
    }

    .award-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-right: 0;
    }

    .blue-card,
    .gold-card,
    .light-card,
    .red-soft-card {
        border-left: 0;
        border-right: 0;
        border-top: 5px solid var(--primary-blue);
    }

    .gold-card {
        border-top-color: var(--elegant-gold);
    }

    .red-soft-card,
    .light-card {
        border-top-color: var(--deep-red);
    }

    .partner-card {
        width: 100% !important;
    }
}

@media (max-width: 420px) {
    .award-item,
    .award-left,
    .award-right {
        padding-top: 85px;
    }

    .award-left .award-img,
    .award-right .award-img {
        width: 125px !important;
        height: 105px !important;
    }
}

.academic-achievement-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(193, 18, 31, 0.06),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, var(--primary-blue-light) 100%);
}

.academic-achievement-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 46px;
    align-items: center;
}

.achievement-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.achievement-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 18px;
    border-radius: 26px;
    background: var(--deep-red-soft);
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.achievement-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    font-size: 24px;
    transition: var(--transition);
}

.achievement-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.achievement-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 78, 158, 0.18);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover .achievement-icon {
    background: var(--primary-blue);
    color: #ffffff;
}

.achievement-card:hover {
    background: var(--primary-blue-light);
}

.academic-image-panel {
    position: relative;
    min-height: 600px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.academic-panel-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(199, 162, 82, 0.3),
            transparent 35%
        ),
        linear-gradient(180deg, rgba(30, 42, 62, 0.12), rgba(0, 61, 122, 0.92));
}

.academic-panel-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.academic-panel-content span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--elegant-gold);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.academic-panel-content h3 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 900;
    color: #ffffff;
}

.academic-panel-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.quality-points {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.quality-points div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
}

.quality-points strong {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: var(--elegant-gold);
    font-size: 13px;
}

.quality-points strong i {
    font-size: 1rem;
}

.quality-points p {
    color: #ffffff;
    font-weight: 700;
}

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

    .academic-image-panel {
        min-height: 520px;
    }
}

@media (max-width: 575px) {
    .achievement-card-grid {
        grid-template-columns: 1fr;
    }

    .academic-panel-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 24px;
    }

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

.accredit-card {
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: 1px solid var(--gray-border);
}

.accredit-card.active {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );
    border-color: transparent;
}

.accredit-card.active::after {
    background: var(--elegant-gold);
}

.accredit-card.active .accredit-content span {
    color: var(--elegant-gold-light);
}

.accredit-card.active .accredit-content h3,
.accredit-card.active .accredit-content p {
    color: #ffffff;
}

.accredit-card.active .accredit-logo {
    background: #ffffff;
}

.feature-logo {
    position: relative;
    z-index: 2;
    width: 135px;
    height: 135px;
    margin: 34px 0 26px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.feature-logo img {
    max-width: 95px;
    max-height: 95px;
    object-fit: contain;
}

.accreditation-feature h3,
.accreditation-feature p,
.feature-badge {
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.feature-fade {
    opacity: 0;
    transform: translateY(8px);
}

.accreditation-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(193, 18, 31, 0.06),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, var(--primary-blue-light) 100%);
}

.accreditation-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: stretch;
}

.accreditation-feature {
    position: sticky;
    top: 90px;
    min-height: 520px;
    padding: 42px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 61, 122, 0.95), rgba(0, 78, 158, 0.82)),
        url("../images/about/accreditation-bg.webp") center center / cover
            no-repeat;
    box-shadow: var(--shadow-md);
}

.accreditation-feature::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.accreditation-feature::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(199, 162, 82, 0.25);
}

.feature-badge {
    position: relative;
    z-index: 2;
    width: fit-content;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--elegant-gold);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.4px;
}

.accreditation-feature h3 {
    position: relative;
    z-index: 2;
    margin: 28px 0 18px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 900;
    color: #ffffff;
}

.accreditation-feature p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.feature-stats {
    position: absolute;
    z-index: 2;
    left: 42px;
    right: 42px;
    bottom: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-stats div {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.feature-stats strong {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: var(--elegant-gold-light);
}

.feature-stats span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.accreditation-cards {
    display: grid;
    gap: 18px;
}

.accredit-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 22px;
    align-items: center;
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accredit-card {
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: 1px solid var(--gray-border);
}

.accredit-card.active {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );
    border-color: transparent;
}

.accredit-card.active::after {
    background: var(--elegant-gold);
}

.accredit-card.active .accredit-content span {
    color: var(--elegant-gold-light);
}

.accredit-card.active .accredit-content h3,
.accredit-card.active .accredit-content p {
    color: #ffffff;
}

.accredit-card.active .accredit-logo {
    background: #ffffff;
}

.feature-logo {
    position: relative;
    z-index: 2;
    width: 135px;
    height: 135px;
    margin: 34px 0 26px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.feature-logo img {
    max-width: 95px;
    max-height: 95px;
    object-fit: contain;
}

.accreditation-feature h3,
.accreditation-feature p,
.feature-badge {
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.feature-fade {
    opacity: 0;
    transform: translateY(8px);
}

.accredit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(0, 78, 158, 0.1),
        transparent 38%
    );
    opacity: 0;
    transition: var(--transition);
}

.accredit-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 5px;
    border-radius: 0 99px 99px 0;
    background: var(--primary-blue);
}

.accredit-card.highlight {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
}

.accredit-card.highlight::after {
    background: var(--elegant-gold);
}

.accredit-logo {
    position: relative;
    z-index: 1;
    width: 110px;
    height: 110px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background: var(--gray-light);
    box-shadow: inset 0 0 0 1px rgba(0, 78, 158, 0.08);
}

.accredit-logo img {
    max-width: 90px;
    max-height: 78px;
    object-fit: contain;
}

.accredit-content {
    position: relative;
    z-index: 1;
}

.accredit-content span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 900;
    color: var(--deep-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accredit-content h3 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.accredit-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.accredit-card.highlight .accredit-content span {
    color: var(--elegant-gold-light);
}

.accredit-card.highlight .accredit-content h3,
.accredit-card.highlight .accredit-content p {
    color: #ffffff;
}

.accredit-card.highlight .accredit-logo {
    background: rgba(255, 255, 255, 0.96);
}

.accredit-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 78, 158, 0.16);
}

.accredit-card:hover::before {
    opacity: 1;
}

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

    .accreditation-feature {
        position: relative;
        top: auto;
        min-height: 440px;
    }
}

@media (max-width: 575px) {
    .accreditation-feature {
        padding: 28px;
        min-height: auto;
    }

    .accreditation-feature h3 {
        font-size: 28px;
    }

    .feature-stats {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 28px;
        grid-template-columns: 1fr;
    }

    .accredit-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .accredit-logo {
        margin: 0 auto;
    }

    .accredit-card::after {
        top: 0;
        left: 24px;
        right: 24px;
        bottom: auto;
        width: auto;
        height: 5px;
        border-radius: 0 0 99px 99px;
    }

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

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 40px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--elegant-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

.cta-description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .journey-cta-banner {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.partnership-network {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.network-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--deep-red),
        var(--elegant-gold),
        var(--primary-blue)
    );

    z-index: 1;
}

.aeren-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.core-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow:
        0 0 0 12px rgba(255, 255, 255, 0.9),
        0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Cards */
.partner-card {
    width: 42%;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid var(--gray-border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* premium top corner ribbon */
.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
    border-radius: 0 0 20px 0;
}

.partner-card:hover {
    transform: translateY(-12px);
}

.partner-left-card {
    margin-right: auto;
}

.partner-right-card {
    margin-left: auto;
}

/* Logo */
.partner-logo {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        var(--deep-red-soft),
        var(--elegant-gold-light)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo i {
    font-size: 1.8rem;
    color: var(--deep-red);
}

.partner-header h3 {
    position: relative;
    margin: 0;
    font-size: 1.56rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.partner-header h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin-top: 4px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
    border-radius: 10px;
}

.partner-location {
    color: var(--text-muted);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.partner-location i {
    color: var(--elegant-gold);
    margin-right: 5px;
}

/* Tags */
.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-tags span {
    padding: 10px 14px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--gray-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.partner-description {
    margin: 18px 0 25px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.partner-highlights {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-border);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-blue-light);
    color: var(--deep-red);
    font-size: 0.9rem;
}

.highlight-item span {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 600;
}

.partner-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.pillars-subtitle {
    max-width: 650px;
    margin: 0px auto 0;
    color: var(--text-muted);
    font-size: 0.935rem;
    line-height: 1.5;
}

.community-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 310px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.community-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
}

.community-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.3);
}

.community-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: var(--elegant-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.community-card:hover .community-icon {
    transform: rotate(-5deg) scale(1.08);
    background: var(--deep-red);
}

.community-card:hover .community-icon i {
    color: #fff;
}

.community-icon i {
    font-size: 2rem;
    color: var(--deep-red);
}

.community-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.community-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.889rem;
    margin-bottom: 0;
}

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

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

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

/* Mobile */

@media (max-width: 991px) {
    .partnership-network {
        flex-direction: column;
        min-height: auto;
    }

    .network-line,
    .aeren-core {
        display: none;
    }

    .partner-card {
        width: 100%;
    }
}

.journey-cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 32px;
    background: url("../images/about/magnific__talk__91397.webp") center
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 40px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--elegant-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

.cta-description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .journey-cta-banner {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.partnership-network {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Cards */
.partner-card {
    width: 75%;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid var(--gray-border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* premium top corner ribbon */
.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
    border-radius: 0 0 20px 0;
}

.partner-card:hover {
    transform: translateY(-12px);
}

/* Logo */
.partner-logo {
    width: 60px;
    height: 60px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-red));
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo i {
    font-size: 1.65rem;
    color: #fff;
}

.partner-header h3 {
    position: relative;
    margin: 0;
    font-size: 1.56rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.partner-header h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin-top: 4px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
    border-radius: 10px;
}

.partner-location {
    color: var(--text-muted);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.partner-location i {
    color: var(--elegant-gold);
    margin-right: 5px;
}

/* Tags */
.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-tags span {
    padding: 10px 14px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--gray-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.partner-description {
    margin: 18px 0 25px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.partner-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 0;

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

.highlight-item:nth-child(3),
.highlight-item:nth-child(4) {
    border-bottom: none;
}

.highlight-item i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-blue-light);
    color: var(--deep-red);
    font-size: 0.9rem;
}

.highlight-item span {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 600;
}

.partner-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.learning-feature-banner {
    position: relative;
    height: 500px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.learning-feature-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */

.learning-feature-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(9, 30, 66, 0.88) 0%,
        rgba(18, 55, 110, 0.7) 50%,
        rgba(200, 16, 46, 0.45) 100%
    );

    z-index: 1;
}

/* Floating Cards */

.learning-panel {
    position: absolute;
    z-index: 2;

    width: 420px;
    padding: 35px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

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

    border-radius: 28px;

    color: #fff;

    transition:
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.learning-panel:hover {
    border-color: rgba(255, 255, 255, 0.4);

    box-shadow:
        0 0 25px rgba(199, 162, 82, 0.35),
        0 0 60px rgba(199, 162, 82, 0.25),
        0 0 100px rgba(199, 162, 82, 0.15);
}

/* LEFT */

.learning-left {
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

/* RIGHT */

.learning-right {
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

/* Icon */

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

    border-radius: 20px;

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

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

    margin-bottom: 20px;
}

.learning-icon i {
    font-size: 28px;
    color: var(--elegant-gold);
}

/* Heading */

.learning-panel h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* Text */

.learning-panel p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features */

.feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-points span {
    padding: 10px 14px;

    border-radius: 50px;

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

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

    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 1198px) {
    .learning-left {
        left: 30px;
    }

    /* RIGHT */

    .learning-right {
        right: 30px;
    }
}

@media (max-width: 991px) {
    .learning-feature-banner {
        height: auto;
        padding: 40px 20px;
    }

    .learning-feature-banner img {
        position: absolute;
        inset: 0;
    }

    .learning-panel {
        position: relative;
        width: 100%;
        max-width: none;
        left: auto;
        right: auto;
        top: auto;
        transform: none !important;
        margin-bottom: 20px;
    }
}

.pillars-subtitle {
    max-width: 650px;
    margin: 0px auto 0;
    color: var(--text-muted);
    font-size: 0.935rem;
    line-height: 1.5;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 310px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.3);
}

.pillar-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: var(--elegant-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: rotate(-5deg) scale(1.08);
    background: var(--deep-red);
}

.pillar-card:hover .pillar-icon i {
    color: #fff;
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--deep-red);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.889rem;
    margin-bottom: 0;
}

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

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

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

.journey-cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 32px;
    background: url("../images/about/magnific__talk__913978.webp") center
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 40px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--elegant-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

.cta-description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .journey-cta-banner {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.pillars-section {
    background: #ffffff;
    position: relative;
}

.pillars-subtitle {
    max-width: 650px;
    margin: 0px auto 0;
    color: var(--text-muted);
    font-size: 0.935rem;
    line-height: 1.5;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 340px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.3);
}

.pillar-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: var(--elegant-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: rotate(-5deg) scale(1.08);
    background: var(--deep-red);
}

.pillar-card:hover .pillar-icon i {
    color: #fff;
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--deep-red);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.889rem;
    margin-bottom: 0;
}

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

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

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

.skill-initiative-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(193, 18, 31, 0.06),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, var(--primary-blue-light) 100%);
}

.skill-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.skill-module-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    background: var(--elegant-gold-light);
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.45s ease;
}

.skill-module-card.featured {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
}

.skill-module-card.featured::before {
    background: radial-gradient(
        circle at top right,
        rgba(199, 162, 82, 0.28),
        transparent 42%
    );
    opacity: 1;
}

.module-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.module-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    font-size: 26px;
    box-shadow: inset 0 0 0 1px rgba(193, 18, 31, 0.08);
}

.module-top span {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--elegant-gold-dark);
}

.module-top h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.module-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.module-list li {
    position: relative;
    padding: 13px 14px 13px 42px;
    border-radius: 16px;
    background: var(--gray-light);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    transition: var(--transition);
}

.module-list li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--elegant-gold);
    font-size: 11px;
}

.skill-module-card.featured .module-icon {
    background: var(--elegant-gold-light);
    color: var(--deep-red);
}

.skill-module-card.featured .module-top span {
    color: var(--elegant-gold-light);
}

.skill-module-card.featured .module-top h3 {
    color: #ffffff;
}

.skill-module-card.featured .module-list li {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.skill-module-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 78, 158, 0.15);
    border-color: rgba(199, 162, 82, 0.4);
}

.skill-module-card:hover::before {
    opacity: 1;
}

.skill-module-card:hover::after {
    transform: scaleX(1);
}

.skill-module-card:hover .module-icon {
    background: var(--primary-blue);
    color: #ffffff;
}

.skill-module-card.featured:hover .module-icon {
    background: var(--elegant-gold);
    color: #ffffff;
}

.skill-module-card:not(.featured):hover .module-list li {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

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

.workshop-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(193, 18, 31, 0.06),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, var(--gray-light) 100%);
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.workshop-card {
    position: relative;
    overflow: hidden;
    min-height: 285px;
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.workshop-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-blue-light);
    transition: var(--transition);
}

.workshop-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 4px;
    border-radius: 99px 99px 0 0;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.workshop-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.workshop-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    font-size: 26px;
    transition: var(--transition);
}

.workshop-top span {
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--elegant-gold-light);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 900;
}

.workshop-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.workshop-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}

.workshop-card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--deep-red);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.workshop-card a i {
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.42);
}

.workshop-card:hover::before {
    opacity: 1;
}

.workshop-card:hover::after {
    transform: scaleX(1);
}

.workshop-card:hover .workshop-icon {
    background: var(--primary-blue);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.08);
}

.workshop-card:hover a i {
    transform: translateX(5px);
}

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

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

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

.placement-support-section {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--primary-blue-light) 100%
    );
}

.placement-support-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 55px;
    align-items: center;
}

.support-list {
    display: grid;
    gap: 16px;
}

.support-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.support-list span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--deep-red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(193, 18, 31, 0.22);
}

.skills-panel {
    position: relative;
    min-height: 390px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 61, 122, 0.62), rgba(0, 78, 158, 0.58)),
        url("../images/about/college-mates-studying-together.webp") center
            center / cover no-repeat;
    box-shadow: var(--shadow-md);
}

.skills-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    pointer-events: none;
}

.skills-content {
    position: relative;
    z-index: 1;
    padding: 42px;
}

.skills-content h3 {
    margin: 0 0 30px;
    font-size: 38px;
    font-weight: 900;
    color: var(--elegant-gold);
    text-align: center;
}

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

.skill-card {
    min-height: 135px;
    padding: 26px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: var(--transition);
}

.skill-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--elegant-gold-light);
    color: var(--deep-red);
    font-size: 28px;
}

.skill-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.skill-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
}

@media (max-width: 991px) {
    .placement-support-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .skills-content {
        padding: 28px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.certification-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(193, 18, 31, 0.06),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, var(--primary-blue-light) 100%);
}

.certification-cluster {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 65px;
}

.certification-cluster::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 50%;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--deep-red),
        var(--elegant-gold)
    );
    opacity: 0.35;
}

.cert-card {
    position: relative;
    z-index: 1;
    min-height: 230px;
    padding: 30px 24px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.cert-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(199, 162, 82, 0.22),
        transparent 40%
    );
    opacity: 0;
    transition: var(--transition);
}

.cert-card::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 0;
    height: 4px;
    border-radius: 99px 99px 0 0;
    background: linear-gradient(90deg, var(--deep-red), var(--elegant-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.cert-up {
    transform: translateY(-28px);
}

.cert-down {
    transform: translateY(28px);
}

.cert-icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
    font-size: 30px;
    transition: var(--transition);
}

.cert-card span {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 8px;
    color: var(--deep-red);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cert-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--primary-blue-dark);
    font-size: 20px;
    font-weight: 900;
}

.cert-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.cert-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.45);
}

.cert-up:hover {
    transform: translateY(-38px);
}

.cert-down:hover {
    transform: translateY(18px);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card:hover::after {
    transform: scaleX(1);
}

.cert-card:hover .cert-icon {
    background: var(--deep-red);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.08);
}

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

    .certification-cluster::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .certification-cluster {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .cert-up,
    .cert-down,
    .cert-up:hover,
    .cert-down:hover {
        transform: none;
    }
}

.journey-cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 32px;
    background: url("../images/about/magnific.webp") center center / cover
        no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 40px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--elegant-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

.cta-description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .journey-cta-banner {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.placement-prep-section {
    background: #ffffff;
}

.placement-prep-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.placement-prep-content p {
    max-width: 680px;
    margin: 18px 0 28px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.prep-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.prep-checks div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    font-size: 14px;
    font-weight: 800;
}

.prep-checks i {
    color: var(--deep-red);
}

.placement-highlights {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    margin-bottom: 28px;
}

.highlight-item {
    padding: 18px 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    min-width: 140px;
}

.highlight-item h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
}

.highlight-item span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.placement-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--elegant-gold-light);
    border-left: 4px solid var(--elegant-gold);
}

.placement-note i {
    font-size: 20px;
    color: var(--elegant-gold-dark);
    margin-top: 2px;
}

.placement-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
}

.placement-prep-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.prep-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.prep-card::before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--deep-red-soft);
}

.prep-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    font-size: 24px;
    margin-bottom: 18px;
}

.prep-card small {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.prep-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.prep-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

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

.partners-card::before {
    background: rgba(255, 255, 255, 0.09);
}

.partners-card small,
.partners-card p {
    color: rgba(255, 255, 255, 0.78);
}

.partners-card h3 {
    color: var(--elegant-gold);
}

.partners-card .prep-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.prep-image-card {
    position: relative;
    min-height: 250px;
    grid-column: 1 / -1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.prep-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prep-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 61, 122, 0.88),
        rgba(0, 61, 122, 0.35)
    );
}

.prep-image-content {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 360px;
    color: #ffffff;
}

.prep-image-content i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--elegant-gold);
    margin-bottom: 14px;
}

.prep-image-content h4 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
}

.prep-image-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 991px) {
    .placement-prep-layout {
        display: flex;
        /* grid-template-columns: 1fr; */
    }
}

@media (max-width: 575px) {
    .placement-prep-cards,
    .prep-checks {
        grid-template-columns: 1fr;
    }
}

.placement-record-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 38px;
}

.record-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-light) 100%);
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.record-card::after {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--deep-red-soft);
    z-index: 0;
}

.record-card.featured::after {
    background: var(--primary-blue-light);
}

.record-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.45);
}

.record-card > * {
    position: relative;
    z-index: 1;
}

.record-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--deep-red-soft);
    color: var(--deep-red);
    font-size: 28px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(193, 18, 31, 0.08);
}

.record-card.featured {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
    border-color: transparent;
}

.record-card.featured::after {
    background: rgba(255, 255, 255, 0.08);
}

.record-card.featured .record-icon {
    background: var(--elegant-gold-light);
    color: var(--elegant-gold-dark);
}

.record-card h3 {
    margin: 0;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    color: var(--deep-red);
}

.record-card p {
    margin: 8px 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.record-card span {
    font-size: 12px;
    font-weight: 700;
    color: var(--elegant-gold-dark);
}

.record-card.featured h3,
.record-card.featured p {
    color: #ffffff;
}

.record-card.featured span {
    color: var(--elegant-gold-light);
}

.pillars-subtitle {
    max-width: 650px;
    margin: 0px auto 0;
    color: var(--text-muted);
    font-size: 0.935rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .placement-record-grid {
        grid-template-columns: 1fr;
    }
}

.recruiter-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.recruiter-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 24px 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--gray-border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: var(--transition);
}

.recruiter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        var(--primary-blue-light),
        transparent 45%
    );
    opacity: 0;
    transition: var(--transition);
}

.recruiter-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 3px;
    border-radius: 99px 99px 0 0;
    background: var(--elegant-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.logo-box {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 80px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    font-size: 30px;
    box-shadow:
        inset 0 0 0 1px rgba(0, 78, 158, 0.08),
        0 10px 22px rgba(0, 78, 158, 0.08);
    transition: var(--transition);
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(1.05) contrast(1.05);
}

.logo-box-2 {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 80px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    font-size: 30px;
    box-shadow:
        inset 0 0 0 1px rgba(0, 78, 158, 0.08),
        0 10px 22px rgba(0, 78, 158, 0.08);
    transition: var(--transition);
}

.recruiter-card span {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-blue-dark);
    text-align: center;
}

.recruiter-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 78, 158, 0.22);
    box-shadow: var(--shadow-md);
}

.recruiter-card:hover::before {
    opacity: 1;
}

.recruiter-card:hover::after {
    transform: scaleX(1);
}

.recruiter-card:hover .logo-box {
    color: #ffffff;
    transform: translateY(-4px) scale(1.04);
}

.recruiter-card:hover span {
    color: var(--deep-red);
}

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

@media (max-width: 700px) {
    .recruiter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .recruiter-card {
        min-height: 120px;
    }
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 55px;
    min-height: 650px;
    align-items: center;
}

.timeline-line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--deep-red),
        var(--elegant-gold)
    );
    transform: translateY(-50%);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.step-up {
    flex-direction: column;
    transform: translateY(-115px);
}

.step-down {
    flex-direction: column;
    transform: translateY(115px);
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--deep-red);
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    border: 6px solid #ffffff;
    box-shadow: 0 10px 24px rgba(193, 18, 31, 0.25);
}

.step-card {
    position: relative;
    padding: 28px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.step-card::after {
    content: attr(data-step);
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-blue-light);
    line-height: 1;
    z-index: 0;
}

.step-card > * {
    position: relative;
    z-index: 1;
}

.step-card::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--elegant-gold)
    );
}

.step-up .step-card::before {
    top: 0;
    bottom: auto;
}

.step-down .step-card::before {
    top: auto;
    bottom: 0;
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.step-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue-dark);
}

.step-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-muted);
    font-size: 14px;
}

.step-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.step-meta span {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
}

.process-step:hover .step-card {
    transform: translateY(-6px);
    border-color: rgba(199, 162, 82, 0.45);
    box-shadow: var(--shadow-md);
}

.process-step:hover .step-number {
    background: var(--primary-blue);
}

@media (max-width: 900px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .timeline-line {
        left: 23px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
    }

    .process-step,
    .step-up,
    .step-down {
        flex-direction: row;
        transform: none;
        align-items: flex-start;
    }

    .step-down {
        flex-direction: row;
    }

    .step-card {
        text-align: left;
        width: 100%;
    }

    .step-number {
        flex: 0 0 46px;
    }
}

.placement-support-section {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--primary-blue-light) 100%
    );
}

.placement-support-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 55px;
    align-items: center;
}

.support-list {
    display: grid;
    gap: 16px;
}

.support-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.support-list span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--deep-red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(193, 18, 31, 0.22);
}

.skills-panel {
    position: relative;
    min-height: 390px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 61, 122, 0.62), rgba(0, 78, 158, 0.58)),
        url("../images/about/development-knowledge-study-education-concept.webp")
            center center / cover no-repeat;
    box-shadow: var(--shadow-md);
}

.skills-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    pointer-events: none;
}

.skills-content {
    position: relative;
    z-index: 1;
    padding: 42px;
}

.skills-content h3 {
    margin: 0 0 30px;
    font-size: 38px;
    font-weight: 900;
    color: var(--elegant-gold);
    text-align: center;
}

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

.skill-card {
    min-height: 135px;
    padding: 26px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: var(--transition);
}

.skill-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--elegant-gold-light);
    color: var(--deep-red);
    font-size: 28px;
}

.skill-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.skill-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
}

@media (max-width: 991px) {
    .placement-support-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .skills-content {
        padding: 28px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 70px;
}

.alumni-card {
    position: relative;
    padding: 78px 28px 30px;
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        var(--primary-blue-light) 100%
    );
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.alumni-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(
        circle at top center,
        rgba(199, 162, 82, 0.18),
        transparent 42%
    );
    pointer-events: none;
}

.alumni-photo {
    position: absolute;
    top: -54px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(0, 78, 158, 0.08);
    z-index: 2;
}

.alumni-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-blue-light);
}

.quote-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--elegant-gold);
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 12px 24px rgba(199, 162, 82, 0.28);
}

.alumni-card p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-muted);
}

.alumni-card h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.batch {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 800;
    color: var(--elegant-gold-dark);
}

.company-badge {
    width: fit-content;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(199, 162, 82, 0.35);
    box-shadow: 0 12px 26px rgba(0, 78, 158, 0.08);
}

.company-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.company-badge span {
    font-size: 12px;
    font-weight: 900;
    color: var(--primary-blue-dark);
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 162, 82, 0.45);
}

.alumni-card:hover .alumni-photo {
    box-shadow:
        0 15px 35px rgba(0, 78, 158, 0.2),
        0 0 25px rgba(0, 78, 158, 0.25),
        0 0 50px rgba(0, 78, 158, 0.1);
}

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

.journey-cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 32px;
    background: url("../images/about/magnific.webp") center center / cover
        no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 40px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--elegant-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

.cta-description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .journey-cta-banner {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.action-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s;
    text-align: center;
    height: 100%;
}

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

.action-blue {
    background: var(--primary-blue-light);
    border: 1px solid rgba(14, 62, 123, 0.08);
}

.action-red {
    background: rgba(200, 16, 46, 0.05);
    border: 1px solid rgba(200, 16, 46, 0.1);
}

.featured-card:hover {
    transform: translateY(-25px);
}

.action-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.action-icon i {
    font-size: 1.7rem;
}

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

.action-red .action-icon i {
    color: var(--deep-red);
}

.action-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.action-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.action-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.action-blue a i {
    color: var(--elegant-gold);
}

.action-red a {
    color: var(--deep-red);
}

.btn-copy {
    background: #fff8e7;
    border: 1px solid #c7a252;
    color: #c7a252;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 8px;
}

.action-whatsapp {
    background: #25d366;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.action-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: stretch;
}

.contact-form-card {
    background: #fff;

    padding: 40px;

    border-radius: 32px;

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

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

    position: relative;
}

.contact-form-card label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    height: 52px;

    border-radius: 14px;

    border: 1px solid #d9dee8;
}

.contact-form-card textarea.form-control {
    height: auto;
}

.contact-submit-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 50px;
    background: var(--deep-red);
    color: #fff;
    font-weight: 700;
    transition: 0.4s;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: var(--deep-red-dark);

    transform: translateY(-3px);
}

.contact-image-card {
    position: relative;

    overflow: hidden;

    border-radius: 32px;

    min-height: 100%;
}

.contact-image-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.contact-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(8, 20, 40, 0.85),
        rgba(8, 20, 40, 0.15)
    );
}

.contact-floating-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 22px;

    border-radius: 20px;

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

    backdrop-filter: blur(12px);

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

.contact-floating-card i {
    width: 55px;
    height: 55px;

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

    border-radius: 16px;

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

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

.contact-floating-card strong {
    display: block;
    color: var(--primary-blue);
}

.contact-floating-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

    .contact-image-card {
        height: 350px;
    }
}

.campus-map-card {
    height: 100%;
    min-height: 380px;

    overflow: hidden;
    border-radius: 30px;

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

.campus-map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.campus-info-card {
    background: #fff;

    padding: 40px;

    border-radius: 30px;

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

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

.location-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 20px 0;

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

.location-row:last-child {
    border-bottom: none;
}

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

    flex-shrink: 0;

    border-radius: 16px;

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

    background: linear-gradient(
        135deg,
        var(--deep-red-soft),
        var(--elegant-gold-light)
    );
}

.location-icon i {
    color: var(--deep-red);
    font-size: 1.1rem;
}

.location-row h5 {
    margin: 0 0 5px;

    color: var(--primary-blue);

    font-size: 1rem;
    font-weight: 700;
}

.location-row p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.7;
}

.campus-info-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

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

.info-hero-card {
    position: relative;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.info-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

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

.card-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        115deg,
        rgba(9, 32, 63, 0.92) 0%,
        rgba(11, 59, 117, 0.82) 45%,
        rgba(200, 16, 46, 0.55) 100%
    );
}

.card-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #fff;
}

.card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.card-heading i {
    width: 60px;
    height: 60px;
    border-radius: 18px;

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

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    color: var(--elegant-gold);
    font-size: 1.4rem;
}

.card-heading h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
}

.hours-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hours-grid h5,
.contact-grid h5 {
    color: var(--elegant-gold);
    margin-bottom: 8px;
    font-size: 1rem;
}

.hours-grid p,
.contact-grid p,
.hours-grid span,
.contact-grid span {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;

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

    text-decoration: none;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--deep-red);
    transform: translateY(-4px);
}

.card-note {
    padding: 14px 18px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);

    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.card-note i {
    color: var(--elegant-gold);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .info-hero-card {
        height: auto;
        min-height: 350px;
    }

    .hours-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 25px;
    }
}

.faq-section {
    background: #fff;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE */

.faq-image-side {
    position: relative;
}

.faq-image-side img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

.faq-image-side::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 32px;

    background: linear-gradient(
        180deg,
        rgba(7, 30, 66, 0.05),
        rgba(7, 30, 66, 0.35)
    );
}

/* FLOATING CARD */

.faq-floating-card {
    position: absolute;
    left: 30px;
    bottom: 30px;

    display: flex;
    gap: 15px;

    padding: 18px 20px;

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

    backdrop-filter: blur(10px);

    border-radius: 20px;

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

.faq-floating-card i {
    font-size: 1.4rem;
    color: var(--deep-red);
}

.faq-floating-card strong {
    display: block;
    color: var(--primary-blue);
}

.faq-floating-card span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ACCORDION */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 22px;
    overflow: hidden;

    background: #fff;

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

    transition: 0.35s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    border-color: rgba(200, 16, 46, 0.2);

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

.faq-question {
    width: 100%;

    border: none;
    background: transparent;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 12px 18px 10px 18px;
    text-align: left;

    cursor: pointer;
}

.faq-number {
    min-width: 50px;
    height: 50px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        var(--deep-red-soft),
        var(--elegant-gold-light)
    );

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

    font-weight: 700;

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

.faq-question span:last-child {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.faq-question i {
    color: var(--deep-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px 0 88px;

    color: var(--text-muted);

    line-height: 1.8;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 18px 18px 88px;
}

.faq-question i {
    transition: 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question .text-span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

/* HOVER */

.faq-item:hover {
    transform: translateY(-4px);
}

/* MOBILE */

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

    .faq-image-side img {
        height: 350px;
    }
    .partner-highlights {
        grid-template-columns: 1fr;
    }
}

.journey-cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 32px;
    background: url("../images/about/magnific.webp") center center / cover
        no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 40px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--elegant-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

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

.cta-description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--deep-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 34px;
    border-radius: 60px;
    border: 1px solid var(--elegant-gold);
    color: var(--elegant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--elegant-gold);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .journey-cta-banner {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.academic-menu-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px !important;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
    height: 100%;
    white-space: normal;
}

.academic-menu-card:hover {
    transform: translateY(-5px);
    background: var(--primary-blue-light);
    box-shadow: 0 12px 28px rgba(0, 78, 158, 0.12);
}

.academic-menu-card h6 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-blue);
}

.academic-menu-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

.academic-menu-icon {
    min-width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
}

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

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

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

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

@media (max-width: 991px) {
    .academic-menu-card {
        margin-bottom: 10px;
    }
}

.exam-table-card {
    background: #ffffff;
    border: 1px solid var(--gray-border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.exam-table {
    margin-bottom: 0;
}

.exam-table thead th {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-dark)
    );
    color: #ffffff;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 18px 16px;
    border: 0;
    white-space: nowrap;
}

.exam-table tbody td {
    padding: 17px 16px;
    color: var(--text-dark);
    font-size: 0.94rem;
    border-color: var(--gray-border);
    vertical-align: middle;
}

.exam-table tbody tr:hover {
    background: var(--primary-blue-light);
}

.exam-number {
    width: 58px;
    text-align: center;
    font-weight: 900;
    color: var(--deep-red) !important;
    background: var(--deep-red-soft);
}

.class-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    min-width: 58px;
}

.class-badge.fyjc {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.class-badge.syjc {
    background: var(--deep-red-soft);
    color: var(--deep-red);
}

.pattern-table td:nth-child(2) {
    min-width: 260px;
}

.pattern-table td,
.pattern-table th {
    min-width: 120px;
}

.assessment-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.assessment-stack span {
    display: inline-flex;
    width: fit-content;
    background: var(--elegant-gold-light);
    color: var(--primary-blue-dark);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .exam-table-card {
        border-radius: 22px;
    }

    .exam-table thead th,
    .exam-table tbody td {
        padding: 14px 12px;
        font-size: 0.84rem;
    }
}
.section-badge {
    display: inline-block;
    background: rgba(0, 78, 158, 0.06);
    color: var(--primary-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: 40px;
    border: 1px solid rgba(0, 78, 158, 0.08);
}
