/* --- Global Styles --- */
body {
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
    background: rgb(235, 236, 242);
    color: #22243d;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background-color: #22243d;
    z-index: 10000;
    padding: 10px 0;
}

.nav-item {
    font-family: "Poppins";
    font-size: 20px;
    color: #d6e0e9;
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.nav-item:hover {
    color: #6455e9;
}

/* --- Hero Section (With Fade) --- */
.hero-image-container {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(235, 236, 242);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.text-in-image-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-in-image-1 {
    font-size: 64px;
    color: #f7ebeb;
    font-family: "Montserrat";
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.text-in-image-1 span {
    color: #6455e9;
}

/* --- About Section --- */
.about-h1 {
    font-family: "Montserrat";
    font-size: 50px;
    text-align: center;
    margin: 80px 0 30px;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-container p {
    font-family: "Montserrat";
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-image-container img {
    width: 100%;
    max-width: 400px;
    /* optional: limits how big it can get */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text-container {
    flex: 1;
}

.about-image-container {
    flex: 1;
}

/* --- Milestone Boxes --- */
.achievement-h1 {
    font-family: "Montserrat";
    font-size: 42px;
    text-align: center;
    margin: 100px 0 40px;
}

.achievements-section {
    padding: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.achievement-card {
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #4f3fe4;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
}

.achievement-card span {
    font-size: 40px;
    color: #4f3fe4;
    margin-bottom: 15px;
}

.achievement-card p {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

/* --- High-End Program Section --- */
.program-header-container {
    padding: 120px 20px 40px;
    text-align: center;
}

.program-h1 {
    font-family: "Montserrat";
    font-size: 48px;
    font-weight: 900;
}

.program-h1 span {
    font-size: 18px;
    font-weight: 400;
    color: #6455e9;
    display: block;
    margin-top: 10px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 80px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.program-card-inner {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.program-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(100, 85, 233, 0.15);
}

/* --- NEW (More Round) --- */
.program-image-wrapper {
    position: relative;
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Optional: adds some space around the round image */
}

.program-card-image {
    width: 120px;
    /* Slightly larger looks better when round */
    height: 120px;
    border-radius: 50%;
    /* This makes the image a perfect circle */
    object-fit: cover;
    /* Ensures the image doesn't stretch and fills the circle */
    border: 4px solid #ffffff;
    /* Adds a nice white border like a frame */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #22243d;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.program-content {
    padding: 30px;
    text-align: center;
}

.program-divider {
    width: 40px;
    height: 3px;
    background: #6455e9;
    margin: 0 auto 20px;
}

.program-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.program-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* --- Contact & Footer --- */
.contact-section {
    background-color: #22243d;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 10px;
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.icon-container img {
    width: 35px;
    height: 35px;
    transition: opacity 0.3s;
}

.icon-container img:hover {
    opacity: 0.7;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .navbar {
        gap: 20px;
    }

    .nav-item {
        font-size: 16px;
    }

    .hero-image-container {
        height: 60vh;
    }

    .text-in-image-1 {
        font-size: 36px;
    }

    .about-section {
        flex-direction: column;
        padding: 20px;
    }

    .program-grid {
        padding: 0 20px;
    }

    .achievements-section {
        padding: 0 20px;
    }

    .achievement-grid {
        grid-template-columns: 1fr 1fr;
    }
}
