<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.heading-font {
            font-family: 'Playfair Display', serif;
        }
        
        .body-font {
            font-family: 'Poppins', sans-serif;
        }
        
        .cursive-font {
            font-family: 'Dancing Script', cursive;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(0, 119, 182, 0.9) 0%, rgba(0, 150, 199, 0.8) 100%);
        }
        
        .varanasi-gradient {
            background: linear-gradient(135deg, rgba(0, 91, 148, 0.9) 0%, rgba(0, 119, 182, 0.8) 100%);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #ffffff;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        /* Ribbon Slideshow Styles */
        .ribbon-slideshow {
            position: relative;
            height: 18rem; /* Reduced height */
        }
  
        .ribbon-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease;
     }
  
        .ribbon-slide.active {
            opacity: 1;
        }
  
        .ribbon-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            color: white;
        }
  
        .ribbon-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
        }
  
        .ribbon-dots .dot.active {
            background: white !important;
            transform: scale(1.3);
        }
  
        @media (max-width: 768px) {
        .ribbon-slideshow {
            height: 16rem;
    }
        .ribbon-content {
            padding: 1rem;
    }
        }

        @media (max-width: 640px) {
            .ribbon-slide .grid {
                grid-template-columns: 1fr !important;
                padding: 0 1rem !important;
            }
            .ribbon-slide h2 {
                font-size: 1.5rem !important;
            }
            .ribbon-slide p {
                font-size: 0.875rem !important;
            }
        }

        .premium-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .premium-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .premium-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            padding: 1.5rem;
            color: white;
        }
        
        .premium-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: #f59e0b;
            color: white;
            font-weight: bold;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .tour-card {
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.2s ease;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(2px);
        }
        
        .tour-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            background-color: white;
        }
        
        .fade-out {
            animation: fadeOut 0.3s ease-out forwards;
        }
        
        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; display: none; }
        }
        
        .tours-background {
            background-image: url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&amp;auto=format&amp;fit=crop&amp;w=1470&amp;q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }
        
        .tours-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(5px);
        }
        
        .tours-content {
            position: relative;
            z-index: 1;
        }
        
        .hidden-section {
            display: none;
        }
        
        /* Booking Form Styles */
        .booking-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .booking-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .booking-form-container {
            background-color: white;
            border-radius: 0.5rem;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .booking-modal.active .booking-form-container {
            transform: translateY(0);
        }
        
        .booking-form-header {
            background-color: #1e40af;
            color: white;
            padding: 1.5rem;
            border-top-left-radius: 0.5rem;
            border-top-right-radius: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .booking-form-body {
            padding: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }
        
        .form-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 1rem;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .submit-btn {
            background-color: #1e40af;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #1e3a8a;
        }
        
        .confirmation-message {
            display: none;
            text-align: center;
            padding: 2rem;
        }
        
        .confirmation-message i {
            font-size: 3rem;
            color: #10b981;
            margin-bottom: 1rem;
        }
        
        .hero-text-side {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4.5rem;
            background: url('../Images/hero section.jpg');
            background-size: cover;
            background-position: center;
            backdrop-filter: blur(5px);
            
        }

        @media (max-width: 767px) {
            .mobile-menu {
                display: block !important;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: #1e3a8a;
                padding: 16px;
            }
            .mobile-menu .space-x-4 {
                flex-direction: column;
                gap: 12px;
            }
        }

        @media (max-width: 640px) {
            .hero-text-side &gt; div {
                width: 100% !important;
            }
        }

        body {
            overflow-x: hidden;
        }</pre></body></html>