/* Color Variables */
        :root {
            --primary: #ffac0a;
            --white: #ffffff;
            --black: #000000;
            --accent-blue: #39B7FF;
            --accent-green: #2ecc71;
            --accent-dark-blue: #0085A8;
            --dark-bg: #0A1F2D;
            --card-bg: rgba(255, 255, 255, 0.08);
            --card-border: rgba(255, 255, 255, 0.15);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--white);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 172, 10, 0.03) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(57, 183, 255, 0.03) 0%, transparent 30%),
                linear-gradient(to bottom, #0A1F2D, #0a1c28);
            position: relative;
            min-height: 100vh;
        }

        /* Background Elements */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(20px);
        }

        .bg-element:nth-child(1) {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: 10%;
            left: 5%;
        }

        .bg-element:nth-child(2) {
            width: 200px;
            height: 200px;
            background: var(--accent-blue);
            top: 20%;
            right: 10%;
        }

        .bg-element:nth-child(3) {
            width: 150px;
            height: 150px;
            background: var(--accent-green);
            bottom: 15%;
            left: 15%;
        }

        .bg-element:nth-child(4) {
            width: 250px;
            height: 250px;
            background: var(--primary);
            bottom: 25%;
            right: 20%;
        }

        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            position: relative;
            z-index: 10;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 60px;
            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);
        }

        nav {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        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%;
        }

        nav ul li a.active {
            color: var(--primary);
        }

        nav ul li a.active::after {
            width: 100%;
        }

        /* Gallery Header */
        .gallery-header {
            text-align: center;
            padding: 100px 20px 40px;
            position: relative;
            z-index: 5;
        }

        .gallery-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .gallery-subtitle {
            font-size: 22px;
            max-width: 700px;
            margin: 0 auto 60px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        /* Video Gallery Section - UPDATED */
        .video-gallery-section {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px 80px;
            position: relative;
            z-index: 5;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-blue);
            border-radius: 2px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }

        .video-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--card-border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(8px);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
            aspect-ratio: 16/9;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 172, 10, 0.3);
            border-color: var(--primary);
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .video-thumbnail video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .video-card:hover .video-thumbnail video {
            transform: scale(1.05);
        }

        .audio-control {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            z-index: 3;
            opacity: 0;
            transition: opacity 0.3s;
            cursor: pointer;
            font-size: 18px;
        }

        .video-card:hover .audio-control {
            opacity: 1;
        }

        .video-title {
            position: absolute;
            bottom: 15px;
            left: 15px;
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            z-index: 2;
            max-width: 80%;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .video-card:hover .video-title {
            opacity: 1;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .video-card:hover .video-overlay {
            opacity: 1;
        }

        /* Gallery Content */
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 80px;
            position: relative;
            z-index: 5;
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: var(--dark-bg);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 172, 10, 0.3);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .trip-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--card-border);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(8px);
        }

        .trip-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 172, 10, 0.3);
            border-color: var(--primary);
        }

        .trip-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .trip-card:hover .trip-image {
            transform: scale(1.05);
        }

        .trip-info {
            padding: 20px;
        }

        .trip-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--white);
        }

        .trip-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 15px;
            color: var(--accent-green);
            font-weight: 500;
        }

        .trip-meta span {
            display: flex;
            align-items: center;
        }

        .trip-meta span::before {
            content: "•";
            margin-right: 8px;
            color: var(--accent-blue);
        }

        .trip-description {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }

        .view-gallery-btn {
            display: inline-block;
            width: 100%;
            padding: 12px;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .view-gallery-btn:hover {
            background: var(--primary);
            color: var(--dark-bg);
        }

        /* Trip Gallery Modal */
        .trip-gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 31, 45, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            overflow-y: auto;
            padding: 40px 20px;
        }

        .modal-content {
            background: var(--dark-bg);
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            max-width: 1200px;
            max-height: 90vh;
            overflow-y: auto;
            border: 2px solid var(--primary);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            position: relative;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .modal-content.active {
            transform: scale(1);
            opacity: 1;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .close-modal:hover {
            background: var(--primary);
            color: var(--dark-bg);
            transform: rotate(90deg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 20px;
        }

        .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .modal-title {
            font-size: 36px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .modal-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
        }

        .trip-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 172, 10, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* 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: #FAFAFA;
        }

        .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;
            gap: 15px;
        }

        .footer-logo-img {
            height: 70px;
            width: auto;
        }

        .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: absolute;
            top: -25px;
            right: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: #43B0F1;
            color: white;
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .video-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 1000px) {
            nav {
                position: static;
                transform: none;
                margin: 20px auto;
            }
            
            header {
                flex-direction: column;
                padding: 20px;
            }
            
            .logo {
                position: static;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 900px) {
            .gallery-title {
                font-size: 42px;
            }
            
            .gallery-subtitle {
                font-size: 18px;
            }
            
            .trip-gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .section-title {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 8px;
            }
            
            .gallery-header {
                padding: 80px 20px 40px;
            }
            
            .gallery-title {
                font-size: 36px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .trip-card {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .modal-title {
                font-size: 28px;
            }
            
            .trip-gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .video-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }

            .logo {
                flex-direction: column;
                text-align: center;
            }

            .logo-img {
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .gallery-title {
                font-size: 32px;
            }
            
            .gallery-subtitle {
                font-size: 16px;
            }
            
            .filter-btn {
                padding: 8px 15px;
                font-size: 14px;
            }
            
            .trip-title {
                font-size: 20px;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
            
            .modal-title {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Effects */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .trip-card {
            animation: fadeIn 0.6s ease-out;
        }
        
        .gallery-item {
            animation: fadeIn 0.6s ease-out;
        }
        
        /* Video card animation delays */
        .video-card:nth-child(1) { animation-delay: 0.1s; }
        .video-card:nth-child(2) { animation-delay: 0.2s; }
        .video-card:nth-child(3) { animation-delay: 0.3s; }
        .video-card:nth-child(4) { animation-delay: 0.4s; }
        .video-card:nth-child(5) { animation-delay: 0.5s; }
        .video-card:nth-child(6) { animation-delay: 0.6s; }
        .video-card:nth-child(7) { animation-delay: 0.7s; }
        .video-card:nth-child(8) { animation-delay: 0.8s; }
        .video-card:nth-child(9) { animation-delay: 0.9s; }
        .video-card:nth-child(10) { animation-delay: 1.0s; }
        .video-card:nth-child(11) { animation-delay: 1.1s; }
        .video-card:nth-child(12) { animation-delay: 1.2s; }