/*  Your Custom CSS Code Goes Here */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.animate-float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlowReverse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

.animate-float-slow-reverse {
  animation: floatSlowReverse 6s ease-in-out infinite;
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero-video::-webkit-media-controls-panel {
  display: none !important;
}

.clip-diagonal {
  clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0 100%); /* for Safari support */
}

.custom-scroller {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #3b82f6ff #f3f4f6;
    padding-right: 12px;
}

/* Gallery Style Code */

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: 300px;
            grid-auto-flow: dense;
            gap: 1rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .gallery-item:hover {
            transform: scale(1.02);
            z-index: 10;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-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;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item.wide {
            grid-column: span 2;
        }
        
        .gallery-item.tall {
            grid-row: span 2;
        }
        
        .gallery-item.big {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .social-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 50;
            overflow: hidden;
        }
        
        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
        }
        
        .modal-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }
        
        .modal-caption {
            color: white;
            text-align: center;
            padding: 1rem;
            width: 100%;
        }
        
        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }
        
        .nav-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            transform: translateY(-50%);
        }
        
        .nav-button {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 50%;
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .nav-button:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }
        
        .filter-button {
            transition: all 0.3s ease;
        }
        
        .filter-button.active {
            background-color: #3B82F6;
            color: white;
        }
        
        @keyframes pulse-slow {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .pulse-animation {
            animation: pulse-slow 3s infinite;
        }
        
        .gallery-header-blob {
            position: absolute;
            width: 600px;
            height: 600px;
            top: -300px;
            right: -300px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 70%);
            border-radius: 50%;
            filter: blur(50px);
            z-index: -1;
        }
    
/* Gallery Style Code Ends */


/*Hero New 810 likes view*/
        
        .hero-text {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            text-shadow: 0 0 20px rgba(0,0,0,0.8);
        }
        
        .text-glow {
            animation: textGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes textGlow {
            from {
                text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 30px rgba(255,255,255,0.3);
            }
            to {
                text-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.5);
            }
        }
        
        .gradient-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .gradient-secondary {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .gradient-tertiary {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .gradient-quaternary {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }
        
        .text-item {
            transition: all 0.3s ease;
        }
        
        .text-item:hover {
            transform: scale(1.1);
        }
    
/* Ends here */

/*Custom Membership Style Code*/
        
        .membership-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .membership-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);
        }
        
        .membership-card .features-list {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .membership-card.expanded .features-list {
            max-height: 500px;
        }
        
        .price-switch-btn {
            transition: all 0.3s ease;
        }
        
        .material-symbols-outlined {
            font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
        }
        
        .bg-gradient-custom {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        }
        
        .bg-pattern {
            background-color: #f0f9ff;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .card-gradient-1 {
            background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
        }
        
        .card-gradient-2 {
            background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
        }
        
        .card-gradient-3 {
            background: linear-gradient(135deg, #ede9fe 0%, #fae8ff 100%);
        }
        
        .card-gradient-4 {
            background: linear-gradient(135deg, #fae8ff 0%, #ffedd5 100%);
        }
        
        .card-gradient-5 {
            background: linear-gradient(135deg, #ffedd5 0%, #ecfdf5 100%);
        }
        
        .card-gradient-6 {
            background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%);
        }
    
/*Ends*/

        .booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.booking-container .step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.booking-container .step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.booking-container .step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.booking-container .step.active,
.booking-container .step.completed {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
}

.booking-container .progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    height: 2px;
    background: #6366f1;
    z-index: 1;
    transition: width 0.3s ease;
}

.booking-container .location-card,
.booking-container .package-card,
.booking-container .addon-item {
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.booking-container .location-card.selected,
.booking-container .package-card.selected,
.booking-container .addon-item.selected {
    border-color: #6366f1;
    background-color: #f5f5ff;
}

.booking-container .toggle-view {
    background: #f3f4f6;
    border-radius: 20px;
    padding: 3px;
    display: inline-flex;
    margin-bottom: 20px;
}

.booking-container .toggle-option {
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.booking-container .toggle-option.active {
    background: #6366f1;
    color: white;
}

.booking-container .calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.booking-container .calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 500;
    margin-bottom: 8px;
}

.booking-container .calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-container .calendar-day:hover:not(.empty):not(.disabled) {
    background-color: #f3f4f6;
}

.booking-container .calendar-day.selected {
    background-color: #6366f1;
    color: white;
}

.booking-container .calendar-day.today {
    border: 2px solid #6366f1;
    font-weight: 600;
}

.booking-container .calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.booking-container .calendar-day.empty {
    cursor: default;
}

.booking-container .time-slot {
    padding: 10px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.booking-container .time-slot:hover:not(.disabled) {
    border-color: #6366f1;
    background-color: #f5f5ff;
}

.booking-container .time-slot.selected {
    background-color: #6366f1;
    color: white;
    border-color: #6366f1;
}

.booking-container .time-slot.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background-color: #f9fafb;
}

.booking-container .btn-primary {
    background-color: #6366f1;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.booking-container .btn-primary:hover {
    background-color: #4f46e5;
}

.booking-container .btn-primary:disabled {
    background-color: #c7d2fe;
    cursor: not-allowed;
}

.booking-container .btn-secondary {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.booking-container .btn-secondary:hover {
    background-color: #e5e7eb;
}

.booking-container .accordion-header {
    cursor: pointer;
    padding: 16px;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-container .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.booking-container .accordion-content.open {
    max-height: 1000px;
}

.booking-container input[type="text"],
.booking-container input[type="email"],
.booking-container input[type="tel"],
.booking-container input[type="number"],
.booking-container textarea,
.booking-container select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.booking-container input[type="text"]:focus,
.booking-container input[type="email"]:focus,
.booking-container input[type="tel"]:focus,
.booking-container input[type="number"]:focus,
.booking-container textarea:focus,
.booking-container select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.booking-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4b5563;
}

.booking-container .form-group {
    margin-bottom: 20px;
}

.booking-container .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.booking-container .summary-row:last-child {
    border-bottom: none;
}

.booking-container .summary-total {
    font-weight: 600;
    font-size: 18px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px solid #f3f4f6;
}

.booking-container .confirmation {
    text-align: center;
    padding: 40px 20px;
}

.booking-container .confirmation-icon {
    width: 80px;
    height: 80px;
    background-color: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #10b981;
    font-size: 32px;
}

.booking-container .hidden {
  display: hidden;
}


	/* Custom styles for datepicker */
			.datepicker {
				width: 100%;
			}
			.datepicker-picker {
				box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
					0 2px 4px -1px rgba(0, 0, 0, 0.06);
				border-radius: 0.5rem;
			}
			.datepicker-header {
				padding: 0.5rem;
				background-color: #f9fafb;
			}
			.datepicker-cell.selected,
			.datepicker-cell.selected:hover {
				background-color: #4f46e5;
				color: white;
			}
			.datepicker-cell.focused {
				background-color: #e0e7ff;
			}
			.datepicker-cell:hover {
				background-color: #e0e7ff;
			}
			.datepicker-controls .button {
				border-radius: 9999px;
				color: #4f46e5;
			}
			.datepicker-controls .button:hover {
				background-color: #e0e7ff;
			}
			.datepicker-view {
				width: 100% !important;
			}
			.datepicker-view .days .datepicker-cell {
				height: 2.5rem;
			}
			
			
			
@keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
            50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
        }
        
        @keyframes slide-up {
            0% { transform: translateY(30px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        @keyframes fade-in {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        @keyframes float-gentle {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .pulse-dot {
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        .slide-up {
            animation: slide-up 0.8s ease-out forwards;
        }
        
        .fade-in {
            animation: fade-in 1s ease-out forwards;
        }
        
        .float-gentle {
            animation: float-gentle 4s ease-in-out infinite;
        }
        
        .video-placeholder {
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
                        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%), 
                        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        }
        
        .play-button {
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }
			
			
			
	.blog-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .blog-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }
        
        .blog-card .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(124, 58, 237, 0.9));
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        .blog-card:hover .overlay {
            opacity: 1;
        }
        
        .blog-card .overlay-content {
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .blog-card:hover .overlay-content {
            transform: translateY(0);
        }
        
        .related-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .related-slide.active {
            display: block;
            opacity: 1;
        }
        
        .category-card {
            transition: all 0.3s ease;
        }
        
        .category-card:hover {
            transform: translateY(-5px) scale(1.05);
        }
        
/* Assuming each tile has .tile, and inside: .icon, .price, .btn */

/* 1 — Blue */
.tile:nth-child(9n+1) .icon { color: rgb(59, 130, 246); }   /* text-blue-500 */
.tile:nth-child(9n+1) .price { color: rgb(37, 99, 235); }   /* text-blue-600 */
.tile:nth-child(9n+1) .btn {
  background-color: rgb(37, 99, 235);                       /* bg-blue-600 */
}
.tile:nth-child(9n+1) .btn:hover {
  background-color: rgb(29, 78, 216);                       /* hover:bg-blue-700 */
}

/* 2 — Purple */
.tile:nth-child(9n+2) .icon { color: rgb(168, 85, 247); }    /* text-purple-500 */
.tile:nth-child(9n+2) .price { color: rgb(147, 51, 234); }   /* text-purple-600 */
.tile:nth-child(9n+2) .btn {
  background-color: rgb(147, 51, 234);                       /* bg-purple-600 */
}
.tile:nth-child(9n+2) .btn:hover {
  background-color: rgb(126, 34, 206);                       /* hover:bg-purple-700 */
}

/* 3 — Green */
.tile:nth-child(9n+3) .icon { color: rgb(34, 197, 94); }
.tile:nth-child(9n+3) .price { color: rgb(22, 163, 74); }
.tile:nth-child(9n+3) .btn { background-color: rgb(22, 163, 74); }
.tile:nth-child(9n+3) .btn:hover { background-color: rgb(21, 128, 61); }

/* 4 — Red */
.tile:nth-child(9n+4) .icon { color: rgb(239, 68, 68); }
.tile:nth-child(9n+4) .price { color: rgb(220, 38, 38); }
.tile:nth-child(9n+4) .btn { background-color: rgb(220, 38, 38); }
.tile:nth-child(9n+4) .btn:hover { background-color: rgb(185, 28, 28); }

/* 5 — Yellow */
.tile:nth-child(9n+5) .icon { color: rgb(234, 179, 8); }
.tile:nth-child(9n+5) .price { color: rgb(202, 138, 4); }
.tile:nth-child(9n+5) .btn { background-color: rgb(202, 138, 4); }
.tile:nth-child(9n+5) .btn:hover { background-color: rgb(161, 98, 7); }

/* 6 — Pink */
.tile:nth-child(9n+6) .icon { color: rgb(236, 72, 153); }
.tile:nth-child(9n+6) .price { color: rgb(219, 39, 119); }
.tile:nth-child(9n+6) .btn { background-color: rgb(219, 39, 119); }
.tile:nth-child(9n+6) .btn:hover { background-color: rgb(190, 24, 93); }

/* 7 — Indigo */
.tile:nth-child(9n+7) .icon { color: rgb(99, 102, 241); }
.tile:nth-child(9n+7) .price { color: rgb(79, 70, 229); }
.tile:nth-child(9n+7) .btn { background-color: rgb(79, 70, 229); }
.tile:nth-child(9n+7) .btn:hover { background-color: rgb(67, 56, 202); }

/* 8 — Teal */
.tile:nth-child(9n+8) .icon { color: rgb(20, 184, 166); }
.tile:nth-child(9n+8) .price { color: rgb(13, 148, 136); }
.tile:nth-child(9n+8) .btn { background-color: rgb(13, 148, 136); }
.tile:nth-child(9n+8) .btn:hover { background-color: rgb(15, 118, 110); }

/* 9 — Orange */
.tile:nth-child(9n+9) .icon { color: rgb(249, 115, 22); }
.tile:nth-child(9n+9) .price { color: rgb(234, 88, 12); }
.tile:nth-child(9n+9) .btn { background-color: rgb(234, 88, 12); }
.tile:nth-child(9n+9) .btn:hover { background-color: rgb(194, 65, 12); }


/* Home Page Cards New Design 25-08-2025 */

        
        .bg-image {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .content-overlay {
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card-container:hover .content-overlay {
            transform: translateY(0);
        }
        
        .title-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
        }
    

/* Ends */
			
/*Custom Slider*/
.eventMain .slide {
  display: none;
}
.eventMain .slide.active {
  display: block;
}
/*Ends*/	

 #packages-mobile-menu {
          transition: transform 0.3s ease-in-out;
        }
        #packages-mobile-menu.hidden {
          transform: translateY(-100%) !important;
        }
  