*, html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Lexend", sans-serif;
    background-color: #17181e;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: #111217;
    border-bottom: 1px solid white;
  }
  
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .logo h2 {
    font-family: "Unbounded", sans-serif;
    color: white;
    font-size: 1.2rem;
  }
  
  .logo a {
    text-decoration: none;
    color: white;
  }
  
  .navv {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .navv a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
  }
  
  .navv a:hover {
    color: #4b4fbc;
  }
  
  /* Hamburger & Off-screen menu */
  .hamburger {
    display: none;
  }
  
  .off-screen-menu {
    background-color: #111217;
    width: 100%;
    max-width: 600px;
    position: fixed; 
    top: 0;
    right: -600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    transition: 0.3s ease;
    height: 100vh;
    z-index: 1000; 
    overflow-y: auto; 
  }
  
  
  .off-screen-menu.active {
    right: 0;
  }
  
  .hamburger {
    display: none;
    
  }
  
  .nav-bar {
    width: 100%; 
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    
  }
  
  
  
  /* ham menu */
  .ham-menu {
    height: 40px;
    width: 30px;
    position: relative;
    cursor: pointer; 
    transition: transform 0.3s ease; 
  }
  
  .ham-menu:hover {
    transform: scale(1.1); 
  }
  
  .ham-menu span {
    height: 2.5px; 
    width: 90%;
    background-color: rgb(255, 255, 255);
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
  }
  
  .ham-menu span:nth-child(1) {
    top: 25%;
  }
  .ham-menu span:nth-child(3) {
    top: 75%;
  }
  .ham-menu.active span {
    background-color: white;
  }
  .ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .ham-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  .ham-menu-ul li > a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    font-family: "Lexend";
    font-weight: 400;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s ease;
    
  }

  .ham-menu-ul li > a > svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
  }
  
  .ham-menu-ul li  {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.8rem;
    background: linear-gradient(135deg, #2e2e42, #424272, #28283b);
    padding-right: 6rem;
    padding-left: 1rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    border-radius: 5px;
  }
  
  .ham-menu-ul {
    margin-top: 8rem;
  }

  .about {
    padding: 60px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
   
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.9)), url('./images/head.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .about-text {
    max-width: 900px;
  }
  
  .about-text h1 {
    font-size: 2rem;
    color: #4b4fbc;
    margin-bottom: 10px;
  }
  
  .about-text h2 {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1rem;
    color: #dddddd;
  }
  

  .tours {
    padding: 60px 5%;
    background: url(./images/upcoming-bg.png);
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    /* ext-align: center;t */
  }
  
  .div {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background-color: red;
    background-image: url('./images/Inline-06-1 (1).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    align-self: center;
  }
  
  .features {
    max-width: 600px;
    width: 100%;
  }
  
  .feature-box {
    background: white;
    color: black;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    text-align: left;
  }
  
  .feature-box h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-box p {
    font-size: 0.95rem;
    color: #666;
  }

  .eslatma {
    font-size: 0.85rem;
    margin-top: 1.5rem;
    color: #aaa;
  }
  
  /* Footer */
  footer {
    background-color: #111217;
    padding: 1rem 5%;
  }
  
  .footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .footer-wrapper h2 {
    font-size: 1rem;
  }
  
  .footer-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2e2e2e;
    padding: 0.6rem;
    border-radius: 7px;
  }
  
  /* Responsive Media Queries */
  @media (max-width: 992px) {
    .header-wrapper {
     justify-content: space-between;
     padding: 1.6rem;
    }

    .logo h2 {
        font-size: 0.9rem;
    }
  
    .div {
      height: 200px;
    }
  
    .about-text h1 {
      font-size: 1rem;
    }
  
    .feature-box h2 {
      font-size: 1.7rem;
    }
  
    .feature-box p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .navv {
      display: none;
    }
  
    .about-text h2 {
      font-size: 1.4rem;
    }
  
    .div {
      width: 100%;
      height: 200px;
    }
  
    .footer-wrapper {
     
      align-items: center;
      justify-content: space-between;
    }
  }
  