/* ========== 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: fixed;
    max-height: 260px;
    top: 0;
    left: 0;
    width: 100%;
    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 {
        width: 100%;
        text-align: center;
    }

    .logo img {
        position: static;        /* fixed remove */
        left: auto;
        transform: none;
        display: block;
        margin: 10px auto;       /* 👈 center */
        width: 45px;
        height: 45px;
    }
}


/* 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%;
    max-width: 100%;
    gap: 0px; 
    padding: 08px; 
    top:-80px;
}
  .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; 
} 
  


/* Header Images */
.header-images {
    position: absolute;
    top: 10px;
    right: 15px;
    display: flex;
    flex-direction: column;
    border-radius: 2px solid #fff;
    gap: 8px;
}

.header-images img {
    width: 55px;
    height: 55px;
     border: 2px solid #fff;
}

/* Customer Care */
.customer-care {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
}
@media (max-width: 768px) {

    /* Remove fixed header issue */
    header {
        position: static;
    }

    body {
        padding-top: 0;
    }

    /* Logo */
    .logo img {
        position: absolute;
        transform: none;
        flex-direction: column;
        left:50%;
        margin: 10px auto;
        display: block;
        width: 45px;
        height: 45px;
    }

    /* Titles */
    .site-header {
        padding: 10px;
    }

    .site-title {
        font-size: 20px;
    }

    .site-subtitle {
        font-size: 18px;
    }

    .site-tagline {
        font-size: 18px;
    }

    /* Navbar – horizontal scroll */
    .navbar {
        position: absolute;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        left:0;
        right:0;
        width:100%;
        max-width: fit-content;
        margin-top: -30px;

    }

    .navbar a {
        flex: 0 0 auto;
        font-size: 14px;
    }

    /* Header images */
    .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: static;
        flex-direction: column;
        text-align: center;
        font-size: 13px;
        margin-bottom: 6px;
    }
}


/* ========== MOBILE RESPONSIVE HEADER ========== */
@media (max-width: 768px) {

    /* Header */
    header {
        position: relative;
        padding: 20px 0;
    }

    /* Logo */
    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        position: static;
        transform: none;
        display: block;
        margin: 0 auto 10px auto;
        width: 45px;
        height: 45px;
    }

    /* Titles */
    .site-header {
        padding: 10px 0;
    }

    .site-title {
        font-size: 20px;
    }

    .site-subtitle {
        font-size: 16px;
    }

    .site-tagline {
        font-size: 14px;
    }

    /* Navbar – horizontal scroll */
    .navbar {
        position: relative;
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        padding: 8px 0;
        gap: 8px;
    }

    .navbar a {
        flex: 0 0 auto;
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Dropdown */
    .dropdown-content {
        top: 100%;
        left: 0;
        transform: none;
        min-width: 160px;
    }

    /* Header images */
    .header-images {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin: 10px 0;
        gap: 6px;
    }

    .header-images img {
        width: 40px;
        height: 40px;
    }

    /* Customer care */
    .customer-care {
        position: relative;
        text-align: center;
        font-size: 13px;
        margin-bottom: 8px;
    }

    /* Body padding reset for mobile */
    body {
        padding-top: 0;
    }
}





.hero {
    height: 100vh;
    width:100%;
    overflow: hidden;
    position: relative;
    
}

.slider {
    height: 100%;
    margin-top: -40px;
    position: relative;
    border-top: 3px solid #302f2f;
    border-bottom: 3px solid #302f2f;
}

.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;
    text-align: center;
   
}


@media (max-width: 768px) {

    .hero {
        height: 70vh;   /* mobile par full 100vh avoid */
    }

    .slider {
        margin-top: 0;  /* negative margin hata diya */
        border-top: 2px solid #302f2f;
        border-bottom: 2px solid #302f2f;
    }

    .slide {
        background-position: center top; /* faces cut na ho */
    }

    .slide .container {
        padding: 0 15px;   /* mobile padding */
        justify-content: center;
        text-align: center;
    }

    .slide .container h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .slide .container p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .hero {
        height: 60vh;
    }

    .slide .container h1 {
        font-size: 18px;
    }

    .slide .container p {
        font-size: 13px;
    }
}
/* Customer Care - Top Right Fixed */
.customer-care {
    position: fixed;
    color:#fff;
    top: 10px;
    left: 05px;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    
    z-index: 1000;

  
}

/* Mobile View */
@media (max-width: 768px) {
    .customer-care {
        font-size: 12px;
        padding: 5px 8px;
        top: 5px;
        right: 5px;
    }
}





/* Hero Section */
.hero {
    background: url('Images/pic1.jpeg') no-repeat center center/cover;
    color: #eecf97;
    height: 70vh;
    border-top:3PX solid #292727;
    border-bottom: 3PX SOLID #292727 ;
    display: flex;
    align-items: center;
    text-align: center;
}

.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;
}


/* Notice Marquee Wrapper */
.notice-marquee {
    display: flex;
    margin-top: 40px;
    align-items: center;
    background: linear-gradient(90deg, #ff9800, #ffc107);
    color: #000;
    padding: 10px 15px;
    font-family: "Segoe UI", "Noto Sans Marathi", sans-serif;
    border-bottom: 3px solid #e65100;
}

/* Notice Title */
.notice-title {
    background: #d32f2f;
    color: #ffffff;
    font-weight: bold;
    padding: 6px 14px;
    margin-right: 12px;
    border-radius: 4px;
    font-size: 15px;
    white-space: nowrap;
}

/* Marquee Text */
.notice-marquee marquee {
    font-size: 15px;
    font-weight: 500;
}

/* Hover Pause Effect */
.notice-marquee marquee:hover {
    cursor: pointer;
}

/* Customer Care - Top Right Fixed */
.customer-care {
    position: fixed;
    top: 8px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    
    z-index: 9999;
}

/* Mobile View */
@media (max-width: 768px) {
    .customer-care {
        font-size: 12px;
        padding: 5px 8px;
        top: 5px;
        right: 5px;
    }

    .hero {
        margin-top: 0%;
    }
}



        /* Full Screen Card */
        .card {
            min-height: 20vh;
            padding: 60px 80px;
            background: #fff;
            border-bottom: 1px solid #e0e0e0;

            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card h2 {
            font-size: 25px;
            color: #0b8a44;
            margin-bottom: 20px;
        }

        .card p {
            font-size: 18px;
            max-width: 900px;
            margin-bottom: 20px;
            color: #555;
        }

        .card ul {
            list-style: none;
            max-width: 900px;
        }

        .card ul li {
            font-size: 17px;
            margin-bottom: 12px;
            padding-left: 26px;
            position: relative;
        }

        .card ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #07703f;
            font-weight: bold;
        }

        .card a {
            margin-top: 30px;
            text-decoration: none;
        }

        .card button {
            width: 240px;
            padding: 14px;
            font-size: 16px;
            font-weight: 500;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            color: #fff;
            background: linear-gradient(90deg, #1b6ca8, #0f4c81);
            transition: 0.3s;
        }

        .card button:hover {
            transform: scale(1.05);
            background: linear-gradient(90deg, #0f4c81, #09345c);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header {
                font-size: 22px;
            }

            .card {
                padding: 40px 25px;
            }

            .card h2 {
                font-size: 26px;
            }

            .card p,
            .card ul li {
                font-size: 15px;
            } 

        }


/* 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;
}

footer .container {
    max-width: 100%;
    box-sizing: border-box;
}


/* 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;
    }
}


/* =========================
   HEADER MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
    /* Header container stacked */
    header .container {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }

    /* Logo */
    .main-header .logo {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }

    .site-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    }

    /* Navigation menu - single line scrollable */
    header nav ul {
        flex-direction: row;
        flex-wrap: nowrap;       /* prevent wrapping */
        overflow-x: auto;        /* scroll if too long */
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin-bottom: 12px;
    }

    nav ul li a {
    font-size: 14px;
    padding: 6px 10px;
  }

    header nav ul li a {
        font-size: 14px;
        padding: 6px 10px;
        white-space: nowrap;     /* prevent text wrapping */
    }

    /* Header images below nav */
    .header-images {
        position: relative;      /* move from top-right */
        top: 0;
        right: 0;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .header-images img {
        width: 40px;
        height: 40px;
    }
}

/* =========================
   CARDS & MAIN CONTENT MOBILE
========================= */
@media (max-width: 768px) {
    .main-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sidebar, .main-area {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .services .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
    }
}

/* =========================
   NOTICE MARQUEE MOBILE
========================= */
@media (max-width: 768px) {
    .notice-marquee {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px 10px;
    }

    .notice-title {
        font-size: 14px;
        padding: 5px 10px;
        margin-bottom: 5px;
    }

    .notice-marquee marquee {
        font-size: 14px;
    }
}

/* =========================
   TABLE / EXECUTIVE SECTION MOBILE
========================= */
@media (max-width: 768px) {
    .executive-section table {
        font-size: 13px;
        min-width: 0;  /* allow table to shrink */
    }

    .executive-title {
        font-size: 18px;
    }
}

/* =========================
   MAP SECTION MOBILE
========================= */
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 250px;
    }

    h3 {
        font-size: 18px;
    }
}

/* =========================
   FOOTER MOBILE
========================= */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        padding: 25px 15px;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}



/* =========================================
   LOGO CENTER + CUSTOMER CARE TOP LEFT FIX
   (NO OTHER CHANGES)
========================================= */

/* LOGO — ALWAYS CENTER */
.logo img {
    position: fixed !important;
    top: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1001;
}

/* CUSTOMER CARE — TOP LEFT */
.customer-care {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;

    font-size: 14px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;

    z-index: 1000; /* logo se thoda neeche */
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {

    .logo img {
        width: 50px !important;
        height: 50px !important;
        top: 8px !important;
    }

    .customer-care {
        font-size: 12px;
        padding: 5px 8px;
        top: 8px !important;
        left: 8px !important;
    }
}


/* =========================================
   NAVBAR OVERLAP FIX (IMAGES KE NICHE)
========================================= */

/* Desktop */
.navbar {
    position: relative !important;
    margin-top: 110px !important; /* logo + images ke niche */
    z-index: 900 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        margin-top: 15px !important;
        width:100%;
        left:0;
        right:0;
        position: static !important;
    }
}


/* Dropdown mobile tap toggle */
    .dropdown-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        min-width: 100%;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        display: none;
    }

    .dropdown-content a {
        display: block;
        padding: 10px 12px;
        background: #fff;
        color: #275044;
        border-radius: 4px;
        margin: 2px 0;
    }

    .dropdown-content a:hover {
        background: #f0f0f0;
    }




