﻿
/* Minimal modern UI with Hindi-friendly fonts */
@font-face { font-family: "Noto Sans Devanagari"; src: local("Noto Sans Devanagari"); }
* { box-sizing: border-box; }
body { font-family: "Noto Sans Devanagari","Segoe UI",Tahoma,sans-serif; margin:0; background:#f8fafc; color:#0f172a; }
a { text-decoration:none; }
.site-title { font-size:24px; font-weight:700; }
/* Section Styling */
.section {
    padding: 40px 20px;
    width:100%;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: #28a745; /* green underline */
        margin: 10px auto 0;
        border-radius: 2px;
    }

/* Member Card */
.member-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

    .member-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    /* Card Body */
    .member-card .card-body {
        padding: 20px;
    }

    /* Member Photo */
    .member-card img {
        border: 3px solid #28a745; /* green border */
        object-fit: cover;
        width: 80px;
        height: 80px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        margin-right:15px;
    }

    /* Member Name */
    .member-card .card-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #007bff; /* Bootstrap primary */
    }

    /* Badge (Responsibility) */
    .member-card .badge {
        font-size: 0.85rem;
        padding: 6px 10px;
        border-radius: 8px;
    }

    /* Subject (विषय) */
    .member-card p {
        font-size: 0.9rem;
        color: #555;
        margin: 0;
    }

/* Responsive adjustments */
@media (max-width: 576px) {
    .member-card .card-body {
        flex-direction: column;
        text-align: center;
    }

    .member-card img {
        margin-bottom: 12px;
    }
}
/* Kendra Card */
.kendra-card {
    border: none;
    border-radius: 12px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .kendra-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    }

    /* Card Body */
    .kendra-card .card-body {
        padding: 25px 20px;
    }

    /* Kendra Name */
    .kendra-card h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c3e50;
    }

/* Custom Button */
.btn-custom {
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-custom:hover {
        background: linear-gradient(135deg, #218838, #1e7e34);
        color: #fff;
        transform: scale(1.03);
        text-decoration: none;
    }

    .btn-custom:active {
        transform: scale(0.97);
    }
/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

    /* Card Styling */
    .grid .card {
        background: #ffffff;
        border-radius: 12px;
        padding: 25px 20px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

        .grid .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }

        /* Card Title */
        .grid .card h2 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #28a745; /* green accent */
            margin-bottom: 15px;
        }

        /* Card Text */
        .grid .card p {
            font-size: 1rem;
            color: #444;
            line-height: 1.6;
            margin: 0;
        }
/* scroll-to-top button base */
#scroll-to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0,0,0,0.65);
    color: white;
    text-decoration: none;
    font-size: 20px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, background 150ms ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

    /* visible state (when shown) */
    #scroll-to-top-btn.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* hover / focus styling for accessibility */
    #scroll-to-top-btn:focus,
    #scroll-to-top-btn:hover {
        background: rgba(0,0,0,0.85);
        outline: none;
        box-shadow: 0 8px 22px rgba(0,0,0,0.32);
    }

    /* visible focus ring for keyboard users */
    #scroll-to-top-btn:focus-visible {
        outline: 3px solid rgba(255,255,255,0.12);
        outline-offset: 3px;
    }

/* small-screen tweak */
@media (max-width:420px) {
    #scroll-to-top-btn {
        right: 14px;
        bottom: 18px;
        width: 40px;
        height: 40px;
    }
}

/* optional: hide the default anchor text if you add a label visually */
#scroll-to-top-btn span {
    line-height: 1;
    display: inline-block;
}
/* Up-down bounce animation for the arrow */
#scroll-to-top-btn span {
    display: inline-block;
    line-height: 1;
    animation: bounce-up-down 1.6s infinite ease-in-out;
}

@keyframes bounce-up-down {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px); /* move up */
    }
}
/* About Section */
.about {
    position: relative;
    background: url("../images/about-bg.jpg") center/cover no-repeat; /* change path as needed */
    padding: 80px 0;
    background-attachment:fixed;
    color: #fff;
    text-align: center;
    margin-top:70px;
}

    /* Black Overlay */
    .about::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.7); /* black overlay with opacity */
        z-index: 1;
    }

    /* Container ensures text stays above overlay */
    .about .container {
        position: relative;
        z-index: 2;
    }

    /* Heading */
    .about h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #ddd;
    background:none;
}

    .breadcrumb li {
        display: inline;
    }

    .breadcrumb a {
        color: #28a745; /* green accent */
        text-decoration: none;
        font-weight: 500;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }
/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 30px 0;
}
.gallery-item{
    height:250px;
    overflow:hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit:cover;
}

    .gallery-item img:hover {
        transform: scale(1.05);
    }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 6px;
        object-fit: contain;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    /* Close & Arrows */
    .lightbox .close,
    .lightbox .prev,
    .lightbox .next {
        position: absolute;
        color: #fff;
        font-size: 2.2rem;
        font-weight: bold;
        cursor: pointer;
        user-select: none;
        transition: 0.3s;
    }

    .lightbox .close {
        top: 20px;
        right: 30px;
    }

    .lightbox .prev,
    .lightbox .next {
        top: 50%;
        transform: translateY(-50%);
        padding: 10px;
        background: rgba(0,0,0,0.4);
        border-radius: 50%;
    }

    .lightbox .prev {
        left: 30px;
    }

    .lightbox .next {
        right: 30px;
    }

        .lightbox .prev:hover,
        .lightbox .next:hover,
        .lightbox .close:hover {
            color: #28a745;
        }
.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

    .slide.active {
        opacity: 1;
    }

.slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 0;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }
/*.nav { display:flex; gap:12px; margin-top:0px; flex-wrap:wrap; }
.nav a { color:white; padding:6px 9px; border-radius:999px; transition:.2s; font-size:15px; }
.nav a.active, .nav a:hover { background:rgba(255,255,255,.18); }
.dropdown {
    position: relative;
    display: inline-block;
    padding:6px;
}
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 180px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        z-index: 10;
        padding:10px;
        top:34px;
        width:250px;
    }

    .dropdown-content a {
        display: block;
        padding: 10px 10px !important;
        color: #000 !important;
        text-decoration: none;
        font-size:13px;
    }

        .dropdown-content a:hover {
            background: #f5f5f5 !important;
            border-radius: 0px;
            color: #3e419a !important;
        }

.dropdown:hover .dropdown-content {
    display: block;
}*/
footer.footer {
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      background: #3e419a;
      color: #ddd;
      font-size: 0.9rem;
    }
    footer.footer div:first-child {
        font-style: italic;
        margin-bottom: 5px;
    }
        body
{
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fafafa;
    color: #222;
}

/*header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: linear-gradient(90deg, #f57c00, #ef6c00);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

    header img {
        height: 60px;
        border-radius: 0;
        margin-right: 15px;
        padding: 2px;
        background: #fff;
    }*/

.site-brand {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.4rem;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 5px;
}
.brand {
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0px;
    text-decoration:none;
    text-transform: uppercase;
    color: #fff !important;
}
    .brand:hover {
        text-decoration: none;
        color: #fff !important;
    }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: #f37700;
    padding:15px 20px;
}

/* Wrapper */
.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 4rem;
    margin: 0 auto;
}

/* Navbar */
@media screen and (max-width: 992px) {
    .navbar {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: 0px 0px 10px -5px;
        background-color: #fff;
        transition: all 0.5s ease;
    }

        .navbar.active1 {
            left: 0rem;
            padding:20px !important;
            opacity: 1;
            visibility: visible;
        }
}
.menu{
    margin-bottom:0;
}
/* Menu */
.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 0rem;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.25rem;
    font-family: inherit;
    font-size: 1rem;
    padding:10px;
    text-decoration:none;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    border-radius:6px;
    text-transform: capitalize;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

    .menu-link > i.bx {
        font-size: 1.35rem;
        line-height: 1.5;
        color: #fff;
    }

    .menu-link:hover {
        outline: none;
        color: #fff;
        text-decoration:none;
        background: #f58f2e;
    }

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover > .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }

    .menu-item {
        display: block;
        margin: 0 auto;
    }

    .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
        color:#000;
    }
}

/* Submenu */
.submenu {
    position: absolute;
    top: 2.8rem;
    left: 0rem;
    min-width: 13rem;
    height: auto;
    padding: 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0.25rem 0.25rem;
    border-top: 2px solid var(--color-pink-400);
    box-shadow: var(--shadow-medium);
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.submenu-item {
    display: block;
    margin-top: 0.75rem;
}

.submenu-link {
    font-family: inherit;
    font-size: 15px;
    font-weight: normal;
    line-height: inherit;
    cursor: pointer;
    color: #000;
    text-decoration:none;
    transition: all 0.35s ease;
    padding:5px;
}

    .submenu-link:hover {
        outline: none;
        text-decoration: none;
        color: #404099;
    }

@media only screen and (max-width: 992px) {
    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
    }
}

/* Burger */
.burger {
    position: relative;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: #fff;
}

    .burger-line:nth-child(1) {
        top: 0px;
    }

    .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 70%;
    }

    .burger-line:nth-child(3) {
        top: 1rem;
    }

@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* Overlay */
.overlay1 {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 992px) {
    .overlay.active1 {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.card { background:white; border-radius:16px; padding:20px; box-shadow:0 10px 30px rgba(2,6,23,.06); margin-bottom:20px; }
h1 { font-size:28px; margin:0 0 8px; }
h2 { font-size:22px; margin:16px 0 8px; }
h3 { font-size:18px; margin:12px 0 6px; }
.footer { background:#0b1b2b; color:#b8c2cf; padding:24px; margin-top:40px; }
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:16px; }
.hero { display:grid; grid-template-columns: 1.2fr 1fr; gap:20px; align-items:center; }
.hero img { width:100%; border-radius:16px; box-shadow:0 10px 30px rgba(0,0,0,.18); }
.badge { display:inline-block; padding:6px 10px; background:#e0f2fe; color:#0369a1; border-radius:999px; font-size:12px; margin-bottom:8px; }
.table { width:100%; border-collapse:collapse; }
.table th, .table td { border:1px solid #e2e8f0; padding:8px 10px; }
.table th { background:#eff6ff; }
.cta { display:inline-block; padding:10px 16px; border-radius:10px; background:#2563eb; color:white; }
.gallery { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:14px; }
.gallery img { width:100%; border-radius:12px; box-shadow:0 6px 20px rgba(0,0,0,.08); }
form label { display:block; margin:8px 0 4px; }
input[type=text], input[type=email], textarea { width:100%; padding:10px 12px; border:1px solid #cbd5e1; border-radius:10px; }
input[type=submit], button { border:none; padding:10px 16px; border-radius:10px; background:#2563eb; color:white; cursor:pointer; }
