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

html {
    scroll-behavior: smooth; /* Smooth scrolling for nav links */
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #ffffff; /* White background as requested */
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #222;
}

.bg-light {
    background-color: #fafafa;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #ff9a44;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}

/* --- Hero Section (80vh) --- */
.hero {
    height: 80vh;
    /* Gradient matching your uploaded image (Mint to Peach/Orange glow) */
    background: radial-gradient(circle at center, rgba(255, 178, 107, 0.6) 0%, rgba(219, 246, 244, 1) 55%, rgba(206, 240, 238, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 70px; /* Offset for fixed nav */
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 15px rgba(255,255,255,0.5);
}

.hero-content p {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Beautiful soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.icon-wrapper {
    height: 70px;
    width: 70px;
    background: linear-gradient(135deg, #dbf6f4 0%, #ffb26b 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: #222;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* --- Responsive Media Queries (Max 1000px) --- */
@media screen and (max-width: 1000px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Hidden by default */
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        gap: 20px;
    }

    .nav-links.active {
        right: 0; /* Slides in when active */
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}