﻿body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
}
:root {
    --brand-green: #58CC3A;
    --brand-blue: #0D6EFD;
    --brand-blue-dark: #0A58CA;
    --dark-bg: #1F2937;
    --text-dark: #111827;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

html, body {
    height: 100%;
    margin: 0;
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    padding-top: 64px;
}

/* HERO SECTION */
.hero {
    min-height: calc(100vh - 64px); /* full screen minus header */
    background: #0D6EFD;
    display: flex;
    align-items: flex-start; /* ⬅ move content upward */
    justify-content: center;
    text-align: center;
    padding-top: 0px; /* ⬅ space below header */
}

.hero-content {
    max-width: 900px;
    padding: 20px;
}

/* HERO LOGO */
.hero-logo {
    height: 200px;
    margin-bottom: 10px;
  
}

/* HERO TEXT */
.hero h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    color: #e9ffe7;
    font-size: 14px;
    margin-bottom: 30px;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}
.btn-primary {
    background: #0d6efd;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-outline {

    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
}


/* SERVICE CARDS */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

 
/* NAVBAR */
.top-nav {
     
    background: #57c84d; 
    color: white;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 34px;
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
}

.nav-right {
    display: flex;
    gap: 25px;
}

    .nav-right a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

        .nav-right a.active {
            background: rgba(255,255,255,0.2);
            padding: 6px 12px;
            border-radius: 6px;
        }

/* FOOTER */
.footer {
    background-color: var(--secondary);
    color: #D1D5DB;
    padding: 40px 0;
    margin-top: 80px;
}
html, body {
    height: 100%;
    margin: 0;
}
.section-light {
    background-color: #F3F4F6;
    padding: 80px 0;
}

 
/* HEADER BAR */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #57c84d; /* green */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
}

/* LEFT SIDE */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LOGO */
.logo {
    height: 36px;
    display: block;
}

/* BRAND TEXT */
.brand-text {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* RIGHT NAV */
.header-right {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

    .nav-link:hover,
    .nav-link.active {
        text-decoration: underline;
    }

/* ===========================
   Mobile Responsiveness
   =========================== */

@media (max-width: 768px) {

    /* Header */
    .navbar {
        padding: 12px 16px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar img {
        height: 36px;
    }

    /* Navigation links */
    .nav-links {
        display: none; /* hide desktop menu for now */
    }

    /* Hero Section */
    .hero {
        min-height: calc(100vh - 56px);
        padding-top: 32px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-logo {
        height: 64px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-top: 12px;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

        .hero-buttons a {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }

    /* What We Do section */
    .features {
        grid-template-columns: 1fr;
        padding: 40px 16px;
        gap: 24px;
    }

    /* Footer */
    footer {
        padding: 16px;
        font-size: 0.9rem;
        text-align: center;
    }
}
