/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 240px; /* fixed header space */
}

/* ========== HEADER ========== */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 300px;
    background: #004d40;
    color: #fff;
    z-index: 1000;
}

/* Logo */
.logo img {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .logo img {
        position: static;
        display: block;
        margin: 10px auto;
        width: 45px;
        height: 45px;
        transform: none;
    }
}

/* 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;
}

/* ================= NAVBAR ================= */
.navbar {
    position: absolute;
    background: #3c8365;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    width: 100%;
    gap: 0;
    padding: 8px;
    
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 14px;
}

.navbar a:hover {
    background: #294e3c;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 110%;
    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;
}

.dropdown-content a {
    color: #275044;
    padding: 12px 16px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Header Images */
.header-images {
    position: absolute;
    top: 2px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-images img {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    .navbar {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }
    .navbar a {
        flex: 0 0 auto;
        font-size: 14px;
    }
    .header-images {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin: 8px 0;
    }
    .header-images img {
        width: 40px;
        height: 40px;
    }
}

/* Customer Care */
.customer-care {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    color: #fff;
    z-index: 1001;
}

@media (max-width: 768px) {
    .customer-care {
        top: 5px;
        right: 5px;
        left: auto;
        font-size: 12px;
        padding: 5px 8px;
        text-align: center;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    background: url('Images/pic1.jpeg') no-repeat center center/cover;
    color: #eecf97;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    border-top: 3px solid #292727;
    border-bottom: 3px solid #292727;
}

.hero .container {
    width: 80%;
    margin: auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    background-color: #ff6f00;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background-color: #e65100;
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        margin-top: 0;
    }
    .hero h2 {
        font-size: 22px;
    }
    .hero p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
    .hero h2 {
        font-size: 18px;
    }
    .hero p {
        font-size: 13px;
    }
}

/* ====== FULL PAGE CENTERED CONTAINER ====== */
.container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0 20px 0;
    padding: 0 20px;
    width: 100%;
}

/* ====== HEADINGS ====== */
.container h1 {
    font-size: 36px;
    color: #318854;
    margin-bottom: 10px;
    text-align: center;
}

.container h2 {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

/* ====== FILTER BUTTONS ====== */
.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.filters button {
    padding: 10px 20px;
    border: 1px solid #1d522f;
    background: #fff;
    color: #1a4d39;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters button:hover {
    background: #164422;
    color: #fff;
}

.filters button.active {
    background: #205334;
    color: #fff;
}

@media (max-width: 768px) {
    .container h1 { font-size: 28px; }
    .container h2 { font-size: 16px; }
    .filters button { padding: 8px 16px; font-size: 13px; }
}

/* ====== GALLERY GRID ====== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.gallery .item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery .item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery .item:hover img {
    transform: scale(1.1);
}

.gallery .item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ====== LIGHTBOX ====== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox .close:hover {
    color: #ff3b19;
}

@media (max-width: 480px) {
    .gallery { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
    .lightbox img { max-width: 95%; max-height: 80%; }
}

/* ================= FOOTER ================= */
footer {
    background-color: #004d40;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-family: "Segoe UI", sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 60px;
    justify-content: space-between;
}

.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;
}

.footer-logo img {
    max-width: 120px;
    margin-bottom: 10px;
}

.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; }

.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;
}

.footer-bottom {
    background: #16222e;
    text-align: center;
    padding: 20px;
}

.footer-bottom p { margin-bottom: 10px; font-size: 14px; }

.footer-social a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover { color: #4caf50; transform: scale(1.2); }

footer > p {
    text-align: center;
    background: #111;
    margin: 0;
    padding: 10px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-top { padding: 30px 20px; text-align: center; }
    .footer-col h3 { margin: 15px auto; }
    .footer-logo img { margin: auto; }
}



/* ================= MOBILE RESPONSIVE OVERRIDE ================= */
@media (max-width: 768px) {

    /* Header fixed issue */
    header {
        position: static !important;
    }

    body {
        padding-top: 0 !important;
    }

    /* Logo – center and scale */
    .logo img {
        position: static !important;
        display: block !important;
        margin: 10px auto !important;
        transform: none !important;
        width: 45px !important;
        height: 45px !important;
    }

    /* Customer Care – top left/right adjustment */
    .customer-care {
        position: fixed !important;
        top: 5px !important;
        right: 5px !important;
        left: auto !important;
        font-size: 12px !important;
        padding: 5px 8px !important;
        z-index: 9999 !important;
        text-align: center !important;
    }

    /* Navbar – horizontal scroll */
    .navbar {
        position: relative !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    .navbar a {
        flex: 0 0 auto !important;
        font-size: 14px !important;
    }

    /* Header Images – move below logo and shrink */
    .header-images {
        position: static !important;
        flex-direction: row !important;
        justify-content: center !important;
        margin: 8px 0 !important;
    }

    .header-images img {
        width: 40px !important;
        height: 40px !important;
    }

    /* Hero section */
    .hero {
        height: 70vh !important;
        margin-top: 0 !important;
    }

    .hero .container h2 {
        font-size: 22px !important;
    }

    .hero .container p {
        font-size: 14px !important;
    }

    /* Gallery responsive adjustments */
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        gap: 12px !important;
    }

    /* Lightbox images */
    .lightbox img {
        max-width: 95% !important;
        max-height: 80% !important;
    }

    /* Footer columns stack */
    .footer-top {
        flex-direction: column !important;
        text-align: center !important;
        padding: 30px 20px !important;
    }

    .footer-col {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .footer-col h3 {
        margin: 10px auto !important;
    }
}

@media (max-width: 480px) {
    /* Hero smaller height */
    .hero {
        height: 60vh !important;
    }

    .hero .container h2 {
        font-size: 18px !important;
    }

    .hero .container p {
        font-size: 13px !important;
    }

    /* Customer Care smaller text */
    .customer-care {
        font-size: 11px !important;
        padding: 4px 6px !important;
        top: 4px !important;
        right: 4px !important;
    }
}


/* Adjust Site Header – Reduce Top Space */
.site-header {
    padding-top: 30px;  /* pehle 90px tha, ab 30px */
}

/* Mobile – thoda aur kam karen */
@media (max-width: 768px) {
    .site-header {
        padding-top: 10px;  /* already 10px, maintain */
    }
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 240px; /* fixed header space for desktop */
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #004d40;
    color: #fff;
    z-index: 1000;
    text-align: center;
    padding-bottom: 10px;
}

/* Logo */
.logo img {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 6px;
    margin: 10px auto 0;
    display: block;
}

/* Titles */
.site-header {
    text-align: center;
    padding-top: 80px;
    margin-bottom: 10px;
}

.site-title {
    font-size: 26px;
    font-weight: 700;
}

.site-subtitle {
    font-size: 18px;
}

.site-tagline {
    font-size: 15px;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 8px;
    background: #3c8365;
    flex-wrap: wrap;
    overflow-x: auto;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    flex: 0 0 auto;
}

.navbar a:hover {
    background: #294e3c;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 110%;
    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: 1000;
}

.dropdown-content a {
    color: #275044;
    padding: 12px 16px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Header Images */
.header-images {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
}

.header-images img {
    width: 55px;
    height: 55px;
    border: 2px solid #fff;
    border-radius: 4px;
}

/* Customer Care – Top Left Fixed */
.customer-care {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #004d40;
    z-index: 9999;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    body {
        padding-top: 0; /* remove top padding on mobile */
    }

    header {
        position: relative;
        padding-bottom: 5px;
    }

    /* Logo */
    .logo img {
        width: 45px;
        height: 45px;
    }

    /* Titles */
    .site-header {
        padding-top: 10px;
    }

    .site-title {
        font-size: 20px;
    }

    .site-subtitle {
        font-size: 14px;
    }

    .site-tagline {
        font-size: 12px;
    }

    /* Navbar */
    .navbar {
        position: absolute;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .navbar a {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Header images */
    .header-images {
        flex-direction: row;
        justify-content: center;
        margin: 8px 0;
    }

    .header-images img {
        width: 40px;
        height: 40px;
    }

    /* Customer Care */
    .customer-care {
        top: 8px;
        left: 8px;
        font-size: 12px;
        padding: 5px 8px;
    }
}

