/* ========== 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: 350px;
    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 {
    position: relative;
    text-align: center;
    padding-top: 90px;
    
   
}

.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: 10px; 
    margin-top: px;
}
  .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: 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;
}

/* ================= MOBILE RESPONSIVE OVERRIDES ================= */

/* Prevent horizontal scroll */
html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ================= HEADER FIX ================= */
@media (max-width: 768px) {

    body {
        padding-top: 0 !important;
    }

    header {
        position: static !important;
        max-height: none;
    }

    /* Logo center fix */
    .logo img {
        position: static !important;
        left: auto !important;
        transform: none !important;
        margin: 10px auto !important;
        display: block;
    }

    /* Site titles */
    .site-header {
        padding-top: 10px;
    }

    .site-title {
        font-size: 20px;
    }

    .site-subtitle {
        font-size: 14px;
    }

    .site-tagline {
        font-size: 12px;
    }
}

/* ================= NAVBAR FIX ================= */
@media (max-width: 768px) {
    .navbar {
        position: static !important;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding: 8px;
    }

    .navbar a {
        flex: 0 0 auto;
        font-size: 14px;
    }
}

/* ================= DROPDOWN TOUCH SUPPORT ================= */
@media (max-width: 768px) {
    .dropdown-content {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        min-width: 100%;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown:focus-within .dropdown-content {
        display: block;
    }
}

/* ================= CUSTOMER CARE FIX ================= */
@media (max-width: 768px) {
    .customer-care {
        position: static !important;
        text-align: center;
        margin: 6px auto;
        font-size: 12px;
    }
}

/* ================= HEADER IMAGES ================= */
@media (max-width: 768px) {
    .header-images {
        position: static !important;
        flex-direction: row;
        justify-content: center;
        margin: 8px 0;
    }

    .header-images img {
        width: 40px;
        height: 40px;
    }
}

/* ================= HERO FIX ================= */
.hero {
    height: 70svh;
}

@media (max-width: 768px) {
    .hero {
        height: 65svh;
    }

    .slide .container {
        padding: 0 16px;
    }

    .slide .container h1,
    .hero h2 {
        font-size: 22px;
    }

    .slide .container p,
    .hero p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55svh;
    }

    .slide .container h1,
    .hero h2 {
        font-size: 18px;
    }

    .slide .container p,
    .hero p {
        font-size: 13px;
    }
}

/* ================= CONTENT SECTIONS ================= */
@media (max-width: 768px) {
    .section {
        margin: 15px;
        padding: 20px;
    }

    .title-box h2 {
        font-size: 28px;
    }
}

/* ================= FOOTER FIX ================= */
@media (max-width: 768px) {
    .footer-top {
        padding: 30px 20px;
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-social a {
        margin: 0 6px;
    }
}


/* ================= CUSTOMER CARE FIX ================= */

/* Desktop + Mobile */
.customer-care {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;

    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 9999;
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
    .customer-care {
        top: 6px !important;
        left: 6px !important;
        font-size: 12px;
        padding: 5px 8px;
    }
}







.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;
    margin-top: 0px;
    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;
    }
}

/* Desktop nav */
.main-nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 150px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    margin: 10px 0;
    text-align: center;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #f2f2f2;
    padding: 10px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }

  .header-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }

  .icon-img {
    width: 50px;
    height: auto;
  }

  .site-title {
    font-size: 22px;
  }
}

/* General container */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px;
    font-family: "Segoe UI", "Noto Sans Marathi", sans-serif;
    color: #333;
    line-height: 1.7;
}

/* Header section */
.about-container .head {
    text-align: center;
    margin-bottom: 30px;
}

.about-container .head h1 {
    font-size: 28px;
    color: #004d40;
}

.about-container .head p {
    font-size: 18px;
    color: #2c3e50;
}

/* Subheadings */
.about-container h2, 
.about-container h3 {
    color: #00695c;
    margin: 25px 0 15px;
}

/* Paragraph text */
.about-container p,
.about-container ul li {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Info table */
.info-section {
    overflow-x: auto; /* horizontal scroll for small screens */
    margin-bottom: 30px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.info-table th,
.info-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.info-table th {
    background-color: #004d40;
    color: #fff;
}

/* Vision, content, and sarpanch boxes */
.vision-box,
.content-box,
.sarpanch-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.vision-box ul,
.content-box ul {
    padding-left: 20px;
}

/* Centered message box */
.sarpanch-box,
.content-box[style] {
    text-align: center;
}

/* Lists icons spacing */
ul li {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-container {
        padding: 20px 25px;
    }

    .about-container .head h1 {
        font-size: 24px;
    }

    .about-container .head p {
        font-size: 16px;
    }

    .about-container h2 {
        font-size: 20px;
    }

    .about-container h3 {
        font-size: 18px;
    }

    .about-container p,
    .about-container ul li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 15px 15px;
    }

    .info-table {
        min-width: 100%; /* table takes full width on mobile */
    }

    .vision-box,
    .content-box,
    .sarpanch-box {
        padding: 15px;
    }

    .about-container .head h1 {
        font-size: 20px;
    }

    .about-container .head p {
        font-size: 14px;
    }

    .about-container h2 {
        font-size: 18px;
    }

    .about-container h3 {
        font-size: 16px;
    }

    .about-container p,
    .about-container ul li {
        font-size: 14px;
    }
}


/* 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;
    }
}


/* 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;
    }


