* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

.home-container { 
    width: 90%; 
    text-align: center;
    max-width: 1100px; 
    margin: 0 auto; 
}

/* Header */
header { 
    background-color: #1b3b1b; 
    color: white; 
    padding: 0; /* removes all top/bottom padding */
}

/* Flex container for header content */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; /* compact header height */
    padding: 0 2rem; /* add space on left and right */
    max-width: 1100px; /* optional: keep content centered on large screens */
    margin: 0 auto; /* center container */
}

/* Logo size */
header .logo {
    height: 200px; /* increase from 50px to 80px */
    width: auto;  /* keeps aspect ratio */
}

/* Flex for logo and nav */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
nav ul { 
    list-style: none; 
    display: flex; 
    gap: 2rem; 
}
nav ul li a { 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
}

/* Hamburger Menu */
.hamburger {
    display: none;
    text-align: center;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger div {
    width: 25px;
    text-align: center;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Hero */
.hero { 
    background: url('https://github.com/colbyfuller50-cyber/PBS/blob/main/BCKGRD%20Image.png?raw=true') center/cover no-repeat; 
    color: black; 
    text-align: center; 
    padding: 6rem 1rem; 
}
.hero h1 { 
    text-align: center;
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
}
.hero p { 
    text-align: center;
    margin-bottom: 2rem; 
    font-size: 1.2rem; 
}

/* Button */
.btn { 
    background-color: #4caf50; 
    color: white; 
    padding: 0.8rem 1.5rem; 
    text-decoration: none; 
    border-radius: 5px; 
}

/* Sections */
section { 
    padding: 4rem 1rem; 
}
section h2, section h1 { 
    text-align: center; 
    margin-bottom: 2rem; 
}

/* Service Card */
.service-card { 
    background: #f9f9f9; 
    border: 1px solid #ddd; 
    padding: 1.5rem; 
    margin-bottom: 2rem; 
    border-radius: 5px; 
}

/* Forms */
form { 
    max-width: 600px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}
form input, form select, form textarea { 
    padding: 0.8rem; 
    border-radius: 5px; 
    border: 1px solid #ccc; 
}
form button { 
    padding: 1rem; 
    background-color: #4caf50; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
}

/* Footer */
footer { 
    background-color: #1b3b1b; 
    color: white; 
    text-align: center; 
    padding: 2rem 1rem; 
    font-size: 0.9rem; 
}

/* Mobile Styles */
@media (max-width: 768px) { 
    nav ul { 
        position: absolute;
        top: 70px; /* below header */
        right: 0;
        background-color: #1b3b1b;
        flex-direction: column; 
        width: 200px;
        display: none; 
        text-align: center; /* centers text */
        align-items: center; /* centers flex items horizontally */
        padding: 1rem 0; /* optional spacing top/bottom */
    } 
    nav ul.show {
        display: flex;
    }
    .hamburger { 
        display: flex; 
    }
    .hero h1 { 
        font-size: 2rem; 
    } 
}

<style>
/* ===========================
   Services Page Specific Styles
   =========================== */

/* Container for services */
section.containers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 1rem;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Service Card Heading */
.service-card h2 {
    color: #1b3b1b;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
    padding-bottom: 5px;
}

/* List inside service card */
.service-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Pricing */
.service-card p {
    font-weight: bold;
    color: #4caf50;
    font-size: 1.1rem;
}

/* Heading for page */
section h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1b3b1b;
}

/* Responsive cards */
@media (min-width: 768px) {
    section.container {
        display: grid;
        text-align: center;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
</style>

/////* Full-screen services section */////
.services-section {
    min-height: 100vh; /* fill viewport height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* heading at top */
    align-items: center;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

/* Services heading */
.services-section h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1b3b1b;
    text-align: center;
}

/* Grid for service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Reveal animation */
.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Headings in card */
.service-card h2 {
    color: #1b3b1b;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
    padding-bottom: 5px;
}

/* List inside card */
.service-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Pricing text */
.service-card p {
    font-weight: bold;
    color: #4caf50;
    font-size: 1.1rem;
}
