/* Color Variables */
        :root {
            --primary: #ffac0a;
            --white: #ffffff;
            --black: #000000;
            --accent-blue: #39B7FF;
            --accent-green: #2ecc71;
            --accent-dark-blue: #0085A8;
            --dark-bg: #0A1F2D;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
        }

        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 172, 10, 0.5);
        }

        /* Full-screen Slideshow */
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 31, 45, 0.7);
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .quote {
            font-size: 3.2rem;
            font-weight: 700;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.3;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
            color: var(--white);
            max-width: 900px;
        }
        
        .quote-author {
            font-size: 1.3rem;
            font-weight: 300;
            margin-top: 20px;
            opacity: 0.9;
            color: var(--primary);
            font-style: normal;
        }
        
        .explore-btn {
            margin-top: 50px;
            padding: 16px 45px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s;
            border: none;
            background: linear-gradient(135deg, var(--primary), #ff8c00);
            color: var(--dark-bg);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            text-decoration: none;
            display: inline-block;
        }
        
        .explore-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(255, 140, 0, 0.5);
        }
        
        /* Updated Navigation Buttons - Centered Vertically */
        .slideshow-nav {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 4;
            padding: 0 30px;
        }
        
        .nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            font-size: 24px;
            color: white;
        }
        
        .nav-btn:hover {
            background: rgba(255, 172, 10, 0.6);
            transform: scale(1.1);
        }
        
        .slideshow-dots {
            position: absolute;
            bottom: 40px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 4;
        }
        
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 40px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Login Button */
        .login-btn {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent-blue);
            border-radius: 30px;
            padding: 8px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-left: 20px;
        }

        .login-btn:hover {
            background: rgba(57, 183, 255, 0.2);
            transform: translateY(-2px);
        }
        
        /* New Tagline Section */
        .tagline-section {
            position: relative;
            padding: 100px 40px;
            background: linear-gradient(to bottom, var(--dark-bg), #0d2a3d);
            z-index: 5;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .tagline-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        
        .tagline-headline {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1.2;
            color: var(--white);
            text-shadow: 0 0 20px rgba(255, 172, 10, 0.3);
            background: linear-gradient(to right, #ffac0a, #ffdb4d);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(255, 172, 10, 0.3);
            }
            to {
                text-shadow: 0 0 25px rgba(255, 172, 10, 0.6), 0 0 35px rgba(255, 172, 10, 0.4);
            }
        }
        
        .tagline-subhead {
            font-size: 1.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }
        
        .tagline-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .tagline-btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            display: flex;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }
        
        .tagline-btn-primary {
            background: linear-gradient(135deg, var(--primary), #ff8c00);
            color: var(--dark-bg);
        }
        
        .tagline-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
        }
        
        .tagline-btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent-blue);
        }
        
        .tagline-btn-secondary:hover {
            background: rgba(57, 183, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .tagline-btn i {
            margin-left: 10px;
            font-size: 18px;
        }
        
        .tagline-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.05;
            background-image: 
                radial-gradient(circle at 10% 20%, var(--primary) 0%, transparent 15%),
                radial-gradient(circle at 90% 80%, var(--accent-blue) 0%, transparent 15%),
                radial-gradient(circle at 30% 60%, var(--accent-green) 0%, transparent 10%);
            z-index: 1;
        }

        /* Experiences Section */
        .experiences-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .page-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--primary);
        }
        
        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .experience-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 172, 10, 0.3);
        }
        
        .card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--accent-blue);
        }
        
        .card-meta span {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .card-meta i {
            margin-right: 5px;
        }
        
        .card-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .card-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        
        .card-button {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary), #ff8c00);
            color: var(--dark-bg);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
        }
        
        .card-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 172, 10, 0.4);
        }
        
        .sold-out {
            background: #e74c3c;
            cursor: not-allowed;
            opacity: 0.7;
        }
        
        .sold-out:hover {
            transform: none;
            box-shadow: none;
        }

        /* Footer Styles */
        footer {
            background-color: #000000;
            color: #ffffff;
            padding: 60px 20px 30px;
            position: relative;
        }

        .footer-wave {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 30px;
        }

        .footer-wave .shape-fill {
            fill: #0A1F2D;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto 40px;
            gap: 40px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-img {
            height: 50px;
            width: auto;
            margin-right: 15px;
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: #fff;
        }

        .logo-text span {
            color: #FFB400;
        }

        .footer-about {
            max-width: 300px;
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: #FFB400;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #43B0F1;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            color: #43B0F1;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #FFB400;
            transform: translateX(5px);
        }

        .footer-links a:hover i {
            color: #FFB400;
        }

        .footer-contact {
            color: #ddd;
            line-height: 1.8;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: #43B0F1;
            margin-right: 12px;
            font-size: 18px;
            min-width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #222;
            color: #FFB400;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-links a:hover {
            background: #FFB400;
            color: #000;
            transform: translateY(-5px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #333;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .copyright {
            color: #999;
            font-size: 14px;
        }

        .powered-by {
            color: #FFB400;
            font-weight: 600;
            font-size: 16px;
        }

        .back-to-top {
            background: #FFB400;
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            bottom: 30px;
            right: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 100;
            display: none;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: #43B0F1;
            color: white;
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .quote {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 900px) {
            .quote {
                font-size: 2.3rem;
            }
            
            .tagline-headline {
                font-size: 2.5rem;
            }
            
            .tagline-subhead {
                font-size: 1.2rem;
            }
            
            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }
            
            .logo-img {
                height: 35px;
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .login-btn {
                margin: 10px 0 0 0;
                width: 100%;
            }
            
            .quote {
                font-size: 2rem;
            }
            
            .slideshow-dots {
                bottom: 20px;
            }
            
            .tagline-section {
                padding: 70px 20px;
            }
            
            .tagline-headline {
                font-size: 2rem;
            }
            
            .tagline-subhead {
                font-size: 1.1rem;
            }
            
            .tagline-btn {
                padding: 15px 30px;
                font-size: 16px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .logo-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .logo-img {
                height: 30px;
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            nav ul li {
                margin: 0 8px;
            }
            
            .quote {
                font-size: 1.6rem;
            }
            
            .quote-author {
                font-size: 1rem;
            }
            
            .explore-btn {
                padding: 14px 35px;
                font-size: 1rem;
            }
            
            .tagline-headline {
                font-size: 1.8rem;
            }
            
            .tagline-subhead {
                font-size: 1rem;
            }
            
            .tagline-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .slideshow-nav {
                padding: 0 15px;
            }
            
            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        /* Animation Effects */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .tagline-section {
            animation: fadeIn 0.8s ease-out;
        }