/* General Body & Typography */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f9; /* Soft off-white background */
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 2rem;
}

h1, h2, h3 {
    color: #1a2a40; /* A dark, professional charcoal/navy blue */
    font-weight: 700;
}

h1 {
    font-size: 4.5rem; /* Increased font size for the hero title */
}

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

p {
    font-size: 1.1rem;
}

a {
    color: #00796b; /* Accent green for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation (New Styles) */
#main-header {
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px; /* Smaller header logo for fixed nav */
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-nav li {
    margin-left: 20px;
}

.desktop-nav a {
    color: #1a2a40;
    font-weight: 700;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #004d40;
}

.menu-toggle {
    display: none; /* Hide on desktop */
}

/* Mobile Nav (Hamburger menu) */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 99;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-nav.is-active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav li {
    margin: 2rem 0;
}

.mobile-nav a {
    font-size: 1.5rem;
    color: #1a2a40;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
    }
    .desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 100;
        position: relative;
    }
    .hamburger {
        width: 30px;
        height: 3px;
        background-color: #1a2a40;
        transition: all 0.3s ease;
        position: relative;
    }
    .hamburger::before, .hamburger::after {
        content: '';
        width: 30px;
        height: 3px;
        background-color: #1a2a40;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }
    .hamburger::before {
        top: -8px;
    }
    .hamburger::after {
        top: 8px;
    }
    .menu-toggle.is-active .hamburger {
        background: transparent;
    }
    .menu-toggle.is-active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    .menu-toggle.is-active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
}


/* Hero Section */
#hero {
    padding-top: 100px; /* Offset for fixed header */
    background: #e6e6e6; /* Light background to complement logos */
    color: #1a2a40;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 42, 64, 0.8), rgba(0, 77, 64, 0.8)), url('https://storage.googleapis.com/gimini/images/4255152864606775670') no-repeat center center/cover;
    opacity: 0.9;
}

.hero-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 200px;
    display: none;
}

.hero-logo-left {
    left: 40px;
}

.hero-logo-right {
    right: 40px;
}

@media (min-width: 768px) {
    .hero-logo {
        display: block;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-content .slogan {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-subtext {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

/* Services Section */
#services {
    background: #ffffff;
    color: #333;
    padding: 4rem 0;
}

#services h2 {
    color: #1a2a40;
    margin-bottom: 2rem;
}

.services-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

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

.service-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #004d40;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item ul.service-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.service-item ul.service-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.service-item ul.service-list li::before {
    content: '✓';
    color: #004d40;
    position: absolute;
    left: 0;
}

/* About Section */
#about {
    padding: 4rem 0;
    background: #e6e6e6;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.content-row .founder-photo {
    flex: 1;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 300px;
}

.content-row .text-content {
    flex: 2;
}

@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
        text-align: center;
    }

    .content-row .founder-photo {
        margin-bottom: 2rem;
    }
}

/* Contact Section */
#contact {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

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

.contact-form h3 {
    color: #1a2a40;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #004d40;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #00796b;
}

/* Footer */
footer {
    background: #1a2a40;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}


