/* --- style.css (Updated with your specific design) --- */

/* 1. GLOBAL VARIABLES */
:root {
    --primary-red: #c1121f;    /* Deep Action Red */
    --primary-blue: #1d3557;   /* Trust Navy Blue */
    --light-bg: #f8f9fa;       /* Clean Grey */
    --text-dark: #333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 2. NAVBAR (Modular & Responsive) */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
    padding: 0 5%;
    height: 70px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo {
    font-size: 24px; font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase; letter-spacing: 1px;
    display: flex; align-items: center; gap: 10px;
}

/* Hamburger Menu (Mobile Toggle) */
.menu-toggle {
    display: none; /* Desktop par hidden */
    font-size: 26px; color: var(--primary-blue);
    cursor: pointer;
}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 20px; }

.nav-links a {
    color: var(--primary-blue);
    font-weight: 600; font-size: 15px;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--primary-red); }

.btn-nav-emergency {
    background: var(--primary-red); color: white !important;
    padding: 8px 15px; border-radius: 5px;
}

/* MOBILE VIEW (3 Lines Logic) */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none; /* Hidden by default */
        position: absolute; top: 70px; left: 0; width: 100%;
        background: white; flex-direction: column; padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); border-top: 1px solid #eee;
    }

    .nav-links.active { display: flex; }
    .nav-links a { width: 100%; text-align: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
    .btn-nav-emergency { width: 80%; display: inline-block; margin-top: 10px; }
}

/* 3. HERO SECTION (Wohi Image jo aapne di) */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(193, 18, 31, 0.6)), url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; padding: 20px;
}

.hero-content h1 {
    font-size: 48px; font-weight: 700; margin-bottom: 15px;
    text-transform: uppercase; letter-spacing: 2px;
}

.hero-content p {
    font-size: 20px; margin-bottom: 30px; font-weight: 300;
    max-width: 700px; margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 15px 30px; font-size: 16px; font-weight: 600;
    border-radius: 50px; cursor: pointer; transition: 0.3s; border: none;
}

.btn-primary { background: var(--primary-red); color: white; box-shadow: 0 4px 15px rgba(193, 18, 31, 0.4); }
.btn-primary:hover { background: #a00f1a; transform: translateY(-2px); }

.btn-secondary { background: transparent; border: 2px solid white; color: white; }
.btn-secondary:hover { background: white; color: var(--primary-blue); }

/* 4. FEATURE CARDS */
.features {
    padding: 60px 5%;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-top: -50px;
}

.card {
    background: white; padding: 30px; border-radius: 10px;
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.card:hover { transform: translateY(-10px); }

.icon-box { font-size: 40px; color: var(--primary-red); margin-bottom: 20px; }
.card h3 { color: var(--primary-blue); margin-bottom: 10px; }
.card p { color: #666; font-size: 14px; margin-bottom: 15px; }
.card-link { color: var(--primary-red); font-weight: 700; font-size: 14px; }

/* 5. MISSION & TRUST */
.mission { padding: 60px 5%; text-align: center; background: white; }
.section-title { color: var(--primary-blue); font-size: 32px; font-weight: 700; margin-bottom: 20px; }
.mission p { max-width: 800px; margin: 0 auto 30px; font-size: 18px; color: #555; }

.trust-bar {
    background: var(--primary-blue); color: white; padding: 40px 5%;
    display: flex; justify-content: space-around; flex-wrap: wrap; text-align: center;
}
.trust-item { margin: 10px; }
.trust-item i { font-size: 30px; margin-bottom: 10px; color: #ffcc00; }

/* 6. FOOTER */
footer { background: #111; color: #aaa; padding: 50px 5% 20px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--primary-red); }
.copyright { text-align: center; border-top: 1px solid #333; padding-top: 20px; }

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
}
/* Footer Styling */
.site-footer {
    background-color: #1d3557; /* गहरा नीला/काला रंग */
    color: white;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-section h3 {
    color: #e63946; /* मरून/लाल शेड */
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #f1faee;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #e63946;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 12px;
}