/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #034cd4 0%, #0b52cc 25%, #121cdb 50%, #062cd6 75%, #120cd3 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #1a1a1a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text h1 {
    font-family: 'Amiri', serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo-text .tagline {
    color: #f0f8ff;
    font-size: 0.9rem;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e7e7ea;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #034cd4 0%, #0b52cc 25%, #121cdb 50%, #062cd6 75%, #060ddb 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    flex: 0 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #0a1ed8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #0e47d8, #1016cc);
    color: #ece4e4;
    border: 2px solid #dadae1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 17, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #eaeaea;
    border: 2px solid #dadae1;
}

.btn-secondary:hover {
    background: #150ada;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}



.hero-logo {
    width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* About Section */
.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.about-content {
    text-align: center;
}

.about .section-header h2 {
    color: #fff;
}

.about-image {
    display: block;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 2rem auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.vision, .mission {
    background: linear-gradient(135deg, #034cd4 0%, #0b52cc 25%, #121cdb 50%, #062cd6 75%, #111ad0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    color: #fff;
}

.vision h3, .mission h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.vision p, .mission p, .mission li {
    color: #fff;
}

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

.mission li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #034cd4 0%, #0b52cc 25%, #121cdb 50%, #062cd6 75%, #002ae6 100%);
}

.team-content {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 200px;
    text-align: center;
    max-width: 250px;
}

.team-about {
    flex: 0 0 500px;
    max-width: 500px;
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 0.5rem;
}

.team-member img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.team-about img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.team-member img:hover,
.team-about img:hover {
    transform: translateY(-5px);
}

.team-info {
    margin-top: 1rem;
    color: #fff;
}

.team-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #ffd700;
}

.team-info p {
    font-size: 0.95rem;
    color: #f0f8ff;
    margin: 0;
}

.team-about {
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 0.5rem;
}

.team-about img {
    max-width: 500px;
}

/* Programs Section */
.programs {
    background: #000;
    color: #fff;
}

.programs .section-header h2,
.programs .programs-intro,
.programs .program-card p,
.programs .program-card h3,
.programs .program-card li,
.programs .program-card strong {
    color: #fff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: #000;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    color: #fff;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.program-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.program-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, #034cd4 0%, #0b52cc 25%, #121cdb 50%, #062cd6 75%, #111ac7 100%);
}

.why-us .section-header h2 {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: linear-gradient(135deg, #034cd4 0%, #0b52cc 25%, #121cdb 50%, #062cd6 75%, #0f25d1 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: #fff;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Who Can Join Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: linear-gradient(135deg, #034cd4 0%, #0b52cc 25%, #121cdb 50%, #062cd6 75%, #110edf 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.audience-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #ffd700;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #034cd4 0%, #0624d2 25%, #121cdb 50%, #0624d2 75%, #0624d2 100%);
    color: #fff;
}

.contact .section-header h2,
.contact .section-header p {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Impact Section */
.impact-content p {
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stats h3,
.impact-gallery h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.impact-list li {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-align: center;
    list-style: none;
}

.impact-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
}

.impact-image:hover {
    transform: translateY(-5px);
}

.gallery-placeholder p {
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
}

.gallery-caption {
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.footer-logo h3 {
    font-family: 'Amiri', serif;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 25%, #1a1a1a 50%, #1a1a1a 75%, #1a1a1a 100%);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .logo {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .logo-text .tagline {
        font-size: 0.7rem;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero {
        padding: 160px 0 60px;
        min-height: auto;
    }
    
    section {
        padding: 50px 0;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .team-about {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-image {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text .tagline {
        font-size: 0.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
        padding: 10px 20px;
    }
    
    .team-member {
        flex: 0 0 100%;
        max-width: 280px;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .modal {
        width: 95%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #0051dc;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
    padding: 20px;
    z-index: 1000;
    width: 400px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content {
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: none;
    max-height: none;
    overflow-y: visible;
    box-shadow: none;
    position: static;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

.modal-content h2 {
    margin-top: 0;
    text-align: center;
    color: #0b52cc;
    font-size: 18px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #0719e3;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    font-size: 13px;
}

.checkbox-group input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

#registrationForm .btn {
    width: 100%;
    padding: 10px;
    background: #0a15d8;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

#registrationForm .btn:hover {
    background: #034cd4;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

@media (max-width: 768px) {
    .modal {
        width: 90%;
        max-width: 350px;
    }
}