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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

h1, h2, h3 {
    color: #1e293b;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #8a7144;
    font-size: 1.25rem;
    font-weight: 600;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #1e293b;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4f46e5;
}

.apply-btn {
    background-color: #4f46e5;
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color: #4338ca;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Vision Section */
.vision {
    padding: 5rem 2rem;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.vision-image {
    flex: 1;
}

.vision-image img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    text-align: left;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.vision-text p {
    margin-bottom: 1.5rem;
    color: #475569;
    font-size: 1.05rem;
}

.vision-text .highlight {
    color: #4f46e5;
    font-weight: 500;
}

/* Learning Programs Section */
.learning-programs {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.programs {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.program {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.program:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.program img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1e293b;
    font-size: 1.25rem;
}

.program p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 2rem;
    background-color: #fff;
}

.testimonials {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #475569;
}

.author {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.position {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-image: url('./imgs/9.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.contact h2, 
.contact .subtitle,
.contact-form-container {
    position: relative;
    z-index: 2;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: inherit;
    color: #1e293b;
}

input::placeholder, textarea::placeholder {
    color: #94a3b8;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #4338ca;
}

/* Footer Section */
footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-address {
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.footer-address p {
    margin-bottom: 0.5rem;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .vision-container {
        flex-direction: column;
    }
    
    .programs,
    .testimonials {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .vision-text h2 {
        font-size: 2rem;
        text-align: center;
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}