@import url("modal.css");

:root {
    --royal-blue: #003366;
    --orange: #ff6600;
    --white: #ffffff;
    --light-blue: #e0f2f7; /* A lighter shade of blue for backgrounds */
    --light-orange: #fff3e0; /* A lighter shade of orange for backgrounds */
    --dark-blue-text: #002244;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--royal-blue);
    background-image: linear-gradient(135deg, var(--royal-blue) 0%, #001a33 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
.carousel-placeholder {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.carousel-placeholder {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.carousel-placeholder {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassy Effect Mixin */
.glassy-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    color: white;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 51, 102, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-brand {
    color: var(--white);
    font-weight: 700;
    font-size: 1.8em;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto; /* Pushes nav-links and btn-apply-now to the right */
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-apply-now {
    background-color: var(--orange);
    color: #000000;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-left: 30px; /* Space between last nav link and button */
}

.btn-apply-now:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

/* Main Content Sections */
main {
    flex-grow: 1;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--royal-blue);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

.bold-orange {
    color: var(--orange);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background-color: var(--royal-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 0;
}

.hero-overlay-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 40px;
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.8em;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
}

.tagline .bold-orange {
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 25px;
}

.btn-cta {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta.primary {
    background-color: var(--orange);
    color: #000000;
}

.btn-cta.primary:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.3);
}

.btn-cta.secondary {
    background-color: var(--white);
    color: #000000;
    border-color: var(--orange);
}

.btn-cta.secondary:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 51, 102, 0.1);
}

/* Highlights Section */
.highlights-section {
    background-color: var(--royal-blue);
    padding: 80px 0;
}

.highlights-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlight-card i {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--orange);
}

.highlight-card h3 {
    font-size: 1.8em;
    color: var(--white);
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 1.1em;
    color: var(--white);
}

/* Success Stories Section */
.success-stories-section {
    background-color: var(--royal-blue);
    padding: 80px 0;
    text-align: center;
}

.success-stories-section .section-title {
    color: var(--white);
}

.success-stories-section .section-title::after {
    background-color: var(--orange);
}

.carousel-placeholder {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.story-card {
    background-color: var(--glass-bg);
    color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 320px;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.student-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--orange);
}

.story-card h4 {
    font-size: 1.4em;
    color: var(--white);
    margin-bottom: 5px;
}

.story-card p {
    font-size: 1em;
    color: var(--white);
}

/* About Section */
.about-section {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.about-section .section-title {
    color: var(--royal-blue);
}

.about-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text-card {
    flex: 2;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 5px solid var(--orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px;
    color: #000000;
}

.about-text-card p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

.about-text-card p:last-child {
    margin-bottom: 0;
}

.timeline-panel {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.timeline-panel h3 {
    color: black;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
}

.timeline-year {
    background-color: var(--orange);
    color: #000000;
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.9em;
    z-index: 2;
    margin-right: 20px;
    border-radius: 10px;
}

.timeline-event {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    font-size: 1em;
    color: #000000;
}

/* Director's Desk Section */
.directors-desk-section {
    background-color: var(--light-orange);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.directors-desk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 51, 102, 0.1), rgba(255, 255, 255, 0.1));
    z-index: 0;
}

.directors-desk-section .container {
    position: relative;
    z-index: 1;
}

.directors-desk-section .section-title {
    color: var(--royal-blue);
}

.directors-desk-title::after {
    background-color: var(--orange);
}

.photo-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--orange);
    margin-right: 40px;
    flex-shrink: 0;
}

.director-photo, .faculty-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.directors-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    color: #000000;
    font-size: 1.1em;
    line-height: 1.8;
}

.director-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.director-text {
    flex: 1;
}

.faculty-profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.directors-card p {
    margin-bottom: 15px;
}

.directors-card p:last-of-type {
    margin-bottom: 0;
}

.director-signature {
    text-align: right;
    font-weight: 600;
    color: var(--orange);
    margin-top: 30px;
    font-size: 1.2em;
}

/* Our Courses Section */
.courses-section {
    background-color: var(--royal-blue);
    padding: 80px 0;
}

.courses-section .section-title {
    color: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 20px;
    padding: 0;
    overflow: hidden;
    color: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-header {
    background-color: var(--royal-blue);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
}

.course-body {
    background-color: var(--white);
    padding: 25px;
    text-align: center;
}

.course-body p {
    margin-bottom: 20px;
    font-size: 1em;
    color: #555;
}

.btn-know-more {
    background-color: var(--orange);
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-know-more:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

/* Admission Section */
.admission-section {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.admission-section .section-title {
    color: var(--royal-blue);
}

.admission-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    flex-wrap: wrap;
}

.admission-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--orange);
    z-index: 0;
}

.timeline-step {
    background: rgba(0, 51, 102, 0.7);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 20px;
    flex: 1;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 200px;
}

.timeline-step i {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--orange);
}

.timeline-step h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.timeline-step p {
    font-size: 0.95em;
}

.admission-buttons {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Contact Us Section */
.contact-section {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.contact-section .section-title {
    color: var(--royal-blue);
}

.contact-content-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info-card {
    flex: 1;
    min-width: 350px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 20px;
    color: var(--dark-blue-text);
}

.contact-info-card h3 {
    font-size: 2em;
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.contact-item i {
    font-size: 1.5em;
    color: var(--orange);
    margin-right: 20px;
}

.map-frame {
    flex: 1;
    min-width: 350px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-frame iframe {
    border-radius: 10px;
    width: 100%;
    height: 400px;
}

/* Footer */
.footer {
    background-color: var(--royal-blue);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--orange);
    font-size: 1.8em;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-tagline {
    font-size: 1.1em;
    font-weight: 300;
    margin-top: 10px;
}

.footer p {
    font-size: 0.9em;
    margin-top: 15px;
    color: var(--white);
}

/* Facilities Section */
.facilities-section {
    background-color: var(--royal-blue);
    padding: 80px 0;
    text-align: center;
}

.facilities-section .section-title {
    color: var(--white);
}

.facilities-section .section-title::after {
    background-color: var(--orange);
}

.facilities-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.facility-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.facility-card i {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--orange);
}

.facility-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--white);
}

.facility-card p {
    font-size: 1em;
    color: var(--white);
}

/* Coming Soon Page Styling */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--royal-blue);
    background-image: linear-gradient(135deg, var(--royal-blue) 0%, #001a33 100%);
    text-align: center;
}

.coming-soon-text {
    font-size: 5em;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    .navbar-brand {
        font-size: 1.5em;
    }
    .btn-apply-now {
        padding: 8px 20px;
        margin-left: 20px; /* Adjust margin for smaller screens */
    }
    .hero-overlay-card {
        padding: 40px 25px;
    }
    .tagline {
        font-size: 1.5em;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn-cta {
        width: 100%;
    }
    .about-content-wrapper, .contact-content-wrapper {
        flex-direction: column;
    }
    .timeline-panel, .about-text-card, .contact-form-card, .map-frame {
        width: 100%;
        flex: none;
    }
    .admission-timeline {
        flex-direction: column;
        align-items: center;
    }
    .admission-timeline::before {
        width: 2px;
        height: calc(100% - 60px);
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-step {
        width: 90%;
        margin-bottom: 30px;
    }
    .timeline-step:last-child {
        margin-bottom: 0;
    }
    .facilities-intro {
        font-size: 1.1em;
    }
    .coming-soon-text {
        font-size: 4em;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0; /* Remove auto margin for center alignment on small screens */
    }
    .nav-links a {
        font-size: 1em;
    }
    .btn-apply-now {
        width: 100%;
        margin-left: 0; /* Remove margin for full width button */
    }
    .section-title {
        font-size: 2em;
    }
    .hero-logo {
        max-width: 200px;
    }
    .tagline {
        font-size: 1.2em;
    }
    .highlights-section .container {
        grid-template-columns: 1fr;
    }
    .carousel-placeholder {
        flex-direction: column;
        align-items: center;
    }
    .story-card {
        max-width: 90%;
    }
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    .facilities-intro {
        font-size: 1em;
    }
    .coming-soon-text {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2em;
    }
    .nav-links {
        gap: 10px;
    }
    .btn-apply-now {
        padding: 8px 15px;
    }
    .hero-overlay-card {
        padding: 30px 15px;
    }
    .hero-logo {
        max-width: 150px;
    }
    .tagline {
        font-size: 1em;
    }
    .btn-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .highlight-card h3 {
        font-size: 1.5em;
    }
    .about-text-card, .timeline-panel, .directors-card, .login-card, .contact-form-card, .map-frame {
        padding: 20px;
    }
    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.8em;
    }
    .timeline-event {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .directors-card p {
        font-size: 1em;
    }
    .director-signature {
        font-size: 1em;
    }
    .course-header {
        font-size: 1.2em;
    }
    .course-body p {
        font-size: 0.9em;
    }
    .btn-know-more {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .timeline-step h4 {
        font-size: 1.2em;
    }
    .timeline-step p {
        font-size: 0.85em;
    }
    .btn-login, .btn-send-message {
        font-size: 1em;
        padding: 10px 20px;
    }
    .footer-links a {
        font-size: 0.9em;
    }
    .social-icons a {
        font-size: 1.5em;
    }
    .footer-tagline {
        font-size: 0.9em;
    }
    .facilities-intro {
        font-size: 0.9em;
    }
    .facility-card h3 {
        font-size: 1.3em;
    }
    .facility-card p {
        font-size: 0.9em;
    }
}

h1 {
    color: white;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #ffffff;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.table tbody + tbody {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.table-hover tbody tr:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Summary Cards */
.summary-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: black;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.summary-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--orange);
}

.summary-card p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

/* Marks Table */
.marks-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.marks-table thead tr {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--orange);
    text-align: left;
    font-weight: bold;
}

.marks-table th,
.marks-table td {
    padding: 15px 20px;
}

.marks-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.marks-table tbody tr:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.1);
}

.marks-table tbody tr:last-of-type {
    border-bottom: none;
}

.marks-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

/* Progress Bar */
.progress-container {
    display: flex;
    align-items: center;
    min-width: 150px;
}

.progress {
    height: 10px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-right: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 5px;
}

.progress-label {
    font-weight: 600;
    color: white;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

/* Custom Gemini Styles */
.notices-section .section-title {
    color: var(--white);
}

.btn-apply-now,
.btn-cta.primary,
.btn-know-more,
.btn-send-message {
    color: var(--white);
}

.btn-cta.secondary {
    color: var(--orange);
}


/* Navbar Logo */
.navbar-logo {
    height: 40px;
    margin-right: 10px;
}

/* Navbar Logo Alignment */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    margin-right: 10px;
}

.navbar .container {
    padding: 0 20px;
}

/* Expert Faculty Spotlight Section */
.expert-faculty-section {
    background-color: var(--light-orange);
    padding: 80px 0;
}

.expert-faculty-section .section-title {
    color: var(--royal-blue);
}

.faculty-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.faculty-details h3 {
    font-size: 2em;
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.faculty-details p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.next-student-icon {
    width: 120px;
    height: 120px;
    font-size: 60px;
    line-height: 120px;
    color: var(--orange);
}

.story-card.you-are-next {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.more-info-note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: var(--white);
}

.faculty-details p strong {
    color: var(--orange);
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (max-width: 768px) {
    .notices-section {
        display: none;
    }

    .highlights-section .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-card {
        padding: 20px;
    }

    .highlight-card h3 {
        font-size: 1.2em;
    }

    .highlight-card p {
        display: none;
    }

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

    .facility-card {
        padding: 20px;
    }

    .facility-card h3 {
        font-size: 1.2em;
    }

.facility-card p {
        display: none;
    }

    .facilities-intro {
        display: none;
    }

    .director-content, .faculty-profile {
        flex-direction: column;
        align-items: center;
    }

    .photo-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
}