:root {
    --bch-green: #00e3a5;
    --emerald-green: #048259;
    --bch-black: #000000;
    --bch-grey-dark: #1a1a1a;
    --bch-grey-light: #f4f4f4;
    --white: #ffffff;
    --text-main: #333333;
    --overlay: rgba(0, 0, 0, 0.7);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--emerald-green);
}

/* Header Styling - Transparent Emerald Green */
header {
    background-color: rgba(4, 130, 89, 0.9);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 1rem 0;
    border-bottom: 4px solid var(--bch-green);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo { display: flex; align-items: center; justify-content: flex-start; }
.logo-img { height: 60px; width: auto; display: block; }

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover { color: var(--bch-green); }

.nav-contact {
    background-color: var(--bch-green);
    color: var(--bch-black) !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700 !important;
}

/* Main Content Area */
main {
    max-width: 1200px;
    margin: 40px auto;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

/* Hamburger Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1518546305927-5a555bb7020d?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--overlay);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-img {
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    border: 3px solid var(--bch-green);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.founder-message-container {
    flex: 2;
    color: var(--white);
}

.message-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--bch-green);
}

.message-content p { font-size: 1.1rem; margin-bottom: 20px; }
.founder-signature { font-weight: 800; font-size: 1.3rem !important; color: var(--bch-green); }

/* Info Grid */
.info-grid {
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.stats-circle {
    width: 280px;
    height: 280px;
    border: 12px solid var(--bch-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.stats-value { font-size: 4rem; font-weight: 900; }
.stats-label { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; color: #666; }

.dashboard-box {
    background-color: var(--bch-grey-light);
    width: 100%;
    padding: 25px;
    border-radius: 8px;
    border-left: 6px solid var(--emerald-green);
}

.dashboard-box h3 { margin-bottom: 15px; font-size: 1.2rem; text-transform: uppercase; }
.dash-item { display: flex; justify-content: space-between; margin-bottom: 8px; border-bottom: 1px solid #ddd; padding-bottom: 5px; }
.dash-label { font-weight: 500; }
.dash-value { font-weight: 700; color: var(--emerald-green); }

.content-column h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--bch-black); }
.content-column p { margin-bottom: 20px; font-size: 1.1rem; }

.faq-btn {
    display: inline-block;
    background-color: var(--bch-black);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 10px;
    transition: background 0.3s;
}

.faq-btn:hover { background-color: var(--emerald-green); color: var(--white); }

/* Footer Styling */
footer {
    background-color: var(--bch-black);
    color: var(--white);
    padding: 60px 0 20px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 { color: var(--bch-green); margin-bottom: 20px; font-size: 1rem; text-transform: uppercase; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: #ccc; text-decoration: none; transition: color 0.2s;}
footer a:hover { color: var(--bch-green); }

.trademark { text-align: center; padding-top: 40px; border-top: 1px solid #333; font-size: 0.85rem; color: #666; }

/* =========================================
   RESPONSIVE DESIGN (Tablets & Phones)
   ========================================= */

/* For Tablets (iPads, smaller laptops) - up to 992px */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
    .hero-content-wrapper {
        padding: 40px 20px;
    }
    .stats-counter {
        flex-direction: column;
        gap: 20px;
    }
}

/* For Mobile Phones - up to 768px */
@media (max-width: 768px) {
    header {
        position: relative !important; /* Stops header from blocking screen on scroll */
    }

    .header-container {
        flex-direction: row; /* Keeps logo and button side-by-side */
        justify-content: space-between;
        padding: 10px 20px;
    }

    .logo-img { height: 45px; } /* Shrinks logo slightly for mobile */

    /* Show the hamburger button */
    .menu-toggle { display: flex; }

    /* Hide the navigation links by default and style the dropdown */
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(4, 130, 89, 0.98);
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        padding: 20px 0;
        z-index: 999;
    }

    /* This class is added by Javascript when the button is clicked */
    nav.active { display: flex; }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-contact {
        display: inline-block;
        margin-top: 10px;
    }

    /* Make other elements fit the mobile screen */
    .hero { min-height: auto; }
    .hero-content-wrapper { flex-direction: column; text-align: center; padding: 30px 15px; }
    .founder-img { max-width: 160px; }
    .message-content h1 { font-size: 1.8rem; }
    .message-content p { font-size: 1rem; }
    .stats-circle { width: 200px; height: 200px; border-width: 8px; }
    .stats-value { font-size: 2.5rem; }
    .content-column h2 { font-size: 1.8rem; }
    main { margin: 15px; }
    .contact-container, .faq-container, .content-section, .news-container { padding: 20px; margin: 20px 10px; }
    .page-header h1, .about-hero h1 { font-size: 2rem; }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
}

/* For Extra Small Phones - up to 480px */
@media (max-width: 480px) {
    .stats-box h3 {
        font-size: 2rem;
    }
}
