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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            color: #333;
            line-height: 1.6;
        }
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
}
        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgb(255 255 255 / 0%);
/*             backdrop-filter: blur(10px); */
            padding: 15px 0;
            z-index: 1000;
/*             box-shadow: 0 2px 20px rgba(0,0,0,0.1); */
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
			box-shadow: 0 2px 20px rgba(0,0,0,0.1);
			.nav-links a {
            color: #000;
        }
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            /* font-size: 28px;
            font-weight: 700;
            color: #1ea9d8; */
            width: 200px;
        }
       
        .logo span {
            color: #ffd700;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #1ea9d8;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #1ea9d8;
            transition: all 0.3s ease;
        }
        .call-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }
/* Fixed Action Buttons */
        .fixed-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .fixed-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .fixed-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
        }

        .call-fixed {
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            color: white;
        }

        .whatsapp-fixed {
            background: #25D366;
            color: white;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            }
            50% {
                box-shadow: 0 5px 30px rgba(102, 126, 234, 0.6);
            }
        }

        .whatsapp-fixed:hover {
            animation: none;
        }

        .call-fixed:hover {
            animation: none;
        }
a .emoji{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(99%) contrast(99%);
}
        /* Hero Section with Video */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
            padding: 20px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
			line-height:normal;
        }

        .hero-content p {
            font-size: 24px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
        }

        .cta-btn {
            padding: 18px 45px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }

        /* Section Styles */
        section {
            padding: 60px 20px;
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: #f8f9fa;
        }

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

        .about-text h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #1ea9d8;
			line-height: normal;
        }

        .about-text p {
            font-size: 16px;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }
	.about-slide img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.about-slider.slick-slider.slick-dotted{
	margin-bottom:50px;
}

.whatsapp-ico{
	fill:#fff;
}
        /* Rooms Section */
        .rooms {
            background: white;
        }

        .room-grid {
            max-width: 1400px;
            margin: 0 auto;
        }

        .room-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin: 20px 15px;
        }

        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        /* Slick Slider Custom Styles */
        .slick-prev,
        .slick-next {
            width: 50px;
            height: 50px;
            z-index: 100;
        }

        .slick-prev {
            left: -60px;
        }

        .slick-next {
            right: -60px;
        }

        .slick-prev:before,
        .slick-next:before {
            font-size: 50px;
            color: #1ea9d8;
        }

        .slick-dots {
            bottom: -50px;
        }

        .slick-dots li button:before {
            font-size: 50px;
            color: #1ea9d8;
        }

        .slick-dots li.slick-active button:before {
            color: #0073bf;
        }

        .room-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .room-card:hover .room-image img {
            transform: scale(1.1);
        }

        .room-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ffd700;
            color: #333;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
        }

        .room-content {
            padding: 30px;
        }

        .room-content h3 {
            font-size: 26px;
            margin-bottom: 15px;
            color: #333;
        }

        .room-content p {
            color: #666;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .room-amenities {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .amenity {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #555;
        }

        .room-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .room-price {
            font-size: 28px;
            font-weight: 700;
            color: #1ea9d8;
        }

        .room-price span {
            font-size: 16px;
            color: #999;
            font-weight: 400;
        }

        .book-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .book-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* Gallery Section */
         .gallery {
            background: #f8f9fa;
			 background-repeat: no-repeat;
    background-size: cover;
			     position: relative;
			 z-index:1;
			 &:after{
				         content: "";
        inset: 0;
        position: absolute;
        background: linear-gradient(360deg, #ffffff, transparent);
        z-index: -1;
			 }
			 .section-title p{
				 color:#000;
			 }
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid #1ea9d8;
            color: #1ea9d8;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: block;
            text-decoration: none;
			.emoji {
    filter: unset;
}
        }

        .gallery-item img,
        .gallery-item video {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .gallery-item:hover img,
        .gallery-item:hover video {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(102, 126, 234, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: white;
            font-size: 48px;
        }

        .video-label {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 215, 0, 0.9);
            color: #333;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
            z-index: 2;
        }
        /* How to Reach Section */
        .how-to-reach {
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .how-to-reach::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        .how-to-reach .section-title h2,
        .how-to-reach .section-title p {
            color: white;
        }

        .reach-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .reach-left {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .journey-route {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .journey-route:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .special-route {
            background: rgba(255, 215, 0, 0.2);
            border: 2px solid rgba(255, 215, 0, 0.5);
        }

        .route-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

        .route-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .route-header h3 {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }

        .route-steps {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .step-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .step-dot {
            width: 12px;
            height: 12px;
            background: #ffd700;
            border-radius: 50%;
            margin-top: 5px;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .step-content h5 {
            font-size: 17px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .step-content p {
            font-size: 14px;
            opacity: 0.9;
            margin: 0;
        }

        .step-separator {
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            color: #ffd700;
            padding: 0;
            letter-spacing: 2px;
        }

        .reach-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .reach-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .reach-icon-wrapper {
            position: relative;
        }

        .reach-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .reach-info {
            flex: 1;
        }

        .reach-info h4 {
            font-size: 22px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .reach-info p {
            font-size: 15px;
            margin-bottom: 10px;
            opacity: 0.95;
        }

        .reach-badge {
            display: inline-block;
            background: #ffd700;
            color: #333;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .reach-arrow {
            text-align: center;
            font-size: 32px;
            color: white;
            margin: 10px 0;
            animation: bounce 2s infinite;
        }

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

        .reach-right {
            position: sticky;
            top: 100px;
        }

        .map-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }

        .map-image {
            width: 100%;
            height: 640px;
            object-fit: cover;
            display: block;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(102, 126, 234, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-pin {
            background: white;
            padding: 20px 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: pinPulse 2s infinite;
        }

        @keyframes pinPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .pin-icon {
            font-size: 32px;
        }

        .pin-text {
            font-size: 20px;
            font-weight: 700;
            color: #1ea9d8;
        }

        .journey-summary {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .journey-summary {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .visit-places {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .visit-places h4 {
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .place-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .place-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .place-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .place-icon {
            font-size: 24px;
        }

        .place-item span:last-child {
            font-size: 15px;
            font-weight: 500;
        }

        .summary-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .summary-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .summary-icon {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .summary-text h5 {
            font-size: 16px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .summary-text p {
            font-size: 14px;
            opacity: 0.9;
        }
        /* Contact Section */
        .contact {
            background: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 30px;
            color: #1ea9d8;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1ea9d8 0%, #0073bf 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .info-text h4 {
                font-size: 18px;
                margin-bottom: 0;
                color: #333;
                line-height: normal;
        }

        .info-text p,.info-text p a {
            color: #666;
            font-size: 15px;
			width: 60%;
        }
.info-text p a:hover{
	color:#1ea9d8;
}
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
.flter-white .emoji{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(99%) contrast(99%);
}
        /* Footer */
        .footer {
            background: linear-gradient(268deg, #005a79 0%, #001831 100%);
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .footer-section p {
            margin-bottom: 15px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
        }

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

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0.8;
        }

        /* Responsive */
         @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 118px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                padding: 40px;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .call-btn {
                display: none;
            }

            .fixed-buttons {
                bottom: 20px;
                right: 20px;
            }

            .fixed-btn {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }
			section {
    padding: 40px 20px;
}
			 .section-title {
    text-align: center;
    margin-bottom: 30px;
}
            .hero-content h1 {
                font-size: 42px;
            }

            .hero-content p {
                font-size: 18px;
            }
			 .about-content{
				 text-align: center;
			 }
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }
.room-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
            .room-grid {
                grid-template-columns: 1fr;
            }

            .slick-prev {
                left: 10px;
            }

            .slick-next {
                right: 10px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .about-features {
                grid-template-columns: 1fr;
            }
            .reach-content {
                grid-template-columns: 1fr;
            }

            .reach-right {
                position: relative;
                top: 0;
            }

            .journey-summary {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .hero-content h1 {
                font-size: 25px;
				margin-bottom: 10px;
            }
			.hero-content h2{
				font-size: 16px;
			}
			.hero-content p {
        font-size: 14px;
    }
			.navbar.scrolled {
    padding: 4px 0;
}
			.logo {
    width: 100px;
}
			.nav-links {
        top: 60px;
				    gap: 20px;
    }
            .section-title h2 {
                font-size: 26px;
        line-height: normal;
            }
			.hero-content {
    padding: 0px;

}
			section {
        padding: 30px 15px;
    }
			.section-title {
        margin-bottom: 14px;
    }
			.about-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: normal;
}
			.about-text p {
    font-size: 14px;
    line-height: inherit;
}
			.about-image img {
    height: 300px;
}
			.section-title p {
    font-size: 15px;
}
			
.room-content {
    padding: 15px;
			}
    .room-content h3 {
        font-size: 20px;
    }
			
.book-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}
.gallery-item img, .gallery-item video {
    width: 100%;
    height: 120px;
}
			    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(162px, 1fr));
        gap: 10px;
    }
			.step-content h5 {
    font-size: 16px;
}
			.map-image {
    width: 100%;
    height: 260px;
}
			.location-pin {
    padding: 9px 25px;
}
			.pin-icon {
    font-size: 20px;
}
			.pin-text {
    font-size: 16px;
}
			.contact-info h3 {
    font-size: 20px;
}
			.info-text p, .info-text p a {
    width: 100%;
}
			.contact-content {
    gap: 15px;
}
			.map-container {
    min-height: 300px;
}
			.footer {
    text-align: center;
				padding: 30px 15px 20px;
				.logo {
        width: 150px;
        margin-inline: auto;
    }
}
			.social-links {
    justify-content: center;
}
        }