body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*::after, *::before {
    box-sizing: border-box;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.site-header {
    position: relative;
    z-index: 9999; 
    background-color: #003366;
    padding: 0 0;
    color: white;
}

/* 🌟 Toolbar Styling */
.toolbar {
    background-color: #002147;
    padding: 8px 15px;
    color: white;
    display: flex;
    justify-content: center; /* Centers the content */
    align-items: center;
    flex-wrap: wrap;
}

/* 🔹 Toolbar Container */
.toolbar-container {
    display: flex;
    justify-content: space-between; /* Ensures proper spacing */
    align-items: center;
    width: 100%;
    flex-wrap: wrap; /* Allows wrapping for small screens */
    max-width: 1200px; /* Keeps it well-contained on larger screens */
    margin: 0 auto;
}

/* 📞 Contact Info */
.toolbar-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.toolbar-contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.toolbar-contact-info a i {
    font-size: 16px;
    margin-right: 5px;
}

.toolbar-contact-info a:hover {
    color: #ffcc00; /* Highlight color */
}

/* 🌍 Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #ffcc00;
}

/* 📌 RESPONSIVENESS */

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .toolbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .toolbar-contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
        justify-content: center;
    }
}

/* Small Screens (Phones) */
@media (max-width: 768px) {
    .toolbar {
        padding: 10px;
        text-align: center;
    }

    .toolbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .toolbar-contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .toolbar-contact-info a {
        font-size: 13px;
        padding: 5px 0;
    }

    .social-icons {
        justify-content: center;
        gap: 10px;
        margin-top: 5px;
    }

    .social-icons a {
        font-size: 16px;
    }
}


/* NAVIGATION BAR */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    gap: 20px; 
}

/* LOGO */
.width-logo img {
    max-height: 90px;  
    max-width: 100%;   
    height: auto;      
    transition: all 0.3s ease-in-out; 
}

/* Adjust logo size for larger screens */
@media (min-width: 1024px) {
    .width-logo img {
        max-height: 100px; 
    }
}

/* Adjust logo size for smaller screens (mobile) */
@media (max-width: 768px) {
    .width-logo img {
        max-height: 70px; 
    }
}

/* MAIN MENU */
.width-navigation {
    flex: 1;
    text-align: center;
}

.menu-main-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-item {
    position: relative;
}

.menu-item a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    font-weight: bold;
}

.menu-item a:hover {
    background-color: #0056b3;
    border-radius: 5px;
}

/* SUB-MENU */
.has-submenu:hover .sub-menu {
    display: block;
}

.sub-menu {
    display: none;
    position: absolute;
    background-color: #003366;
    list-style: none;
    padding: 10px;
    width: 200px;
    top: 100%;
    left: 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.sub-menu li a {
    color: white;
    padding: 8px 10px;
    display: block;
}

.sub-menu li a:hover {
    background-color: #0056b3;
}

/* 🎨 Responsive Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* ✅ Mobile Styles */
@media screen and (max-width: 768px) {
    .width-navigation {
        display: none; /* Hide navigation by default */
    }

    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .menu-toggle .icon-bar {
        display: block;
        width: 30px;
        height: 4px;
        background-color: white;
        margin: 6px 0;
    }

    .width-navigation {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #003366;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

    .width-navigation.active {
        display: block;
    }

    .menu-main-menu {
        display: block;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #003366;
        width: 100%;
        padding: 10px;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

    .menu-item {
        padding: 10px;
        width: 100%;
    }

    .menu-item a {
        display: block;
        width: 100%;
    }

    .width-navigation.show {
        display: block;
    }
}
/* APPLY NOW BUTTON */
.apply-now {
    display: inline-block;
    text-align: center;
}

.apply-button {
    background-color: #00004e; 
    color: #ffb606; 
    border-radius: 25px; 
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    padding: 12px 20px; 
    white-space: nowrap; 
    transition: background 0.3s ease;
}

.apply-button:hover {
    background-color: #001970; 
}

/* RESPONSIVE FIX */
@media screen and (max-width: 768px) {
    .apply-button {
        font-size: 12px;
        padding: 10px 18px; 
    }
}

/* 🎯 Apply Online Section */
.apply-online-section {
    background: linear-gradient(to right, #002147, #003366); /* Dark blue gradient */
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* 🎯 Container */
.apply-online-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
    padding: 20px;
}

/* 🎯 Text Section */
.apply-online-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.apply-online-text p {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffb606; /* Gold highlight */
    margin-bottom: 10px;
}

.apply-online-text h2 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
    color: white;
}

/* 🎯 Apply Now Button */
.apply-online-button {
    flex-shrink: 0;
    text-align: right;
}

.apply-online-button .btn {
    display: inline-block;
    background: #ffb606; /* Gold Button */
    color: #002147;
    padding: 14px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.apply-online-button .btn:hover {
    background: #ffc72c;
    transform: scale(1.05);
}

/* 🎯 Mobile Responsive */
@media screen and (max-width: 768px) {
    .apply-online-container {
        flex-direction: column;
        text-align: center;
    }

    .apply-online-text {
        max-width: 100%;
        text-align: center;
    }

    .apply-online-button {
        margin-top: 20px;
    }
}


/* 🎨 Apply Now Page Styling */
.apply-now-page {
    padding: 60px 0;
    background-color: #f8f9fa;  /* Light background */
}

/* Center the header */
.apply-now-header {
    text-align: center;
    margin-bottom: 30px;
}

.apply-now-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #002147; /* Deep navy */
}

.apply-now-header p {
    font-size: 16px;
    color: #666;
}

/* Form Styling */
.apply-now-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Inputs */
.apply-now-form .form-group {
    margin-bottom: 20px;
}

.apply-now-form label {
    font-weight: bold;
    color: #002147;
}

.apply-now-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit Button */
.btn-apply {
    display: block;
    width: 100%;
    background-color: #002147;
    color: #fff;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-apply:hover {
    background-color: #0046a1;
}

/* Apply Form Page */
.apply-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: url("/static/images/background.jpg") no-repeat center center/cover; /* Ensure the correct path */
}

.apply-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay effect */
    z-index: 1;
}

.apply-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    color: black;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    text-align: center; /* Center text inside form */
}

.apply-box h2 {
    text-align: center;
    font-weight: bold;
    color: #10122b;
    margin-bottom: 20px;
}

.apply-box .form-group {
    text-align: left;
    margin-bottom: 15px;
}

.apply-box label {
    font-weight: bold;
    display: block;
    color: #333;
}

.apply-box input,
.apply-box select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8); /* Slightly transparent input background */
}

.apply-box input[type="text"], 
.apply-box input[type="email"], 
.apply-box input[type="tel"] {
    height: 40px;
}

.btn-success {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #28a745;
    color: white;
    border: none;
    width: 100%;
}

.btn-success:hover {
    background-color: #218838;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SLIDE TEXT ANIMATION */
.slide-text {
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    opacity: 0; 
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}


/* SLIDE IMAGE WITH ZOOM EFFECT */
.animated-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 10s infinite alternate ease-in-out;
}

/* ZOOM IN & OUT EFFECT */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.slide.active .slide-text {
    opacity: 1; 
    transform: translateY(0);
}

.slide-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.slide-text p {
    font-size: 18px;
    margin-bottom: 15px;
    animation: fadeInLeft 1.2s ease-in-out;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background: #1e2992;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    animation: animation-name 1.4s ease;
}

.btn:hover {
    background: #ffa500;
}



/* SLIDER ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 10px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* TEXT FADE IN LEFT EFFECT */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 768px) {
    .slide-text {
        left: 5%;
        width: 90%;
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 24px;
    }
    
    .slide-text p {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
    }
}

/* Toolbar Styling */
.toolbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: navy;
    padding: 10px 15px;
    color: white;
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.contact-info a i {
    margin-right: 5px;
}

/* Social Media Icons */
.contact-info a:hover {
    color: #ffffff;
}

/* About Section Styling */
.about-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.about-content {
    text-align: left;
    padding: 20px;
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 15px;
}

.about-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* About Section Styling */
.about-section {
    background: #f5f5f5;
    padding: 60px 0;
}

/* Flexbox for layout alignment */
.about-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Video container */
.about-video-container {
    flex: 1;
    max-width: 50%;
    padding: 10px;
}

.about-video-container iframe {
    width: 100%;
    height: 320px;
    border-radius: 10px;
}

/* About Content */
.about-content {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    text-align: left;
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 15px;
}

.about-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* About Button */
.about-button {
    display: inline-flex;
    align-items: center;
    background: #003366;
    color: white;
    padding: 12px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-button:hover {
    background: #ffcc00;
    color: #003366;
}

.button-text {
    margin-right: 10px;
}

.button-icon i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-section .row {
        flex-direction: column;
        text-align: center;
    }

    .about-video-container,
    .about-content {
        max-width: 100%;
    }

    .about-button {
        margin-top: 10px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-top: 5px solid #c51c8b;
}

/* Keep the section aligned and prevent full-page image */
.why-choose-us .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reduce the image size */
.why-image img {
    max-width: 100%; 
    height: auto;
    max-height: 300px; 
    object-fit: cover;
    border-radius: 10px;
}

/* Content Area */
.why-content {
    padding-left: 30px;
}

.why-content h2 {
    font-size: 26px;
    font-weight: bold;
    color: #222;
    border-bottom: 3px solid #c51c8b;
    display: inline-block;
    padding-bottom: 5px;
}

/* List with icons */
.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #333;
}

.why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #c51c8b;
    font-size: 20px;
}

/* Button */
.more-about {
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    color: #c51c8b;
    text-decoration: none;
    font-size: 18px;
}

.more-about:hover {
    text-decoration: underline;
}

/* Featured Programmes Section */
.featured-programmes {
    padding: 60px 30px;
    background-color: #f8f9fa;
    text-align: center;
    opacity: 1;
    visibility: visible;
    display: block;
}

/* Section Header */
.featured-programmes-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 10px;
}

.featured-programmes-header h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px; 
}

.featured-programmes-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* View All Programmes Button */
.featured-programmes-header .view-all {
    display: inline-block;
    padding: 10px 20px;
    background-color: #001f61;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
}

.featured-programmes-header .view-all:hover {
    background-color: #003399;
}

/* Programmes Grid */
.featured-programmes .colunm {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Programme Card */
.featured-programme-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.featured-programme-card:hover {
    transform: translateY(-5px);
}

/* Programme Image */
.featured-programme-card .programme-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Programme Title */
.featured-programme-card .programme-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Programme Faculty */
.featured-programme-card .faculty-name {
    font-size: 14px;
    font-weight: bold;
    color: #6c757d;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Programme Description */
.featured-programme-card .programme-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Programme Button */
.featured-programme-card .apply-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #001f61;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px; 
}

.featured-programme-card .apply-button:hover {
    background-color: #003399;
}

/* Disabled Button */
.featured-programme-card .disabled-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ccc;
    color: #666;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    cursor: not-allowed;
}

/* Programme Card */
.programme-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    width: 320px; 
    text-align: center;
    padding: 15px;
    padding-bottom: 20px;
    min-height: 250px;
    margin-bottom: 15px;
}

.programme-card .btn {
    margin-top: 25px;  
}

.programme-card:hover {
    transform: translateY(-5px);
}

/* Programme Image */
.programme-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 5px;
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for Programme Title */
.programme-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(51, 0, 102, 0.8);
    color: white;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}

/* Programme Detail Container */
.programme-detail-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* View All Programmes Button */
.view-all-container {
    margin-bottom: 20px;
}

.view-all-container .btn {
    background-color: #6c757d; 
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
}

.view-all-container .btn:hover {
    background-color: #5a6268;
}

/* Programme Details Section */
.programme-detail-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

/* Programme Image */
.programme-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Programme Info */
.programme-info {
    flex: 1;
}

.programme-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.programme-info p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* 📌 Styling for All Programmes Page */
.all-programmes {
    padding: 60px 45px;
    background-color: #f8f9fa;
}

/* Section Header */
.all-programmes-header {
    text-align: center;
    margin-bottom: 40px;
}

.all-programmes-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ✅ Fixing Grid Alignment */
.all-programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px;
    justify-content: center;
}

/* Programme Card */
.all-programme-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px; 
}

.all-programme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
}

/* Programme Image */
.all-programme-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Programme Details */
.all-programme-details {
    flex-grow: 1;
    padding: 15px;
    display: block;
    flex-direction: column;
    justify-content: space-between;
}

.all-faculty-name {
    font-size: 14px;
    color: #777;
    font-weight: bold;
    text-transform: uppercase;
}

.all-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.all-card-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* 📌 Buttons */
.all-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.all-btn-primary {
    background-color: #007bff;
    color: white;
    margin-top: 30px;
    margin-right: 10px;
}

.all-btn-primary:hover {
    background-color: #0056b3;
}

.all-btn-success {
    background-color: #28a745;
    color: white;
}

.all-btn-success:hover {
    background-color: #1e7e34;
}

/* 📌 Pagination Styling */
.all-pagination-container {
    margin-top: 30px;
}

.all-pagination-container .btn {
    margin: 0 5px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
}

.all-pagination-container .all-btn-secondary {
    background-color: #6c757d;
    color: white;
}


/* 🎯 NEWS & EVENTS SECTION STYLES */
.news-events-section {
    padding: 50px 100px;
    font-family: Arial, sans-serif;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.news-column,
.events-column {
    flex: 1;
    min-width: 45%;
}

/* 📰 NEWS SECTION STYLES */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
}
.news-highlight {
    display: flex;
    gap: 10px;
}
.news-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}
.main-news {
    flex: 3;
    position: relative;
}

.main-news img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
    border-radius: 10px;
}

.news-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.news-overlay {
    position: absolute;
    /* bottom: 0; */
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    width: 90%;
    border-radius: 10px;
}

.news-overlay h2 a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.news-overlay p {
    font-size: 14px;
    margin-top: 5px;
}

.news-sidebar {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.news-detail-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-title {
    font-size: 28px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.external-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff6600;
    font-weight: bold;
    text-decoration: none;
}

.external-link:hover {
    text-decoration: underline;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    background: #003366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.back-button:hover {
    background: #002244;
}

.news-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
}

.news-view-all {
    font-size: 14px;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

/* 📰 NEWS ITEMS */
.news-list {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

.news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.news-details h4 a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.news-details p {
    font-size: 12px;
    color: #777;
}

.category {
    color: #ff6600;
    font-weight: bold;
}

.news-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.news-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.news-content {
    margin-left: 15px;
}

.news-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-content p {
    font-size: 14px;
    color: #777;
}

/* 🎟️ EVENTS SECTION */
.events-column {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

/* Events Header */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Events List - No scrolling, no buttons */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: visible; 
}

/* Event Item */
.event-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Event Date */
.event-date {
    background: #ff6600;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

/* ✅ REMOVED FEATURES */
.events-container {
    position: static !important; 
    overflow: visible !important; 
}

.events-list::-webkit-scrollbar {
    display: none !important; 
}

/* REMOVE NAVIGATION BUTTONS */
.event-prev,
.event-next {
    display: none !important;
}

/* 📢 ANNOUNCEMENTS SECTION */
.announcements-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    margin-top: 20px;
}

/* Card Styling */
.announcement-card {
    background: #ffffff;
    padding: 30px 60px;
    border-radius: 50px;
    box-shadow: 0 9px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3sease-in-out;
    border-left: 50px solid #003366;
}

.announcement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Date */
.announcement-date {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Title */
.announcement-title {
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
}

.announcement-title a {
    text-decoration: none;
    color: inherit;
}

.announcement-title a:hover {
    text-decoration: underline;
}

/* Read More Link */
.read-more {
    font-size: 16px;
    font-weight: bold;
    color: #003366;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

.arrow {
    color: #d4a518;
    font-size: 16px;
    margin-left: 5px;
}


/* 📢 ANNOUNCEMENTS SECTION */
.announcements {
    padding: 40px 200px;
    background-color: #ffffff;
}

/* 🔹 HEADER STYLES */
.announcements-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}


/* 📌 EXPLORE MORE BUTTON */
.explore-more {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #c0a86d;
    color: #c0a86d;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
}

.explore-more:hover {
    background-color: #c0a86d;
    color: #fff;
}

/* 🔹 FEATURED LINKS */
.featured-links {
    background-color: #f7faff;
    padding: 50px 100px;
    border-left: 5px solid #c0a86d;
}

.featured-links h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.featured-list {
    list-style: none;
    padding: 0;
}

.featured-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.featured-list li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.featured-list li a:hover {
    color: #c0a86d;
}

/* MEDIA SECTION */
.media-section {
    background-color: #fff;
    padding: 50px 30px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

/* Centering the Title */
.media-section h2 {
    text-align: center;  
    font-size: 24px;  
    font-weight: bold;
    margin-bottom: 20px;  
}  

/* Ensures Sections Stay in Columns */
.media-section .row {
    display: flex;
    align-items: flex-start;
    gap: 60px; 
    justify-content: space-between; 
    flex-wrap: wrap; 
}

/* MEDIA BOX - General */
.media-box {
    flex: 1;
    max-width: calc(33.33% - 30px); 
    min-width: 250px; 
}

/* YouTube Video */
.media-content {
    width: 100%;
    text-align: left;
}

.media-caption {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

/* Twitter Feed */
.twitter-feed {
    width: 100%;
    max-height: 315px;
    overflow-y: auto;
}

/* Facebook Feed */
.facebook-feed {
    width: 100%;
    max-height: 315px;
    overflow: hidden;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    .media-section .row {
        flex-direction: column;
        align-items: center;
        gap: 30px; 
    }

    .media-box {
        width: 100%;
        max-width: 100%; 
    }
}

/* FOOTER STYLING */
.footer {
    background-color: #003366;
    color: white;
    padding: 40px 0;
    font-size: 14px;
}

/* Footer Container: Ensures Left & Links Stay in Same Row */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;  
    flex-wrap: nowrap; 
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Left Footer Section */
.footer-left {
    flex: 1;
    min-width: 300px; 
    text-align: left;
}

.footer-left img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-left p {
    margin: 5px 0;
}

.footer-left a {
    color: #ffb606;
    text-decoration: none;
    font-weight: bold;
}

.footer-left a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
}

/* Footer Links Section */
.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: nowrap; 
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: #002244;
    padding: 15px;
    text-align: center;
    font-size: 12px;
}

.footer-bottom-links {
    margin-top: 10px;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

.footer .footer-content {
    margin-bottom: 10px;
}

.footer-powered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-powered p {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #b3b3b3;
}

.footer-powered img {
    height: 35px;
    margin-left: 5px;
    width: 100px;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-left {
        flex: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-section {
        min-width: 45%;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-section {
        width: 100%;
    }
}


/* About Page Styles */
.about-page {
    padding-top: 1px;
}

/* About Hero Section */
.about-page .hero-section {
    background: url('/static/images/hero-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.about-page .hero-title {
    font-size: 36px;
    font-weight: bold;
}

.about-page .hero-subtitle {
    font-size: 20px;
    font-style: italic;
}

/* About Page History Section Styling */
.about-page .history-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0C0C22; 
    color: #fff; 
    padding: 50px;
    border-radius: 2px;
    max-width: 100%;
    margin: 10px auto;
    overflow: hidden;
}

.about-page .history-section .content {
    flex: 1;
    padding: 30px;
}

.about-page .history-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-page .history-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-page .history-section .highlight-text {
    color: #F40B76; 
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about-page .history-section img {
    width: 50%; 
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* General Styling for Mission Section */
.about-page .mission-section {
    padding: 50px 20px;  /* Reduced padding for better responsiveness */
    background-color: #f8f9fa; /* Light background for better readability */
    text-align: center;  /* Center-align text */
}

/* Title Styling */
.about-page .mission-section h2.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Individual Column Styling */
.about-page .mission-section .col-md-6 {
    padding: 20px;
    background: white;  /* White background for contrast */
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

/* Heading Styling */
.about-page .mission-section h3 {
    font-size: 22px;
    font-weight: bold;
    color: #0056b3; /* Consistent blue tone */
    margin-bottom: 10px;
    text-transform: uppercase; /* Capitalizes "Mission" and "Vision" */
}

/* Paragraph Styling */
.about-page .mission-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page .mission-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-page .mission-section .col-md-6 {
        width: 90%; /* Adjust column width for smaller screens */
    }
}


/* Why Choose Us */
.about-page .why-choose-us {
    background: linear-gradient(to right, #fff 50%, #f8f9fa 50%);
    padding: 50px 0;
}

.about-page .why-choose-us .row {
    display: flex;
    align-items: center;
}

.about-page .why-choose-us img {
    max-width: 100%;
    height: auto;
    max-height: 300px; 
    object-fit: cover;
    border-radius: 10px;
}

.about-page .why-list {
    list-style: none;
    padding: 0;
}

.about-page .why-list li {
    font-size: 18px;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.about-page .why-list li strong {
    margin-left: 8px;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 50px;
    background: #f8f9fa;
    text-align: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #001f61;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 50px;
    background: #f8f9fa;
    text-align: center;
}

/* Leadership Card */
.leadership-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    max-width: 350px;
    margin: auto;
}

.leadership-card a {
    text-decoration: none;
    color: inherit;
}

.leadership-card:hover {
    transform: translateY(-5px);
}

/* Leader Image */
.leader-image img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Leader Detail Page */
.leader-detail-section {
    padding: 80px 50px;
    background: white;
    text-align: center;
}

.leader-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-details {
    text-align: left;
    max-width: 500px;
}

.leader-name {
    font-size: 26px;
    font-weight: bold;
    color: #001f61;
}

.leader-position {
    font-size: 18px;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 10px;
}

.leader-bio {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Back Button */
.back-button .btn {
    background-color: #001f61;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

.back-button .btn:hover {
    background-color: #003399;
}


/* About Contact Section */
.about-page .contact-section {
    background: #007bff;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.about-page .contact-section a {
    background: white;
    color: #007bff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.about-page .contact-section a:hover {
    background: #0056b3;
    color: white;
}


/* === Admissions Page Styles === */
.admissions-page .hero-section {
    background: url('/static/images/admissions-banner.jpg') no-repeat center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.admissions-page .hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Admission Requirements Section */
.requirements-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* Section Title */
.requirements-section .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #001f5f;
}

/* Admission Requirements List */
.admission-requirements {
    list-style: none; 
    padding: 0;
    margin-top: 20px;
    display: inline-block;
    text-align: left;
}

/* Each List Item */
.admission-requirements li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Custom Icon Styling */
.admission-requirements li::before {
    content: "🔹"; 
    color: #001f5f; 
    font-size: 18px;
    margin-right: 10px;
}


/* Featured Programmes Section (Admissions Page) */
.admissions-page .featured-programmes {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* Section Header */
.admissions-page .featured-programmes-header {
    text-align: center;
    margin-bottom: 40px;
}

.admissions-page .featured-programmes-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.admissions-page .featured-programmes-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Programmes Grid */
.admissions-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px;
}

/* Programme Card */
.admissions-page .featured-programme-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.admissions-page .featured-programme-card:hover {
    transform: translateY(-5px);
}

/* Programme Image */
.admissions-page .programme-image img {
    width: 100%;
    border-radius: 8px;
    height: auto;
}

/* Programme Details */
.admissions-page .programme-details {
    margin-top: 15px;
}

/* Programme Faculty */
.admissions-page .programme-details .faculty-name {
    font-weight: bold;
    color: #001f5f;
    text-transform: uppercase;
    font-size: 14px;
}

/* Programme Title */
.admissions-page .programme-details .programme-title {
    font-size: 20px;
    font-weight: bold;
    color: #001f5f;
    margin: 10px 0;
}

/* Programme Buttons */
.admissions-page .apply-button {
    display: inline-block;
    background: #001f5f;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.admissions-page .apply-button:hover {
    background: #003366;
}

.admissions-page .disabled-button {
    display: inline-block;
    background: #ccc;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

/* View All Programmes Button */
.admissions-page .view-all {
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #001f5f;
    text-decoration: none;
    border-bottom: 2px solid #001f5f;
    transition: 0.3s ease;
}

.admissions-page .view-all:hover {
    color: #003366;
    border-bottom: 2px solid #003366;
}


.admissions-page .admission-process {
    background: #e0f7fa;
    padding: 50px 0;
    text-align: center;
}

.admissions-page .steps .step {
    font-size: 1.1rem;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.admissions-page .tuition-section {
    text-align: center;
    padding: 50px 0;
    background: #f3f3f3;
}

.admissions-page .faqs-section {
    padding: 50px 0;
    text-align: center;
}

.admissions-page .faqs-section details {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.admissions-page .contact-section {
    padding: 50px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

/* Pagination Styling for Programmes Only */
.available-programmes .pagination {
    text-align: center;
    margin-top: 20px;
}

.available-programmes .pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background: #f8f9fa;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
}

.available-programmes .pagination a:hover {
    background: #007bff;
    color: #fff;
}

.available-programmes .current-page {
    font-weight: bold;
    margin: 0 10px;
}

/* 🌍 Common Styling for All Programme Pages */
.undergraduate-page, .postgraduate-page, .professional-page {
    padding: 30px 45px;
    background-color: #f9f9f9;
    text-align: center;
    display: block;
}

.undergraduate-page .row,
.postgraduate-page .row,
.professional-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: stretch; 
    gap: 20px; 
}

/* 📌 Section Titles - Ensuring Uniformity */
.undergraduate-page .section-title,
.postgraduate-page .section-title,
.professional-page .section-title {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    color: #002147;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.undergraduate-page .section-title::after,
.postgraduate-page .section-title::after,
.professional-page .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #002147;
    margin: 10px auto 0;
    border-radius: 2px;
    text-align: center;
}

/* 🎓 Programme Cards - Keeping Unique Styles */
.undergraduate-page .programme-card,
.postgraduate-page .programme-card,
.professional-page .programme-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 100%; 
    max-width: 300px; 
    height: auto; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}

.undergraduate-page .programme-card:hover,
.postgraduate-page .programme-card:hover,
.professional-page .programme-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* 🖼 Programme Image */
.undergraduate-page .programme-card img,
.postgraduate-page .programme-card img,
.professional-page .programme-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* 🎓 Programme Title */
.undergraduate-page .programme-card h3,
.postgraduate-page .programme-card h3,
.professional-page .programme-card h3 {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #002147;
}

/* 📜 Programme Description */
.undergraduate-page .programme-card p,
.postgraduate-page .programme-card p,
.professional-page .programme-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* 🎓 Programme Buttons (Aligned Side-by-Side) */
.undergraduate-page .programme-buttons,
.postgraduate-page .programme-buttons,
.professional-page .programme-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

/* 📌 Common Button Styling */
.undergraduate-page .programme-card .btn,
.postgraduate-page .programme-card .btn,
.professional-page .programme-card .btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

/* 📌 View Programme Button (Primary) */
.undergraduate-page .programme-card .btn-primary,
.postgraduate-page .programme-card .btn-primary,
.professional-page .programme-card .btn-primary {
    background: #002147;
    color: #ffffff;
}

.undergraduate-page .programme-card .btn-primary:hover,
.postgraduate-page .programme-card .btn-primary:hover,
.professional-page .programme-card .btn-primary:hover {
    background: #0046a1;
}

/* 📌 Apply Now Button (Success) */
.undergraduate-page .programme-card .btn-success,
.postgraduate-page .programme-card .btn-success,
.professional-page .programme-card .btn-success {
    background: #28a745;
    color: #ffffff;
}

.undergraduate-page .programme-card .btn-success:hover,
.postgraduate-page .programme-card .btn-success:hover,
.professional-page .programme-card .btn-success:hover {
    background: #218838;
}

/* 📌 Programme Card Styling */
.undergraduate-page .programme-card,
.postgraduate-page .programme-card,
.professional-page .programme-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.undergraduate-page .programme-card:hover,
.postgraduate-page .programme-card:hover,
.professional-page .programme-card:hover {
    transform: translateY(-5px);
}

/* 📌 Image Styling */
.undergraduate-page .programme-card img,
.postgraduate-page .programme-card img,
.professional-page .programme-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 🛠 Responsive Design for Different Screens */
@media (max-width: 768px) {
    .undergraduate-page .row,
    .postgraduate-page .row,
    .professional-page .row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .undergraduate-page .programme-card,
    .postgraduate-page .programme-card,
    .professional-page .programme-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .undergraduate-page .programme-card,
    .postgraduate-page .programme-card,
    .professional-page .programme-card {
        padding: 15px;
        width: 90%;
        max-width: 400px;
    }

    .undergraduate-page .programme-card h3,
    .postgraduate-page .programme-card h3,
    .professional-page .programme-card h3 {
        font-size: 1.2rem;
    }
}

.undergraduate-page .programme-card .programme-details,
.postgraduate-page .programme-card .programme-details,
.professional-page .programme-card .programme-details {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 🎨 Unique Backgrounds for Each Programme Section */
.undergraduate-page {
    background-color: #eef5ff; 
}

.postgraduate-page {
    background-color: #f9f5f0; 
}

.professional-page {
    background-color: #fff8e1;
}

/* 🎓 Distance Learning Page Styles */
.distance-learning-page {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* 📌 Header Styling */
.distance-learning-page .distance-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.distance-learning-page .distance-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* 📌 Programme Grid */
.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
}

/* 📌 Programme Card */
.distance-programme-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.distance-programme-card:hover {
    transform: translateY(-5px);
}

/* 📌 Image Styling */
.distance-programme-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 📌 Text Details */
.distance-programme-details {
    margin-top: 15px;
}

.distance-faculty {
    font-size: 0.9rem;
    font-weight: bold;
    color: #007bff;
}

.distance-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
}

.distance-text {
    font-size: 1rem;
    color: #666;
}

/* 📌 Buttons Section (Side-by-Side Alignment) */
.distance-programme-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.distance-programme-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

/* 📌 "No Programmes Available" Section */
.no-programmes {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #999;
}

/* General Page Styling */
.academics-page {
    font-family: Arial, sans-serif;
    color: #333;
}

.intro-section {
    background-color: #f8f8f8;
    padding: 40px 0;
    text-align: center;
}

.stats-section {
    background-color: #fff;
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5em;
    color: #002147;
}

.links-section, .calendar-section, .handbook-section {
    background-color: #f8f8f8;
    padding: 40px 0;
    text-align: center;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #002147;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #0046a1;
}

/* ======================== */
/* 🌟 ACADEMICS STYLING */
/* ======================== */

/* 🔹 General Styles for Specific Academic Pages */
.academic-affairs, .research-page {
    padding: 2px 0;
    background: #f9f9f9;
}

/* 🔹 Hero Section (Applies only to Academic Affairs, Schools & Faculties, and Research) */
.academic-affairs .hero,
 .hero {
    background: url('/static/images/academics-hero.jpg') center/cover no-repeat;
    padding: 100px 50px;
    text-align: center;
    color: white;
}

.academic-affairs .hero h1, 
 .hero h1 {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.academic-affairs .hero p,
.hero p {
    font-size: 18px;
}

/* 🔹 Content Sections */
.academic-affairs .academic-content,
.academic-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1100px;
}

.academic-affairs .academic-content img, 
 .academic-content img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.academic-affairs .academic-content .text, 
 .academic-content .text {
    width: 50%;
}

.academic-affairs .academic-content h2, 
.academic-content h2 {
    font-size: 28px;
    color: #002147;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.academic-affairs .academic-content p, 
 .academic-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* 🔹 Research Page Styling */
.research-page {
    background: url("../images/research-bg.jpg") no-repeat center center/cover rgba(17, 20, 24, 0.885);
    min-height: 100vh;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Research Section */
.research-page .research-section {
    background: rgba(233, 245, 255, 0.9); /* Light blue overlay */
    padding: 60px 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    flex-direction: row;
}

/* Section Heading */
.research-page .research-section h2 {
    font-size: 32px;
    color: #002147;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Research List */
.research-page .research-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Research Item Card */
.research-page .research-item {
    width: 100%;
    /* max-width: 500px; */
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    text-align: left;
}

/* Hover Effect */
.research-page .research-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Research Item Heading */
.research-page .research-item h3 {
    font-size: 22px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 10px;
}

/* Research Item Description */
.research-page .research-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Read More Button */
.research-page .research-item .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
}

/* Fix calendar layout */
#calendar {
    max-width: 900px;
    height: 600px;  /* Ensure a fixed height */
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Ensure full width */
.academic-calendar {
    padding: 50px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

/* Table fallback if FullCalendar fails */
.academic-calendar table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.academic-calendar table th,
.academic-calendar table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.academic-calendar table th {
    background-color: #002147;
    color: white;
}

.academic-calendar table tr:nth-child(even) {
    background-color: #f2f2f2;
}


/* ======================== */
/* 📚 SCHOOLS & FACULTIES STYLING */
/* ======================== */

.schools-faculties {
    padding: 60px 30px;
    background: #f9f9f9;
    text-align: center;
}

/* 🔹 Section Title */
.schools-faculties .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 20px;
}

/* 🔹 Grid Layout for Schools & Faculties */
.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* 🔹 Faculty Cards */
.faculty-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.faculty-card:hover {
    transform: scale(1.03);
}

.faculty-card h3 {
    font-size: 22px;
    color: #002147;
    margin-bottom: 10px;
}

.faculty-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .schools-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================== */
/* 🌟 APPLICATION SUCCESS PAGE   */
/* ============================== */

.success-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.success-container h2 {
    font-weight: bold;
    color: #0d6efd;
}
.success-container p {
    color: #333;
}
.btn-container {
    margin-top: 20px;
}
.btn-home {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
}
.btn-home:hover {
    background-color: #084298;
}
.btn-programmes {
    background-color: #198754;
    color: white;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
.btn-programmes:hover {
    background-color: #146c43;
}

/* 🌍 Contact Info Section */
.contact-info-section {
    background: #002147;
    color: white;
    padding: 50px 80px;
    text-align: center;
    flex-wrap: wrap;
}
.info-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.info-box {
    background: white;
    color: black;
    padding: 20px;
    width: 200px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.info-box i {
    font-size: 24px;
    color: #002147;
    margin-bottom: 10px;
}
.info-box h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.info-box p {
    font-size: 14px;
}

/* 📩 Contact Form & Map Section */
.contact-form-map {
    display: flex;
    justify-content: center;
    padding: 20px 60px;
    background: #f9f9f9;
}
.form-map-container {
    display: flex;
    max-width: 100%;
    width: 100%;
    justify-content: space-evenly;
    gap: 30px;
}
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/static/images/contact_bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 20px 50px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    width: 450px;
}

.contact-box h2 {
    text-align: center;
    font-weight: bold;
    color: #10122b;
    margin-bottom: 20px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.contact-box button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.contact-box button:hover {
    background-color: #218838;
}

/* Map */
.map-container {
    width: 650px;
    height: 100vh;
}
.map-container iframe {
    width: 100%;
    height: 100%;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .form-map-container {
        flex-direction: column;
    }
    .form-container, .map-container {
        width: 100%;
    }
}

/* 🔹 Tuition Section */
.tuition-section {
    background: url("/static/images/tuition-bg.jpg") no-repeat center center/cover;
    padding: 80px 20px;
    color: #002147;
    text-align: center;
    position: relative;
}

/* Soft Overlay for Readability */
.tuition-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.tuition-section > * {
    position: relative;
    z-index: 2;
}

/* 🔹 Section Header */
.tuition-section .section-header {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.tuition-section .section-title {
    font-size: 38px;
    font-weight: bold;
    color: #002147;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tuition-section .section-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #444;
}

/* 🔹 Tuition Overview */
.tuition-overview {
    max-width: 900px;
    margin: 20px auto;
    font-size: 18px;
    color: #002147;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* 🔹 Tuition Categories */
.tuition-categories {
    margin-top: 40px;
}

.tuition-categories-title {
    font-size: 28px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 20px;
}

/* 🔹 Tuition Cards */
.tuition-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin: 0 10px 20px;
}

.tuition-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.tuition-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 10px;
}

.tuition-card-price {
    font-size: 20px;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 10px;
}

.tuition-card ul {
    list-style-type: none;
    padding: 0;
}

.tuition-card ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

/* 🔹 Payment Plans */
.payment-plans {
    margin-top: 40px;
}

.payment-plans-title {
    font-size: 28px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 20px;
}

.payment-plan-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin: 0 10px 20px;
}

.payment-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.payment-plan-card h4 {
    font-size: 22px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 10px;
}

/* 🔹 Call-to-Action Buttons */
.fee-structure-btn .btn,
.financial-aid .btn {
    background-color: #002147;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease-in-out;
}

.fee-structure-btn .btn:hover,
.financial-aid .btn:hover {
    background-color: #004080;
    color: white;
}

/* 🔹 Adjusting Card Alignment */
.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .tuition-card,
    .payment-plan-card {
        width: 100%;
        margin-bottom: 15px;
    }

    .tuition-section .section-title {
        font-size: 30px;
    }

    .tuition-section .section-subtitle {
        font-size: 16px;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }
}
/* 🔹 Payment Methods Section */
.payment-methods {
    background: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.payment-methods-title {
    font-size: 28px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 15px;
}

/* Payment Cards */
.payment-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.payment-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 300px;
    transition: all 0.3s ease-in-out;
}

.payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.payment-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 10px;
}

.payment-card p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

/* 🎓 Fees Structure Styling */
.fees-structure {
    padding: 60px 30px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 30px;
}

/* 📊 Table Styling */
.fees-table {
    margin-bottom: 50px;
}

.table-title {
    font-size: 24px;
    font-weight: bold;
    color: #001f61;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background: #002147;
    color: white;
    font-size: 18px;
}

td {
    font-size: 16px;
    color: #333;
}

/* 🌟 Responsive Design */
@media (max-width: 768px) {
    th, td {
        padding: 10px;
        font-size: 14px;
    }
}

.back-to-tuition {
    margin-top: 30px;
}

.back-to-tuition .btn {
    background-color: #001f61;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.back-to-tuition .btn:hover {
    background-color: #003399;
}


/* Payment Methods */
.payment-methods {
    margin-top: 30px;
}

.payment-methods h3 {
    font-size: 22px;
    font-weight: bold;
    color: #001f61;
    margin-bottom: 10px;
}

.payment-methods p {
    font-size: 16px;
    color: #555;
}

/* 🌟 Media Page Styling */
.media-container {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(to bottom, #f8f9fa, #e9f5ff);
    border-radius: 12px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

/* 📌 Section Title */
.section-title {
    font-size: 34px;
    font-weight: bold;
    color: #002147;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* 🔻 Dropdown Styling */
.media-dropdown select {
    max-width: 280px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #002147;
    border-radius: 5px;
    background-color: white;
    color: #002147;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.media-dropdown select:hover {
    background-color: #002147;
    color: white;
}

/* 🎭 Media Sections */
.media-section {
    margin-top: 30px;
    transition: opacity 0.5s ease-in-out;
}

/* 🔥 Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* 🎞 Media Card */
.media-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    overflow: hidden;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* 📷 Image Styling */
.media-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

/* 🎥 Video Card */
.video-card {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-card iframe {
    border-radius: 8px;
}

/* 📝 Text Styling */
.media-card p {
    font-size: 14px;
    font-weight: bold;
    color: #002147;
    margin-top: 8px;
}
/* 🎨 Media Gallery Styling */
.media-gallery {
    padding: 60px 30px;
    background: #f9f9f9;
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 30px;
}

/* 🖼️ Gallery Section */
.gallery-section {
    margin-bottom: 50px;
}

.gallery-name {
    font-size: 24px;
    font-weight: bold;
    color: #001f61;
    margin-bottom: 20px;
}

/* 🔲 Masonry Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: center;
}

/* 🖼️ Image Box */
.image-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.image-box:hover img {
    transform: scale(1.05);
}

/* 🏮 Lightbox Styling */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
}
/* 🎨 Media Gallery Styling */
.media-gallery {
    padding: 60px 30px;
    background: #f9f9f9;
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 30px;
}

/* 🖼️ Gallery Section */
.gallery-section {
    margin-bottom: 50px;
}

.gallery-name {
    font-size: 24px;
    font-weight: bold;
    color: #001f61;
    margin-bottom: 20px;
}

/* 🔲 Masonry Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: center;
}

/* 🖼️ Image Box */
.image-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.image-box:hover img {
    transform: scale(1.05);
}

/* 🏮 Lightbox Styling */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
}
