:root {
            --orange: #ffa500;
            --dark-blue: #07293a;
            --light-green: #15cc9b;
            --white: #fff;
            --light-gray: #e8e5e5;
            --dark-gray: #333;
            --text-dark: #023047;
            --primary-gradient: linear-gradient(135deg, var(--orange), var(--light-green));
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            outline: none;
            border: none;
            text-transform: capitalize;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }

        html {
            font-size: 62.5%;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: #f9f9f9;
            line-height: 1.6;
            color: #333;
            padding-top: 80px;
        }

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

        .section {
            padding: 8rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
        }

        .section-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

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

        .btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary-gradient);
            color: var(--white);
            font-size: 1.6rem;
            border-radius: 5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
            transition: var(--transition);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
        }

        /* Header Styles */
        header {
            background: var(--white);
            padding: 1.5rem 2rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        header.sticky {
            padding: 1rem 2rem;
            background: var(--white);
        }

        header .logo {
            font-size: 2.8rem;
            font-weight: bold;
            color: var(--dark-blue);
            display: flex;
            align-items: center;
        }

        header .logo span {
            color: var(--orange);
            margin-right: 5px;
        }

        header .logo i {
            font-size: 2.2rem;
            margin-right: 5px;
            color: var(--orange);
        }

        header .navbar {
            display: flex;
        }

        header .navbar a {
            color: var(--dark-gray);
            font-size: 1.7rem;
            margin: 0 1.5rem;
            font-weight: 500;
            position: relative;
        }

        header .navbar a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: var(--transition);
        }

        header .navbar a:hover::after,
        header .navbar a.active::after {
            width: 100%;
        }

        header .navbar a:hover,
        header .navbar a.active {
            color: var(--orange);
        }

        .search-login {
            display: flex;
            align-items: center;
        }

        .search-box {
            position: relative;
            margin-right: 2rem;
        }

        .search-box input {
            padding: 1rem 1.5rem;
            padding-right: 4rem;
            border-radius: 5rem;
            font-size: 1.4rem;
            background: var(--light-gray);
            width: 220px;
        }

        .search-box button {
            position: absolute;
            top: 50%;
            right: 1.5rem;
            transform: translateY(-50%);
            background: transparent;
            cursor: pointer;
        }

        .search-box button i {
            font-size: 1.6rem;
            color: var(--dark-gray);
        }

        .login-btn {
            padding: 0.8rem 2rem;
            background: var(--orange);
            color: var(--white);
            border-radius: 5rem;
            font-size: 1.5rem;
            font-weight: 500;
            cursor: pointer;
        }

        .login-btn:hover {
            background: var(--dark-blue);
        }

        #menu-bar {
            display: none;
            font-size: 2.5rem;
            color: var(--dark-gray);
            cursor: pointer;
        }

        /* Home Section */
        .home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
        }

        .home .content {
            text-align: center;
            z-index: 1;
            position: relative;
            padding: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .home .content h3 {
            font-size: 6rem;
            color: var(--white);
            text-shadow: 0.3rem 0.5rem rgba(0, 0, 0, 0.3);
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
        }

        .home .content p {
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease;
        }

        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Featured Destinations */
        .featured-destinations {
            background: var(--white);
        }

        .destination-slider {
            padding: 3rem 0;
        }

        .destination-slide {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            margin: 1rem;
            transition: var(--transition);
        }

        .destination-slide:hover {
            transform: translateY(-10px);
        }

        .destination-image {
            height: 250px;
            overflow: hidden;
        }

        .destination-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .destination-slide:hover .destination-image img {
            transform: scale(1.1);
        }

        .destination-content {
            padding: 2rem;
        }

        .destination-content h3 {
            font-size: 2rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .destination-content p {
            font-size: 1.4rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .destination-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .destination-price {
            font-size: 1.8rem;
            color: var(--orange);
            font-weight: 600;
        }

        .destination-rating {
            display: flex;
            align-items: center;
        }

        .destination-rating i {
            color: var(--orange);
            font-size: 1.4rem;
            margin-right: 0.5rem;
        }

        /* Book Section */
        .book {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3') no-repeat center center/cover;
            color: var(--white);
        }

        .book-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 5rem;
            align-items: center;
        }

        .book-text h2 {
            font-size: 4rem;
            margin-bottom: 2rem;
        }

        .book-text p {
            font-size: 1.6rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .booking-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 1rem;
            box-shadow: var(--card-shadow);
        }

        .booking-form h3 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 1.6rem;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1.2rem 1.5rem;
            font-size: 1.6rem;
            background: var(--light-gray);
            border-radius: 0.5rem;
            border: 1px solid #ddd;
        }

        .form-group i {
            position: absolute;
            right: 1.5rem;
            bottom: 1.2rem;
            font-size: 1.8rem;
            color: #777;
        }

        .form-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--light-green);
            color: var(--white);
            font-size: 1.8rem;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-btn:hover {
            background: var(--orange);
        }

        /* Gallery Section */
        .gallery {
            background: var(--white);
            overflow: hidden;
        }

        .gallery-container {
            position: relative;
            padding: 2rem 0;
        }

        .gallery-slider {
            padding: 3rem 0;
        }

        .gallery-slide {
            background: var(--dark-blue);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            height: 100%;
        }

        .gallery-slide:hover {
            transform: translateY(-10px);
        }

        .gallery-image {
            height: 250px;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-slide:hover .gallery-image img {
            transform: scale(1.1);
        }

        .gallery-content {
            padding: 2rem;
        }

        .gallery-content .destination {
            background: var(--orange);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 3rem;
            font-size: 1.4rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .gallery-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .gallery-date {
            display: flex;
            align-items: center;
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.7);
            margin-right: 2rem;
        }

        .gallery-date i {
            margin-right: 0.5rem;
        }

        .gallery-read {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .gallery-content p {
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .gallery-action {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .read-more {
            font-size: 1.6rem;
            color: var(--orange);
            font-weight: 500;
            cursor: pointer;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        .gallery-author {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .gallery-author span {
            color: var(--orange);
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(to right, #f9f9f9 50%, var(--dark-blue) 50%);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: #ddd;
        }

        .testimonial-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 5rem;
        }

        .testimonial-left {
            padding-right: 5rem;
        }

        .testimonial-right {
            padding-left: 5rem;
        }

        .testimonial-left h2 {
            font-size: 4rem;
            color: var(--dark-blue);
            margin-bottom: 2rem;
        }

        .testimonial-left p {
            font-size: 1.6rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .testimonial-slider {
            padding: 2rem 0;
        }

        .testimonial-slide {
            background: var(--white);
            padding: 3rem;
            border-radius: 1rem;
            box-shadow: var(--card-shadow);
            margin: 1rem;
        }

        .testimonial-content {
            margin-bottom: 2rem;
        }

        .testimonial-content p {
            font-size: 1.6rem;
            color: #666;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1.5rem;
        }

        .testimonial-info h4 {
            font-size: 1.8rem;
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
        }

        .testimonial-info p {
            font-size: 1.4rem;
            color: var(--orange);
        }

        /* Contact Section */
        .contact {
            background: var(--white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 5rem;
        }

        .contact-image {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            height: 100%;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-image-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 3rem;
            color: var(--white);
        }

        .contact-image-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .contact-image-content p {
            font-size: 1.6rem;
            line-height: 1.8;
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 1rem;
            box-shadow: var(--card-shadow);
        }

        .contact-form h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .required {
            font-size: 1.4rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .contact-form .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.6rem;
            background: var(--light-gray);
            border-radius: 0.5rem;
            border: 1px solid #ddd;
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--light-green);
            color: var(--white);
            font-size: 1.8rem;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .submit-btn:hover {
            background: var(--orange);
        }

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3') no-repeat center center/cover;
            padding: 8rem 0;
            text-align: center;
            color: var(--white);
        }

        .newsletter h2 {
            font-size: 4rem;
            margin-bottom: 2rem;
        }

        .newsletter p {
            font-size: 1.8rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1.5rem 2rem;
            font-size: 1.6rem;
            border-radius: 5rem 0 0 5rem;
        }

        .newsletter-form button {
            padding: 1.5rem 3rem;
            background: var(--orange);
            color: var(--white);
            font-size: 1.6rem;
            border-radius: 0 5rem 5rem 0;
            cursor: pointer;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 5rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 5rem;
            margin-bottom: 5rem;
        }

        .footer-col h3 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--orange);
        }

        .footer-col p {
            font-size: 1.6rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .footer-col ul li {
            margin-bottom: 1rem;
            list-style: none;
        }

        .footer-col ul li a {
            font-size: 1.6rem;
            color: var(--light-gray);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--orange);
            padding-left: 1rem;
        }

        .footer-col .social-icons {
            display: flex;
            margin-top: 2rem;
        }

        .footer-col .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 1rem;
            transition: var(--transition);
        }

        .footer-col .social-icons a:hover {
            background: var(--orange);
            transform: translateY(-5px);
        }

        .footer-col .social-icons a i {
            font-size: 1.6rem;
            color: var(--white);
        }

        .copyright {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.6rem;
        }

        .creator {
		position: absolute;
		top: 5230px;
		left: 10px;
		font-size: 15px;
        font-family: cursive;
        text-decoration-line: underline;
	}

        .creator-name {
            font-weight: bold;
            color: orange;
            font-size: 18px;
            font-family: 'Courier New', Courier, monospace;            
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--orange);
            color: var(--white);
            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        /* Animations */
        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes animate {
            100% {
                filter: hue-rotate(360deg);
            }
        }

        /* Media Queries */
        @media (max-width: 991px) {
            html {
                font-size: 55%;
            }

            .home .content h3 {
                font-size: 5rem;
            }

            .home .content p {
                font-size: 2rem;
            }

            .testimonials {
                background: #f9f9f9;
            }

            .testimonials::before {
                display: none;
            }

            .testimonial-left {
                padding-right: 0;
                margin-bottom: 5rem;
            }

            .testimonial-right {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            #menu-bar {
                display: block;
            }

            header .navbar {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            header .navbar.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            header .navbar a {
                display: block;
                margin: 1.5rem 0;
                padding: 1rem;
                font-size: 2rem;
                background: #f9f9f9;
                border-radius: 0.5rem;
            }

            .search-box input {
                width: 150px;
            }

            .home .content h3 {
                font-size: 4rem;
            }

            .home .content p {
                font-size: 1.8rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 5rem;
                margin-bottom: 1rem;
            }

            .newsletter-form button {
                border-radius: 5rem;
            }
        }

        @media (max-width: 576px) {
            html {
                font-size: 50%;
            }

            .section-title h1 {
                font-size: 3.5rem;
            }

            .home .content h3 {
                font-size: 3.5rem;
            }

            .home .content p {
                font-size: 1.6rem;
            }

            .btn {
                padding: 1rem 2rem;
                font-size: 1.6rem;
            }

            .search-box {
                display: none;
            }

            .book-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
        }