
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(145deg, #fef5e6 0%, #ffefdb 100%);
            color: #2d2418;
            scroll-behavior: smooth;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1e5d2;
        }

        ::-webkit-scrollbar-thumb {
            background: #c27e2e;
            border-radius: 10px;
        }

        /* ========== LANGUAGE TOGGLE BUTTON ========== */
        .lang-toggle {
            background: linear-gradient(135deg, #d68b3a, #b65311);
            border: none;
            color: white;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            margin-left: 10px;
        }

        .lang-toggle:hover {
            transform: scale(1.05);
            background: linear-gradient(135deg, #b65311, #8b3e0a);
        }

        /* ========== HEADER ========== */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: linear-gradient(135deg, #fff8ef, #fff2e4);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-bottom: 2px solid #ffd89a;
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 10px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Logo Circle with Image - आप अपनी लोगो इमेज का पाथ यहाँ बदलें */
        .logo-circle {
            width: 50px;
            height: 50px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #b65311, #f5a65b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo-text span {
            font-size: 0.7rem;
            display: block;
            color: #8b6946;
        }

        .nav-menu {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            font-weight: 500;
            color: #5a3a1f;
            transition: 0.3s;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }

        .nav-menu a:hover {
            color: #d68b3a;
            border-bottom-color: #d68b3a;
        }

        .nav-badge {
            background: #d68b3a;
            padding: 6px 14px;
            border-radius: 40px;
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #b65311;
            background: none;
            border: none;
        }

        @media (max-width: 850px) {
            .hamburger {
                
                display: block;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: #fffef7;
                width: 75%;
                max-width: 280px;
                height: calc(100vh - 70px);
                box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
                transition: 0.4s ease;
                padding: 30px 20px;
                gap: 24px;
                align-items: flex-start;
                border-right: 3px solid #ffd89a;
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 1rem;
                width: 100%;
            }

            .lang-toggle {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        /* ========== FULL IMAGE SLIDER STYLES ========== */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 28px;
            background: #faf0e1;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide-full {
            flex: 0 0 100%;
            position: relative;
            border-radius: 28px;
            overflow: hidden;
        }

        .slide-full-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }

        .slide-full-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            color: white;
            padding: 35px 30px 25px;
            text-align: center;
        }

        .slide-full-overlay h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-full-overlay p {
            font-size: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(214, 139, 58, 0.85);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            font-size: 1.3rem;
            transition: 0.3s;
        }

        .slider-btn:hover {
            background: #b65311;
            transform: translateY(-50%) scale(1.05);
        }

        .btn-prev {
            left: 15px;
        }

        .btn-next {
            right: 15px;
        }

        @media (max-width: 768px) {
            .slide-full-img {
                height: 280px;
            }

            .slide-full-overlay h3 {
                font-size: 1.2rem;
            }

            .slide-full-overlay p {
                font-size: 0.75rem;
            }

            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        /* ========== ATTRACTIVE REWARD LEVEL CARDS ========== */
        .reward-section {
            background: linear-gradient(145deg, #fff8ef, #fff2e4);
            border-radius: 48px;
            padding: 35px 28px;
            margin-bottom: 50px;
            border: 2px solid #ffd89a;
        }

        .reward-main-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #b65311, #f5a65b, #d68b3a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .reward-main-title i {
            font-size: 2.2rem;
            color: #d68b3a;
        }

        .reward-levels {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .reward-card {
            width: 250px;
            background: linear-gradient(135deg, #ffffff, #fffaf0);
            border-radius: 30px;
            padding: 25px 20px 30px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .reward-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .reward-card:hover::before {
            left: 100%;
        }

        .reward-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
        }

        .reward-card.level1 {
            border-bottom: 6px solid #d4af37;
            background: linear-gradient(135deg, #fffcf0, #fff6e6);
        }

        .reward-card.level2 {
            border-bottom: 6px solid #c0c0c0;
            background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
        }

        .reward-card.level3 {
            border-bottom: 6px solid #e0115f;
            background: linear-gradient(135deg, #fff5f7, #ffeef2);
        }

        .reward-card.level4 {
            border-bottom: 6px solid #0f52ba;
            background: linear-gradient(135deg, #f0f4ff, #e8eefa);
        }

        .reward-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .reward-card.level1 .reward-icon {
            background: linear-gradient(135deg, #d4af37, #f5d76e);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .reward-card.level2 .reward-icon {
            background: linear-gradient(135deg, #a8a8a8, #d0d0d0);
            box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
        }

        .reward-card.level3 .reward-icon {
            background: linear-gradient(135deg, #e0115f, #ff6b9d);
            box-shadow: 0 0 20px rgba(224, 17, 95, 0.4);
        }

        .reward-card.level4 .reward-icon {
            background: linear-gradient(135deg, #0f52ba, #4a7de5);
            box-shadow: 0 0 20px rgba(15, 82, 186, 0.4);
        }

        .reward-icon i {
            font-size: 48px;
            color: white;
        }

        .level-badge {
            display: inline-block;
            font-size: 1.2rem;
            font-weight: 800;
            padding: 5px 15px;
            border-radius: 30px;
            margin-bottom: 15px;
        }

        .reward-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 12px 0 8px;
        }

        .reward-desc {
            font-size: 0.85rem;
            color: #6b4c2c;
            margin-top: 10px;
            line-height: 1.4;
        }

        .glow-text {
            font-size: 0.75rem;
            color: #d68b3a;
            margin-top: 12px;
            font-weight: 500;
        }

        @media (max-width: 700px) {
            .reward-card {
                width: 220px;
                padding: 18px 15px;
            }

            .reward-icon {
                width: 70px;
                height: 70px;
            }

            .reward-icon i {
                font-size: 36px;
            }
        }

        /* Other Sections */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px 24px 20px;
        }

        .hero {
            text-align: center;
            margin-bottom: 40px;
            background: rgba(255, 245, 225, 0.8);
            border-radius: 60px;
            padding: 25px 20px;
            border: 1px solid #ffd89a;
        }

        .hero h1 {
            font-size: 2rem;
            background: linear-gradient(135deg, #b65311, #f5a65b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .badge-yatra {
            background: #d68b3a;
            display: inline-block;
            padding: 6px 20px;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            margin-top: 12px;
        }

        .section-card {
            background: #fffef7;
            border-radius: 48px;
            padding: 28px 24px;
            margin-bottom: 50px;
            border: 1px solid #ffe2b5;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            border-left: 8px solid #e8903a;
            padding-left: 20px;
            margin-bottom: 28px;
            color: #4e2d12;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* ID Card Styles */
        .id-card-section {
            background: linear-gradient(145deg, #fff8ef, #fff2e4);
            border-radius: 48px;
            padding: 35px 28px;
            margin-bottom: 50px;
            border: 2px solid #ffd89a;
        }

        .id-card-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #b65311;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .id-card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .id-card {
            width: 330px;
            background: linear-gradient(135deg, #ffffff, #fffaf0);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s;
            border: 1px solid #ffd89a;
        }

        .id-card:hover {
            transform: translateY(-8px);
        }

        .id-card-header {
            background: linear-gradient(135deg, #d68b3a, #b65311);
            padding: 12px;
            text-align: center;
        }

        .id-card-header h3 {
            color: white;
            font-size: 0.9rem;
        }

        .id-card-photo {
            text-align: center;
            margin-top: -35px;
        }

        .photo-circle {
            width: 85px;
            height: 85px;
            background: #fff0dd;
            border-radius: 50%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid #d68b3a;
        }

        .photo-circle i {
            font-size: 45px;
            color: #b65311;
        }

        .id-card-body {
            padding: 20px;
            text-align: center;
        }

        .member-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #4a2a0e;
        }

        .designation-text {
            background: #f0e0ce;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #b65311;
            margin: 8px 0;
        }

        .id-details {
            margin-top: 12px;
            text-align: left;
            border-top: 1px dashed #f0dbb8;
            padding-top: 10px;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 0.75rem;
        }

        .detail-label {
            font-weight: 600;
            color: #8b6946;
        }

        .id-card-footer {
            background: #f5e6d4;
            padding: 8px;
            text-align: center;
            font-size: 0.7rem;
        }

        .id-card.gold {
            border: 2px solid #d4af37;
        }

        .id-card.gold .id-card-header {
            background: linear-gradient(135deg, #d4af37, #b8960c);
        }

        .id-card.platinum .id-card-header {
            background: linear-gradient(135deg, #6c757d, #495057);
        }

        /* Pool Slider */
        .pool-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 28px;
            background: #faf0e1;
            padding: 12px 0;
        }

        .pool-slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .pool-slide {
            flex: 0 0 100%;
            padding: 20px;
            text-align: center;
            background: #ffffffdd;
            border-radius: 28px;
        }

        .pool-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .pool-card {
            background: linear-gradient(135deg, #fff1e0, #fff8ef);
            border-radius: 32px;
            padding: 18px;
            width: 220px;
            text-align: center;
            border: 1px solid #fad6a4;
        }

        .pool-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 10px;
            border: 3px solid #e8903a;
        }

        .pool-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #e8903aee;
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2;
        }

        /* Membership Table */
        .membership-section {
            background: linear-gradient(145deg, #fff8ef, #fff2e4);
            border-radius: 48px;
            padding: 35px 28px;
            margin: 30px 0 0 0;
            border: 2px solid #ffd89a;
        }

        .membership-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #b65311;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .membership-table {
            overflow-x: auto;
        }

        .membership-table table {
            width: 100%;
            border-collapse: collapse;
            background: #fffef7;
            border-radius: 28px;
            overflow: hidden;
        }

        .membership-table th {
            background: linear-gradient(135deg, #d68b3a, #b65311);
            color: white;
            padding: 15px;
        }

        .membership-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid #f3dbbc;
        }

        .membership-note {
            margin-top: 20px;
            background: #fff0e0;
            padding: 12px 20px;
            border-radius: 35px;
            text-align: center;
            border-left: 5px solid #d68b3a;
        }

        /* Footer - Logo with Image */
        .footer-logo-circle {
            width: 55px;
            height: 55px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .footer-logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        footer {
            background: linear-gradient(135deg, #2d2418, #3d2e1f);
            color: #f5e6d3;
            border-top: 5px solid #d68b3a;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 50px 24px 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: #f5a65b;
        }

        .footer-logo-text span {
            font-size: 0.65rem;
            display: block;
            color: #d4b48c;
        }

        .footer-about p {
            line-height: 1.6;
            margin-top: 15px;
            font-size: 0.85rem;
            color: #e0cfbc;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #f5a65b;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #d68b3a;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #e0cfbc;
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #f5a65b;
            transform: translateX(5px);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.85rem;
            color: #e0cfbc;
        }

        .footer-contact i {
            width: 28px;
            color: #d68b3a;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f5e6d3;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: #d68b3a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.75rem;
        }

        @media (max-width: 700px) {
            .hero h1 {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .id-card {
                width: 300px;
            }
        }