  /* Premium Header Custom CSS */
    :root {
        --primary-red: #d32f2f;
        --gradient-red: linear-gradient(135deg, #d32f2f 0%, #ff1744 100%);
        --accent-orange: #ff6d00;
        --nav-font: 'Mukta', sans-serif;
    }

    .top-bar {
        background: var(--gradient-red);
        height: 42px;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
    }

    .contact-scroll::-webkit-scrollbar { display: none; } /* Hide scrollbar but keep functionality */
    .contact-scroll { -ms-overflow-style: none; scrollbar-width: none; }

    .social-icon-mini {
        font-size: 0.9rem;
        transition: 0.3s;
    }
    .social-icon-mini:hover { color: #ffd600 !important; transform: scale(1.2); }

    .navbar {
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(15px);
        font-family: var(--nav-font);
    }

    .main-logo {
        height: 50px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        transition: 0.3s;
    }

    .nav-link {
        color: #333 !important;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 10px 15px !important;
        transition: 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--primary-red) !important;
    }

    /* Remove Default Bootstrap Arrow & Add Custom */
    .dropdown-toggle::after { display: none; }
    .dropdown-arrow-icon { font-size: 0.75rem; transition: 0.3s; }
    .nav-item.show .dropdown-arrow-icon { transform: rotate(180deg); }

    .dropdown-menu {
        border-radius: 12px;
        min-width: 200px;
        padding: 10px;
        top: 110%;
    }

    .dropdown-item {
        border-radius: 8px;
        font-weight: 500;
        transition: 0.2s;
    }

    /* Premium Donate Button */
    .btn-premium-donate {
        background: linear-gradient(45deg, #ff6d00, #ffb300);
        box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
        border: none;
        transition: all 0.4s ease;
        color: beige !important;
    }

    .btn-premium-donate:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 109, 0, 0.4);
        color: white !important;
    }

    /* Animations */
    .animate.fade-down {
        animation: fadeDown 0.4s ease forwards;
    }

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 991px) {
        .navbar-collapse {
            background: #fff;
            padding: 20px;
            border-radius: 20px;
            margin-top: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .main-logo { height: 50px; }
    }


      /* Hero Section Styling */
    .hero-slider-section {
        margin-top: 102px; /* Header ki height ke hisaab se space */
        background: #f0f0f0;
    }

    /* Magic Logic for Full Images on All Screens */
    .slider-image-wrapper {
        width: 100%;
        position: relative;
        overflow: hidden;
        background-color: #000;
        /* Desktop/PC par aspect ratio (16:6 ya 16:7 premium lagta hai) */
        aspect-ratio: 16 / 6; 
    }

    .slider-image-wrapper img {
        width: 100%;
        height: 100%;
        /* Ye property image ko stretch nahi hone degi aur puri dikhayegi */
        object-fit: cover; 
        transition: transform 10s linear;
    }

    /* Zoom Effect for Premium Feel */
    .carousel-item.active .slider-image-wrapper img {
        transform: scale(1.1);
    }

    /* Custom Indicators */
    .carousel-indicators [button] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--primary-red);
    }

    /* Animation for Text */
    .animate-text {
        animation: fadeInUp 0.8s ease backwards;
        font-weight: 700;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }
    
    .animate-text-delay {
        animation: fadeInUp 0.8s ease 0.4s backwards;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .hero-slider-section {
            margin-top: 85px; /* Mobile header height */
        }
        
        .slider-image-wrapper {
            /* Mobile par height thodi badha di taaki image clear dikhe */
            aspect-ratio: 4 / 3; 
            background-color: #fff; /* Agar image choti ho to side mein white space bura nahi lagega */
        }

        .slider-image-wrapper img {
            object-fit: cover; /* Mobile par image kabhi nahi kategi */
        }
    }


     .history-section {
        background: #fdfdfd;
        position: relative;
        overflow: hidden;
    }

    .section-title .sub-text {
        letter-spacing: 2px;
        font-size: 0.9rem;
    }

    .title-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #d32f2f, transparent);
        border-radius: 2px;
    }

    /* History Card Styling */
    .history-card {
        background: #fff;
        border-radius: 25px;
        position: relative;
        border: 1px solid rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .history-card:hover {
        transform: translateY(-5px);
    }

    .inner-border {
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 15px;
        background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png'); /* Subtle paper texture */
    }

    .history-text p {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #444;
        text-align: justify;
        margin-bottom: 20px;
    }

    .intro-para {
        font-size: 1.25rem !important;
        font-weight: 500;
        color: #222 !important;
    }

    .highlight-box {
        font-style: italic;
        background: #fffafa !important;
    }

    .contributor-list {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 12px;
        font-size: 1.05rem !important;
    }

    .final-note {
        font-weight: 600;
        color: #d32f2f !important;
    }

    /* Animation on scroll (Agar aap AOS library use karte ho, otherwise ye simple rahega) */
    [data-aos="fade-up"] {
        transition: all 0.6s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .history-card {
            padding: 20px !important;
        }
        .inner-border {
            padding: 15px;
        }
        .history-text p {
            font-size: 1rem;
            text-align: left;
        }
    }



    /* Theme Integration & Alignment */

    .services-grid-section {
        background: #f9f9f9;
        font-family: var(--nav-font);
    }

    .service-card {
        background: #fff;
        border-radius: 15px;
        border: 1px solid rgba(0,0,0,0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }

    .service-img-box {
        width: 100%;
        min-height: 250px;
        overflow: hidden;
    }

    .service-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .btn-premium-donate {
        background: var(--primary-red);
        border: none;
        transition: 0.3s;
    }

    .btn-premium-donate:hover {
        background: #b32630; /* Darker red */
        transform: scale(1.02);
    }

    /* Small Screen Adjustments */
    @media (max-width: 768px) {
        .service-img-box { 
            height: 220px; 
            min-height: 220px;
        }
        .service-content {
            text-align: center;
        }
    }

    /* Navigation & Theme */
    .custom-nav {
        color: var(--primary-red) !important;
        background: #fff;
        width: 45px !important;
        height: 45px !important;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .custom-nav::after {
        font-size: 18px !important;
        font-weight: 900;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-red) !important;
        width: 25px;
        border-radius: 5px;
    }

    @media (max-width: 768px) {
        .custom-nav { display: none; }
        .service-img-box { 
            height: 200px; /* Mobile par top par dikhegi */
        }
    }



    :root {
  
        --soft-bg: #fdfdfd;
        --card-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .committee-section {
        background: var(--soft-bg);
        overflow: hidden;
    }

    /* Background Orbs Animation */
    .glow-orb {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(50px);
        z-index: 0;
        animation: floatOrb 10s infinite alternate;
    }
    .orb-1 { top: -50px; left: -50px; }
    .orb-2 { bottom: -50px; right: -50px; animation-delay: 2s; }

    @keyframes floatOrb {
        from { transform: translate(0, 0); }
        to { transform: translate(50px, 50px); }
    }

    /* Section Title Effect */
    .section-title {
        position: relative;
        display: inline-block;
        font-weight: 800;
        z-index: 1;
    }
    .section-title::before {
        content: attr(data-text);
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 4rem;
        opacity: 0.04;
        z-index: -1;
        letter-spacing: 10px;
    }

    .title-line {
        height: 4px;
        width: 60px;
        background: var(--primary-red);
        margin: 0 auto;
        border-radius: 10px;
    }

    /* PREMIUM CARD V3 */
    .premium-member-card {
        padding: 15px;
        height: 100%;
        transition: all 0.4s ease;
    }

    .card-inner {
        background: #fff;
        border-radius: 25px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: var(--card-shadow);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }

    .member-image-wrapper {
        position: relative;
        height: 300px;
        overflow: hidden;
        margin: 12px;
        border-radius: 20px;
    }

    .member-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Hover State */
    .premium-member-card:hover .card-inner {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(211, 47, 47, 0.15);
        border-color: rgba(211, 47, 47, 0.2);
    }

    .premium-member-card:hover img {
        transform: scale(1.1) rotate(2deg);
    }

    /* Social Panel on Image */
    .social-panel {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
        display: flex;
        gap: 15px;
        padding: 10px 20px;
        border-radius: 50px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .premium-member-card:hover .social-panel {
        bottom: 20px;
    }

    .social-panel a {
        color: #333;
        font-size: 1.1rem;
        transition: 0.3s;
    }
    .social-panel a:hover { color: var(--primary-red); transform: scale(1.2); }

    /* Details Styling */
    .member-details {
        padding: 10px 25px 30px;
        text-align: center;
    }

    .role-badge {
        font-size: 0.7rem;
        background: rgba(211, 47, 47, 0.1);
        color: var(--primary-red);
        padding: 4px 12px;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        display: inline-block;
    }

    .member-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 5px;
    }

    .member-quote {
        font-size: 0.9rem;
        color: #777;
        font-style: italic;
    }

    /* Custom Slider Controls */
    .slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .swiper-button-next-m, .swiper-button-prev-m {
        width: 50px;
        height: 50px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        color: #444;
        transition: 0.3s;
    }

    .swiper-button-next-m:hover, .swiper-button-prev-m:hover {
        background: var(--primary-red);
        color: #fff;
        box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
    }

    .swiper-pagination-m .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background: #ddd;
        opacity: 1;
    }

    .swiper-pagination-m .swiper-pagination-bullet-active {
        background: var(--primary-red);
        width: 30px;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .section-title::before { font-size: 2.5rem; }
        .member-image-wrapper { height: 240px; }
    }
    /* Sabhi cards ki height barabar karne ke liye */
    .modernCommitteeSwiper .swiper-slide {
        height: auto !important;
        display: flex;
    }

    .premium-member-card {
        padding: 10px;
        width: 100%;
        display: flex;
    }

    .card-inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 25px;
        box-shadow: var(--card-shadow);
        border: 1px solid rgba(0,0,0,0.03);
    }

    /* Mobile par image height adjust ki hai */
    .member-image-wrapper {
        position: relative;
        height: 280px; /* Default Desktop */
        flex-shrink: 0;
        margin: 12px;
        border-radius: 20px;
        overflow: hidden;
    }

    /* Text content ko align karne ke liye */
    .member-details {
        padding: 10px 15px 25px;
        text-align: center;
        flex-grow: 1; /* Ye bachi hui jagah le lega taaki cards barabar dikhen */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .member-name {
        font-size: 1.1rem; /* Mobile par thoda chota taaki line break na ho */
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .member-quote {
        font-size: 0.85rem;
        color: var(--primary-red); /* Theme color for phone numbers */
        font-weight: 600;
    }

    /* Small Screen Fixes */
    @media (max-width: 576px) {
        .member-image-wrapper {
            height: 220px; /* Mobile par image choti kardi */
        }
        .section-title::before {
            font-size: 2.2rem;
            letter-spacing: 5px;
        }
        .member-name {
            font-size: 1rem;
        }
    }


/* Section Specific Premium Styling */
    .history-section {
        background: #fdfdfd;
        position: relative;
    }

    .history-text p {
        margin-bottom: 1.5rem;
        text-align: justify;
        line-height: 1.9;
        font-size: 1.1rem;
        color: #444;
    }

    .intro-para {
        font-size: 1.25rem !important;
        font-weight: 500;
        color: #222 !important;
    }

    .title-divider {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
        margin-top: 10px;
    }

    .history-card {
        background: #fff;
        border-radius: 25px;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .inner-border {
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 15px;
    }

    .highlight-box {
        background: rgba(211, 47, 47, 0.03) !important;
        box-shadow: inset 5px 0 0 var(--primary-red);
    }

    .contributor-list {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 12px;
    }

    .history-text strong {
        color: var(--primary-red);
        font-weight: 700;
    }

    .final-note {
        font-size: 1.2rem;
        font-weight: 600;
        border: 1px dashed var(--primary-red);
        color: var(--primary-red) !important;
    }

    /* Mobile Compatibility */
    @media (max-width: 768px) {
        .history-text p {
            text-align: left;
            font-size: 1.05rem;
        }
        .inner-border {
            padding: 15px;
        }
        .final-note {
            border-radius: 15px !important;
        }
    }



        /* Premium Styling for Experience Section */
    .experience-section {
        background: #fff;
        position: relative;
    }

    .experience-card {
        background: #fff;
        border-radius: 30px;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
    }

    /* Subtle Background Decoration */
    .experience-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-red);
    }

    .experience-text p {
        line-height: 2;
        font-size: 1.25rem;
        text-align: center;
        color: #333;
    }

    .title-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .experience-card {
            padding: 30px 20px !important;
        }
        .experience-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        h2.display-5 {
            font-size: 1.8rem;
        }
    }



    .gallery-card {
        cursor: pointer;
        border-radius: 15px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transition: 0.3s;
    }
    .gallery-card:hover { transform: translateY(-5px); }
    .img-box { position: relative; aspect-ratio: 1/1; overflow: hidden; }
    .img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

    .hover-plus {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(211, 47, 47, 0.7);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; transition: 0.4s;
    }
    .hover-plus i { color: #fff; font-size: 2.5rem; transform: rotate(-45deg); transition: 0.4s; }
    .gallery-card:hover .hover-plus { opacity: 1; }
    .gallery-card:hover .hover-plus i { transform: rotate(0deg); }

    .gallery-prev-btn, .gallery-next-btn {
        width: 45px; height: 45px; background: #fff; border: 1px solid #eee;
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        color: var(--primary-red); cursor: pointer; transition: 0.3s;
    }
    .gallery-prev-btn:hover, .gallery-next-btn:hover { background: var(--primary-red); color: #fff; }
    .gallery-dots { width: auto !important; position: static !important; }
    .gallery-dots .swiper-pagination-bullet-active { background: var(--primary-red) !important; width: 25px; border-radius: 4px; }

    #modalImage { max-height: 85vh; object-fit: contain; }

    .modal-nav-btn {
        position: absolute; top: 50%; transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6); color: white; border: none;
        width: 50px; height: 50px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.8rem; z-index: 1056; cursor: pointer; transition: 0.3s;
    }
    .modal-nav-btn:hover { background: var(--primary-red); }
    .modal-nav-btn.prev { left: 10px; }
    .modal-nav-btn.next { right: 10px; }

    @media (max-width: 576px) {
        .modal-nav-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    }

     /* Footer CSS */
    .footer-section {
        background-color: #1a1a1a !important; /* Premium Dark */
        font-family: 'Poppins', sans-serif;
    }

    .footer-title {
        font-size: 1.25rem;
        color: #fff;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary-red, #dc3545);
    }

    .footer-text {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: justify;
    }

    .text-light-50 {
        color: rgba(255, 255, 255, 0.7) !important;
        transition: 0.3s;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links li a:hover {
        color: #dc3545 !important;
        padding-left: 5px;
    }

    .newsletter-form .form-control:focus {
        border-color: #dc3545;
    }

    .contact-info i {
        font-size: 1.1rem;
    }

    /* Input focus correction */
    .newsletter-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    /* @media (max-width: 768px) {
        .footer-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .footer-section .text-center {
            text-align: center !important;
        }
        .footer-title {
            text-align: center;
            margin-top: 15px;
        }
        .footer-links, .contact-info, .footer-text {
            text-align: center;
        }
        .contact-info p {
            justify-content: center;
        }
    } */

