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

        :root {
            --primary-color: #f2f2f2;
            --secondary-color: #f2f2f2;
            --text-dark: #000000;
            --text-light: #000000;
            --text-white:#f2f2f2;
            --text-gray: #666666;
            --accent-blue: #37115D;
            --site-width: 980px;
        }

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #ffffff;
        }

        /* Top Navigation Menu */
        .top-nav {
            background-color: var(--primary-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: var(--site-width);
            margin: 0 auto;
            display: flex;
            justify-content: center;
            padding: 0 50px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            color: var(--text-light);
            text-decoration: none;
            padding: 15px 25px;
            font-weight: 500;
            font-size: 18px;
            transition: background-color 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            color: var(--text-dark);
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
            font-weight: 400;
        }

        .dropdown a:hover {
            background-color: #f8f9fa;
        }

        /* Header Section */
        .header {
            background-color: var(--secondary-color);
            padding: 30px 0;
            border-bottom: 1px solid #ddd;
        }

        .header-container {
            max-width: var(--site-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            height: 35px;
            width: auto;
        }

        .logo svg {
            height: 100%;
            width: auto;
            fill: #242323;
        }



        .hero-video {
            /* position: absolute; */
            /* top: 50%;
            left: 50%; */
            min-width: 100%; 
         min-height: 30%; 
            width: auto;
            object-fit: cover;
        }
        .hero {
    position: relative;
    width: 100%;
    height: 550px; /* Set container height */
    overflow: hidden;
    background-color: #000;
}


        .hero-content {
            position: relative;
            z-index: 3;
        }


        .hero h1 {
            font-family: 'Avenir', sans-serif;
            font-size: 70px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 18px;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* About Section */
        .about-section {
            background-color: #ffffff;
            padding: 40px 0;
        }

        .container {
            max-width: var(--site-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-content {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        .about-text {
            flex: 2;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .about-text h2 {
            font-family: 'EB Garamond', serif;
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-text .highlight {
            color: var(--primary-color);
            font-weight: 700;
        }

        .about-video {
            flex: 1;
            max-width: 400px;
            position: relative;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .about-video img {
            width: 100%;
            height: auto;
            display: block;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .video-overlay:hover {
            background: rgba(0,0,0,0.5);
        }

        .play-button {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 15px solid var(--primary-color);
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            margin-left: 3px;
        }

        /* Featured Section */
        .featured-section {
            background-color: var(--secondary-color);
            padding: 60px 0;
            text-align: center;
        }

        .featured-title {
            font-family: 'EB Garamond', serif;
            font-size: 24px;
            margin-bottom: 40px;
            color: var(--text-dark);
            position: relative;
        }

        .featured-title::after {
            content: '';
            width: 60px;
            height: 2px;
            background-color: var(--text-dark);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .featured-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .featured-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .featured-logo {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .featured-logo.travel-blog {
            font-family: 'Impact', sans-serif;
            font-size: 22px;
        }

        .featured-logo.planetour {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
        }

        .featured-logo.world-travel {
            font-family: 'Avenir', sans-serif;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .featured-logo.skycloud {
            font-family: 'Helvetica', sans-serif;
            font-weight: 700;
            font-size: 24px;
        }

        .plane-icon {
            width: 40px;
            height: 40px;
            fill: var(--text-dark);
            margin: 10px 0;
        }

        .cloud-icon {
            width: 35px;
            height: 25px;
            fill: var(--text-dark);
            margin: 10px 0;
        }

        /* Footer */
        .footer {
            /* background-color: var(--text-gray); */
            color: var(--text-white);
            padding: 80px 0 60px;
            background-image: url('footer.png');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: rgba(102, 102, 102, 0.8); */
        }

        .footer-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .footer-logo {
            max-width: 300px;
            margin: 0 auto 30px;
        }

        .footer-logo img {
            width: 100%;
            height: auto;
        }

        .footer p {
            font-size: 14px;
            margin: 10px 0;
        }
        .footer-par{
            color:white;
        }

        .footer a {
            color: var(--text-light);
            text-decoration: underline;
        }

        .footer a:hover {
            color: #ccc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 10px;
            }
            
            .nav-menu {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-menu a {
                padding: 12px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .hero h1 {
                font-size: 48px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .about-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .featured-logos {
                flex-direction: column;
                gap: 20px;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .about-text {
                font-size: 14px;
            }
            
            .featured-title {
                font-size: 20px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        } 


        .mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #555;
  height: 500px;
  color: white;
  border-radius: 10px;
}

 .hidden {
            display: none;
        }
.topnav {
  overflow: hidden;
  background-color: white;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: white;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  /* background-color: gray; */
   /* display: none; */
  color: white;
}

.lang-content:not(.active) {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Method 1: Hide the entire nav placeholder on mobile */
@media screen and (max-width: 768px) {
    #nav-placeholder {
        display: none;
    }
      /* .hero-video {
                filter: brightness(0.9); /* Slightly darken video on mobile 
            } */

             /* .hero {
                height: 70vh; 
                min-height: 350px;
            } */
}

/* Method 1: Hide the entire nav placeholder on mobile */
@media screen and (min-width: 769px) {
    .topnav {
        display: none;
    }
}


.topnav a.icon::before {
  content: "☰";
  font-size: 20px;
}

 #language-switcher {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        select {
            padding: 10px 15px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        select:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        select:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
        }

        .flag {
            display: inline-block;
            margin-right: 8px;
            font-size: 1.2em;
        }

        .language-indicator {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            backdrop-filter: blur(10px);
        }
             /* Arabic RTL styling */
        .rtl {
            direction: rtl;
            text-align: right;
        }

        .rtl h1 {
            text-align: right;
        }
              @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            #language-switcher {
                position: static;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .language-indicator {
                position: static;
                text-align: center;
                margin-top: 20px;
            }
        }