/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", "Noto Sans Devanagari", Arial, sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    padding-top: 240px;
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 260px;
    background: #004d40;
    color: #fff;
    z-index: 1000;
    overflow: visible;
}

/* Logo */
.logo img {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 6px;
}

/* Titles */
.site-header {
    text-align: center;
    padding-top: 90px;
    margin-bottom: 20px;
}

.site-title { font-size: 26px; font-weight: 700; }
.site-subtitle { font-size: 18px; }
.site-tagline { font-size: 15px; }

/* ========== CUSTOMER CARE (TOP LEFT FINAL) ========== */
.customer-care {
    position: fixed;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    z-index: 9999;
}

/* ========== NAVBAR ========== */
.navbar {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: #3c8365;
    display: flex;
    justify-content: center;
    padding: 8px;
    white-space: nowrap;
    margin-top: -30px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.navbar a:hover {
    background: #294e3c;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
}

.dropdown-content a {
    color: #275044;
    padding: 12px 16px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Header Images */
.header-images {
    position: absolute;
    top: 10px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-images img {
    width: 55px;
    height: 55px;
    border: 2px solid #fff;
}

/* ========== HERO / SLIDER ========== */
.hero {
    height: 70vh;
    width: 100%;
    background: url('Images/pic1.jpeg') no-repeat center/cover;
    border-top: 3px solid #292727;
    border-bottom: 3px solid #292727;
    display: flex;
    align-items: center;
    text-align: center;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }

.slide .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

/* ========== COMMITTEE ========== */
.committee-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.committee-member {
    width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.committee-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #16a34a;
    object-fit: cover;
}




/* Footer Main */
footer {
    background: #1f2d3d;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
}

/* Top Section */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 60px;
    justify-content: space-between;
}

/* Columns */
.footer-col {
    flex: 1 1 220px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
    padding-bottom: 5px;
}

/* Logo Column */
.footer-logo img {
    max-width: 120px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.contact-info li {
    margin-bottom: 8px;
}

.contact-info a {
    color: #4caf50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #dddddd;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #4caf50;
    padding-left: 5px;
    transition: 0.3s;
}

/* Bottom Section */
.footer-bottom {
    background: #16222e;
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Social Icons */
.footer-social a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #4caf50;
    transform: scale(1.2);
}

/* Copyright */
footer > p {
    text-align: center;
    background: #111;
    margin: 0;
    padding: 10px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 30px 20px;
        text-align: center;
    }

    .footer-col h3 {
        margin: 15px auto;
    }

    .footer-logo img {
        margin: auto;
    }
}

footer {
    background-color: #004d40;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .services .service-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== MOBILE FIXES ========== */
@media (max-width: 768px) {

    body { padding-top: 0; }

    header { position: relative; }

    .logo img {
        position: relative;
        margin: 10px auto;
        display: block;
        width: 45px;
        height: 45px;
        transform: none;
        left: auto;
    }

    .customer-care {
        top: 6px;
        left: 6px;
        font-size: 12px;
    }

    .site-header{
    text-align: center;
    padding-top: 10px;
    margin-bottom: 5px;

    }

    .navbar {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
    }

    .dropdown-content {
        left: 0;
        transform: none;
    }

    .header-images {
        position: relative;
        flex-direction: row;
        justify-content: center;
    }

    .committee-member {
        width: 90%;
        max-width: 300px;
    }
}
