/* Midnight Professional - Premium Index Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary-navy: #0a192f;
    --navy-light: #112240;
    --primary-purple: #800080;
    --primary-purple-dark: #5a005a;
    --secondary-gold: #c5a059;
    --accent-platinum: #e5e9f2;
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --card-bg: #ffffff;
    --bg-light: #f8f9fa;
    --transition-speed: 0.3s;
}

.text-gold {
    color: var(--secondary-gold) !important;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

/* ================================
   Hero Section
   ================================ */
/* ================================
   Hero Section Slider (Carousel)
   ================================ */
.index-hero-new {
    background: #ffffff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

#heroCarousel {
    position: relative;
    width: 100%;
}

#heroCarousel .carousel-item {
    min-height: 520px;
    display: flex;
    align-items: center;
    transition: opacity 0.7s ease-in-out;
}

#heroCarousel .carousel-item.active {
    display: flex;
}

.hero-content-new {
    padding-bottom: 50px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.12;
    margin-bottom: 22px;
    font-family: 'Outfit', sans-serif !important;
}

.badge-no1 {
    background-color: var(--primary-purple);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    vertical-align: middle;
    font-size: 2.1rem;
    line-height: 1;
    margin-left: 6px;
    margin-right: 6px;
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(128, 0, 128, 0.25);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.55;
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.hero-buttons .btn {
    width: 220px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    line-height: normal !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.btn-enroll {
    border: 2px solid var(--primary-purple) !important;
    color: var(--primary-purple) !important;
    background: #ffffff !important;
}

.btn-enroll:hover {
    background: var(--primary-purple) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 128, 0.25);
}

.btn-advisor {
    background-color: var(--primary-purple) !important;
    color: #ffffff !important;
    border: 2px solid var(--primary-purple) !important;
}

.btn-advisor:hover {
    background-color: var(--primary-purple-dark) !important;
    border-color: var(--primary-purple-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 128, 0.35);
}

.hero-image-wrap {
    position: relative;
    text-align: right;
    z-index: 5;
    margin-right: -40px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-image-wrap img {
    max-height: 530px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(61, 10, 61, 0.12));
    transition: transform 0.6s ease;
}

.carousel-item.active .hero-image-wrap img {
    animation: heroImgFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroImgFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.carousel-item.active .hero-content-new {
    animation: heroContentFadeIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Hero Carousel Indicators
   ================================ */
.hero-indicators {
    bottom: 12px;
    margin-bottom: 0;
    z-index: 15;
    gap: 8px;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(128, 0, 128, 0.35);
    border: none;
    transition: all 0.35s ease;
    opacity: 0.8;
}

.hero-indicators [data-bs-target].active {
    width: 34px;
    border-radius: 12px;
    background-color: var(--primary-purple);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(128, 0, 128, 0.4);
}

/* ================================
   Hero Carousel Controls (Prev/Next)
   ================================ */
.hero-ctrl-btn {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 20;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.index-hero-new:hover .hero-ctrl-btn {
    opacity: 1;
}

.hero-ctrl-prev {
    left: 20px;
}

.hero-ctrl-next {
    right: 20px;
}

.hero-ctrl-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: var(--primary-purple);
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: 0 4px 18px rgba(61, 10, 61, 0.18);
    border: 1px solid #ebd9f0;
    transition: all 0.25s ease;
}

.hero-ctrl-btn:hover i {
    background: var(--primary-purple);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(128, 0, 128, 0.35);
}

/* Bottom Feature Ribbon */
.hero-bottom-ribbon {
    background-color: var(--primary-purple);
    color: #fff;
    padding: 12px 0;
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-bottom-ribbon p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff !important;
    opacity: 1 !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .index-hero-new {
        padding-top: 30px;
        text-align: center;
        min-height: auto;
    }

    #heroCarousel .carousel-item {
        min-height: auto;
        padding-bottom: 20px;
    }

    .hero-content-new {
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .badge-no1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-image-wrap {
        text-align: center;
        margin-top: 20px;
        margin-right: 0;
        justify-content: center;
    }

    .hero-image-wrap img {
        max-height: 340px;
    }

    .hero-ctrl-btn {
        display: none !important;
    }

    .hero-indicators {
        bottom: 8px;
    }
}

/* ================================
   Welcome & Inquiry Section (Redesigned)
   ================================ */
.welcome-inquiry-section {
    padding: 100px 0;
    background: #ffffff;
}

.welcome-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 35px;
    font-family: 'Outfit', sans-serif !important;
}

.welcome-p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

.inquiry-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.inquiry-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Outfit', sans-serif !important;
}

.inquiry-card .form-control,
.inquiry-card .form-select {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.inquiry-card .form-control:focus,
.inquiry-card .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 128, 0.25);
    outline: none;
}

/* Fix intl-tel-input taking up full width */
.iti {
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

/* Remove border from the inner input so the .iti container is the single border */
.iti .form-control,
.iti input[type="tel"] {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    outline: none;
}

/* When the phone input is focused, highlight the outer .iti container */
.iti:focus-within {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 128, 0.25);
}

.bg-light-gray {
    background-color: #f8f8f8;
    border: 1px solid #ddd !important;
    border-right: none !important;
}

.policy-text {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.policy-text a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.btn-submit-inquiry {
    background-color: var(--primary-purple) !important;
    color: #ffffff !important;
    padding: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    letter-spacing: 1px;
    border: none !important;
    transition: all 0.3s ease;
}

.btn-submit-inquiry:hover {
    background-color: var(--primary-purple-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.3);
}

.trust-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 40px;
    font-family: 'Outfit', sans-serif !important;
}

/* Trust Features Grid Styles */
.trust-features-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trust-icon-box {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #800080;
    /* Deep purple color for the icon */
    font-size: 2rem;
}

.trust-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif !important;
    line-height: 1.3;
}

/* Accreditations Section Redesigned */
.accreditations-section-new {
    padding: 100px 0;
    background-color: transparent;
    color: #1a1a1a;
}

.accred-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif !important;
}

.accred-subtitle {
    font-size: 1.15rem;
    color: #444;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif !important;
}

.accred-img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.accred-img:hover {
    transform: scale(1.08);
}

/* Accreditation Footer Links & Text */
.view-recognition-link {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.view-recognition-link:hover {
    transform: scale(1.05);
}

.accred-footer-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
}

.video-wrapper {
  width: 280px;
  height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 8px solid #fff;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ================================
   Purple Title Bar (Shared for sections)
   ================================ */
.purple-title-bar {
    background: var(--primary-purple);
    padding: 15px 0;
    width: 100%;
}

.purple-title-bar h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* ================================
   Accreditations Section
   ================================ */
.logo-white-section {
    background: #fff;
    padding: 60px 0;
}

.logo-scroller {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.logo-scroller img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition-speed);
}

/* ================================
   Courses Scroller Section (Section 4)
   ================================ */
.courses-scroller-section {
    padding: 60px 0 0;
    /* Reduced from 100px */
    background: #ffffff;
    overflow: hidden;
}

.section-main-title {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 2.8rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
    /* Reduced from 40px */
    letter-spacing: -1px;
}

.courses-scroller-wrapper {
    position: relative;
    padding: 0;
}

.courses-scroller {
    display: flex;
    gap: 20px;
    /* Reduced from 30px */
    overflow-x: auto;
    padding: 10px 0 30px;
    /* Reduced padding top/bottom */
    scrollbar-width: none;
    /* Firefox */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.courses-scroller::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.course-card-modern {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(128, 0, 128, 0.15);
}

.course-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.course-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card-modern:hover .course-img-box img {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(128, 0, 128, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card-modern:hover .course-overlay {
    opacity: 1;
}

.course-overlay span {
    color: #fff;
    background: var(--secondary-gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.course-card-modern:hover .course-overlay span {
    transform: translateY(0);
}

.course-info {
    padding: 25px;
    text-align: left;
}

.course-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.course-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.scroller-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.2);
}

.scroll-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.scroller-achievements-bar {
    background: var(--primary-purple);
    padding: 25px 0;
    /* Reduced from 30px */
    margin-top: 40px;
    /* Reduced from 60px */
}

.scroller-achievements-bar h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
}

/* ================================
   Responsive Adjustments for Scroller
   ================================ */
@media (max-width: 768px) {
    .section-main-title {
        font-size: 2rem;
    }

    .course-card-modern {
        flex: 0 0 280px;
    }

    .courses-scroller-wrapper {
        padding: 0 15px;
    }
}


/* ================================
   Mission Modern Section
   ================================ */
.mission-modern-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.mission-accent-box {
    padding-right: 40px;
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.mission-accent-box h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.mission-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-gold);
    border-radius: 2px;
}

.mission-content-box p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ================================
   Founder Premium Section
   ================================ */
.founder-premium-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.founder-card-wrap {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.founder-media-box {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: var(--primary-purple);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.founder-video-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.founder-video-badge:hover {
    transform: scale(1.05);
    background: #fff;
}

.founder-video-badge i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.founder-video-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-purple);
}

.founder-detail-box {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-label {
    display: block;
    color: var(--secondary-gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.founder-detail-box h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.founder-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}

.founder-bio p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.signature-wrap {
    display: flex;
    flex-direction: column;
}

.signature-img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 5px;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #333;
}

.btn-founder-connect {
    background: var(--primary-purple);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-founder-connect:hover {
    background: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

@media (max-width: 991px) {
    .founder-detail-box {
        padding: 40px;
    }

    .founder-detail-box h2 {
        font-size: 2.5rem;
    }

    .founder-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .founder-media-box {
        min-height: 400px;
    }
}

/* ================================
   Stats Strip (Section 6)
   ================================ */
.stats-strip-dark {
    background: var(--primary-purple);
    padding: 60px 0;
    color: #fff;
}

.stat-box {
    text-align: center;
}

.stat-box .count {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .title {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ================================
   Gallery & Grid (Section 7)
   ================================ */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.program-card-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-speed);
}

.program-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-img-wrap {
    height: 200px;
}

.program-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-info {
    padding: 20px;
    text-align: center;
}

.program-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

/* ================================
   Faculty & Testimonials (Section 8)
   ================================ */
.faculty-testimonials-dark {
    background: var(--primary-purple);
    padding: 100px 0;
    color: #fff;
}

.faculty-grid-circle {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
}

.fac-circle-card {
    text-align: center;
    width: 250px;
}

.fac-circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.testi-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-video-card {
    background: rgba(255, 255, 255, 0.05);
    aspect-ratio: 16/9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.testi-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.testi-play {
    position: absolute;
    font-size: 3rem;
    color: #fff;
    z-index: 2;
}

/* ================================
   Events Grid
   ================================ */
.events-section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.events-section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.events-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding-bottom: 60px;
}

.event-card-premium {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.event-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    position: relative;
    height: 200px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.card-date-badge .month {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary-gold);
    text-transform: uppercase;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-type {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-navy);
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
}

.card-meta {
    margin-bottom: 20px;
}

.meta-row {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-row i {
    color: var(--primary-purple);
}

.card-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-card-register {
    background: var(--primary-purple);
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ================================
   Faculty Section (Obsolete - using Circle Faculty)
   ================================ */

/* ================================
   Reviews Strip
   ================================ */
.review-strip {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 991px) {
    .hero-image-container {
        display: none;
    }

    .index-hero {
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .testi-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ribbon-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 575px) {
    .testi-video-grid {
        grid-template-columns: 1fr;
    }

    .index-hero h1 {
        font-size: 2.2rem;
    }

    .ribbon-card {
        flex: 0 0 80%;
    }
}

/* Specializations Section Styles */
.specializations-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.spec-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif !important;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-static-item {
    padding: 40px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spec-grid-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif !important;
}

.spec-grid-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.spec-card {
    position: relative;
    border-radius: 20px;
    cursor: pointer;
    background: transparent;
    height: 100%;
    min-height: 380px;
    perspective: 1200px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spec-card:hover {
    transform: translateY(-6px);
}

.spec-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
}

/* Flip on Hover & Active */
.spec-card:hover .spec-card-inner,
.spec-card.active .spec-card-inner,
.spec-card:focus-within .spec-card-inner {
    transform: rotateY(180deg);
}

.spec-card-front,
.spec-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.spec-card-front {
    background: #111;
    transform: rotateY(0deg);
}

.spec-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.spec-card:hover .spec-card-front img {
    transform: scale(1.04);
}

.spec-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 20px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.spec-label h4 {
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    color: #ffffff;
    letter-spacing: 0.01em;
}

/* Card Back Design */
.spec-card-back {
    background: #393539;
    background: linear-gradient(150deg, #38323a 0%, #221e24 100%);
    color: #ffffff;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transform: rotateY(180deg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.spec-details h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif !important;
    line-height: 1.35;
    text-align: center;
}

.spec-details p {
    font-size: 0.88rem;
    color: #d1cbd4;
    margin-bottom: 16px;
    line-height: 1.45;
    text-align: center;
}

.spec-details ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.spec-details ul li {
    font-size: 0.88rem;
    color: #e5e0e7;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.spec-details ul li:last-child {
    margin-bottom: 0;
}

.spec-details ul li strong {
    color: #ffffff;
    font-weight: 600;
}

.spec-details ul li::before {
    content: "•";
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1;
}

.spec-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    gap: 10px;
}

.btn-inquire {
    background: #ffffff !important;
    color: #201220 !important;
    padding: 9px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    width: auto !important;
}

.btn-inquire:hover {
    background: #ffffff !important;
    color: var(--primary-purple) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
}

.spec-link {
    display: block;
    color: #ffffff !important;
    font-size: 0.82rem;
    text-decoration: underline !important;
    opacity: 0.9;
    text-align: center;
    transition: opacity 0.2s, color 0.2s;
    line-height: 1.3;
}

.spec-link:hover {
    opacity: 1;
    color: #f3d4fa !important;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .spec-static-item {
        padding: 20px 0;
    }
}

/* Why ILACAD Institute Section Styles */
.why-ilacad-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif !important;
    margin-bottom: 20px;
    text-align: center;
}

.why-main-desc {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.why-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(61, 10, 61, 0.08);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(61, 10, 61, 0.16);
}

.why-card-img {
    height: 240px;
    overflow: hidden;
    background: #f5edf7;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-card:hover .why-card-img img {
    transform: scale(1.06);
}

.why-card-body {
    padding: 28px 24px 32px;
    background-color: var(--primary-purple);
    color: #fff;
    flex-grow: 1;
}

.why-card-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif !important;
    line-height: 1.3;
}

.why-card-body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
}

.btn-admission-cta {
    background-color: var(--primary-purple) !important;
    color: #fff !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.btn-admission-cta:hover {
    background-color: var(--primary-purple-dark) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(128, 0, 128, 0.2);
}

/* Mobile Adjustments for Why Section */
@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .why-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Training Approach Section Styles */
.training-approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.training-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif !important;
    margin-bottom: 20px;
    text-align: center;
}

.training-desc {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.training-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.training-bullets li {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.training-bullets li::before {
    content: "•";
    color: #800080;
    /* purple */
    font-size: 1.5rem;
}

.btn-advisor {
    background-color: #800080 !important;
    color: #ffffff !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-advisor:hover {
    background-color: #4b0082 !important;
    transform: scale(1.05);
}

.training-image-container {
    position: relative;
    padding: 10px;
}

.training-location-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 10px 40px;
    border: 4px solid #800080;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 2;
}

.training-location-label span {
    color: #800080;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: 2px;
    line-height: 1;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Expert Faculty Section Styles */
.expert-faculty-section {
    padding: 100px 0 30px;
    /* Reduced bottom padding */
    background-color: #fcfcfc;
}

.faculty-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif !important;
}

.faculty-main-desc {
    max-width: 900px;
    margin: 15px auto 0;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif !important;
}

.faculty-grid-premium {
    max-width: 1200px;
    margin: 0 auto;
}

.fac-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.fac-card:hover {
    transform: translateY(-10px);
}

.fac-img-box {
    height: 300px;
    overflow: hidden;
}

.fac-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Better for portraits */
}

.fac-info {
    padding: 25px 15px;
}

.fac-info h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif !important;
}

.fac-info p {
    font-size: 0.95rem;
    color: #800080;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Continuous Faculty Marquee */
.faculty-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    /* Reduced padding from 30px to 20px */
    position: relative;
}

.faculty-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 80s linear infinite;
    /* Slowed down for better readability */
}

.faculty-marquee-track:hover {
    animation-play-state: paused;
}

.fac-marquee-item {
    flex: 0 0 300px;
    padding: 0 15px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Half length because items are duplicated */
    }
}

/* Ensure images are consistent */
.fac-marquee-item .fac-img-box {
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.fac-marquee-item .fac-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.fac-marquee-item .fac-card:hover .fac-img-box img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .fac-marquee-item {
        flex: 0 0 250px;
    }

    .faculty-marquee-track {
        animation-duration: 65s;
    }
}

/* Faculty Marquee Card Styling (Square) */
.fac-marquee-item .fac-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.fac-marquee-item .fac-img-box {
    height: 300px;
    overflow: hidden;
}

.fac-marquee-item .fac-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.fac-marquee-item .fac-card:hover .fac-img-box img {
    transform: scale(1.05);
}

.fac-marquee-item .fac-info {
    padding: 20px;
    text-align: center;
}

.fac-marquee-item .fac-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.fac-marquee-item .fac-info p {
    font-size: 0.9rem;
    color: var(--primary-purple);
    font-weight: 500;
    margin-bottom: 0;
}

/* Alumni Success Stories Section */
/* New Premium Alumni UI Section */
.alumni-success-section {
    padding: 60px 0 100px;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    position: relative;
    overflow: hidden;
}

.alumni-title {
    font-size: 3.8rem;
    font-weight: 850;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif !important;
}

.alumni-subtitle {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 450;
    font-family: 'Outfit', sans-serif !important;
}

/* Alumni Marquee Scroller */
.alumni-marquee-container-premium {
    background: radial-gradient(circle at top right, #9d2ba5, #5e005e);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 20px 50px rgba(0, 0, 0, 0.2);
}

.alumni-marquee-track {
    display: flex;
    width: max-content;
    animation: alumni-marquee-scroll 50s linear infinite;
}

.alumni-marquee-track:hover {
    animation-play-state: paused;
}

.alumni-marquee-item {
    flex: 0 0 380px;
    padding: 0 20px;
}

.alumni-video-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

@keyframes alumni-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.alumni-video-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.alumni-video-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.5);
}

.premium-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 5px;
}

.premium-logo-glow {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.premium-video-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
    margin: 0;
    letter-spacing: 0.2px;
}

.premium-video-thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.premium-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.alumni-video-card-premium:hover .premium-video-thumb img {
    transform: scale(1.1);
}

.premium-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    z-index: 5;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.alumni-video-card-premium:hover .premium-play-btn {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
}

.premium-badge-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.premium-name-tag {
    background: #fff;
    color: #000;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: -15px;
    /* Overlap effect */
    position: relative;
    z-index: 2;
}

.premium-specialty-tag {
    background: #800080;
    color: #fff;
    padding: 20px 20px 12px;
    /* Extra top padding for overlap */
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.alumni-view-all-btn {
    display: inline-block;
    padding: 17px 55px;
    background: #fff;
    color: #800080;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif !important;
}

.alumni-view-all-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .alumni-title {
        font-size: 2.5rem;
    }

    .alumni-marquee-container-premium {
        padding: 40px 0;
    }

    .premium-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .alumni-view-all-btn {
        padding: 12px 35px;
        font-size: 1rem;
        margin-top: 40px;
    }
}

/* ================================
   FAQ Section Styles 
   ================================ */
.faq-section {
    padding: 100px 0 20px;
    background-color: #ffffff;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-purple) !important;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif !important;
    text-align: center;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #8c1d2f;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 25px 35px;
    text-align: left;
    cursor: pointer;
    outline: none !important;
}

.faq-question h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding-right: 25px;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif !important;
    transition: color 0.3s ease;
}


.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    color: #8c1d2f;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: all 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    margin-top: -1.5px;
}

/* Vertical line */
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    margin-left: -1.5px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}


.faq-item.active .faq-question h4 {
    color: #8c1d2f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    padding: 0 35px;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-item.active h4 {
    color: #8c1d2f;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-section {
        padding: 60px 0;
    }
}

/* ================================
   Final CTA Section 
   ================================ */
.final-cta-section {
    padding: 0 0 40px;
    background-color: #ffffff;
}

.cta-banner-box {
    background: #800080;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(128, 0, 128, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif !important;
    color: #ffffff !important;
}

.cta-links {
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-link {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.cta-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.cta-separator {
    opacity: 0.7;
    font-weight: 300;
}

@media (max-width: 768px) {
    .cta-banner-box {
        padding: 40px 20px;
        border-radius: 25px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-links {
        font-size: 1.2rem;
        gap: 10px;
    }
}

/* ================================
   Accreditations Marquee 
   ================================ */
.accred-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    background: #fff;
    margin-top: 30px;
}

.accred-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: accred-scroll 40s linear infinite;
}

.accred-marquee-item {
    flex: 0 0 auto;
    width: 200px;
    padding: 0 40px;
}

.accred-marquee-item img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.accred-marquee-track:hover {
    animation-play-state: paused;
}

.accred-marquee-item:hover img {
    transform: scale(1.1);
}

@keyframes accred-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .accred-marquee-item {
        width: 140px;
        padding: 0 20px;
    }
}

.accreditations-section-new {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.accred-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif !important;
}

.accred-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}