/* Google Fonts Import for Devanagari & English */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Tiro+Devanagari+Nepali&display=swap');

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

body {
    font-family: 'Tiro Devanagari Nepali', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
    text-align: center;
}

/* Header & Navbar Styles */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    text-decoration: none;
    color: #1e3c72;
}

.logo h2 {
    font-size: 1.6rem;
    font-weight: 600;
}

.logo span {
    color: #e74c3c;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.slogan {
    font-size: 1.3rem;
    font-style: italic;
    color: #f1c40f;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 25px auto;
}

.btn {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

/* About Section */
.about-section {
    background: #f9f9f9;
}

.about-section p {
    max-width: 800px;
    margin: 15px auto 0 auto;
    font-size: 1.1rem;
}

/* Services Section */
.services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s ease;
}

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

.card h3 {
    color: #1e3c72;
    margin-bottom: 12px;
}

/* Features Section */
.features-section {
    background: #ffffff;
}

.features-section ul {
    list-style: none;
    margin-top: 20px;
}

.features-section li {
    font-size: 1.2rem;
    margin: 15px 0;
}

/* Contact Section */
.contact-section {
    background: #f4f6f7;
}

.contact-form {
    max-width: 500px;
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #1e3c72;
}

/* Footer Styles */
.main-footer {
    background-color: #1e3c72;
    color: #ffffff;
    padding-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.footer-info, .footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-slogan {
    color: #f1c40f;
    font-style: italic;
    margin-bottom: 10px;
}

.footer-links h4 {
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    background-color: #14284b;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        flex-direction: column;
    }

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