 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --brand-red: #D32F2F;
            --brand-gold: #FFAB00;
            --text-dark: #1A1A1B;
            --text-gray: #555555;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: #f9f9f9;
        }

        /* Header Main */
        .premium-header {
            background: var(--white);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            padding: 10px 0;
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-logo img {
            height: 80px;
        }


        .nav-list {
            display: flex;
            list-style: none;

        }

        .nav-link {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--brand-red);
            background: rgba(211, 47, 47, 0.05);
        }

        /* Dropdown Premium Look */
        .nav-item-dropdown {
            position: relative;
        }

        .mega-dropdown {
            position: absolute;
            top: 150%;
            left: 0;
            width: 250px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            list-style: none;
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-top: 4px solid var(--brand-red);
        }

        .nav-item-dropdown:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-dropdown li a {
            display: block;
            padding: 10px 15px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            border-radius: 8px;
            transition: 0.3s;
        }

        .mega-dropdown li a:hover {
            background: #fdf2f2;
            color: var(--brand-red);
            padding-left: 20px;
        }

        /* --- PREMIUM BUTTONS  --- */

        .header-btns {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-premium-outline {
            position: relative;
            padding: 7px 16px;
            font-size: 14px;
            font-weight: 700;
            color: #D32F2F;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #D32F2F;
            border-radius: 12px;
            background: transparent;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
            z-index: 1;
        }

        .btn-premium-outline:hover {
            color: #ffffff;
            border-color: #D32F2F;
            box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
            transform: translateY(-2px);
        }

        .btn-premium-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #D32F2F;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: -1;
        }

        .btn-premium-outline:hover::before {
            left: 0;
        }

        .btn-premium-gradient {
            position: relative;
            padding: 7px 16px;
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(135deg, #FF4500 0%, #D32F2F 100%);
            border-radius: 12px;
            border: 1px solid #FF4500;
            box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3),
                inset 0 -4px 0 rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            top: 0;
            left: 0;
            filter: blur(15px);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: -1;
            border-radius: 12px;
        }

        .btn-premium-gradient:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 15px 25px rgba(211, 47, 47, 0.4),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        }

        .btn-premium-gradient:hover .btn-glow {
            opacity: 0.6;
        }

        @keyframes pulse-red {
            0% {
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
            }
        }

        .btn-premium-gradient {
            animation: pulse-red 2s infinite;
        }

        .btn-premium-gradient:active,
        .btn-premium-outline:active {
            transform: translateY(1px);
        }

        @media (max-width: 1000px) {
            .header-inner {
                padding: 10px 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .header-logo img {
                height: 40px !important;
                width: auto;
            }

            .header-btns {
                display: flex;
                align-items: center;
                gap: 8px;
            }




            .btn-premium-gradient {
                padding: 6px 8px !important;
                font-size: 10px !important;
                letter-spacing: 0.5px !important;
                box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2) !important;
            }

            .mobile-toggle {
                display: flex !important;
                flex-direction: column;
                gap: 4px;
                background: none;
                border: none;
                cursor: pointer;
                padding: 5px;
                z-index: 1002;
            }

            .mobile-toggle span {
                width: 22px;
                height: 2px;
                background: var(--brand-red);
                transition: 0.3s;
            }

            .header-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                /* Increased width */
                height: 100vh;
                background: var(--white);
                padding: 80px 20px;
                display: block !important;
                transition: 0.4s ease-in-out;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                box-sizing: border-box;
                overflow-y: auto;
            }

            .header-nav.active {
                right: 0;
            }

            /* Make nav-list vertical on mobile */
            .nav-list {
                flex-direction: column;
                gap: 10px;
                padding: 0;
                margin: 0;
            }

            /* Dropdown menu mobile fix */
            .nav-item-dropdown .mega-dropdown {
                position: static;
                display: none;
                box-shadow: none;
                border-top: none;
                padding-left: 10px;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .nav-item-dropdown.open .mega-dropdown {
                display: block;
            }

            /* Adjust nav-link padding and font size on mobile */
            .nav-link {
                padding: 8px 12px;
                font-size: 16px;
            }

        }

        /* Overlay Background */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
        }

        /* Active State */
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /*================vision section============ */
        .vision-kali-sena {
            padding: 100px 0;
            margin-top: 100px;
            background-color: #ffffff;
            font-family: 'Outfit', sans-serif;
            overflow: hidden;
        }

        .container-vision {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .vision-flex {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .vision-content {
            flex: 1.2;
        }

        .vision-tag {
            color: #D32F2F;
            font-weight: 800;
            letter-spacing: 2px;
            font-size: 13px;
            display: block;
        }

        .vision-title {
            font-size: 40px;
            font-weight: 900;
            color: #111;
            margin: 10px 0;
        }

        .vision-title span {
            color: #D32F2F;
        }

        .vision-line {
            width: 70px;
            height: 5px;
            background: #FFAB00;
            margin-bottom: 30px;
        }

        .lead-text {
            font-size: 19px;
            color: #333;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .vision-details p {
            color: #555;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .history-highlight {
            background: #fff8f0;
            border-left: 5px solid #D32F2F;
            padding: 20px;
            margin: 25px 0;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .history-highlight i {
            font-size: 24px;
            color: #D32F2F;
        }

        .history-highlight p {
            margin: 0;
            font-weight: 600;
            color: #111;
        }

        .btn-vision {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #111;
            color: #fff;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 20px;
            transition: 0.3s;
        }

        .btn-vision:hover {
            background: #D32F2F;
            transform: translateY(-5px);
        }

        .vision-video-wrapper {
            flex: 1;
            position: relative;
        }

        .video-frame {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            background: #000;
        }

        .video-frame iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-badge-sena {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(211, 47, 47, 0.9);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 13px;
            z-index: 10;
            backdrop-filter: blur(5px);
        }

        .sena-mini-logo {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
        }

        @media (max-width: 992px) {
            .vision-flex {
                flex-direction: column;
                text-align: center;
            }

            .vision-line {
                margin: 0 auto 30px;
            }

            .history-highlight {
                text-align: left;
            }

            .vision-video-wrapper {
                width: 100%;
            }
        }

        /* ===========membership section=========== */

        .membership {
            padding: 120px 20px;
            text-align: center;
            font-family: Poppins, sans-serif;
            background: #0f0f0f;
            color: #fff;
        }

        .title {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .subtitle {
            max-width: 750px;
            margin: auto;
            opacity: 0.8;
            margin-bottom: 70px;
            line-height: 1.6;
        }

        .cards {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }

        .card {
            width: 280px;
            padding: 45px 30px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transition: 0.4s;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
        }

        .icon {
            font-size: 32px;
            color: #D32F2F;
            margin-bottom: 15px;
        }

        .price {
            font-size: 40px;
            font-weight: 700;
            margin: 20px 0;
        }

        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 30px;
            background: linear-gradient(135deg, #ff6a00, #D32F2F);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn:hover {
            transform: scale(1.08);
        }

        .featured {
            transform: scale(1.08);
            border: 1px solid #D32F2F;
        }

        .tag {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6a00, #D32F2F);
            padding: 6px 16px;
            font-size: 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        /* ============donation section============ */

        .donation-section {
            padding: 100px 0;
            background-color: #fffcf5;
            font-family: 'Outfit', sans-serif;
        }

        .container-donation {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .donation-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
            align-items: center;
        }

        /* --- QR Card Design --- */
        .qr-card-wrapper {
            display: flex;
            justify-content: center;
        }

        .qr-card-premium {
            background: #ffffff;
            padding: 30px;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            text-align: center;
            border: 1px solid #eee;
            max-width: 350px;
            width: 100%;
        }

        .qr-header i {
            font-size: 40px;
            color: #D32F2F;
            margin-bottom: 15px;
        }

        .qr-header h4 {
            font-size: 22px;
            color: #111;
            margin-bottom: 5px;
        }

        .qr-header p {
            font-size: 13px;
            color: #777;
        }

        .qr-image-box {
            margin: 25px 0;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 20px;
        }

        .qr-image-box img {
            width: 100%;
            border-radius: 10px;
            display: block;
        }

        .qr-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f1f1f1;
            padding: 10px 15px;
            border-radius: 10px;
        }

        .qr-footer span {
            font-size: 13px;
            font-weight: 600;
            color: #333;
        }

        .btn-copy {
            background: #111;
            color: #fff;
            border: none;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 12px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-copy:hover {
            background: #D32F2F;
        }

        /* --- Right Side Details --- */
        .d-tag {
            color: #D32F2F;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .d-title {
            font-size: 40px;
            font-weight: 800;
            margin: 10px 0 20px;
        }

        .d-title span {
            color: #D32F2F;
        }

        .d-text {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .bank-details-box {
            background: #ffffff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0e6d6;
        }

        .bank-details-box h3 {
            font-size: 20px;
            margin-bottom: 20px;
            border-bottom: 2px solid #D32F2F;
            display: inline-block;
        }

        .bank-table .bank-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
        }

        .bank-table .bank-row:last-child {
            border: none;
        }

        .bank-row .label {
            font-weight: 600;
            color: #777;
        }

        .bank-row .value {
            font-weight: 700;
            color: #111;
        }

        .d-note {
            margin-top: 25px;
            font-size: 14px;
            color: #D32F2F;
            font-weight: 600;
        }

        /* --- Mobile Responsive --- */
        @media (max-width: 992px) {
            .donation-grid {
                grid-template-columns: 1fr;
            }

            .qr-card-wrapper {
                order: -1;
            }

            .d-title {
                font-size: 30px;
            }
        }

        /* =============Footer============ */

        .premium-footer {
            background-color: #0a0a0a;
            color: #ffffff;
            padding: 80px 20px 20px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            /* Border color changed to Tomato */
            border-top: 3px solid tomato;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
        }

        .footer-column h4 {
            /* Text color changed to Tomato */
            color: tomato;
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            /* Underline color changed to Tomato */
            background: tomato;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .footer-logo span {
            /* Logo accent color changed to Tomato */
            color: tomato;
        }

        .about-text {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.95rem;
        }

        .footer-column ul li a:hover {
            /* Hover link color changed to Tomato */
            color: tomato;
            padding-left: 5px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: #cbd5e1;
            font-size: 0.95rem;
        }

        .contact-item i {
            /* Icon color changed to Tomato */
            color: tomato;
            margin-top: 4px;
        }

        .contact-item a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
        }

        .contact-item a:hover {
            color: #ffffff;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            /* Social icon color changed to Tomato */
            color: tomato;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-links a:hover {
            /* Hover background changed to Tomato */
            background: tomato;
            color: #000;
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }

        /* Responsive Grid */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

      @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                /* text-align: center; */
            }}
