/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    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);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Notification Banner */
.notification-banner {
    background: linear-gradient(90deg, #C8102E 0%, #002D72 100%);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.badge-secondary {
    color: #000;
    background-color: var(--secondary);
    font-weight: 400;
}

.notification-banner.hidden {
    display: none;
}

.notification-text {
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
}

.notification-text:hover {
    text-decoration: none;
    cursor: auto;
}

.notification-dots {
    gap: 8px;
}

.notification-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.notification-dots .dot.active {
    width: 16px;
    background: white;
}

.btn-close-notification {
    background: none;
    border: none;
    color: white;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.btn-close-notification:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notification-text:hover {
    color: #fff;
    // text-decoration: underline;
}

/* Header */
#mainHeader {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    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 0;
    transition: all 0.3s ease;
}

.header-logo {
    height: 48px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

@media (min-width: 768px) {
    .header-logo {
        height: 56px;
    }

    /* 
    #mainHeader.scrolled .header-logo {
        height: 50px !important;
    } */
}

.navbar-nav-custom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.nav-link-custom {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-link-custom:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.btn-apply {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-apply:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-menu {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 8px;
    color: #4a5568;
    transition: all 0.3s ease;
}

.btn-menu:hover {
    background: #edf2f7;
}

/* Mobile Menu */
.mobile-menu {
    background: white;
    border-top: 1px solid #e2e8f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
    padding: 16px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    color: #4a5568;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f7fafc;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    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: #e2e8f0;
    margin-bottom: 32px;
}

.hero-indicators {
    display: flex;
    gap: 8px;
}

.hero-indicators .indicator {
    height: 4px;
    width: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicators .indicator.active {
    width: 32px;
    background: var(--primary-red);
}

/* Registration Form */


.form-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}



.consent-label {
    font-size: 12px;
    color: white;
    line-height: 1.4;
}

.btn-submit {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.accreditation-section {
    background-color: #C8102E;
}

.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: all 0.3s ease;
    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: #fff;
    border-radius: 0.75rem;
    width: 120px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.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 {
        -ms-flex: 0 0 20%;
        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: all 0.35s ease;
    cursor: pointer;
    height: 100%;
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.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: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.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 #fff;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        background-repeat: no-repeat;
        background-position: 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 {
        right: 5px !important;
        // background-image: url(../images/right-white.svg) !important;
        background-image: url(../images/icons/arrow_right_white.svg) !important;

        background-repeat: no-repeat;
        background-position: center;
        background-size: 20px;
         border: 1px solid #fff;

         
    }

    .classRoomTOCareesSleder .slick-prev,
    .classRoomTOCareesSleder .slick-prev:focus
    .classRoomTOCareesSleder .slick-prev:hover,
    .accreditation-section .slick-prev,
    .accreditation-section .slick-prev:hover {
        left: 5px !important;
        // background-image: url(../images/left-white.svg) !important;
        background-image: url(../images/icons/arrow_left_white.svg) !important;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 20px;
         border: 1px solid #fff;
    }
.classRoomTOCareesSleder .slick-prev,.classRoomTOCareesSleder .slick-next,.university-slider .slick-prev,.university-slider .slick-next
{
    background-image: url(../images/icons/arrow_left.svg) !important;
    background: transparent no-repeat; 
    border: 2px solid var(--primary-red) !important;
    background-position: center center;
    background-size: 16px;
    &: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(in oklab, white 20%, transparent);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-repeat: no-repeat;
    background-position: 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;
    background-size: 14px;
}

.slick-prev,
.slick-prev:hover {
    background-image: url(../images/left-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    z-index: 99;
}

/* Stats Section */
.stats-section {
    padding: 64px 0;
    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 ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
}

.stat-icon {
    background: #f7fafc;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon img {
    width: 38px;
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00d25 100%);

    /* transform: rotate(360deg); */
}

.stat-card:hover .stat-icon img {
    filter: brightness(0) invert(1);
    -webkit-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 ease;
}

.stat-card:hover .stat-value {
    color: var(--primary-red);
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray-600);
    margin: 0;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--primary-navy);
}

/* Why MRU Section */
.why-mru-section {
    padding: 40px 0;
    background: #f7fafc;
}

.why-card {
    display: flex;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    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: all 0.5s ease;
}

.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);
    -webkit-filter: brightness(0) invert(1);
}

.why-content h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.why-card:hover .why-content h4 {
    color: var(--primary-red);
}

.why-content p {
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.why-card:hover .why-content p {
    color: #4a5568;
}

.why-image {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.why-image img {
    object-fit: cover;
    width: 100%;
}

.why-image:hover {
    transform: scale(1.02);

}


.why-image:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    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 ease;

}

.why-image:hover img {
    transform: scale(1.1);
}

@media(min-width: 992px) {
    .why-mru-content {
        padding-right: 50px;
    }
}

/* video */

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: white;
}

.program-filters {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.program-filters::-webkit-scrollbar {
    height: 6px;
}

.program-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.program-filters::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.program-filters::-webkit-scrollbar-thumb:hover {
    background: #a00d25;
}

.btn-filter {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    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: all 0.3s ease;
}

.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: 0;
    }
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.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: 0;
}

.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: #4a5568;
    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: all 0.3s ease;
}

.btn-program-details:hover {
    background: var(--primary-red);
    color: white;
}

.program-item {
    transition: opacity 0.3s ease;
}

.program-item.hidden {
    display: none;
}

/* Program Carousel */
.program-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

@media (max-width: 576px) {
    .program-carousel-wrapper {
        padding: 0;
    }
}

.program-carousel {
    overflow: hidden;
    width: 100%;
}

.program-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.program-carousel-page {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    gap: 16px;
    padding: 4px;
}

.program-carousel-item {
    flex: 1;
    min-width: 0;
}

@media (max-width: 575px) {
    .program-carousel-page {
        gap: 0;
    }
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
    background: #f7fafc;
    color: var(--primary-navy);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-bullet:hover {
    background: #a0aec0;
}

.pagination-bullet.active {
    width: 32px;
    border-radius: 4px;
    background: var(--primary-red);
}

/* Placements Section */
.placements-section {
    padding: 80px 0;
    background: #f7fafc;
    @media(max-width:479px){
        padding-top: 0px !important;
    }
}

.slider-container {
    overflow: hidden;
    padding: 20px 0;
}

.recruiter-logos {
    display: flex;
    gap: 40px;
    animation: slide 20s linear infinite;
}

.recruiter-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.recruiter-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Scholarships Section */
.scholarships-section {
    padding: 80px 0;
    background: white;
}

.scholarship-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.scholarship-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.scholarship-icon {
    background: rgba(200, 16, 46, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.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: 0;
}

/* Student Life Section */
.student-life-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7fafc 0%, white 100%);
}

.section-description {
    font-size: 18px;
    color: var(--color-gray-600);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.placement-card-content {
    position: relative;
    overflow: hidden;
}

.placement-card-content .circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    /* 32 * 0.25rem = 8rem */
    height: 8rem;
    background: linear-gradient(to bottom right, rgba(200, 16, 46, 0.1), transparent);
    border-radius: 50%;
    transform: translate(4rem, -4rem);
    transition: transform 0.5s ease;
}

.placement-card-content:hover .circle {
    transform: translate(0, 0);
}

.placement-card-content .content {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.2);
}

/* Flip Cards */
.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;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.flip-card-front {
    position: relative;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    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: 0;
    margin: 0;
}

.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: 0;
}

.check-icon {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: bold;
}

/* Mobile responsiveness for flip cards */
@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 */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: #f7fafc;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    color: #4a5568;
    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 0 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 48px 0 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: 0;
}

.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: all 0.3s ease;
}

.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 ease;
}

.contact-link:hover .contact-icon {
    background: #a00d25;
}

.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: 0;
}

.btn-footer-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Modal Customization */
.modal-header {
    background: var(--primary-navy);
    color: white;
    border-bottom: none;
}

.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: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        min-height: 600px;
        padding: 48px 0;
    }

    .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;
    }
}

/* Utilities */
.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 */
.virtual-tour-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, #f7fafc 100%);
}

.virtual-tour-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    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 ease;
}

.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: 0;
    font-size: 14px;
}

.virtual-tour-image {
    position: relative;
    overflow: hidden;
}

.poster-image {
    width: 100% !important;
    max-width: auto !important;
    max-height: 600px;
    object-fit: cover;
}

.tour-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.55);
    transition: all 0.4s ease;
}


.btn-tour-play {
    background: var(--primary-red);
    border: none;
    color: #fff;
    width: 80px;
    height: 80px;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-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: #fff;
    font-size: 30px;
    margin-bottom: 0;
}

/* Global Partners Section */
.global-partners-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7fafc 0%, white 100%);
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.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: 0;
}

.partners-logos-section {
    margin-top: 48px;
}

.partner-logo-card {
    background: white;
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.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 */
.alumni-section {
    padding: 40px 0;
    background: white;
}

.alumni-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.alumni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.alumni-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 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: #a0aec0;
    font-size: 13px;
    margin-bottom: 12px;
}

.alumni-quote {
    color: #4a5568;
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Admission Process Section */
.admission-process-section {
    padding: 80px 0;
    background: #f7fafc;
}

.process-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.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: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.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: all 0.3s ease;
}

.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: 0;
}

/* Global Collaborations Accordion Section */
.global-accordion-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.global-accordion-card:hover {
    border-color: rgba(200, 16, 46, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.global-accordion-btn {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: white;
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.global-accordion-btn:hover {
    background: linear-gradient(to right, #f7fafc, 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: 0 12px 0 0;
    transition: color 0.3s ease;
}

.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 ease, color 0.3s ease;
}

.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 #e2e8f0;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.course-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.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: #dbeafe;
    color: #1e40af;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.badge-type {
    background: #dcfce7;
    color: #15803d;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.course-location {
    font-size: 13px;
    color: #64748b;
    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: 0;
}

/* Career Success Stories (Placements) Section */
.placements-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, #f7fafc 100%);
}

.placement-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    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 #e2e8f0;
    margin-right: 16px;
    transition: all 0.3s ease;
}

.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: 4px 10px;
    padding-top: 5px;
    font-weight: 400;
    color: #000;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
@media(max-width:767px){
    flex-direction: column;
    .badge {
        width: fit-content;
    }
}
}

.badge-outline {
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    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: #f7fafc;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 6px;
}

.company-name-small {
    font-size: 12px;
    color: #4a5568;
    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: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recruiter-logo-item:hover {
    background: #f7fafc;
    transform: translateY(-5px);
}

.recruiter-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.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: 0 auto 24px;
}

.btn-cta {
    background: var(--primary-red);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Alumni Success Stories Section - New Design */
.alumni-section {
    padding: 40px 0;
    background: white;
}

.alumni-success-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    height: 100%;
    position: relative;
}

.alumni-success-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 9px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(200, 16, 46, 0.3);
}

.alumni-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f7fafc;
    padding: 16px;
    position: relative;
}

.alumni-success-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.7s ease;
}

.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 ease;
}

.alumni-success-card:hover .alumni-success-name {
    color: var(--primary-red);
}

.alumni-year-badge {
    background: #f7fafc;
    color: var(--color-gray-600);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.alumni-success-card:hover .alumni-year-badge {
    background: var(--primary-red);
    color: white;
}

.alumni-position-box {
    background: #f7fafc;
    border-radius: 10px;
    padding: 16px;
    border-left: 3px solid var(--primary-red);
    transition: all 0.3s ease;
}

.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: #4a5568;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* Alumni Carousel Controls */
.alumni-carousel-control-prev,
.alumni-carousel-control-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.alumni-carousel-control-prev {
    left: -24px;
}

.alumni-carousel-control-next {
    right: -24px;
}

.alumni-carousel-control-prev:hover,
.alumni-carousel-control-next:hover {
    background: #f7fafc;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.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: #cbd5e0;
    transition: all 0.3s ease;
}

.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 - Enhanced */
.admission-process-section {
    padding: 80px 0;
    background: white;
}

.process-step-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 32px;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    overflow: visible;
}

.process-step-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    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: 0 4px 12px rgba(200, 16, 46, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.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: all 0.3s ease;
}

.process-step-card:hover .process-step-icon {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(0, 45, 114, 0.1));
    /* // transform: rotate(360deg); */
}

.process-step-icon i {
    font-size: 32px;
    color: var(--primary-navy);
    transition: color 0.3s ease;
}

.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 ease;
}

.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: 0;
}

.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: all 0.3s ease;
        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 - Modern Design */
.testimonials-section {
    padding: 80px 0;
    background: #f7fafc;
    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: 0;
    right: 0;
    background: linear-gradient(to bottom left, rgba(200, 16, 46, 0.05), transparent);
    filter: blur(80px);
}

.testimonial-bg-blue {
    bottom: 0;
    left: 0;
    background: linear-gradient(to top right, rgba(0, 45, 114, 0.05), transparent);
    filter: blur(80px);
}

.testimonial-modern-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.testimonial-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-navy));
    padding: 24px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
}

.testimonial-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(80px, -80px);
}

.testimonial-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    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: #fbbf24;
    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: 0 8px 24px rgba(0, 0, 0, 0.15);
    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: 0 auto 16px;
}

.testimonial-quote {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-modern-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-modern-card:hover::after {
    opacity: 1;
}

.testimonial-carousel-control {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.testimonial-carousel-control:hover {
    background: #f7fafc;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.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: none;
}

.testimonial-carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-carousel-indicators li.active {
    width: 32px;
    border-radius: 30px;
    background: var(--primary-red);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.testimonial-carousel-indicators li:hover {
    background: var(--primary-red);
}

/* Scholarships Section - Modern Design */
.scholarships-section {
    padding: 80px 0;
    background: #f7fafc;
}

.scholarship-modern-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.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: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.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: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    transform: translate(64px, -64px);
    transition: transform 0.5s ease;
}

.scholarship-modern-card:hover .scholarship-bg-decoration {
    transform: translate(0, 0);
}

.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: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.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:hover .scholarship-modern-icon {
    transform: rotate(-12deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
    */
    .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: 0;
    transition: color 0.3s ease;
}

.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: #4a5568;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.scholarship-footer-text {
    font-size: 16px;
    color: #4a5568;
    margin-top: 32px;
}

.scholarship-highlight {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 18px;
}

.copyright {
    font-size: 14px;
}

.bg-primary {
    background-color: #002D72 !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: all 0.3s ease;
}

.footer-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Recruiter Slider */
.recruiter-slider-wrapper {
    position: relative;
    padding: 0 50px;
}


.prestigiousPartner .slick-slide {
    margin: 0 10px;
}

@media (max-width: 767px) {
    .recruiter-slider-wrapper {
        padding: 0;
    }
}

.recruiter-slider-container {
    overflow: hidden;
    width: 100%;
}

.recruiter-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.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 #e2e8f0;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recruiter-nav-btn:hover {
    background: #f7fafc;
    color: var(--primary-navy);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.recruiter-prev {
    left: 0;
}

.recruiter-next {
    right: 0;
}

.recruiter-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.recruiter-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.recruiter-pagination-bullet:hover {
    background: #a0aec0;
}

.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: #495057;
    text-align: center;
    margin: 0;
}

.registration-form {
    min-height: 520px;
}

.hero-text {
    color: #fff;
}

.hero-subheading {
    font-size: 1.125rem;
    /* ~text-lg */
    line-height: 1.3;
}

.hero-heading {
    font-size: 2rem !important;
    /* ~text-3xl */
    line-height: 1.15;
}

@media (min-width: 576px) {
    .hero-subheading {
        font-size: 1.25rem;
        /* sm:text-xl */
    }

    .hero-heading {
        font-size: 2.5rem;
        /* sm:text-4xl */
    }
}

@media (min-width: 768px) {
    .hero-subheading {
        font-size: 30px;
        /* md:text-2xl */
    }

    .hero-heading {
        font-size: 3rem;
        /* md:text-5xl */
    }
}

@media (min-width: 992px) {
    .hero-heading {
        font-size: 3.5rem;
        /* lg:text-6xl */
    }
}

@media (min-width: 1200px) {
    .hero-heading {
        font-size: 72px;
        /* xl:text-7xl */
    }
}

@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 0;
    }

    .accreditation-section {
        padding-bottom: 1px !important;
    }

    .testimonials-section,
    .alumni-section {
        padding-bottom: 0px !important;
    }
        .footer-address p
        {
            max-width: 90%;
            margin: 0 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: 0;
    }
    .placement-role
    {
        display: block;      /* or inline-block */
    max-width: 100%;  
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .placement-card-content .d-flex .placement-company-logo {
        position: absolute;
        right: 0;
        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: all 0.6s ease-out;
    -webkit-transform: translateY(35px);
    -moz-transform: translateY(35px);
    -ms-transform: translateY(35px);
    -o-transform: translateY(35px);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

.scholarship-content ul,
.financial-content ul{
    padding-left: 20px;
}


.financial-content h4{
    font-size: 16px;
}

.gap-3{
    gap: 12px !important;
}