/* ============ COLOR VARIABLES ============ */
:root {
    --mango-yellow: #F5A623;
    --mango-orange: #E8860C;
    --dark-green: #006B3C;
    --bright-green: #00CC00;
    --gold: #C8A951;
    --light-yellow: #FFF8E1;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #666666;
    --dark-bg: #1A1A1A;
    --green-bg: rgb(5, 85, 5);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--green-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--dark-green);
}

a:hover {
    color: var(--mango-orange);
}

ul {
    list-style: none;
}

/* ============ NAVBAR ============ */
.navbar {
    background-color: var(--bright-green);
    width: 100%;
}


.logo a {
    display: flex;
    flex-direction: column;
    padding: 8px 20px;
    color: var(--white);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}
/* logo left push */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center; /* ⭐ center everything */
    position: relative;
}

/* logo ko left pe fix karo */
.logo {
    position: absolute;
    left: 0;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box img {
    width: 45px;   /* size adjust kar sakti ho */
    height: 45px;
    object-fit: cover;
    border-radius: 50%; /* optional round logo */
}

.logo-text {
    display: flex;
    flex-direction: column;
}
/* nav links center me rahenge */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li a {
    display: block;
    color: var(--white);
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.nav-links li a.active {
    background-color: var(--mango-orange);
    color: var(--white);
}
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}


/* ============ FOOTER ============ */
.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-box img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

.footer-logo {
    margin: 0;
    font-size: 22px;
    color: #fff; /* ya jo tumhara footer color ho */
}
.footer {
    background-color: var(--dark-bg);
    color: #ccc;
    padding: 40px;
    border-top: 3px solid var(--mango-yellow);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Columns */
.footer-col {
    display: flex;
    flex-direction: column;   /* 👈 ye sab kuch vertical kar dega */
}
/* Logo */
.footer-logo {
    color: var(--mango-yellow);
    font-size: 22px;
    margin-bottom: 10px;
     color: var(--white);
}

/* Headings */
.footer-col h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Text */
.footer-col p {
    font-size: 14px;
    margin: 5px 0;
}
.footer-col .footer-links li a {
    color: #fff !important;
}

/* Links */
.footer-col a {
    display: block;   /* 👈 ye main fix hai */
    color: var(--white);
    font-size: 14px;
    margin: 6px 0;
    text-decoration: none;
}
.footer-col .footer-links li a:hover {
    color: var(--mango-yellow) !important;
}

/* Bottom space */
.footer-bottom-space {
    height: 40px;
    background-color: var(--green-bg);
}


.main-content {
    flex: 1;
    padding: 30px 40px;
}
.content-card {
    background-color: var(--white);
    border-radius: 3 px;
    padding: 40px 50px;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto; /* IMPORTANT: center */
    
    border-top: 3px solid var(--mango-yellow);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* ============ TITLES ============ */
.page-title {
    color: var(--dark-green);
    font-size: 32px;
    margin-bottom: 25px;
}

.section-title {
    color: var(--dark-green);
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

/* ============ CONTACT INFO ============ */
.contact-info {
    line-height: 1.8;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

.contact-detail {
    color: var(--light-text);
    font-size: 24px;
}

.contact-detail strong {
    color: var(--dark-green);
}

.email-link {
    color: var(--mango-orange);
}

.address-line {
    margin-left: 60px;
}

/* ================== TABLET (≤ 900px) ================== */
@media (max-width: 900px) {

  .content-card {
        padding: 30px 20px;
    }

    .main-content {
        padding: 20px;
    }

    .footer-inner {
        gap: 20px;
    }}

/* ================== MOBILE (≤ 768px) ================== */
@media (max-width: 768px) {

    .nav-container {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo {
        position: static;
    }

    /* HAMBURGER SHOW */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: var(--bright-green);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 14px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

   .main-content {
        padding: 15px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================== SMALL MOBILE (≤ 468px) ================== */
@media (max-width: 468px) {

    body {
        font-size: 14px;
    }

 .main-content {
        padding: 15px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .logo-box img {
        width: 35px;
        height: 35px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .logo span {
        font-size: 9px;
    }


    .footer {
        padding: 20px 10px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }
}
/* ================== TABLET (≤ 900px) ================== */

@media (max-width: 900px) {

    .page-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .contact-detail {
        font-size: 20px;
        line-height: 1.7;
    }

    .address-line {
        margin-left: 30px;
    }

}/* ================== MOBILE (≤ 768px) ================== */

@media (max-width: 768px) {

    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-info {
        padding-left: 12px;
    }

    .contact-detail {
        font-size: 18px;
        line-height: 1.6;
    }

    .address-line {
        margin-left: 0;
        margin-top: 8px;
    }

}/* ================== SMALL MOBILE (≤ 468px) ================== */

@media (max-width: 468px) {

    .page-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 18px;
    }

    .contact-info {
        border-left: 3px solid var(--gold);
        padding-left: 10px;
    }

    .contact-detail {
        font-size: 15px;
        line-height: 1.5;
        word-break: break-word;
    }

    .email-link {
        font-size: 14px;
    }

}