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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fb;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #764ba2;
    color: #fff;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: #e5eaf3;
    padding: 65px 0;
    text-align: center;
}

.about .container p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #393e46;
}

/* Contact Section */
.contact {
    background: #f2fcfc;
    padding: 70px 0 40px 0;
    text-align: center;
}

.contact-form {
    max-width: 520px;
    margin: 1.4rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem;
    border-radius: 8px;
    border: 1px solid #c4cce3;
    font-size: 1rem;
    resize: none;
}

.contact-form button[type=\"submit\"] {
    padding: 1rem 0;
    border-radius: 8px;
    background: #667eea;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.07rem;
    cursor: pointer;
    transition: background-color 0.25s;
}

.contact-form button[type=\"submit\"]:hover {
    background: #764ba2;
}

/* Footer */
footer {
    background: #1e3c72;
    color: #fff;
    padding: 1.2rem 0;
    text-align: center;
    font-size: 1rem;
}

/* Small Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.35rem;
    }
    .hero-content h2 {
        font-size: 2.1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}
