/* ========== 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: 300px;
    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; 
    margin-bottom: -10px;
}
  .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;
}
@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: 14px;
    }

    .site-tagline {
        font-size: 12px;
    }

    /* Navbar – horizontal scroll */
    .navbar {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        left:0;
        right:0;
        width:100%;
        max-width: fit-content;

    }

    .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;
    }
}



.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;
    }
}




/* 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;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .notice-marquee {
        padding: 8px 10px;
        margin-top:100px;
    }

    .notice-title {
        font-size: 14px;
        padding: 5px 10px;
    }

    .notice-marquee marquee {
        font-size: 14px;
    }
}


/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

/* Services */
.services .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.services .card {
    background-color: #e0f2f1;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.services .card:hover {
    transform: translateY(-10px);
}

/* Notices */
.notices ul {
    list-style: disc inside;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

/* Contact Form */
.contact form {
    max-width: 600px;
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 12px;
    border: none;
    background-color: #004d40;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #00695c;
}



/* ==============================
   FULL WIDTH CONTAINER
============================== */
.container {
    width: 80%;              /* full page width */
    padding: 0 40px;          /* left-right spacing */
    box-sizing: border-box;
    font-family: "Segoe UI", "Noto Sans Marathi", sans-serif;
    color: #333;
    margin: 0 auto;
}

/* ==============================
   MAIN CONTENT FLEX LAYOUT
============================== */
/* Flex layout for 2 parts */
.container .main-content {
    display: flex;
    gap: 40px; /* dono boxes ke beech gap */
}

/* Sidebar ko 40% width denge (pahle 30%) */
.sidebar {
    flex: 0 0 40%;
}

/* Main content area ko 60% width denge (pahle 70%) */
.main-area {
    flex: 0 0 60%;
}

/* Third box (achievements) ki height kam karna */
.card.achievements .objectives-list {
    max-height: 150px; /* pehle 250px */
    overflow-y: auto;   /* agar content zyada ho scroll ayega */
}

/* Responsive design */
@media (max-width: 768px) {
    .container .main-content {
        flex-direction: column;
    }

    .sidebar, .main-area {
        flex: 1 1 100%;
    }
}



/* ==============================
   SIDEBAR
============================== */
.sidebar {
    flex: 1 1 320px;           /* minimum width 320px */
    max-width: 700px;
}

/* ==============================
   MAIN AREA
============================== */
.main-area {
    flex: 3 1 900px;           /* grows wider on large screens */
}

/* ==============================
   CARD BASE
============================== */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
    transition: 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* ==============================
   CARD HEADER
============================== */
.card-header {
    background: linear-gradient(135deg, #2c3e50, #4caf50);
    color: #fff;
    padding: 18px 25px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid #ffeb3b;
}

.card-header i {
    color: #ffeb3b;
    font-size: 22px;
}



/* ==============================
   CARD BODY
============================== */
.card-body {
    padding: 25px 20px;
    font-size: 16px;
    line-height: 1.7;
}

/* ==============================
   PERSON ITEMS (Sidebar)
============================== */
.person-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.person-item:hover {
    background: #f1f8f6;
    border-radius: 8px;
}

.person-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

/* ==============================
   OBJECTIVES & ACHIEVEMENTS
============================== */
.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Objectives card ki height kam karna */
.card.objectives .objectives-list {
    max-height: 370px;  /* yahan desired height set karo */
    overflow-y: auto;   /* zyada content ho to scroll ayega */
}

.objective-item {
    background: #e8f5e9; /* light green */
    padding: 12px 18px;
    border-left: 5px solid #4caf50;
    border-radius: 8px;
    font-weight: 500;
    color: #2c3e50;
    transition: 0.3s;
}

.objective-item:hover {
    background: #d0f0c0;
}

/* ACHIEVEMENTS SCROLL IF LONG */
.achievements .objectives-list {
    max-height: 400px;
    overflow-y: auto;
}

/* ==============================
   MISSION CARD
============================== */
.card.mission {
    text-align: center;
    background: linear-gradient(135deg, #81c784, #a5d6a7);
    color: #1b5e20;
    border-radius: 12px;
    font-weight: 600;
}

.card.mission .card-body p {
    font-size: 18px;
    font-weight: 700;
}


/* ==============================
   MAIN CONTENT FLEX LAYOUT
   - Divide content into 2 columns
============================== */
.main-content {
    display: grid;             /* use grid for 2 columns */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 40px;                 /* spacing between cards */
    justify-content: center;    /* center the grid */
    align-items: flex-start;
    padding: 40px 20px;
}

/* Cards inside main content */
.sidebar .card,
.main-area .card {
    margin-left: auto;
    margin-right: auto;
}



/* ==============================
   Optional: Responsive
============================== */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr; /* single column on tablets/mobile */
    }
}


/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1200px) {
    .container {
        width:100%;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
        justify-content: center;
    }

    .sidebar, .main-area {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .card-header {
        font-size: 20px;
        padding: 15px 18px;
    }

    .card-body {
        padding: 15px;
        font-size: 15px;
    }

    .person-avatar {
        width: 70px;
        height: 70px;
    }
}




/* Outer Container table*/
.executive-section-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 15px;
    font-family: "Segoe UI", "Noto Sans Marathi", sans-serif;
}

/* Title (Outside Box) */
.executive-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

/* Decorative Line */
.executive-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #4caf50;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Table Wrapper */
.executive-section {
    background: #ffffff;
    border-radius: 10px;
    overflow-x: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Table */
.executive-section table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

/* Table Header */
.executive-section th {
    background: #2c3e50;
    color: #ffffff;
    padding: 14px 12px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #1b2838;
}

/* Table Cells */
.executive-section td {
    padding: 12px;
    font-size: 15px;
    color: #333333;
    border: 1px solid #dddddd;
    text-align: center;
}

/* Zebra Rows */
.executive-section tr:nth-child(even) {
    background: #f4f6f8;
}

/* Hover Effect */
.executive-section tr:hover {
    background: #e8f5e9;
    transition: 0.3s;
}

/* Highlight Important Roles */
.executive-section td:nth-child(3) {
    font-weight: 600;
    color: #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
    .executive-title {
        font-size: 20px;
    }

    .executive-section table {
        font-size: 14px;
    }
}



/* Map Section Title */
h3 {
    font-family: "Segoe UI", "Noto Sans Marathi", sans-serif;
    color:#00695c;
    margin: 30px 0 15px;
    font-size: 22px;
}

/* Map Wrapper */
.map-wrapper {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Google Map iframe */
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 8px;
}

/* Hover Effect */
.map-wrapper:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h3 {
        font-size: 18px;
    }

    .map-wrapper iframe {
        height: 280px;
    }
}





/* 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;
    }
}


/* =========================
   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;
    }
}

