
        /* CSS Variables for easy theme customization */
        :root {
            --primary-color: #0a2e36; /* Deep Teal */
            --secondary-color: #fca311; /* Vibrant Orange/Gold */
            --light-color: #f4f4f4;
            --dark-color: #333;
            --text-color: #ffffff;
        }

        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background: #fff;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 2rem;
        }

        h1, h2 {
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; color: var(--primary-color); }
        p { margin-bottom: 1rem; }

        /* Header & Navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: fixed;
            z-index: 1000;
            width: 100%;
            background: transparent;
            transition: background 0.3s ease-in-out;
        }

        .navbar.scrolled {
            background: rgba(10, 46, 54, 0.9);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .navbar .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
        }

        .logoimage {
            width: 100px;
            height: 100px;
            border-radius: 100%;
        }

        .contact-links {
            color: #ffffff;
        }

        .navbar ul {
            display: flex;
            list-style: none;
        }

        .navbar ul li a {
            color: var(--text-color);
            padding: 0.5rem 1rem;
            margin: 0 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .navbar ul li a:hover {
            color: var(--secondary-color);
        }

        /* Hero Section (Main Banner) */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/world-luxury-luxury-lifestyle.jpg') no-repeat center center/cover;
            /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=2070') no-repeat center center/cover; */
            color: var(--text-color);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            color: #fca311;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s ease-out 0.5s forwards;
        }

        .hero h1 {
            font-size: 4rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 1rem auto;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: transform 0.3s, background 0.3s;
        }

        .btn:hover {
            transform: scale(1.05);
            background: #ffb742;
        }

        /* Sections Styling */
        .section {
            padding: 6rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        /* About Section */
        #about {
            background: var(--light-color);
        }
        #about .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        #about img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Destinations Section */
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .destination-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.2);
        }

        .destination-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .destination-card-content {
            padding: 1.5rem;
        }
        .destination-card-content h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .destination-card .btn {
            margin-top: 1rem;
            font-size: 1rem;
            padding: 0.6rem 1.5rem;
        }

        /* Contact & Booking Section */
        #contact {
            background: var(--primary-color);
            color: var(--text-color);
        }
        #contact h2 {
            color: #fff;
        }

        .contact-form {
            max-width: 700px;
            margin: auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }
        .form-group textarea {
            resize: vertical;
        }
        .form-group .btn {
            width: 100%;
            border: none;
        }
        .form-group .btn-whatsapp {
            background: #25D366;
            color: #fff;
        }
        .form-group .btn-whatsapp:hover {
            background: #128C7E;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: var(--text-color);
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        .fade-in-section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .logoimage {
            width: 75px;
            height: 75px;
            border-radius: 100%;
        }

            h1 { font-size: 2.5rem; }
            .hero h1 { font-size: 3rem; }
            h2 { font-size: 2rem; }

            .navbar {
                flex-direction: column;
                padding: 1rem;
            }
            .navbar ul {
                padding-top: 0.5rem;
            }
            .navbar ul li a {
                padding: 0.5rem;
                font-size: 12px;
            }

            #about .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            #about img {
                margin-bottom: 2rem;
            }

            .hero-content h1 {
                font-size: 35px;
            }

            .hero-content p {
                font-size: 20px;
                padding-left: 10px;
                padding-right: 10px;
            }
        }
