/* =====================
   GLOBAL
===================== */
body {
    margin: 0;
    font-family: 'Baloo 2', display;
    
}

/* =====================
   TOP STRIP
===================== */
.top-strip {
    background: #111;
    color: white;
    text-align: center;
    padding: 6px;

    font-weight: bold;
}

/* =====================
   HEADER
===================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #bfe9ff, #e6f7ff);
    padding: 20px;
}

.social span {
    display: block;
    background: black;
    color: white;
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    font-weight: bold;
}

.title h1 {
    margin: 0;
    font-size: 60px;
    color: #ff6600;
}

.title p {
    margin: 5px 0 0;
    color: green;
    font-size: 30px;
}

.logos img{
  height: 60px;      /* same height for all logos */
  width: auto;       /* aspect ratio maintain */
  margin-left: 10px;
}

/* =====================
   NAVBAR
===================== */
.navbar {
    background: #020a4f;
    padding: 12px;
    text-align: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.navbar a:hover {
    text-decoration: underline;
}

.help {
    color: #ff4d4d;
    font-weight: bold;
}

/* =====================
   HERO
===================== */
.hero {
    height: 400px;
    position: relative;
}

.overlay {
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 30px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    width: 250px;
}

.search-box button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* =====================
   ICON MENU
===================== */
.icon-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    background: #ffffff;
    margin: 30px 0;
}

.icon-box {
    background: linear-gradient(180deg, #02024d, #000033);
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    text-decoration: none;
    border: 1px solid #ffffff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.icon-box:hover {
    background: linear-gradient(180deg, #000066, #000022);
    transform: translateY(-4px);
}

.icon-box .icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.icon-box span {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

/* Highlight */
.icon-box.highlight,
.icon-box.highlight .icon {
    color: red;
}

/* =====================
   MEMBERS / GALLERY
===================== */
.members-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    flex-wrap: wrap;
}

.member-card {
    background: #fff;
    width: 260px;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.member-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.member-card h3 {
    font-size: 18px;
    margin: 8px 0;
    color: #000;
}

.member-card p {
    font-size: 15px;
    color: #555;
}
/* Section Styling */
.schemes-wrapper {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Grid Layout */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Individual Cards */
.scheme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.scheme-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.scheme-card span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* Hover Effect */
.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.profile-img{
    width:60px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 10px;
    display:block;
}
/* =====================
   SCHEME CARDS – PERFECT MATCH
===================== */

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.scheme-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scheme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}

/* IMAGE HOLDER – MAGIC PART */
.scheme-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheme-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TEXT */
.scheme-card span {
    font-size: 20px;
    font-weight: 600;
    color: #0b1e6d;
}
/* =====================
   HERO BACKGROUND IMAGE
===================== */

.hero {
    height: 450px;
    position: relative;
}

/* Dark overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    
}

/* Content above overlay */
.overlay {
   _toggle: relative;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.overlay h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Search bar */
.search-box {
    display: flex;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    max-width: 600px;
    width: 90%;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    outline: none;
}

.search-box button {
    background: #ff4d00;
    color: #fff;
    border: none;
    padding: 0 30px;
    font-size: 18px;
    cursor: pointer;
}
/* =====================
   TEXT ROUND BAR
===================== */

.info-strip {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 14px 25px;
    border-radius: 50px;
    margin: 20px auto;
    width: fit-content;
    max-width: 95%;
}

.info-strip span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.line {
  width: 200px;
  height: 6px;
  /* background-color: black; */
  border-radius: 10px; /* हाच राऊंड करतो */
}
body{
  background:#0f1b2a;
  font-family: Arial, sans-serif;
}

.top-cards{
  display:flex;
  gap:20px;
  padding:20px;
}

.card{
  flex:1;
  color:white;
  padding:25px;
  position:relative;
  border-radius:8px;
  overflow:hidden;
}

/* wave / round bottom */
.card::after{
  content:"";
  position:absolute;
  bottom:-25px;
  left:0;
  width:100%;
  height:50px;
  background:inherit;
  border-radius:50%;
}

.gray{
  background:#4a4a4a;
}

.orange{
  background:#ff3c00;
}

.icon{
  width:55px;
  height:55px;
  background:white;
  color:#ff3c00;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:10px;
}

h3{
  margin:0;
  font-size:22px;
}

p{
  margin:5px 0 0;
  font-size:16px;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body{
    background:#000;
}

/* लेआउट */
.container{
    display:grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap:40px;
}

/* डावा भाग */
.left img{
    width:110px;
    margin-bottom:20px;
}

.left h1{
    color:#ff2a00;
    font-size:32px;
    margin-bottom:10px;
}

.left p{
    font-size:20px;
}

/* दुवे */
.links h2{
    font-size:26px;
    margin-bottom:20px;
}

.links ul{
    list-style:none;
}

.links li{
    font-size:22px;
    margin-bottom:16px;
}

.links li::before{
    content:"➤";
    color:#4fc3f7;
    margin-right:10px;
}

/* फॉर्म */
.form-box{
    background:rgba(255,255,255,0.06);
    padding:25px;
    border-radius:6px;
}

.form-box label{
    display:block;
    font-size:18px;
    margin-bottom:6px;
}

.form-box input,
.form-box textarea{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border:none;
    border-radius:4px;
    font-size:16px;
}

.form-box textarea{
    height:120px;
    resize:none;
}

.form-box button{
    background:#0a8f2f;
    color:#fff;
    border:none;
    padding:10px 28px;
    font-size:18px;
    border-radius:4px;
    cursor:pointer;
}

.form-box button:hover{
    background:#0bb63d;
}

/* मोबाईल Responsive */
@media (max-width:1000px){
    .container{
        grid-template-columns:1fr;
    }
}
/* ===============================
   GLOBAL RESET
================================ */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body{
    background: #000;
    color: #fff;
}

 

/* ===============================
   MAIN GRID LAYOUT
================================ */
.hero-container{
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: flex-start;
}

/* ===============================
   LEFT LOGO & TEXT
================================ */
/* LOGO SECTION */
.hero-left{
    margin-top: 30px;
}

.hero-left img{
    width: 140px;
    display: block;
    margin-bottom: 12px;
}

.logo-sub{
    font-size: 10px;
    letter-spacing: 2px;
    color: #8bc34a;
    font-weight: 600;
}

.logo-title{
    font-size: 22px;
    font-weight: bold;
    color: #b87333;
    letter-spacing: 1px;
}

/* ===============================
   IMPORTANT LINKS
================================ */
.links h2{
    font-size: 26px;
    margin-bottom: 22px;
}

.links ul{
    list-style: none;
}

.links li{
    display: flex;
    align-items: center;
    font-size: 22px;
    margin-bottom: 20px;
}

/* blue circle arrow */
.links li span{
    width: 30px;
    height: 30px;
    background: #4fc3f7;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 16px;
}

/* ===============================
   CONTACT FORM
================================ */
.contact-form label{
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea{
    height: 130px;
    resize: none;
}

.contact-form button{
    background: #118a2c;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover{
    background: #16b33b;
}

/* ===============================
   SCROLL TO TOP BUTTON
================================ */
.scroll-top{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: #1976d2;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px){
    .hero-container{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px){
    .hero{
        padding: 30px 20px;
    }

    .hero-container{
        grid-template-columns: 1fr;
    }
}




/* Navbar dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 15px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:first-child {
  background: #10e3b0;
  font-weight: bold;
}

.dropdown-content a:hover {
  background: #eee;
}

.dropdown:hover .dropdown-content {
  display: block;
}





.services{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card{
  height: 200px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.service-card:hover{
  transform: translateY(-8px);
}

/* colors */
.brown{ background:#6b3a00; }
.purple{ background:#c77dff; }
.pink{ background:#c9184a; }
.red{ background:#ff2d2d; }
.blue{ background:#5a2dff; }

.back-link{
  display:inline-block;
  margin-top:40px;
}
.dakhle-content h1{
    text-align: center;
}




.dakhle-boxes div{
    background-color: white;
    color: black;
    border-radius: 20px;
    padding: 30px;
}



.service-card{
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-card:hover{
    transform: translateY(-5px);
}




body{
    margin: 0;
    background-color: rgb(176, 17, 17);   /* हवे असल्यास color बदला */
    font-family: 'Mukta', sans-serif;
}



.services{
    background-color: #f5f5f5;   /* हवा तो color */
    padding: 40px 20px;
    border-radius: 20px;
}


.dakhle-content{
    background: none;   /* किंवा हा पूर्ण rule काढून टाका */
}



.services{
    background-color: white;   /* फक्त cards मागे */
    padding: 40px 20px;
    border-radius: 20px;
}



/* TITLE SECTION */
.dakhle-content{
    padding: 40px 0;
}

.dakhle-title{
    text-align: center;
    color: white;          /* वरचा पट्टा dark असल्यास */
    margin-bottom: 30px;
}

/* CARDS BACKGROUND (ONLY THIS PART WHITE) */
.services{
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* INDIVIDUAL CARD */
.service-card{
    height: 220px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-card:hover{
    transform: translateY(-6px);
}

/* CARD COLORS */
.green{ background:#00c26a; }
.orange{ background:#e04800; }
.darkgreen{ background:#3c6f54; }
.pink{ background:#c2265b; }
.purple{ background:#6a11b0; }
.blue{ background:#0096b7; }






.scheme-card{
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}





 

.news-section {
    padding: 40px;
    background: linear-gradient(#2c2c2c, #1a1a1a);
}

.news-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}





/* LIGHTBOX POPUP */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

#lightbox .prev,
#lightbox .next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

#lightbox .prev { left: 20px; }
#lightbox .next { right: 20px; }







.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* IMAGE */
.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ZOOM EFFECT */
.news-card:hover img {
    transform: scale(1.15);
}

/* SHERA / CAPTION */
.news-card .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* SHOW SHERA ON HOVER */
.news-card:hover .caption {
    opacity: 1;
}




.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 220px;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* IMAGE CENTER + FULL VIEW */
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* CLOSE BUTTON */
#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

/* ARROWS */
#lightbox .prev,
#lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

#lightbox .prev { left: 20px; }
#lightbox .next { right: 20px; }

}




/* ===== LIGHTBOX BACKGROUND ===== */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* DARK BG */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ===== IMAGE STYLE ===== */
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255,255,255,0.4);
    animation: zoomIn 0.3s ease;
}

/* ===== ZOOM ANIMATION ===== */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== CLOSE BUTTON ===== */
#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* ===== NEXT / PREV ===== */
#lightbox .prev,
#lightbox .next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

#lightbox .prev {
    left: 20px;
}

#lightbox .next {
    right: 20px;
}

/* ===== NEWS CARD ===== */
.news-card {
    position: relative;
}

.news-card img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

/* ===== CAPTION ===== */
.caption {
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
}





 

.double-frame{
    max-width:950px;
    margin:auto;
    padding:15px;
    border:4px solid #fff;
    background:rgba(0,0,0,0.35);
}

.inner-frame{
    border:3px solid #fff;
    padding:30px;
    color:#fff;
    background:rgba(0,0,0,0.55);
    position:relative;
}

.flag{
    width:90px;
    position:absolute;
    left:30px;
    top:30px;
}

.inner-frame h2{
    text-align:center;
    font-size:30px;
    margin-bottom:10px;
}

.inner-frame h3{
    text-align:center;
    color:yellow;
    margin-bottom:25px;
}

.inner-frame p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:15px;
}

.news-poster-wrapper{
    display:grid;
    grid-template-columns: 1fr 1fr; /* 50% left | 50% right */
    gap:30px;
    align-items:flex-start;
}





.news-poster-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% left | 50% right */
    gap: 30px;
    align-items: stretch;
    padding: 40px;
      /* हवा असल्यास पूर्ण section bg */
}

/* ===============================
   NEWS + POSTER COMMON BACKGROUND
================================ */

.news-poster-bg{
    background: url("images/bg-village.jpg") center/cover no-repeat;
    padding: 60px 40px;
}

/* 50% | 50% layout */
.news-poster-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* LEFT SIDE – NEWS */
.news-section{
    background: rgba(0,0,0,0.55);
    padding: 25px;
    border-radius: 12px;
}

/* RIGHT SIDE – POSTER */
.poster-bg{
    background: none;
    padding: 0;
}




/* MAIN 50-50 GRID */
.news-poster-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
    background: #000;
}

/* RIGHT SIDE BACKGROUND */
.photo-bg{
    background: url("images/bg-village.jpg") center/cover no-repeat;
    padding: 40px;
    border-radius: 20px;
}

/* 2x2 PHOTO GRID */
.news-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* PHOTO CARD */
.photo-card{
    background: rgba(255,255,255,0.08);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.photo-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid #fff;
}

/* RESPONSIVE */
@media (max-width: 900px){
    .news-poster-wrapper{
        grid-template-columns: 1fr;
    }
}





/* NEWS SECTION TITLE */
.news-section h2{
    font-size: 36px;              /* text size मोठी */
    font-weight: 900;
    color: #ffffff;

    background: linear-gradient(
        to right,
        #ff6a00,
        #ff9f00
    );                             /* title bg */

    padding: 18px 40px;
    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin: 0 auto 35px;          /* center + bottom gap */
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* ICON SIZE */
.news-section h2::before{
    content: "📰";
    font-size: 38px;
}



/* IMAGE POPUP */
.img-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    z-index:9999;
}

.modal-content{
    display:block;
    max-width:90%;
    max-height:90%;
    margin:auto;
    margin-top:5%;
    border:4px solid #fff;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:40px;
    font-weight:bold;
    cursor:pointer;
}

.popup-img{
    cursor:pointer;
}




.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:80%;
    max-height:80%;
    border:5px solid white;
    border-radius:8px;
}

.lightbox .close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

.lightbox .prev,
.lightbox .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    color:white;
    font-size:50px;
    cursor:pointer;
}

.lightbox .prev{ left:30px; }
.lightbox .next{ right:30px; }








/* Page background */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f4f7ff;
}

/* Main section */
.helpline-section,
.container {
  max-width: 1100px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Title */
.main-title,
.helpline-title {
  text-align: center;
  color: #2d5bff;
  font-size: 34px;
  margin-bottom: 5px;
}

.main-title span,
.helpline-subtitle {
  display: block;
  font-size: 20px;
  color: #000;
  margin-top: 8px;
}

/* Table */
.helpline-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

.helpline-table th,
.helpline-table td {
  border: 1px solid #d6def1;
  padding: 14px 16px;
  font-size: 18px;
}

.helpline-table th {
  background: #eef2ff;
  color: #2d5bff;
  text-align: left;
}

.helpline-table tr:nth-child(even) {
  background: #f9fbff;
}

.helpline-table tr:hover {
  background: #eaf0ff;
}

/* Phone links */
.helpline-table a {
  color: #2d5bff;
  font-weight: bold;
  text-decoration: none;
}

.helpline-table a:hover {
  text-decoration: underline;
}

/* Back link */
.back {
  margin-top: 25px;
  text-align: left;
}

.back a {
  color: #2d5bff;
  font-weight: bold;
  text-decoration: none;
}


/* Make ALL table text black */
.helpline-table th,
.helpline-table td {
  color: #000000 !important;
}





/* Tax payment page */
.tax-page {
  max-width: 1000px;
}

.tax-info {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 15px;
  color: #000;
}

.tax-rules {
  margin-top: 25px;
  background: #f5f8ff;
  padding: 20px;
  border-radius: 8px;
}

.tax-rules ol {
  padding-left: 20px;
}

.tax-rules li {
  font-size: 17px;
  margin-bottom: 12px;
  color: #000;
}

/* Scanner section */
.scanner-section {
  display: flex;
  gap: 30px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.scanner-box {
  flex: 1;
  min-width: 250px;
  text-align: center;
  border: 1px solid #d6def1;
  border-radius: 10px;
  padding: 20px;
  background: #ffffff;
}

.scanner-box h3 {
  color: #2d5bff;
  margin-bottom: 15px;
}

.scanner-box img {
  max-width: 300px;
  width: 100%;
}

/* Scanner section – force one line */
.scanner-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: nowrap;   /* 🔥 हे IMPORTANT */
}

.scanner-box {
  width: 48%;
  text-align: center;
  border: 1px solid #d6def1;
  border-radius: 10px;
  padding: 20px;
  background: #ffffff;
}

.scanner-box img {
  max-width: 180px;
  width: 100%;
  height: auto;
}





.whatsapp-share {
  margin-top: 35px;
  padding: 20px;
  background: #eafff1;
  border: 1px solid #b6e7c9;
  border-radius: 10px;
  text-align: center;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.note {
  margin-top: 10px;
  font-size: 16px;
  color: #000;
}
 






.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-link {
  cursor: pointer;
  font-size: 18px;
}

.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 250px;
  z-index: 9999;
}

.dropdown-list li {
  list-style: none;
}

.dropdown-list li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #000;
}



/* thin line */
.line{
  height:4px;
  background:#ffffff;
}

/* info strip */
.info-strip{
  /* background:#030a4d; */
  color:#ffffff;
  overflow:hidden;
  white-space:nowrap;
  position:relative;
}

/* moving content */
.info-strip span{
  display:inline-block;
  padding:10px 30px;
  font-size:18px;
  animation: move 18s linear infinite;
}

/* animation */
@keyframes move{
  0%{
    transform: translateX(100%);
  }
  100%{
    transform: translateX(-100%);
  }
}







.menu{
  position:relative;
  display:inline-block;
}

.menu-btn{
  color:#fff;
  text-decoration:none;
  padding:12px 18px;
  font-size:18px;
  display:flex;
  align-items:center;
  gap:6px;
}

/* dropdown box */
.menu-dropdown{
  position:absolute;
  top:100%;
  left:0;
  background:#ffffff;
  min-width:340px;
  display:none;
  box-shadow:0 4px 12px rgba(0,0,0,0.3);
  z-index:999;
}

/* items */
.menu-dropdown a{
  display:block;
  padding:16px 20px;
  color:#000;
  font-size:20px;
  text-decoration:none;
  border-bottom:2px solid #1d2a5b;
}

.menu-dropdown a:last-child{
  border-bottom:none;
}

/* hover open */
.menu:hover .menu-dropdown{
  display:block;
}

/* hover effect on items */
.menu-dropdown a:hover{
  background:#f3f3f3;
}




.modal{
  display:block;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:2000;
  pointer-events:none;   /* ⭐ FIX */
}

.modal-box{
  background:#fff;
  width:60%;
  max-width:600px;
  margin:100px auto;
  padding:25px;
  border-radius:4px;
  position:relative;
  z-index:2100;
  pointer-events:auto;   /* ⭐ FIX */
}

.modal-box h2{
  margin-top:0;
  color:#030a4d;
}

/* close button */
.close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:24px;
  cursor:pointer;
}
body{
  margin:0;
  color: #000000;
  font-family: 'Baloo 2', sans-serif;
  background:#f5f5f5;   /* simple light bg */
}

.contact-section{
  padding:20px;
  margin-bottom: 50px;
}

.contact-form{
  max-width:450px;
  margin-bottom: 2px;
}

/* Labels */
.contact-form label{
  font-size:20px;
  color:#000;
  margin-bottom:6px;
  display:block;
}

/* Inputs */
.contact-form input,
.contact-form textarea,
.contact-form button{
pointer-events: auto;
  width:100%;
  padding:14px;
  border:none;
  border-radius:6px;
  font-size:16px;
  margin-bottom:20px;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.contact-form textarea{
  height:80px;
  resize:none;
}

/* Button */
.contact-form button{
  background:#0a8f2c;
  color:#fff;
  padding:12px 40px;
  font-size:18px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.contact-form button:hover{
  background:#087a25;
}



.modal{
  display:block;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:2000;
  pointer-events:none;
}

.modal-box{
  position:relative;
  z-index:2100;
  pointer-events:auto;
}

.contact-form{
  position:relative;
  z-index:3000;
}

.contact-form input,
.contact-form textarea,
.contact-form button{
  pointer-events:auto;
  z-index:3001;
}



/* Body style */
body {
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: #000;
    font-family: 'Baloo 2', sans-serif;
    line-height: 1.8;
}

/* Main container
.container {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Heading */
/* .main-title {
    text-align: center;
    color: #b13232;
    margin-bottom: 25px;
} */ */

/* Top notice (FULL WIDTH TEXT) */
.top-notice {
    width: 100%;
    display: block;
    background: #f2f2f2;
    padding: 25px;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.8;
    text-align: right;
    box-sizing: border-box; /* Important */
}
    /* justify काढले
    border-radius: 10px;
} */

/* Scanner section (ONLY scanners grid) */
.scanner-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Responsive */
@media (max-width: 900px) {
    .scanner-section {
        grid-template-columns: 1fr;
    }
}

/* Scanner box */
.scanner-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Images */
.scanner-box img {
    max-width: 100%;
    height: auto;
}

/* Box sizing */
* {
    box-sizing: border-box;
}


.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

 

 
/* Overlay */
.overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: 150px;
}

.search-box input {
    padding: 10px;
}

.search-box button {
    padding: 10px 15px;
    background: green;
    color: white;
    border: none;
    cursor: pointer;
}
.banner-slider {
    width: 100%;
    height: 450px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 15s infinite;
}

.slides img {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    object-fit: cover;   /* full screen */
}
/* Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    30% { transform: translateX(0); }

    35% { transform: translateX(-100%); }
    65% { transform: translateX(-100%); }

    70% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

.members {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.member {
    text-align: center;
}

.member img {
    width: 200px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
}
h2 {
    text-align: center;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px; 
}
.title-bar {
    background-color: #0b2c4a;   /* Blue color */
    color: white;               /* Text white */
    text-align: center;         /* Center text */
    padding: 15px;              /* वर-खाली spacing */
    font-size: 40px;            /* Text size */
    font-weight: bold;
}
.hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 15s infinite;
}

.slides img {
    width: 100%;
    height:auto;
    object-fit: cover;
}

/* Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    30% { transform: translateX(0); }

    35% { transform: translateX(-100%); }
    65% { transform: translateX(-100%); }

    70% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

/* Overlay content */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.4);
    color: white;
    text-align: center;
}

/* MOBILE FIX */
@media (max-width:768px){

.container{
    grid-template-columns:1fr;
}

.links{
    margin-bottom:20px;
}

.contact-form{
    width:100%;
}

}
.notice-box {
    width: 60%;
    margin: 20px auto;   /* center */
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.notice-box h4 {
    font-size: 26px;
    color: #c0392b;
}

.notice-box p {
    font-size: 20px;
}

.notice-box small {
    font-size: 14px;
    color: gray;
}


.members-wrapper {
    display: flex;           /* horizontal layout */
    flex-wrap: wrap;         /* wrap to next line on small screens */
    gap: 20px;               /* spacing between cards */
    justify-content: center; /* center the row */
    margin: 20px 0;
}

.member-card {
    background-color: white;
    border: 1px solid #b0c4de;
    border-radius: 10px;
    padding: 20px;           /* padding कमी केलं */
    text-align: center;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    width: 200px;             /* card width छोटं केलं */
}

.member-card img {
    width: 80px;             /* image size छोटं */
    height: 80px;            /* same as width for perfect circle */
    border-radius: 50%;
    margin-bottom: 8px;
}
