﻿/* =====================================================
   GLOBAL
   ===================================================== */
body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 16px;
    margin: 0;
}

/* =====================================================
   GOV NOTICE BAR
   ===================================================== */
.gov-notice {
    background: #fff3cd;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #e0c97f;
}

    .gov-notice marquee {
        margin: 6px 0px -6px 0;
    }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
    background: #f15a24;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-links a {
    color: #fff;
    margin-right: 12px;
    text-decoration: none;
}

    /*.top-links a:hover {
        text-decoration: underline;
    }*/

.top-social a {
    color: #fff;
    margin-left: 10px;
    font-size: 15px;
    text-decoration: none;
}

.btn-download {
    background: #fff;
    color: #f15a24 !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 10px;
}

/* =====================================================
   MAIN HEADER
   ===================================================== */
.main-header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 3px solid #f15a24;
}

.header-logo {
    max-width: 120px;
}

.mantra {
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.main-header h1 {
    font-size: 30px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

    .main-header h1 span {
        font-size: 16px;
    }

.main-header h2 {
    color: #f15a24;
    font-weight: 700;
    margin-bottom: 5px;
}
/* =========================================
   HEADER ENHANCEMENTS
   ========================================= */

.header-left {
    gap: 14px;
}

.header-title h1 {
    line-height: 1.3;
}



/* Mobile adjustments */
@media (max-width: 768px) {
    .header-left {
        flex-direction: column;
        text-align: center;
    }

}
/* ===============================
   HEADER RIGHT – ROUND IMAGES
   =============================== */

.header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

/* Round images */
.header-icon-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f15a24;
    background: #fff;
    padding: 3px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* Hover effect (clean & govt style) */
    .header-icon-img:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }

/* Responsive */
@media (max-width: 768px) {
    .header-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .header-icon-img {
        width: 56px;
        height: 56px;
    }
}

/* Home link wrapper (logo + title) */
.header-home-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

    /* Optional hover effect (very subtle) */
    /*.header-home-link:hover h1 {
        color: #f15a24;
    }*/

.member-post {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: #f15a24;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.address {
    font-size: 14px;
    color: #555;
}

.reg-no {
    font-weight: 700;
    color: #333;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.main-nav {
    background: #f15a24;
    position: sticky;
    top: 0;
    z-index: 999;
}

    .main-nav .nav-link {
        color: #fff !important;
        font-weight: 600;
        padding: 0px 14px;
    }

        .main-nav .nav-link:hover,
        .main-nav .nav-link:focus {
            background: #d94b1c;
            color: #fff !important;
        }

.navbar-toggler {
    border: 1px solid #fff;
    font-size: 8px;
    padding: 0 4px 0px 4px;
}
.navbar-toggler-icon {
    width: 1.8em !important;
    height: 2.8em !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Gap between navbar menu items */
.main-nav .navbar-nav {
    gap: 18px; /* adjust value as needed */
}

/* =====================================================
   DROPDOWN – FIXED & GOVT STANDARD
   ===================================================== */
/*.navbar-nav {
    align-items: center;
}*/

    .navbar-nav .nav-item {
        position: relative;
    }

.dropdown-menu {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0;
    min-width: 220px;
    background: #fff;
}

.dropdown-item {
    font-weight: 600;
    padding: 10px 15px;
    color: #333;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: #f15a24;
        color: #fff;
    }

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* Mobile dropdown (click only) */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        border: none;
        box-shadow: none;
    }
}

/* =====================================================
   ACCESSIBILITY (WCAG)
   ===================================================== */
/*a:focus,
button:focus,
.nav-link:focus {
    outline: 2px dashed #000;
    outline-offset: 2px;
}*/

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-links {
        margin-bottom: 6px;
    }

        .top-links a {
            display: inline-block;
            margin: 3px 8px;
        }
}

@media (max-width: 768px) {
    .header-logo {
        max-width: 90px;
        margin-bottom: 10px;
    }

    .main-header h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .main-header h2 {
        font-size: 18px;
    }

    .address {
        font-size: 13px;
    }

    .reg-no {
        margin-top: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-header h1 {
        font-size: 20px;
    }

    .main-header h2 {
        font-size: 16px;
    }

    .address {
        font-size: 12px;
    }
}

/* =====================================================
   PRINT (GOVT MANDATORY)
   ===================================================== */
@media print {
    .top-bar,
    .main-nav,
    .btn-download {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 14px;
    }
}


/* =====================================================
   HOME SLIDER – GOVT STANDARD
   ===================================================== */

.slider-img {
    height: 568px;
    object-fit: cover;
}

/* Caption styling (official look) */
.carousel-caption {
    background: rgba(0, 0, 0, 0.55);
    padding: 20px;
    border-radius: 6px;
    max-width: 650px;
    margin: auto;
}

    .carousel-caption h5 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .carousel-caption p {
        font-size: 16px;
        font-weight: 500;
    }

/* Indicators */
.carousel-indicators button {
    background-color: #f15a24;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    .slider-img {
        height: 260px;
    }

    .carousel-caption {
        padding: 12px;
    }

        .carousel-caption h5 {
            font-size: 18px;
        }

        .carousel-caption p {
            font-size: 14px;
        }
}

/* =====================================================
   Footer – GOVT STANDARD
   ===================================================== */

.gov-footer {
    background: linear-gradient(135deg, #e65100, #bf360c);
    color: #fff;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    border-left: 4px solid #ffd180;
    padding-left: 10px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #fff3e0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #fff3e0;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: #ffe082;
            padding-left: 4px;
        }

.footer-social {
    margin-top: 12px;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #fff;
        color: #bf360c;
        border-radius: 6px;
        margin-right: 6px;
        font-size: 18px;
        transition: 0.3s;
        text-decoration: none;
    }

        .footer-social a:hover {
            background: #ffe082;
            transform: translateY(-3px);
        }

.footer-bottom {
    background: #8a2d1c;
    color: #ffe0b2;
    font-size: 14px;
    padding: 12px 10px;
}
.footer-bottom a{
    text-decoration: none;
    color: white;
}
    /* Responsive */
    @media (max-width: 768px) {
        .footer-title {
        font-size: 16px;
    }

    .footer-text, .footer-links a {
        font-size: 13px;
    }
}

.footer-social .fa-facebook-f {
    color: #1877f2;
}

.footer-social .fa-twitter {
    color: #1da1f2;
}

.footer-social .fa-telegram-plane {
    color: #229ed9;
}

.footer-social .fa-youtube {
    color: #ff0000;
}

/* ===============================
   MEMBERS – PREMIUM GOVT STYLE
   =============================== */

.members-section {
    background: #f9fafb;
}

/* Section title */
.section-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1f2937;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title h2::after {
        content: "";
        width: 70px;
        height: 3px;
        background: #f15a24;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

.section-title p {
    margin-top: 8px;
    font-size: 15px;
    color: #6b7280;
}

/* Card */
.member-card.premium {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

    .member-card.premium:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

/* Top strip */
.member-top {
    height: 90px;
    background: linear-gradient(135deg, #f15a24, #ff8a50);
}

/* Profile image */
.member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: fill;
    border: 5px solid #fff;
    margin-top: -60px;
    background: #fff;
}

/* Body */
.member-body {
    padding: 15px 15px 22px;
}

    .member-body h5 {
        font-size: 17px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 6px;
    }

    .member-body span {
        font-size: 14px;
        font-weight: 600;
        color: #f15a24;
        letter-spacing: 0.3px;
    }

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
    }

    .member-img {
        width: 100px;
        height: 100px;
        margin-top: -50px;
    }
}

/* ===============================
   NOTICE BOARD – AUTO SCROLL
   =============================== */

.notice-board {
    height: 150px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #f15a24;
}


.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .notice-list li {
        padding: 12px 15px;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        border-bottom: 1px solid #eee;
        background: #fff;
    }

/* Pause on hover (important for accessibility) */
.notice-board:hover .notice-list {
    animation-play-state: paused;
}
/* Equal visual height feel */
.notice-board {
    min-height: 260px;
}

/* Activity cards hover */
section .border:hover {
    background: #fff7f2;
    border-color: #f15a24;
    transition: 0.3s;
}

/* Fancy gallery hover */
.fancy-img {
    height: 204px;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .fancy-img:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    }
/* ===============================
   OBJECTIVES – PREMIUM STYLE
   =============================== */

.objectives-section {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.objective-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
}

    .objective-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        border-top: 5px solid #f15a24;
        opacity: 0.9;
    }

    .objective-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    }

/* Icon circle */
.objective-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff3ec;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

/* Title */
.objective-card h5 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1f2937;
}

/* Text */
.objective-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
    .objective-card {
        padding: 28px 20px;
    }

    .objective-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}


/* ================= ABOUT PAGE PREMIUM ================= */

.about-hero {
    background: linear-gradient(135deg, #f15a24, #ff8a50);
    color: #fff;
    padding: 70px 0;
}

    .about-hero h1 {
        font-weight: 800;
    }

.about-image-box {
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.vm-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .about-card:hover {
        transform: translateY(-8px);
    }

.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff3ec;
    color: #f15a24;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.timeline {
    max-width: 700px;
    margin: auto;
}

.timeline-item {
    background: #fff;
    padding: 15px 20px;
    border-left: 4px solid #f15a24;
    margin-bottom: 15px;
    border-radius: 6px;
}

    .timeline-item span {
        font-weight: 800;
        color: #f15a24;
    }

.about-cta {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #fff;
}

.btn-ab {
    border: 1px solid #f15a24;
    color: #f15a24;
}
.btn-ab:hover {
    background: #f15a24;
    color: white;
}


.otp-card {
    border-radius: 18px;
    padding: 28px 24px 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.otp-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
    .otp-close:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }
.otp-logo img {
    width: 90px;
    margin-bottom: 10px;
}

.otp-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.otp-label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 6px;
}

.otp-input {
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.otp-btn {
    background: #f15a24;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    border: none;
}

    .otp-btn:hover {
        background: #e04e1d;
    }

.otp-msg {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

    .otp-msg.error {
        background: #ffe6e0;
        color: #b00000;
    }

    .otp-msg.success {
        background: #e9f9f0;
        color: #1a7f37;
    }

