
        /* 1. Hero Background Fix */
        .hero-wrapper {
            position: relative;
            height: 90vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Moving Background Animation */
        .hero-visual {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Yahan humne ek high-quality ISKCON Mandir ki image lagayi hai */
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/Iskcon_Vrindavan.jpg');
            background-size: cover;
            background-position: center;
            animation: slowZoom 20s infinite alternate;
            z-index: 0;
        }

        @keyframes slowZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.1);
            }
        }

        /* 2. Floating Animation for Text */
        .floating-text {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Button Glow Effect */
        .btn-glow:hover {
            box-shadow: 0 0 20px rgba(255, 153, 51, 0.6);
            transform: translateY(-3px) scale(1.05);
        }
   
        @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
        }

        h1,
        h2,
        h3 {
            font-family: 'Merriweather', serif;
        }

        .bg-gradient-iskcon {
            background: linear-gradient(135deg, #1A237E 0%, #3F51B5 50%, #FF9933 100%);
            /* Deep Blue to Saffron */
        }

        .text-iskcon-blue {
            color: #1A237E;
        }

        /* Deep Indigo */
        .text-iskcon-gold {
            color: #FFD700;
        }

        /* Gold */
        .bg-iskcon-saffron {
            background-color: #FF9933;
        }

        .border-iskcon-saffron {
            border-color: #FF9933;
        }

        .bg-cream-light {
            background-color: #FDF9F3;
        }

        /* Lighter cream */

        /* Hero Section Animation */
        .hero-bg {
            background-image: url('https://images.unsplash.com/photo-1621213217004-944299719323?auto=format&fit=crop&q=80&w=1600');
            /* Temple BG */
            background-size: cover;
            background-position: center;
            animation: heroPan 30s infinite alternate linear;
        }

        @keyframes heroPan {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        /* Card Hover Effect */
        .tour-card {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .tour-card img {
            transition: transform 0.5s ease;
        }

        .tour-card:hover img {
            transform: scale(1.05);
        }
   
   
        /* Button Border Animation - No change in logic */
        @keyframes border-rotate {
            0% {
                border-color: #FF9933;
                box-shadow: 0 0 5px #FF9933;
            }

            50% {
                border-color: #800000;
                box-shadow: 0 0 15px #FF9933;
            }

            100% {
                border-color: #FF9933;
                box-shadow: 0 0 5px #FF9933;
            }
        }

        .animate-glow-border {
            border: 2px solid #FF9933;
            animation: border-rotate 2s linear infinite;
            display: inline-block;
            /* Ensure proper padding */
            z-index: 20;
        }
       
        /* Fade-in-up animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            /* Hidden by default */
        }

        .animation-delay-300 {
            animation-delay: 0.3s;
        }

        .animation-delay-600 {
            animation-delay: 0.6s;
        }
    
