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

body {
    font-family: "Open Sans", sans-serif;
    color: rgb(51, 51, 51);
    overflow-x: hidden;
}

:root {
    --primary-red: #C8102E;
    --primary-navy: #002d72;
    --light-gray: #f8f9fa;
    --secondary: oklch(.95 .0058 264.53);
    --color-gray-50: oklch(.985 .002 247.839);
    --color-gray-100: oklch(.967 .003 264.542);
    --color-gray-200: oklch(.928 .006 264.531);
    --color-gray-300: oklch(.872 .01 258.338);
    --color-gray-400: oklch(.707 .022 261.325);
    --color-gray-500: oklch(.551 .027 264.364);
    --color-gray-600: oklch(.446 .03 256.802);
    --color-gray-700: oklch(.373 .034 259.733);
    --color-gray-900: oklch(.21 .034 264.665);
}

html {
    scroll-behavior: smooth;
}

.notification-banner {
    background: linear-gradient(90deg, rgb(200, 16, 46) 0%, rgb(0, 45, 114) 100%);
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

.badge-secondary {
    color: rgb(0, 0, 0);
    background-color: var(--secondary);
    font-weight: 400;
}

.notification-banner.hidden {
    display: none;
}

.notification-text {
    color: white;
    text-decoration: none;
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 0px;
    font-size: 14px;
}

.notification-text:hover {
    text-decoration: none;
    cursor: auto;
}

.notification-dots {
    gap: 8px;
}

.notification-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 0px;
    transition: 0.3s;
    border-radius: 50px;
}

.notification-dots .dot.active {
    width: 16px;
    background: white;
}

.btn-close-notification {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: white;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.btn-close-notification:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notification-text:hover {
    color: rgb(255, 255, 255);
}

#mainHeader {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px;
    transition: 0.3s;
    z-index: 1000;
}

#mainHeader.scrolled .header-row {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

#mainHeader.scrolled .header-logo {
    height: 40px !important;
}

#mainHeader.scrolled .btn-apply {
    line-height: 21px;
}

.header-row {
    padding: 16px 0px;
    transition: 0.3s;
}

.header-logo {
    height: 48px;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .header-logo {
        height: 56px;
    }
}

.navbar-nav-custom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.nav-link-custom {
    color: rgb(74, 85, 104);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link-custom:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.btn-apply {
    background: var(--primary-red);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
}

.btn-apply:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: rgba(200, 16, 46, 0.3) 0px 4px 12px;
}

.btn-menu {
    background: rgb(247, 250, 252);
    border: 1px solid rgb(226, 232, 240);
    padding: 8px 12px;
    border-radius: 8px;
    color: rgb(74, 85, 104);
    transition: 0.3s;
}

.btn-menu:hover {
    background: rgb(237, 242, 247);
}

.mobile-menu {
    background: white;
    border-top: 1px solid rgb(226, 232, 240);
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s;
}

.mobile-menu.active {
    max-height: 500px;
    padding: 16px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    color: rgb(74, 85, 104);
    text-decoration: none;
    padding: 12px 0px;
    border-bottom: 1px solid rgb(247, 250, 252);
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--primary-red);
}

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s;
}

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

.hero-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 56px;
    }
}

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

.hero-subtitle {
    font-size: 18px;
    color: rgb(226, 232, 240);
    margin-bottom: 32px;
}

.hero-indicators {
    display: flex;
    gap: 8px;
}

.hero-indicators .indicator {
    height: 4px;
    width: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 2px;
    padding: 0px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-indicators .indicator.active {
    width: 32px;
    background: var(--primary-red);
}

.registration-form {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 60px;
    /* max-height: 113vh; */
    /* overflow-y: auto; */
}

.form-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.registration-form .form-control {
    /* background: rgba(255, 255, 255, 0.9); */
    color: #000 !important;
    border: 1px solid #e6e6e6 !important;
    /* border-radius: 8px; */
    /* padding: 12px 16px; */
    color: rgb(51, 51, 51);
}
input::placeholder{
    color:#000 !important;
}
.registration-form .form-control:focus {
    background: white;
    border-color: var(--primary-red);
    box-shadow: rgba(200, 16, 46, 0.1) 0px 0px 0px 3px;
}

.consent-label {
    font-size: 12px;
    color: white;
    line-height: 1.4;
}

.btn-submit {
    background: var(--primary-red);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: rgb(160, 13, 37);
    transform: translateY(-2px);
    box-shadow: rgba(200, 16, 46, 0.4) 0px 6px 20px;
}

.accreditation-section {
    background-color: rgb(200, 16, 46);
}

.accreditation-section .lead {
    font-size: 1rem;
    font-weight: 400;
}

.accreditation-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: 0.3s;
    cursor: pointer;
    height: 100%;
}

.accreditation-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.accreditation-logo {
    background-color: rgb(255, 255, 255);
    border-radius: 0.75rem;
    width: 120px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 1rem;
    padding: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 8px;
}

.accreditation-item h5 {
    font-size: 16px;
}

.accreditation-item p {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

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

@media (min-width: 992px) {
    .accreditation-slider .col-lg-2, .stats-section .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.accreditation-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: 0.35s;
    cursor: pointer;
    height: 100%;
    transform: translateY(0px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
}

.accreditation-item:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
}

.slick-prev::before, .slick-next::before {
    display: none;
}

@media (max-width: 767px) {
    .classRoomTOCareesSleder .slick-prev, .classRoomTOCareesSleder .slick-next, .accreditation-section .slick-prev, .accreditation-section .slick-next {
        width: 32px;
        height: 32px;
        top: 39%;
        border: 1px solid rgb(255, 255, 255);
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 20px;
        z-index: 999;
        opacity: 1;
        background-color: transparent;
    }

    .classRoomTOCareesSleder .slick-prev, .classRoomTOCareesSleder .slick-next {
        background-color: var(--primary-red);
    }

    .classRoomTOCareesSleder .slick-next, .classRoomTOCareesSleder .slick-next:focus, .classRoomTOCareesSleder .slick-next:hover, .accreditation-section .slick-next, .accreditation-section .slick-next:hover {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 20px;
        border: 1px solid rgb(255, 255, 255);
        right: 5px !important;
        background-image: url("../images/icons/arrow_right_white.svg") !important;
    }

    .classRoomTOCareesSleder .slick-prev, .classRoomTOCareesSleder .slick-prev:focus .classRoomTOCareesSleder .slick-prev:hover, .accreditation-section .slick-prev, .accreditation-section .slick-prev:hover {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 20px;
        border: 1px solid rgb(255, 255, 255);
        left: 5px !important;
        background-image: url("../images/icons/arrow_left_white.svg") !important;
    }

    .classRoomTOCareesSleder .slick-prev, .classRoomTOCareesSleder .slick-next, .university-slider .slick-prev, .university-slider .slick-next {
        background-repeat: no-repeat;
        background-attachment: initial;
        background-origin: initial;
        background-clip: initial;
        background-color: transparent;
        background-position: center center;
        background-size: 16px;
        background-image: url("../images/icons/arrow_left.svg") !important;
        border: 2px solid var(--primary-red) !important;
        &:hover, &:focus {
            background-image: url("../images/icons/arrow_left_white.svg") !important;
        }
    }

    .classRoomTOCareesSleder .slick-next, .university-slider .slick-next {
        background-image: url("../images/icons/arrow_right.svg") !important;
        &:hover, &:focus {
            background-image: url("../images/icons/arrow_right_white.svg") !important;
        }
    }

    .video-caption {
        display: none;
    }
}

.slick-prev, .slick-next {
    width: 32px;
    height: 32px;
    top: 39%;
    border: 1px solid color-mix(white 20%, transparent);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px;
    z-index: 999;
    opacity: 1;
    background-color: transparent;
}

.slick-next, .slick-next:hover {
    right: 20px;
    background-image: url("../images/right-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px;
}

.slick-prev, .slick-prev:hover {
    background-image: url("../images/left-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px;
    z-index: 99;
}

.stats-section {
    padding: 64px 0px;
    background: white;
}

.section-title {
    color: var(--primary-navy);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--color-gray-600);
    font-size: 18px;
}

.stat-card {
    cursor: pointer;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    background: rgb(247, 250, 252);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 16px;
    color: var(--primary-red);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-icon img {
    width: 38px;
    transition: width 0.3s;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00d25 100%);
}

.stat-card:hover .stat-icon img {
    filter: brightness(0) invert(1);
    width: 35px;
}

.stat-value {
    font-size: 30px;
    line-height: 36px;
    color: var(--primary-navy);
    font-weight: 400;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.stat-card:hover .stat-value {
    color: var(--primary-red);
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray-600);
    margin: 0px;
    transition: color 0.3s;
}

.stat-card:hover .stat-label {
    color: var(--primary-navy);
}

.why-mru-section {
    padding: 40px 0px;
    background: rgb(247, 250, 252);
}

.why-card {
    display: flex;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    transition: 0.3s;
    cursor: pointer;
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 24px;
    margin-left: 10px;
}

.why-icon {
    background: rgba(200, 16, 46, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--primary-red);
    transition: 0.5s;
}

.why-card:hover .why-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.why-card:hover .why-icon img {
    filter: brightness(0) invert(1);
}

.why-content h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.why-card:hover .why-content h4 {
    color: var(--primary-red);
}

.why-content p {
    color: var(--color-gray-600);
    margin: 0px;
    line-height: 1.6;
    transition: color 0.3s;
}

.why-card:hover .why-content p {
    color: rgb(74, 85, 104);
}

.why-image {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s;
}

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

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

.why-image:hover::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-image: linear-gradient(to right bottom, oklab(0.530367 0.191861 0.0787562 / 0.2) 0%, oklab(0.319532 -0.0230004 -0.125775 / 0.2) 100%);
}

.why-image img {
    transition: transform 0.7s;
}

.why-image:hover img {
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .why-mru-content {
        padding-right: 50px;
    }
}

.programs-section {
    padding: 80px 0px;
    background: white;
}

.program-filters {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 16px;
}

.program-filters::-webkit-scrollbar {
    height: 6px;
}

.program-filters::-webkit-scrollbar-track {
    background: rgb(241, 241, 241);
    border-radius: 10px;
}

.program-filters::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.program-filters::-webkit-scrollbar-thumb:hover {
    background: rgb(160, 13, 37);
}

.btn-filter {
    background: white;
    border: 2px solid rgb(226, 232, 240);
    color: rgb(74, 85, 104);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    flex-shrink: 0;
}

.btn-filter i {
    font-size: 28px;
    transition: 0.3s;
}

.btn-filter span {
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

.btn-filter:hover, .btn-filter.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-4px);
}

.btn-filter:hover i, .btn-filter.active i {
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .program-filters {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .btn-filter {
        min-width: 0px;
    }
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: 0.3s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 32px;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.program-icon {
    font-size: 32px;
    color: var(--primary-red);
}

.program-header h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin: 0px;
}

.program-duration {
    color: var(--color-gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.program-level {
    margin-bottom: 16px;
}

.program-level .badge {
    background: rgba(200, 16, 46, 0.1);
    color: var(--primary-red);
    border: 1px solid rgba(200, 16, 46, 0.3);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.program-desc {
    color: rgb(74, 85, 104);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-program-details {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-program-details:hover {
    background: var(--primary-red);
    color: white;
}

.program-item {
    transition: opacity 0.3s;
}

.program-item.hidden {
    display: none;
}

.program-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0px 50px;
}

@media (max-width: 576px) {
    .program-carousel-wrapper {
        padding: 0px;
    }
}

.program-carousel {
    overflow: hidden;
    width: 100%;
}

.program-carousel-track {
    display: flex;
    transition: transform 0.5s;
}

.program-carousel-page {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    gap: 16px;
    padding: 4px;
}

.program-carousel-item {
    flex: 1 1 0%;
    min-width: 0px;
}

@media (max-width: 575px) {
    .program-carousel-page {
        gap: 0px;
    }
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgb(226, 232, 240);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.carousel-nav-btn:hover {
    background: rgb(247, 250, 252);
    color: var(--primary-navy);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0px;
}

.carousel-next {
    right: 0px;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(203, 213, 224);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    transition: 0.3s;
    padding: 0px;
}

.pagination-bullet:hover {
    background: rgb(160, 174, 192);
}

.pagination-bullet.active {
    width: 32px;
    border-radius: 4px;
    background: var(--primary-red);
}

.placements-section {
    padding: 80px 0px;
    background: rgb(247, 250, 252);
    @media (max-width: 479px) {
        padding-top: 0px !important;
    }
}

.slider-container {
    overflow: hidden;
    padding: 20px 0px;
}

.recruiter-logos {
    display: flex;
    gap: 40px;
    animation: 20s linear 0s infinite normal none running slide;
}

.recruiter-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.recruiter-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0px);
    }

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

.scholarships-section {
    padding: 80px 0px;
    background: white;
}

.scholarship-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: 0.3s;
    height: 100%;
}

.scholarship-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 32px;
}

.scholarship-icon {
    background: rgba(200, 16, 46, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 16px;
    font-size: 32px;
    color: var(--primary-red);
    transition: 0.3s;
}

.scholarship-card:hover .scholarship-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.scholarship-card h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.scholarship-amount {
    font-size: 24px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 8px;
}

.scholarship-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0px;
}

.student-life-section {
    padding: 80px 0px;
    background: linear-gradient(rgb(247, 250, 252) 0%, white 100%);
}

.section-description {
    font-size: 18px;
    color: var(--color-gray-600);
    line-height: 1.8;
    max-width: 900px;
    margin: 0px auto;
}

.placement-card-content {
    position: relative;
    overflow: hidden;
}

.placement-card-content .circle {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to right bottom, rgba(200, 16, 46, 0.1), transparent);
    border-radius: 50%;
    transform: translate(4rem, -4rem);
    transition: transform 0.5s;
}

.placement-card-content:hover .circle {
    transform: translate(0px, 0px);
}

.placement-card-content .content {
    position: relative;
    z-index: 1;
    background: rgb(255, 255, 255);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 25px -8px;
}

.flip-card {
    height: 400px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

@media (min-width: 992px) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    .slick-slider:has(.slick-dots) {
        padding-bottom: 20px;
    }
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
}

.flip-card-front {
    position: relative;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
}

.flip-card-content {
    padding: 32px;
    color: white;
    width: 100%;
}

.flip-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.flip-card-content .text-sm {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back-red {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00d25 100%);
}

.flip-card-back-navy {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #003d8f 100%);
}

.flip-card-back-content {
    padding: 40px;
    color: white;
    text-align: left;
}

.flip-card-back-content i {
    color: white;
}

.flip-card-back-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.flip-divider {
    width: 64px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

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

.flip-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
}

.flip-features li:last-child {
    margin-bottom: 0px;
}

.check-icon {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .flip-card {
        height: 350px;
    }

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

    .flip-card-back-content {
        padding: 24px;
    }

    .flip-card-back-content h3 {
        font-size: 22px;
    }

    .flip-features li {
        font-size: 16px;
    }
}

.testimonials-section {
    padding: 80px 0px;
    background: white;
}

.testimonial-card {
    background: rgb(247, 250, 252);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.testimonial-stars {
    color: rgb(251, 191, 36);
    font-size: 20px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    color: rgb(74, 85, 104);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    color: var(--primary-navy);
    font-size: 18px;
}

.testimonial-author p {
    color: var(--color-gray-600);
    font-size: 14px;
    margin: 4px 0px 0px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.footer {
    background: var(--primary-navy);
    color: white;
    padding: 48px 0px 24px;
}

.footer-title {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-address i {
    margin-top: 4px;
    margin-right: 8px;
}

.footer-address p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.contact-icon {
    background: var(--primary-red);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.contact-link:hover .contact-icon {
    background: rgb(160, 13, 37);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 32px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0px;
}

.btn-footer-link {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.modal-header {
    background: var(--primary-navy);
    color: white;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.modal-header .close {
    color: white;
    opacity: 1;
}

.modal-body h6 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
}

.modal-body h6:first-child {
    margin-top: 0px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-on-scroll {
    animation: 0.6s ease 0s 1 normal forwards running fadeInUp;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 600px;
        padding: 48px 0px;
    }

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

    .why-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .registration-form {
        padding: 24px;
    }

    .stat-value {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

.text-primary-red {
    color: var(--primary-red);
}

.text-primary-navy {
    color: var(--primary-navy);
}

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

.bg-primary-navy {
    background-color: var(--primary-navy);
}

.virtual-tour-section {
    padding: 80px 0px;
    background: linear-gradient(white 0%, rgb(247, 250, 252) 100%);
}

.virtual-tour-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.tour-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.virtual-tour-image:hover .tour-overlay {
    opacity: 1;
}

.btn-tour-play:hover {
    transform: scale(1.1);
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tour-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tour-feature-item i {
    font-size: 32px;
    color: var(--primary-red);
    background: rgba(200, 16, 46, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-feature-item h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.tour-feature-item p {
    color: var(--color-gray-600);
    margin: 0px;
    font-size: 14px;
}

.virtual-tour-image {
    position: relative;
    overflow: hidden;
}

.poster-image {
    max-height: 600px;
    object-fit: cover;
    width: 100% !important;
}

.tour-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.55);
    transition: 0.4s;
}

.btn-tour-play {
    background: var(--primary-red);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: rgb(255, 255, 255);
    width: 80px;
    height: 80px;
    text-align: center;
    transition: transform 0.3s, color 0.3s;
    border-radius: 50%;
}

.btn-tour-play svg {
    width: 16px;
}

.btn-tour-play:hover {
    transform: scale(1.1);
}

.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.video-caption {
    bottom: 20px;
    left: 30px;
    z-index: 99;
    color: rgb(255, 255, 255);
    font-size: 30px;
    margin-bottom: 0px;
}

.global-partners-section {
    padding: 80px 0px;
    background: linear-gradient(rgb(247, 250, 252) 0%, white 100%);
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: 0.3s;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 32px;
}

.partner-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 16px;
}

.partner-card h4 {
    font-size: 28px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 8px;
}

.partner-card p {
    color: var(--color-gray-600);
    margin: 0px;
}

.partners-logos-section {
    margin-top: 48px;
}

.partner-logo-card {
    background: white;
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 20px;
}

.partner-logo-card p {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
}

.partner-logo-card small {
    font-size: 12px;
}

.alumni-section {
    padding: 40px 0px;
    background: white;
}

.alumni-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: 0.3s;
    height: 100%;
}

.alumni-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 32px;
}

.alumni-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0px auto 16px;
    border: 4px solid var(--primary-red);
}

.alumni-card h4 {
    font-size: 20px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 8px;
}

.alumni-position {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.alumni-company {
    color: var(--color-gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.alumni-class {
    color: rgb(160, 174, 192);
    font-size: 13px;
    margin-bottom: 12px;
}

.alumni-quote {
    color: rgb(74, 85, 104);
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
}

.admission-process-section {
    padding: 80px 0px;
    background: rgb(247, 250, 252);
}

.process-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: 0.3s;
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 16px 40px;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00d25 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: rgba(200, 16, 46, 0.3) 0px 4px 12px;
}

.process-icon {
    background: rgba(200, 16, 46, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 20px;
    font-size: 32px;
    color: var(--primary-red);
    transition: 0.3s;
}

.process-card:hover .process-icon {
    background: var(--primary-red);
    color: white;
    transform: rotate(360deg);
}

.process-card h4 {
    font-size: 18px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--color-gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
}

.global-accordion-card {
    border: 2px solid rgb(226, 232, 240);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: 0.3s;
    background: white;
}

.global-accordion-card:hover {
    border-color: rgba(200, 16, 46, 0.3);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
}

.global-accordion-btn {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: white;
    color: inherit;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.global-accordion-btn:hover {
    background: linear-gradient(to right, rgb(247, 250, 252), white);
    text-decoration: none;
    color: inherit;
}

.global-accordion-btn:focus {
    box-shadow: none;
    text-decoration: none;
}

.country-flag {
    font-size: 32px;
    margin-right: 12px;
}

.country-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0px 12px 0px 0px;
    transition: color 0.3s;
}

.global-accordion-btn:hover .country-name {
    color: var(--primary-red);
}

.badge-courses {
    background: rgba(200, 16, 46, 0.1);
    color: var(--primary-red);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.accordion-icon {
    color: var(--color-gray-600);
    transition: transform 0.3s, color 0.3s;
}

.global-accordion-btn:not(.collapsed) .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.global-accordion-body {
    padding: 32px;
    background: rgba(247, 250, 252, 0.5);
    border-top: 1px solid rgb(226, 232, 240);
}

.course-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgb(226, 232, 240);
    transition: 0.3s;
    height: 100%;
}

.course-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-red);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 24px;
}

.course-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.course-card:hover h5 {
    color: var(--primary-red);
}

.university-name {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 12px;
}

.course-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.badge-duration {
    background: rgb(219, 234, 254);
    color: rgb(30, 64, 175);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.badge-type {
    background: rgb(220, 252, 231);
    color: rgb(21, 128, 61);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.course-location {
    font-size: 13px;
    color: rgb(100, 116, 139);
    margin-bottom: 8px;
}

.course-location i {
    margin-right: 6px;
    color: var(--primary-red);
}

.course-fees {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0px;
}

.placements-section {
    padding: 80px 0px;
    background: linear-gradient(white 0%, rgb(247, 250, 252) 100%);
}

.placement-card {
    background: white;
    border-radius: 12px;
    border: 1px solid rgb(226, 232, 240);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 32px;
    border-color: rgba(200, 16, 46, 0.3);
}

.placement-card-content {
    padding: 24px;
}

.placement-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgb(226, 232, 240);
    margin-right: 16px;
    transition: 0.3s;
}

.placement-card:hover .placement-photo {
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.placement-name {
    font-size: 18px;
    color: var(--primary-navy);
    font-weight: 400;
    margin-bottom: 8px;
}

.placement-role {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}

.placement-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    & span {
        line-height: 12px;
        display: inline-block;
        padding: 5px 10px 4px;
        font-weight: 400;
        color: rgb(0, 0, 0);
        border-radius: 8px;
    }

    @media (max-width: 767px) {
        flex-direction: column;
        & .badge {
            width: fit-content;
        }
    }
}

.badge-outline {
    background: white;
    border: 1px solid rgb(226, 232, 240);
    color: rgb(100, 116, 139);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
}

.placement-company-logo {
    text-align: center;
    & .company-name {
        text-align: center;
        font-size: 12px;
        display: block;
    }
}

.company-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: rgb(247, 250, 252);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 6px;
}

.company-name-small {
    font-size: 12px;
    color: rgb(74, 85, 104);
    display: block;
}

.recruiter-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px;
}

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

@media (min-width: 1024px) {
    .recruiter-logos-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.recruiter-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.recruiter-logo-item:hover {
    background: rgb(247, 250, 252);
    transform: translateY(-5px);
}

.recruiter-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: 0.3s;
}

.recruiter-logo-item:hover .recruiter-logo {
    transform: scale(1.1);
}

.placement-cta-banner {
    background: linear-gradient(to right, var(--primary-navy), #1565c0);
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    color: white;
    margin-top: 48px;
}

.placement-cta-banner h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 16px;
}

.placement-cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0px auto 24px;
}

.btn-cta {
    background: var(--primary-red);
    color: white;
    padding: 12px 32px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-cta:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.alumni-section {
    padding: 40px 0px;
    background: white;
}

.alumni-success-card {
    background: white;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: 0.3s;
    overflow: hidden;
    border: 1px solid rgb(226, 232, 240);
    height: 100%;
    position: relative;
}

.alumni-success-card:hover {
    transform: translateY(-12px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 9px 40px;
    border-color: rgba(200, 16, 46, 0.3);
}

.alumni-image-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgb(247, 250, 252);
    padding: 16px;
    position: relative;
}

.alumni-success-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.7s;
}

.alumni-success-card:hover .alumni-success-photo {
    transform: scale(1.05);
}

.alumni-content {
    padding: 24px;
    text-align: center;
}

.alumni-success-name {
    font-size: 20px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.alumni-success-card:hover .alumni-success-name {
    color: var(--primary-red);
}

.alumni-year-badge {
    background: rgb(247, 250, 252);
    color: var(--color-gray-600);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 16px;
    transition: 0.3s;
}

.alumni-success-card:hover .alumni-year-badge {
    background: var(--primary-red);
    color: white;
}

.alumni-position-box {
    background: rgb(247, 250, 252);
    border-radius: 10px;
    padding: 16px;
    border-left: 3px solid var(--primary-red);
    transition: 0.3s;
}

.alumni-success-card:hover .alumni-position-box {
    background: linear-gradient(to right, rgba(200, 16, 46, 0.05), transparent);
    transform: translateX(5px);
}

.alumni-position-box i {
    color: var(--primary-red);
    margin-right: 8px;
}

.alumni-position-box p {
    font-size: 14px;
    color: rgb(74, 85, 104);
    margin: 0px;
    line-height: 1.6;
    text-align: left;
}

.alumni-carousel-control-prev, .alumni-carousel-control-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    opacity: 1;
    transition: 0.3s;
    border: 2px solid rgb(226, 232, 240);
}

.alumni-carousel-control-prev {
    left: -24px;
}

.alumni-carousel-control-next {
    right: -24px;
}

.alumni-carousel-control-prev:hover, .alumni-carousel-control-next:hover {
    background: rgb(247, 250, 252);
    transform: scale(1.1);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 20px;
}

.carousel-control-icon {
    color: var(--primary-red);
    font-size: 20px;
}

.alumni-carousel-control-prev:hover .carousel-control-icon, .alumni-carousel-control-next:hover .carousel-control-icon {
    color: var(--primary-navy);
}

.alumni-carousel-indicators {
    bottom: -40px;
}

.alumni-carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(203, 213, 224);
    transition: 0.3s;
}

.alumni-carousel-indicators li.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(to right, var(--primary-red), #ff1744);
}

.alumni-carousel-indicators li:hover {
    background: var(--primary-navy);
}

.admission-process-section {
    padding: 80px 0px;
    background: white;
}

.process-step-card {
    background: white;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px;
    border: 1px solid rgb(226, 232, 240);
    padding: 32px;
    position: relative;
    height: 100%;
    transition: 0.3s;
    overflow: visible;
}

.process-step-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 48px;
    border-color: transparent;
}

.process-step-number {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-navy));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: rgba(200, 16, 46, 0.3) 0px 4px 12px;
    z-index: 10;
    transition: 0.3s;
}

.process-step-card:hover .process-step-number {
    transform: scale(1.2) rotate(360deg);
}

.process-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(0, 45, 114, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: 0.3s;
}

.process-step-card:hover .process-step-icon {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(0, 45, 114, 0.1));
}

.process-step-icon i {
    font-size: 32px;
    color: var(--primary-navy);
    transition: color 0.3s;
}

.process-step-card:hover .process-step-icon i {
    color: var(--primary-red);
}

.process-step-title {
    font-size: 20px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.process-step-card:hover .process-step-title {
    color: var(--primary-red);
}

.process-step-desc {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0px;
}

.process-step-connector {
    display: none;
}

@media (min-width: 992px) {
    .process-step-connector {
        display: flex;
        position: absolute;
        top: 50%;
        right: -48px;
        transform: translateY(-50%);
        color: var(--primary-red);
        font-size: 24px;
        opacity: 0.4;
        transition: 0.3s;
        z-index: 5;
    }

    .process-step-card:hover .process-step-connector {
        opacity: 1;
        right: -52px;
    }

    .process-step-card:last-child .process-step-connector {
        display: none;
    }
}

@media (max-width: 991px) {
    .gap-20 {
        gap: 15px;
    }
}

.slick-track {
    display: flex !important;
    align-items: stretch;
}

.slick-slide {
    height: auto !important;
}

.slick-slide > div {
    height: 100%;
}

.testimonials-section {
    padding: 80px 0px;
    background: rgb(247, 250, 252);
    position: relative;
    overflow: hidden;
}

.testimonial-bg-decoration {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-slider .slick-track {
    padding-top: 30px;
}

.alumniImpact .slick-track {
    padding-top: 30px;
}

.testimonial-bg-red {
    top: 0px;
    right: 0px;
    background: linear-gradient(to left bottom, rgba(200, 16, 46, 0.05), transparent);
    filter: blur(80px);
}

.testimonial-bg-blue {
    bottom: 0px;
    left: 0px;
    background: linear-gradient(to right top, rgba(0, 45, 114, 0.05), transparent);
    filter: blur(80px);
}

.testimonial-modern-card {
    background: white;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    border: 1px solid rgb(226, 232, 240);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
}

.testimonial-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 20px;
    border-color: transparent;
}

.testimonial-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-navy));
    padding: 24px 24px 56px;
    position: relative;
    overflow: hidden;
}

.testimonial-header::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 160px;
    height: 160px;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(80px, -80px);
}

.testimonial-header::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 120px;
    height: 120px;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-60px, 60px);
}

.quote-icon {
    color: white;
    font-size: 32px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}

.testimonial-stars i {
    color: rgb(251, 191, 36);
    font-size: 16px;
}

.testimonial-profile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    z-index: 10;
}

.testimonial-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
    position: relative;
}

.testimonial-content {
    padding: 80px 24px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 20px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-course {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.testimonial-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-navy));
    border-radius: 2px;
    margin: 0px auto 16px;
}

.testimonial-quote {
    font-size: 14px;
    color: rgb(74, 85, 104);
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-modern-card::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-modern-card:hover::after {
    opacity: 1;
}

.testimonial-carousel-control {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    opacity: 1;
    transition: 0.3s;
    border: 2px solid rgb(226, 232, 240);
}

.testimonial-carousel-control:hover {
    background: rgb(247, 250, 252);
    transform: scale(1.1);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 20px;
}

.testimonial-carousel-control .carousel-control-icon {
    color: var(--primary-red);
    font-size: 20px;
}

.testimonial-carousel-control:hover .carousel-control-icon {
    color: var(--primary-red);
}

.testimonials-section {
    padding-bottom: 60px !important;
}

.testimonial-carousel-indicators {
    bottom: -40px;
}

.carousel-indicators li {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.testimonial-carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(203, 213, 224);
    transition: 0.3s;
    padding: 0px;
}

.testimonial-carousel-indicators li.active {
    width: 32px;
    background: var(--primary-red);
    border-radius: 30px;
}

.testimonial-carousel-indicators li:hover {
    background: var(--primary-red);
}

.scholarships-section {
    padding: 80px 0px;
    background: rgb(247, 250, 252);
}

.scholarship-modern-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.scholarship-modern-card.scholarship-red {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05) 0%, white 30%, rgba(200, 16, 46, 0.1) 100%);
    border-color: rgba(200, 16, 46, 0.3);
}

.scholarship-modern-card.scholarship-blue {
    background: linear-gradient(135deg, rgba(0, 45, 114, 0.05) 0%, white 30%, rgba(0, 45, 114, 0.1) 100%);
    border-color: rgba(0, 45, 114, 0.3);
}

.scholarship-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 48px;
}

.scholarship-modern-card.scholarship-red:hover {
    border-color: var(--primary-red);
}

.scholarship-modern-card.scholarship-blue:hover {
    border-color: var(--primary-navy);
}

.scholarship-bg-decoration {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 128px;
    height: 128px;
    background: linear-gradient(to left bottom, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    transform: translate(64px, -64px);
    transition: transform 0.5s;
}

.scholarship-modern-card:hover .scholarship-bg-decoration {
    transform: translate(0px, 0px);
}

.scholarship-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.scholarship-modern-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: 0.3s;
}

.scholarship-red .scholarship-modern-icon {
    background: linear-gradient(135deg, var(--primary-red), #a00d25);
}

.scholarship-blue .scholarship-modern-icon {
    background: linear-gradient(135deg, var(--primary-navy), #003d8f);
}

.scholarship-modern-card .scholarship-modern-icon:hover {
    transform: scale(1.1);
}

.scholarship-modern-icon i {
    color: white;
    font-size: 24px;
}

.scholarship-modern-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0px;
    transition: color 0.3s;
}

.scholarship-red .scholarship-modern-title {
    color: var(--primary-red);
}

.scholarship-blue .scholarship-modern-title {
    color: var(--primary-navy);
}

.scholarship-modern-desc {
    font-size: 14px;
    color: rgb(74, 85, 104);
    line-height: 1.6;
    margin: 0px;
    position: relative;
    z-index: 2;
}

.scholarship-footer-text {
    font-size: 16px;
    color: rgb(74, 85, 104);
    margin-top: 32px;
}

.scholarship-highlight {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 18px;
}

.copyright {
    font-size: 14px;
}

.bg-primary {
    background-color: rgb(0, 45, 114) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-btn {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
    transition: 0.3s;
}

.footer-btn:hover {
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.recruiter-slider-wrapper {
    position: relative;
    padding: 0px 50px;
}

.prestigiousPartner .slick-slide {
    margin: 0px 10px;
}

@media (max-width: 767px) {
    .recruiter-slider-wrapper {
        padding: 0px;
    }
}

.recruiter-slider-container {
    overflow: hidden;
    width: 100%;
}

.recruiter-slider-track {
    display: flex;
    transition: transform 0.5s;
}

.recruiter-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.recruiter-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgb(226, 232, 240);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.recruiter-nav-btn:hover {
    background: rgb(247, 250, 252);
    color: var(--primary-navy);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.recruiter-prev {
    left: 0px;
}

.recruiter-next {
    right: 0px;
}

.recruiter-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.recruiter-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(203, 213, 224);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    transition: 0.3s;
    padding: 0px;
}

.recruiter-pagination-bullet:hover {
    background: rgb(160, 174, 192);
}

.recruiter-pagination-bullet.active {
    width: 32px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--primary-red), #ff1744);
}

.company-fallback {
    font-size: 12px;
    font-weight: 600;
    color: rgb(73, 80, 87);
    text-align: center;
    margin: 0px;
}

.registration-form {
    /* min-height: 100%; */
    max-width: 355px;
    right: 0;
    left: 34%;
    margin-bottom: 513px;
}

.hero-text {
    color: rgb(255, 255, 255);
}

.hero-subheading {
    font-size: 1.125rem;
    line-height: 1.3;
}

.hero-heading {
    font-size: 2rem;
    line-height: 1.15;
}

@media (min-width: 576px) {
    .hero-subheading {
        font-size: 1.25rem;
    }

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

@media (min-width: 768px) {
    .hero-subheading {
        font-size: 30px;
    }

    .hero-heading {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-heading {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-heading {
        font-size: 72px;
    }
}

@media (max-width: 767px) {
    .alumni-section {
        padding-bottom: 40px;
    }

    .admission-process-section .d-flex {
        flex-direction: column;
    }

    .admission-process-section .w-300 {
        width: calc(100% - 20px);
    }

    .btn-tour-play {
        width: 60px;
        height: 60px;
    }

    .btn-tour-play svg {
        width: 16px;
        height: 15px;
    }

    .stats-section {
        padding: 40px 0px;
    }

    .accreditation-section {
        padding-bottom: 1px !important;
    }

    .testimonials-section, .alumni-section {
        padding-bottom: 0px !important;
    }

    .footer-address p {
        max-width: 90%;
        margin: 0px auto;
    }

    .footer-address i {
        margin-right: 6px;
    }
}

@media (max-width: 450px) {
    .placement-card-content .d-flex {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .placement-photo {
        margin-right: 0px;
    }

    .placement-role {
        display: block;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .placement-card-content .d-flex .placement-company-logo {
        right: 0px;
        top: -11px;
        width: 80px;
        position: static;
        z-index: 1;
    }

    .placement-card-content .d-flex .placement-company-logo img {
        margin: 10px auto;
        width: 100%;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.6s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0px);
}

.scholarship-content ul, .financial-content ul {
    padding-left: 20px;
}

.financial-content h4 {
    font-size: 16px;
}

.gap-3 {
    gap: 12px !important;
}

.scholarship-premium-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgb(227, 30, 36), rgb(255, 95, 109));
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(227, 30, 36, 0.35) 0px 10px 25px;
    transition: 0.35s;
}

.btn-content {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-icon {
    font-size: 18px;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.scholarship-premium-btn::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.scholarship-premium-btn:hover::before {
    left: 100%;
}

.scholarship-premium-btn:hover {
    transform: translateY(-4px);
    box-shadow: rgba(227, 30, 36, 0.45) 0px 16px 35px;
}

.scholarship-premium-btn:hover .arrow {
    transform: translateX(6px);
}

@media (min-width: 992px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-heading {
        font-size: 52px;
    }
}

.accreditation-logo {
    width: 170px;
    height: 80px;
}

.footer-title {
    font-size: 20px;
}
