        :root {
            --primary-emerald: #064e3b;
            /* Deep Green */
            --secondary-green: #059669;
            /* Lighter Green */
            --accent-gold: #fbbf24;
            /* Gold */
            --light-bg: #f8fafc;
            --text-main: #1e293b;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
        }
       

        /* --- Top Bar Styling --- */
        .top-nav {
            background: linear-gradient(90deg, var(--primary-emerald), #065f46);
            color: rgba(255, 255, 255, 0.9);
            padding: 10px 0;
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        .top-nav i {
            color: var(--accent-gold);
        }

        .social-links a {
            color: white;
            margin-left: 15px;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--accent-gold);
            transform: scale(1.2);
        }

        /* --- Main Navbar Styling --- */
        .main-nav {
            background: rgba(255, 255, 255, 0.98);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease-in-out;
        }

        .logo-box img {
            height: 60px;
            width: auto;
            transition: 0.5s;
        }

        .brand-text h4 {
            font-weight: 800;
            color: var(--primary-emerald);
            font-size: 1.5rem;
            line-height: 1;
        }

        .brand-text span {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #64748b;
            font-weight: 600;
        }

        /* Nav Links Styling */
        .navbar-nav .nav-link {
            color: var(--text-main);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 12px !important;
            transition: 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary-green);
        }

        /* Animated Underline Effect */
        .nav-item {
            position: relative;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background: var(--secondary-green);
            transition: 0.4s ease;
            transform: translateX(-50%);
            border-radius: 10px;
        }

        .nav-item:hover::after {
            width: 70%;
        }

        /* Officer Login Button - Modern Style */
        .btn-officer {
            background: linear-gradient(135deg, var(--primary-emerald), var(--secondary-green));
            color: white !important;
            border-radius: 8px;
            padding: 10px 24px !important;
            font-weight: 600;
            box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3);
            border: none;
            transition: 0.4s;
        }

        .btn-officer:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.4);
            filter: brightness(1.1);
        }

        /* Mobile Toggle Icon Animation */
        .navbar-toggler:focus {
            box-shadow: none;
        }

        .fa-bars-staggered {
            color: var(--primary-emerald);
            font-size: 1.5rem;
        }

        /* Dropdown Modern Style */
        .dropdown-menu {
            border: none;
            border-top: 4px solid var(--secondary-green);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 15px;
        }

        .dropdown-item {
            padding: 10px 20px;
            font-weight: 500;
            border-radius: 5px;
            transition: 0.2s;
        }

        .dropdown-item:hover {
            background-color: #ecfdf5;
            color: var(--secondary-green);
            padding-left: 25px;
        }



        /* --- Hero Carousel Section --- */
        .hero-carousel {
            position: relative;
            height: 90vh;
            /* Full viewport height */
            overflow: hidden;
        }

        .hero-carousel .carousel-item {
            height: 90vh;
            min-height: 500px;
            background: #000;
        }

        .hero-carousel .carousel-item img {
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            /* Dark Overlay for better text readability */
            transition: transform 7s ease;
            /* Slow zoom-in effect on images */
        }

        /* Image Zoom Effect */
        .hero-carousel .carousel-item.active img {
            transform: scale(1.1);
        }

        .hero-carousel .carousel-caption {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            /* Vertically center content */
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            /* Slightly darker overlay */
            z-index: 1;
        }

        .hero-carousel .caption-content {
            max-width: 800px;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }

        .hero-carousel .carousel-caption h1 {
            font-size: 3.8rem;
            /* Large headline for impact */
            margin-bottom: 20px;
        }

        .hero-carousel .carousel-caption h5 {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--accent-gold);
            /* Gold highlight for sub-headline */
        }

        .hero-carousel .carousel-caption p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            width: 5%;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .hero-carousel .carousel-control-prev:hover,
        .hero-carousel .carousel-control-next:hover {
            opacity: 1;
        }

        .hero-carousel .carousel-indicators [data-bs-target] {
            background-color: white;
            opacity: 0.6;
            height: 4px;
            border-radius: 0;
            margin: 0 5px;
            width: 30px;
            transition: all 0.3s;
        }

        .hero-carousel .carousel-indicators .active {
            opacity: 1;
            background-color: var(--accent-gold);
            width: 40px;
        }

        /* Gold Button Style */
        .btn-gold {
            background: var(--accent-gold);
            color: var(--primary-emerald) !important;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
        }

        .btn-gold:hover {
            background: var(--primary-emerald);
            color: white !important;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(6, 78, 59, 0.4);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-carousel .carousel-caption h1 {
                font-size: 2.5rem;
            }

            .hero-carousel .carousel-caption p {
                font-size: 1rem;
            }

            .hero-carousel .carousel-caption h5 {
                font-size: 1.2rem;
            }

            .hero-carousel .btn-gold {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }



        /* --- News Ticker Styles --- */
        .news-ticker-container {
            background: #fff;
            border-bottom: 2px solid #f1f5f9;
            z-index: 99;
            position: relative;
        }

        .news-wrapper {
            height: 50px;
            overflow: hidden;
        }

        .news-label {
            background: linear-gradient(135deg, var(--primary-emerald), var(--secondary-green));
            color: white;
            padding: 0 25px;
            height: 100%;
            font-weight: 700;
            font-size: 14px;
            white-space: nowrap;
            position: relative;
            clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
            /* Stylish Slanted Edge */
        }

        .ticker-content {
            flex-grow: 1;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .marquee-text {
            display: inline-block;
            padding-left: 100%;
            animation: marquee-scroll 25s linear infinite;
            font-weight: 500;
            color: #475569;
        }

        .marquee-text:hover {
            animation-play-state: paused;
            /* Pause on hover */
            cursor: pointer;
        }

        .news-item {
            padding-right: 50px;
            font-size: 15px;
        }

        .badge {
            margin-right: 8px;
            padding: 5px 10px;
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        /* Animations */
        @keyframes marquee-scroll {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-100%, 0);
            }
        }

        .pulse-info {
            animation: pulse-red 2s infinite;
        }

        @keyframes pulse-red {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
            }
        }

        .news-date {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-emerald);
        }


        /* --- About Section Professional Styles --- */
        .text-emerald {
            color: var(--primary-emerald);
        }

        .text-gold {
            color: var(--accent-gold);
        }

        .section-tag {
            display: inline-block;
            padding: 5px 15px;
            background: #ecfdf5;
            color: var(--secondary-green);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Image Wrapper with Effects */
        .about-img-wrapper {
            position: relative;
            padding: 20px;
            z-index: 2;
        }

        .about-img-wrapper img {
            border-radius: 30px;
            transition: transform 0.5s ease;
        }

        .about-img-wrapper:hover img {
            transform: translateY(-10px);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: 0;
            background: var(--accent-gold);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
        }

        .experience-badge .number {
            display: block;
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-emerald);
        }

        .experience-badge .text {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--primary-emerald);
        }

        /* Feature Icons */
        .about-feature {
            display: flex;
            align-items: center;
            padding: 15px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            border-left: 4px solid var(--secondary-green);
        }

        .about-feature:hover {
            transform: translateX(10px);
            background: var(--secondary-green);
            color: white;
        }

        .about-feature i {
            font-size: 24px;
            margin-right: 15px;
            color: var(--secondary-green);
        }

        .about-feature:hover i {
            color: white;
        }

        .about-feature h6 {
            margin: 0;
            font-weight: 600;
            font-size: 14px;
        }

        /* Stats Card */
        .stat-card {
            padding: 30px 20px;
            /* Padding barabar rakhi */
            border-radius: 15px;
            background: #fff;
            transition: 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            height: 100%;
            /* Ye sabhi cards ko barabar height dega */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .stat-card:hover {
            background: var(--primary-emerald);
        }

        .stat-card:hover h3,
        .stat-card:hover p {
            color: white !important;
        }

        .stat-card h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .stat-card p {
            margin: 0;
            color: #64748b;
            font-weight: 500;
            text-align: justify;
        }

        /* Read More Button */
        .btn-outline-emerald {
            border: 2px solid var(--primary-emerald);
            color: var(--primary-emerald);
            border-radius: 50px;
            transition: 0.3s;
        }

        .btn-outline-emerald:hover {
            background: var(--primary-emerald);
            color: white;
        }

        /* Background Decoration */
        .shape-blob {
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: rgba(5, 150, 105, 0.1);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            z-index: -1;
        }

        .icon-stat {
            font-size: 2rem;
            color: var(--accent-gold);
            transition: 0.3s;
        }

        .stat-card:hover .icon-stat {
            color: white;
            transform: scale(1.2) rotate(10deg);
        }


        /* --- Modern Services Grid --- */
        .services-grid-section {
            background: linear-gradient(180deg, #ffffff 0%, #f0f9f6 100%);
            position: relative;
        }

        .service-box {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Icon Container */
        .icon-shape {
            width: 80px;
            height: 80px;
            background: #ecfdf5;
            color: var(--secondary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            border-radius: 20px;
            margin: 0 auto 20px;
            transition: 0.4s;
        }

        /* Hover Effects */
        .service-box:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
            border-color: var(--secondary-green);
        }

        .service-box:hover .icon-shape {
            background: var(--secondary-green);
            color: #fff;
            transform: rotateY(360deg);
        }

        .service-box h5 {
            font-weight: 700;
            color: var(--primary-emerald);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

        .service-box p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
        }

        /* Accent link inside box */
        .service-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--secondary-green);
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: 0.3s;
        }

        .service-box:hover .service-link {
            opacity: 1;
            transform: translateY(0);
        }

        /* Category Badge */
        .category-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 10px;
            background: #f1f5f9;
            padding: 4px 10px;
            border-radius: 50px;
            font-weight: 600;
            color: #475569;
        }

        /* --- Mobile Specific Fixes (Small Screens) --- */
        @media (max-width: 575px) {
            .services-grid-section {
                padding: 30px 0 !important;
                /* Section padding kam ki */
            }

            .service-box {
                padding: 20px 10px !important;
                /* Card ke andar ki padding kam ki */
                border-radius: 15px;
                /* Thode chhote corners */
            }

            .icon-shape {
                width: 50px !important;
                /* Icon box chhota kiya */
                height: 50px !important;
                font-size: 20px !important;
                /* Icon size chhota kiya */
                margin-bottom: 12px !important;
                border-radius: 12px;
            }

            .service-box h5 {
                font-size: 13px !important;
                /* Heading size chhota kiya */
                margin-bottom: 5px !important;
                min-height: 32px;
                /* Taaki text 2 line mein bhi ho to cards align rahein */
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .category-badge {
                font-size: 8px !important;
                /* Badge chhota kiya */
                padding: 2px 6px !important;
                top: 8px;
                right: 8px;
            }

            /* Gutter gap kam karne ke liye Bootstrap row ko adjust kiya */
            .services-grid-section .g-4 {
                --bs-gutter-x: 0.8rem !important;
                --bs-gutter-y: 0.8rem !important;
            }

            .service-link {
                font-size: 11px !important;
                margin-top: 8px !important;
                /* display: none; Mobile par clean look ke liye link hide kar sakte hain, pura card clickable rahega */
            }
        }


        /* --- Advanced Department Section --- */
        .dept-section {
            background: #fdfdfd;
            padding: 60px 0;
        }

        .dept-card {
            position: relative;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            height: 180px;
            /* Fixed height for symmetry */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid #f0f0f0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        }

        .dept-icon-box {
            width: 70px;
            height: 70px;
            margin-bottom: 15px;
            transition: 0.5s;
        }

        .dept-icon-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .dept-card h6 {
            font-weight: 700;
            color: #2d3436;
            margin: 0;
            font-size: 0.95rem;
            padding: 0 10px;
        }

        /* --- The Reveal Overlay --- */
        .dept-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #059669 0%, #065f46 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .dept-card:hover .dept-overlay {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dept-overlay p {
            color: #e2e8f0;
            font-size: 13px;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .dept-btn-small {
            background: #ffffff;
            color: #059669;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 15px;
            border-radius: 50px;
            text-transform: uppercase;
            text-decoration: none;
        }

        /* Mobile responsive fixes */
        @media (max-width: 768px) {
            .dept-card {
                height: 150px;
            }

            .dept-icon-box {
                width: 50px;
                height: 50px;
            }

            .dept-card h6 {
                font-size: 11px;
            }

            .dept-overlay p {
                font-size: 11px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
        }




        /* --- Ultra Modern Schemes Section --- */
        .scheme-card {
            border: none;
            border-radius: 24px;
            background: #ffffff;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .scheme-img-wrapper {
            width: 100%;
            height: 180px;
            /* Badi image area */
            overflow: hidden;
            position: relative;
            background: #f1f5f9;
        }

        .scheme-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Image poore area ko fill karegi */
            transition: transform 0.6s ease;
        }

        /* Brightness Overlay */
        .scheme-img-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
        }

        .scheme-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: left;
            /* Left align zyada professional lagta hai */
        }

        .scheme-body h4 {
            font-size: 1.25rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .scheme-body p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Premium Button */
        .btn-scheme-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f1f5f9;
            color: #059669;
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: 0.3s;
        }

        .scheme-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(5, 150, 105, 0.12);
        }

        .scheme-card:hover .scheme-img-wrapper img {
            transform: scale(1.1);
        }

        .scheme-card:hover .btn-scheme-link {
            background: #059669;
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .scheme-img-wrapper {
                height: 160px;
            }

            .scheme-body h4 {
                font-size: 1.1rem;
            }
        }



        /* --- Grievance Section --- */
        .grievance-section {
            background: linear-gradient(135deg, #065f46 0%, #059669 100%);
            border-radius: 30px;
            padding: 60px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
        }

        .grievance-section::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .grievance-btn {
            background: #ffffff;
            color: #065f46;
            font-weight: 800;
            padding: 15px 40px;
            border-radius: 50px;
            border: none;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .grievance-btn:hover {
            transform: scale(1.05);
            background: #f8fafc;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Modal Styling */
        .modal-content {
            border-radius: 20px;
            border: none;
        }

        .modal-header {
            background: #065f46;
            color: white;
            border-radius: 20px 20px 0 0;
        }

        .form-control:focus {
            border-color: #059669;
            box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.25);
        }

        @media (max-width: 768px) {
            .grievance-section {
                padding: 40px 20px;
                text-align: center;
            }
        }



        /* --- Chairman Section Styles --- */
        .chairman-section {
            background: #fdfdfd;
            padding: 80px 0;
        }

        .chairman-card {
            background: #ffffff;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
        }

        .chairman-img-wrapper {
            position: relative;
            height: 100%;
            min-height: 400px;
            background: #f1f5f9;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chairman-img-wrapper img {
            width: 80%;
            height: 80%;
            object-fit: contain;
        }

        .chairman-content {
            padding: 50px;
        }

        .quote-icon {
            font-size: 40px;
            color: #059669;
            opacity: 0.2;
            margin-bottom: 20px;
        }

        .chairman-message-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #475569;
            font-style: italic;
            text-align: justify;
        }

        .chairman-info {
            margin-top: 30px;
            border-left: 4px solid #059669;
            padding-left: 20px;
        }

        .chairman-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: #065f46;
            margin: 0;
        }

        .chairman-title {
            color: #64748b;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        /* --- Responsive Fixes --- */
        @media (max-width: 991px) {
            .chairman-content {
                padding: 30px;
            }

            .chairman-img-wrapper {
                min-height: 350px;
            }
        }

        @media (max-width: 767px) {
            .chairman-section {
                padding: 40px 0;
            }

            .chairman-card {
                border-radius: 20px;
            }

            .chairman-img-wrapper {
                min-height: 300px;
            }

            .chairman-message-text {
                font-size: 1rem;
            }

            .chairman-name {
                font-size: 1.25rem;
            }
        }


        /* --- Modern Gallery Styles --- */
        .gallery-container {
            padding: 60px 0;
            background: #f9f9f9;
        }

        .gallery-title {
            font-weight: 800;
            color: #065f46;
            margin-bottom: 40px;
        }

        /* Grid Image Style */
        .img-card {
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            height: 200px;
            position: relative;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .img-card:hover {
            transform: scale(1.03);
        }

        .img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Modal Styles */
        .modal-full {
            background: rgba(0, 0, 0, 0.9) !important;
        }

        .modal-content {
            /* background: transparent !important; */
            border: none;
        }

        .modal-body {
            position: relative;
            padding: 0;
        }

        #modalImage {
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }

        /* Nav & Close Buttons */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 24px;
            border-radius: 50%;
            transition: 0.3s;
        }

        .nav-btn:hover {
            background: #059669;
        }

        .prev-btn {
            left: -70px;
        }

        .next-btn {
            right: -70px;
        }

        .btn-close-gallery {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 30px;
            background: none;
            border: none;
        }

        @media (max-width: 992px) {
            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }

            .btn-close-gallery {
                right: 10px;
            }
        }



        /* --- Events & News Section --- */
        .news-section {
            background: #fdfdfd;
            padding: 80px 0;
        }

        .event-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #edf2f7;
            transition: 0.4s;
            height: 100%;
            position: relative;
        }

        .event-img-box {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .event-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        /* Date Badge on Image */
        .event-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #065f46;
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            z-index: 10;
        }

        .event-body {
            padding: 25px;
        }

        .event-category {
            font-size: 11px;
            text-transform: uppercase;
            color: #059669;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .event-body h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .event-body p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.07);
        }

        .event-card:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .event-img-box {
                height: 160px;
            }

            .news-section {
                padding: 40px 0;
            }
        }


        /* --- Staff Directory Styles --- */
     
        .staff-container {
            padding: 80px 0;
            background: #f8fafc;
        }

        .official-card {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 400px;
            /* Fixed height for consistency */
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e2e8f0;
        }

        .official-img-box {
            width: 100%;
            height: 100%;
            background: #f1f5f9;
        }

        .official-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            transition: 0.5s;
        }

        /* Hover Content Overlay */
        .official-info-overlay {
            position: absolute;
            bottom: -100%;
            /* Shuru me hidden rahega niche */
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(6, 95, 70, 0.95), rgba(5, 150, 105, 0.8));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            color: white;
            text-align: center;
        }

        /* Static Name Label (Jo bina hover ke dikhega) */
        .official-label {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px;
            text-align: center;
            transition: 0.4s;
        }

        .official-label h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 800;
            color: #065f46;
        }

        .official-label span {
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Hover Animations */
        .official-card:hover .official-info-overlay {
            bottom: 0;
        }

        .official-card:hover .official-label {
            opacity: 0;
            transform: translateY(20px);
        }

        .official-card:hover img {
            transform: scale(1.1);
        }

        /* Social & Contact Icons */
        .contact-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .contact-icons a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
        }

        .contact-icons a:hover {
            background: #fff;
            color: #065f46;
            transform: translateY(-5px);
        }

        @media (max-width: 768px) {
            .official-card {
                height: 350px;
            }

            /* Mobile par hover ki jagah humesha details dikhane ka option ya tap effect */
        }


        /* --- Downloadable Forms Section (Dark Theme First) --- */
.download-section {
    background: #ffffff;
    padding: 80px 0;
}

.form-card {
    /* Ab card pehle se hi Dark Green hai */
    background: #065f46; 
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #065f46;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.form-icon-circle {
    width: 60px;
    height: 60px;
    /* Icon background pehle se light white-green hai */
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    transition: 0.3s;
}

.form-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff; /* Pehle se White */
    margin-bottom: 4px;
}

.form-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8); /* Pehle se halka white */
    margin: 0;
}

.download-btn {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065f46;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Hover Effects (Yahan ab card Light ho jayega) --- */
.form-card:hover {
    background: #f8fafc;
    transform: scale(1.05);
    border-color: #e2e8f0;
}

.form-card:hover .form-info h5 {
    color: #1e293b;
}

.form-card:hover .form-info p {
    color: #64748b;
}

.form-card:hover .form-icon-circle {
    background: #ecfdf5;
    color: #059669;
    transform: rotate(-10deg);
}

.form-card:hover .download-btn {
    background: #065f46;
    color: #ffffff;
    transform: rotate(360deg);
}

@media (max-width: 768px) {
    .download-section { padding: 40px 0; }
    .form-card { padding: 20px; }
}


/* --- Feedback Section --- */
.feedback-section {
    position: relative;
    padding: 50px 0;
    color: beige;
    text-align: center;
    overflow: hidden;
}

.feedback-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1544085311-11a028465b03?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    background-attachment: fixed;
    filter: brightness(0.4) grayscale(0.2); /* Image ko thoda dark aur subtle banaya */
    z-index: 1;
}

.feedback-content {
    position: relative;
    z-index: 2;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.15); /* Glassmorphism background */
    backdrop-filter: blur(15px); /* Glassmorphism effect */
    border-radius: 25px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feedback-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.feedback-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feedback-form .form-control,
.feedback-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 15px;
}

.feedback-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.feedback-form .form-control:focus,
.feedback-form .form-select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.feedback-form .form-select option {
    background: #065f46; /* Dark background for dropdown options */
    color: white;
}

.btn-feedback-submit {
    background: #10b981; /* Bright green for call to action */
    color: white;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-feedback-submit:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .feedback-section { padding: 60px 0; }
    .feedback-card { padding: 25px; border-radius: 15px; }
    .feedback-card h3 { font-size: 1.8rem; }
    .feedback-card p { font-size: 1rem; }
}

/* --- Contact Us Section --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-left: 8px solid var(--primary-emerald);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: var(--secondary-green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h5 {
    font-weight: 700;
    color: var(--primary-emerald);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-main);
    margin: 0;
    font-size: 15px;
}

/* Map Styling */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
    border: 5px solid white;
}

@media (max-width: 768px) {
    .contact-section { padding: 40px 0; }
    .map-container { min-height: 300px; margin-top: 30px; }
}


/* --- Premium Footer --- */
.main-footer {
     background: linear-gradient(90deg, var(--primary-emerald), #065f46);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 20px;
    font-size: 15px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-logo-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-emerald);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.copyright-text {
    font-size: 14px;
    opacity: 0.7;
}


                    /* ===== BOOTSTRAP 5 FULL COLOR TABS ===== */

.custom-tabs .nav-link {
    background: #e9f5ef;           /* light green */
    color: #0f5132;
    border: 1px solid #0f5132;
    margin-right: 5px;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
}

.custom-tabs .nav-link:hover {
    background: #d1e7dd;
    color: #0f5132;
}

.custom-tabs .nav-link.active {
    background: #0f5132 !important; /* dark green */
    color: #ffffff !important;
    border-color: #0f5132;
}


/* ===== GET IN TOUCH STYLE CARD (BOTH SIDES) ===== */

.get-touch-card {
    background: #ffffff;
    border-radius: 22px;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

/* LEFT GREEN STRIP */
.get-touch-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: #0f8f5a;
    border-radius: 22px 0 0 22px;
}

/* RIGHT GREEN STRIP */
.get-touch-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: #0f8f5a;
    border-radius: 0 22px 22px 0;
}

/* Heading like image */
.get-touch-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
}

/* Tabs styling */
.custom-tabs .nav-link {
    background: #f2f8f5;
    color: #0f5132;
    border: none;
    margin-right: 8px;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 18px;
}

.custom-tabs .nav-link.active {
    background: #0f8f5a !important;
    color: #ffffff !important;
}

.custom-tabs .nav-link:hover {
    background: #dff3ea;
}

/* Labels */
.get-touch-card .form-label {
    font-weight: 600;
    color: #333;
}

/* Table header */
.get-touch-card table thead th {
    background: #f7f9fb;
    font-weight: 600;
}

/* Buttons */
.get-touch-card .btn-success {
    background-color: #0f8f5a;
    border-color: #0f8f5a;
}

.get-touch-card .btn-success:hover {
    background-color: #0c744a;
    border-color: #0c744a;
}


/* ===== SELECT2 BOOTSTRAP 5 LOOK ===== */

.select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 4px 10px;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    line-height: 28px;
    padding-left: 0;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    height: 36px;
}

.select2-container--default
.select2-selection--single:focus {
    border-color: #0f8f5a;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow b {
    border-color: #0f8f5a transparent transparent transparent;
}



@media (max-width: 768px) {
    .main-footer { padding: 50px 0 20px; }
    .footer-heading { margin-top: 30px; }
}