* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* header {
   height: 120px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    font-family: 'Inter', sans-serif;

} */

.logo img {
    height: 50px;
}

a {
    color: inherit;
    text-decoration: none;
}



/* === HEADER & NAV === */
.main-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
    background-color: #ffffff;
    color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
}

.logo img {
    height: 50px;
    content: url('../img/logo.png');
    /* Adjusted path for CSS in subfolder */
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin: 0 20px;
    position: relative;
}

.main-nav ul li a {
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #000000;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: none;
    background-color: #6d28d9;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav ul li a:hover {
    color: #c211da;
    /* Light purple */
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.programslist .programslist1 {
    display: none;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    min-width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    color: #000000;
    visibility: hidden;
    transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.programslist:hover .programslist1 {
    display: block;
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.programslist1 ul {
    flex-direction: column;
}

.programslist1 ul li {
    margin: 0;
    width: 100%;
}

.programslist1 ul li a {
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    white-space: nowrap;
}

.programslist1 ul li a:hover {
    background-color: #f3e8ff;
    /* Light purple */
    color: #4c0563;
}

.programslist1 ul li a i {
    margin-left: 8px;
}

.others .other-main {
    display: none;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: rgb(6, 6, 6);
    min-width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.others:hover .other-main {
    display: block;
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.other-main ul {
    display: flex;
    flex-direction: column;
}

.other-main ul li {
    margin: 0;
    width: 100%;
}

.other-main ul li a {
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    white-space: nowrap;
}

.other-main ul li a:hover {
    background-color: #f3e8ff;
    /* Light purple */
    color: #4c0563;
}

.other-main ul li a i {
    margin-left: 8px;
}

/* Mobile Hamburger & Side Menu */
.menu-toggle {
    display: none;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.4s ease-in-out;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: #6d28d9;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 100px;
    overflow-y: auto;
}

.side-menu nav ul {
    display: flex;
    flex-direction: column;
}

.side-menu nav a {
    display: block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Interaction */
#menu-toggle:checked~.side-menu {
    transform: translateX(0);
}

#menu-toggle:checked~.hamburger-menu .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

#menu-toggle:checked~.hamburger-menu .bar:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked~.hamburger-menu .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive Nav Breakpoint */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}

.future {
    height: 90vh;
    backdrop-filter: blur(5px);
    background: linear-gradient(rgba(0, 0, 0, 0.932)), url(../img/hero_3.png);
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 50px;

}

.future h3 {
    font-size: 5.6rem;
    line-height: 75px;
    font-weight: 800;
    color: rgb(114, 13, 209);

}

.purple {
    color: rgba(253, 24, 203, 0.952);
}

.future p {
    font-size: 1em;
    font-weight: 500;
    color: rgb(114, 13, 209);
    margin-top: 10px;


}

.future-text {
    margin-top: 30px;
    height: auto;
    padding: 10vh 0 10vh 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.future-text-p {
    width: 80%;
}

.future-text-p h3 {
    font-size: 3.5em;
    color: rgb(164, 2, 161);
    font-weight: 700;
    margin-bottom: 40px;
}

.future-text-p h3 span {
    color: rgb(53, 2, 101);
}

.future-text-p p {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 40px;
}

.future-img {
    height: 670px;
    width: 80%;
    margin-bottom: 60px;

}

.future-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testy {
    height: auto;
    padding: 10vh 0 10vh 0;
    width: 60%;
    margin: 0 auto;
    /* Center the container */
}

.five {
    text-align: center;
}

.five img {
    height: 120px;
}

.carousel-item {
    text-align: center;
}

.carousel-inner {
    margin: auto;
}

.carousel-item p {
    font-size: 1.4em;
}

.carousel-item h4 {
    font-size: 1.4;
    color: rgb(173, 86, 255);
    font-weight: 800;
}

.carousel-item h6 {
    font-weight: 500;
}

.future-video {
    margin-top: 30px;
    height: 500px;
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
}

.future-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.momo {
    height: 500px;
    width: 80%;
    margin: auto;
    /* margin-top: 20px; */
    margin-bottom: 30px;
}

.momo img {
    height: 100%;
    width: 100%;
    object-fit: auto;
}

/* ======== PROGRAM DETAILS STYLES START ======== */

.our-programs {
    padding: 80px 5%;
    background-color: #fff;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 3rem;
    font-weight: 800;
    color: rgb(53, 2, 101);
}

.programs-grid {
    display: grid;
    /* Default to 1 column for mobile */
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Tablet: 2 Columns */
@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 Columns */
@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Ensure cards stretch to fill the grid row */
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    font-size: 1.6rem;
    color: rgb(164, 2, 161);
    font-weight: 700;
    margin-bottom: 15px;
}

.program-card h4 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    border-left: 4px solid #c500ed;
    padding-left: 10px;
}

.program-card p,
.program-card li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.program-card ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.program-card li {
    margin-bottom: 8px;
}

/* ======== PROGRAM DETAILS STYLES END ======== */

/* === FOOTER === */
.footer {
    padding: 5vh 0 10vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: black;
    color: white;
}

.footer1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 2px solid white;
    padding-bottom: 40px;
    width: 86%;
}

.logo1 {
    display: flex;
    align-items: flex-start;
}

.logo1 img {
    height: 80px;
    width: auto;
    /* Ensure aspect ratio */
}

.logo1 h4 {
    font-size: 6.5em;
    font-weight: 700;
    margin-left: 20px;
    line-height: 1;
    /* Fixes spacing */
}

.contact-bthn {
    width: 80%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 0 80px 0;
}

.btn33,
.btn34 {
    height: 80px;
    width: 100%;
    max-width: 260px;
    background: transparent;
    color: white;
    border: 1px solid white;
    font-weight: 500;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    /* Centering text inside button */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn33 a,
.btn34 a {
    color: white;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn33:hover,
.btn34:hover {
    background-color: white;
    color: black;
    border-color: white;
}

.btn33:hover a,
.btn34:hover a {
    color: black;
}

.credentials {
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credentials p {
    font-size: 1em;
    font-weight: 400;
}

.links2 ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.links2 .wow {
    border-right: 1px solid blueviolet;
    padding-right: 20px;
}

.wow a {
    color: blueviolet;
}

.links2 ul li a {
    font-size: 1.1em;
    font-weight: 500;
    transition: .3s;
    color: white;
    text-decoration: none;
    /* Ensure visible on black */
}

.links2 ul li a:hover {
    color: blueviolet;
}

/* --- FOOTER RESPONSIVENESS (From Original) --- */
@media (max-width: 992px) {
    .logo1 h4 {
        font-size: 4em;
    }

    .contact-bthn {
        flex-direction: column;
        width: 90%;
        padding: 40px 0;
    }

    .btn33,
    .btn34 {
        font-size: 1em;
        height: 70px;
        max-width: 100%;
    }

    .credentials {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }

    .links2 ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .logo1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo1 h4 {
        font-size: 3em;
        margin-left: 0;
        margin-top: 10px;
    }

    .footer1 {
        width: 90%;
        padding-bottom: 20px;
        justify-content: center;
        /* Center logo on mobile */
    }

    .links2 .wow {
        display: list-item;
        border-right: 1px solid blueviolet;
        padding-right: 20px;
    }
}

@media (min-width: 768px) {
    .credentials {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) {

    /* .hero {
        height: 900px;
        padding: 0 10px;
    } */
    .future h3 {
        /* Further reduce font size for small mobile screens */
        font-size: 2rem;
    }

    .future p {
        font-size: 0.9rem;
        line-height: normal;
    }

    /* 
    #framework h2 {
    font-size: 1.5em;
} */
}