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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2C3E76;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

nav .logo:hover {
    opacity: 0.8;
}

nav .logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    color: #2C3E76;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD93D;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #6BBFDB;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2C3E76;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Full Screen with Background */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 180px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 191, 219, 0.85) 0%, rgba(74, 144, 164, 0.9) 100%);
    z-index: 1;
}

/* Animated background pattern */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: white;
    margin: 2rem auto;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.hero-divider::before {
    left: -20px;
}

.hero-divider::after {
    right: -20px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.enrollment-badge {
    background: rgba(255, 217, 61, 0.95);
    color: #2C3E76;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enrollment-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: rgba(255, 217, 61, 1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: white;
    color: #2C3E76;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #FFD93D;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2C3E76;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Sections */
section {
    padding: 6rem 3rem;
}

section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2C3E76;
    position: relative;
    font-weight: 700;
}

section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Welcome Section */
.welcome {
    background: #F8F9FA;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
}

.welcome-content p {
    margin-bottom: 2rem;
}

.welcome-content strong {
    color: #2C3E76;
    font-weight: 600;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.program-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.program-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2C3E76;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.program-card ul {
    list-style: none;
    padding-left: 0;
}

.program-card li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6BBFDB;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #6BBFDB 0%, #4A90A4 100%);
    color: white;
}

.features h2,
.features .section-subtitle {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    line-height: 1.7;
    font-weight: 300;
}

/* Director Section */
.director {
    background: #F8F9FA;
}

.director-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.director-content h3 {
    font-family: 'Playfair Display', serif;
    color: #2C3E76;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.director-content p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #555;
}

.director-content em {
    display: block;
    font-size: 1.2rem;
    color: #6BBFDB;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f8fb;
    border-radius: 10px;
    border-left: 4px solid #6BBFDB;
}

.credentials {
    background: linear-gradient(135deg, #6BBFDB 0%, #4A90A4 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2.5rem;
}

.credentials h4 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
}

.credentials li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.credentials li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #FFD93D;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: #2C3E76;
    color: white;
}

.contact h2,
.contact .section-subtitle {
    color: white;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item a {
    color: #FFD93D;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: white;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.license-info {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.license-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Enrollment Section */
.enrollment {
    background: #F8F9FA;
}

.enrollment-content {
    max-width: 900px;
    margin: 0 auto;
}

.enrollment-steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
    align-items: start;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-number {
    background: linear-gradient(135deg, #6BBFDB 0%, #4A90A4 100%);
    color: white;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(107, 191, 219, 0.4);
}

.step-content h3 {
    color: #2C3E76;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.enrollment-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.enrollment-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2C3E76;
    font-weight: 600;
}

/* Footer */
footer {
    background: #1a2744;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}

footer .container {
    max-width: 800px;
}

footer .footer-content {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

footer .footer-text {
    flex: 1;
    min-width: 250px;
}

footer p {
    margin: 0.7rem 0;
    font-size: 0.9rem;
}

footer p strong {
    font-size: 0.95rem;
}

footer .footer-divider {
    width: 60px;
    height: 2px;
    background: #FFD93D;
    margin: 1.5rem auto;
}

footer .footer-social {
    display: inline-flex;;
    gap: 1rem;
    align-items: center;
}

footer .social-icon {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

footer .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #FFD93D;
}

footer .social-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 2.3rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav .logo-img {
        height: 35px;
    }

    nav .logo {
        font-size: 1.4rem;
    }

    .programs-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .director-content {
        padding: 2.5rem;
    }

    section {
        padding: 4rem 2rem;
    }

            .container {
                padding: 0 2rem;
            }

            .page-header {
                padding-top: 150px;
            }

            footer .footer-content {
                flex-direction: column;
                text-align: center;
            }

            footer .footer-social {
                justify-content: center;
            }
        }

@media (max-width: 640px) {
    nav {
        padding: 0.8rem 0;
    }

    nav .container {
        padding: 0 1.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav .logo {
        font-size: 1rem;
        gap: 0.5rem;
        flex: 1;
    }

    nav .logo-img {
        height: 40px;
    }

    nav .logo span {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    nav ul.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    nav ul li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 0.8rem 1.5rem;
        color: #2C3E76;
    }

    .hero {
        padding-top: 100px;
        min-height: 600px;
        align-items: flex-start;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem;
        margin-top: 1rem;
    }

    .enrollment-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 1.5rem;
        display: inline-block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .page-header {
                padding-top: 120px;
            }

            footer .footer-content {
                flex-direction: column;
                text-align: center;
            }

            footer .footer-social {
                justify-content: center;
                margin-top: 1rem;
            }
}

/* Page Header */
.page-header {
    padding-top: 200px;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, rgba(107, 191, 219, 0.1) 0%, rgba(74, 144, 164, 0.1) 100%);
}

.contact .page-header {
    background: linear-gradient(135deg, #2C3E76 0%, #1a2744 100%);
}

/* Enrollment page button override */
.enrollment .btn-primary {
    background: linear-gradient(135deg, #6BBFDB 0%, #4A90A4 100%);
    color: white;
}

.enrollment .btn-primary:hover {
    background: linear-gradient(135deg, #4A90A4 0%, #6BBFDB 100%);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
