/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Vadodara', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1b4332;
    font-size: 2.2rem;
}

/* Header & Navbar */
header {
    background: #1b4332;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.4rem;
    color: #ffb703;
}

.logo p {
    font-size: 0.8rem;
    color: #e0e0e0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffb703;
}

/* Language Dropdown */
.lang-switch select {
    padding: 5px 10px;
    background: #ffb703;
    color: #1b4332;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    height: 70vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.hero-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background: #ffb703;
    color: #1b4332;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e0a102;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-box {
    background: #f1f8f5;
    padding: 20px;
    border-left: 5px solid #1b4332;
    border-radius: 5px;
}

.about-box h3 {
    margin-bottom: 10px;
    color: #1b4332;
}

.about-box ul {
    list-style: none;
}

.about-box ul li {
    margin-bottom: 8px;
}

/* Courses Section */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #1b4332;
}

.card h3 {
    color: #1b4332;
    margin-bottom: 15px;
}

/* Facilities Section */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.facility-item {
    background: #f1f8f5;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    color: #1b4332;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #112a20;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    .nav-wrapper {
        flex-direction: column;
        margin-top: 15px;
        gap: 10px;
    }
    nav ul {
        justify-content: center;
    }
    nav ul li {
        margin: 0 8px;
    }
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
}