/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000000;
    background: #000000;
}

header {
    background: linear-gradient(135deg, #1f79d3, #000000);
    color: #bd2828;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Logo in Top Left Corner */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10000;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.678);
}

/* Navigation */
nav {
    background: #101011;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #6196db;
    transform: translateY(-3px);
}

nav a.active {
    color: #f4f3f5;
    font-weight: bold;
}

/* Academics Hero Section */
.academics-hero {
    background: url('https://scontent.fisb3-2.fna.fbcdn.net/v/t39.30808-6/401148078_752407230235709_3029883484123453099_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=833d8c&_nc_eui2=AeGKAqA0EQuGEmYsUBitVJDaxZ5e9k0mA2LFnl72TSYDYufSx08SAvKEAqJFM6kyHZ0RgSaqtyPjE5fcgfkkkq6Q&_nc_ohc=m-ByI3VdEjkQ7kNvgFHJUAL&_nc_oc=AdiQWb4ir1brdXyY-Y3c1Qcn95pQzJSFIJj9TD3QBYh7R2XlBXOXrXaZtwlmwaj8Sus&_nc_zt=23&_nc_ht=scontent.fisb3-2.fna&_nc_gid=Ap_fMWpxL4eQQckfa6JxCPY&oh=00_AYCq3r7kBNQhqCzoqqJ8ms1S1mdmZ6R3NU1wAnWjXvMxOA&oe=67C7B10A') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

.academics-hero h1 {
    font-size: 2.5rem;
    margin: 0;
}

.academics-hero p {
    font-size: 1.2rem;
}

/* Academic Programs Section */
.academic-programs {
    padding: 40px 20px;
    background: #d4caca;
    margin: 20px 0;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.programs-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.program-card {
    flex: 1;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.76);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 250px;
    max-width: 300px;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.753);
}

.program-card i {
    font-size: 2rem;
    color: #f1c40f;
    margin-bottom: 10px;
}

.program-card h3 {
    color: #2c3e50;
    margin: 10px 0;
}

.program-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Curriculum Section */
.curriculum {
    padding: 40px 20px;
    background: #d4caca;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(167, 155, 155, 0.1);
}

.curriculum-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.curriculum-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.curriculum-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.curriculum-image {
    flex: 1;
    max-width: 15%;
    border-radius: 8px;
    overflow: hidden;
}

.curriculum-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Extracurricular Activities Section */
.extracurricular {
    padding: 40px 20px;
    background: #d4caca;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.activities-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.activity-card {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 250px;
    max-width: 300px;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.activity-card i {
    font-size: 2rem;
    color: #f1c40f;
    margin-bottom: 10px;
}

.activity-card h3 {
    color: #2c3e50;
    margin: 10px 0;
}

.activity-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 35px 6;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo img {
        height: 40px; /* Smaller logo for mobile */
    }

    nav a {
        font-size: 1rem; /* Smaller font for mobile */
        margin: 0 10px;
    }

    .academics-hero h1 {
        font-size: 2rem; /* Smaller heading for mobile */
    }

    .academics-hero p {
        font-size: 1rem; /* Smaller text for mobile */
    }

    .program-card, .activity-card {
        min-width: 100%; /* Full-width cards on mobile */
    }

    .curriculum-content {
        flex-direction: column; /* Stack text and image on mobile */
    }

    .curriculum-image {
        max-width: 100%; /* Full-width image on mobile */
    }
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 9000px; /* Adjust as needed */
    margin: auto;
    padding: 20px;
    background: #d4caca;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-box {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 330px; /* Adjust video size */
}

video {
    background-color: #f9f9f9;
    width: 100%;
    border-radius: 10px; /* Optional: rounded corners */
}

p {
    margin-top: 120px; /* Ensure text doesn't overlap the video */
}