 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wrapper, .main-page, .homepage {
  margin: 0;
  padding: 0;
  height:auto;
}
.offscreen-menu a {
    color:black;
    text-decoration: none;
    margin: 20px 0;
    transition: color 0.3s;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  height: 80px;
  padding: 0 20px;
  background-color: #111;
  position: relative;
}
.logoimg img {
  height: 50px; 
  width: auto;
}
.ham-menu {
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 5px 0;
  z-index: 1000;
  position: relative;
}
.ham-menu span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.ham-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ham-menu.open span:nth-child(2) {
  opacity: 0;
}

.ham-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.offscreen-menu {
  position: fixed;
  top: 90px; 
  right: -240px; 
  width: 200px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 10px;
  box-shadow: -2px 2px 12px rgba(0,0,0,0.2);
  border-radius: 8px 0 0 8px;
  transition: 0.3s;
  z-index: 999;
}
.offscreen-menu.active {
  right: 0;
}

.offscreen-menu a {
  padding: 8px;
  text-decoration: none;
  color: #111;
}

.offscreen-menu a:hover {
  background-color: #f0f0f0;
}
.nav-right {
  display: flex;
  gap: 20px; 
}

.nav-number {
  color: white;
  font-size: 1rem;
  font-weight: 500;
}
header{
    height:90px;
    display:flex;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: white;
    color:black;
}
.book-button{
display: inline-block;
  background-color: #000;
  color: #fff;
  font-weight: 600;

  padding: 12px 24px;   
  font-size: 16px;

  border-radius: 16px;
  cursor: pointer;
  border: none;
  text-decoration: none; 

  transition: all 0.3s ease;
  }
.wrapper {
  width: 100%;
  box-sizing: border-box;
}
.hero-section {
  display: flex;
  align-items: center;       
  justify-content: space-between; 
  gap: 30px;                 
  padding: 40px 20px;
  width: 100%;
  min-height: 500px;
  box-sizing: border-box;
  flex-wrap: nowrap;         
}

.hero-content {
  flex: 1 1 50%;             
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  flex: 1 1 50%;             
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;         
  border-radius: 10px;
}
.hero-content h1 { font-size: 2rem; margin-bottom: 8px; }
.hero-content h2 { font-size: 1.4rem; margin-bottom: 8px; color: #333; }
.hero-content h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 12px; color: #555; }
.book-button {
  display: inline-flex;           
  justify-content: center;       
  align-items: center;            
  width: 120px;                   
  height: 40px;                   
  font-size: 1rem;
  background-color:black;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.3s;
}
.book-button:hover {
  background-color: rgb(50, 53, 53);
}
.hero-section {
  display: flex;
  align-items: center;       
  justify-content: center;
  gap: 20px;                 
  padding: 20px;
  min-height: 400px;
  flex-wrap: nowrap;          
  box-sizing: border-box;
}
.hero-content, .hero-image {
  flex: 1 1 50%;             
  max-width: 50%;             
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.hero-content h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.hero-content p {
  font-size: 0.95rem;
  line-height: 1.4;
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .hero-section {
    display: flex;             
    flex-direction: row;       
    align-items: center;       
    justify-content: flex-start;
    gap: 10px;                 
    padding: 10px 15px;        
    height: auto;              
  }
  .hero-content {
    flex: 1;                   
    margin: 0;
    display: flex;             
    flex-direction: column;    
    justify-content: center;  
  }

  .hero-content h1 {
    font-size: 1rem;
    margin: 2px 0;
  }

  .hero-content h2 {
    font-size: 0.9rem;
    margin: 2px 0;
  }

  .hero-content h3 {
    font-size: 0.8rem;
    margin: 2px 0;
    line-height: 1.1;
  }
  .hero-image {
    flex: 0 0 auto;           
    width: 150px;             
    height: 300px;            
  }
  .hero-image img {
    width: 100%;
    height: 100%;             
    object-fit: contain;
    border-radius: 0px;
    display: block;
  }
}
.services {
  padding: 50px 20px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-card {
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.service-card h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .services {
    padding: 30px 10px;
  }
}
.our-cars {
  padding: 50px 20px;
  text-align: center;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.cars-card {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cars-card img {
  width: 100%;           
  height: auto;          
  max-height: 200px;     
  object-fit: contain;   
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: #f0f0f0; 
}
.cars-card h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.cars-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .our-cars {
    padding: 30px 10px;
  }
}
.hidden {
  display: none; 
}
.view-more-button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.view-more-button:hover {
  background-color: rgb(56, 55, 55);
} 
  .main-page{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;   
    padding: 40px;
}
.home-page{
  max-width: 500px;
}

/* WHY HIRE US SECTION */
.why-hire {
  background-color: #1a1d22; 
  color: #e6e6e6;            
  text-align: center;
  padding: 60px 20px;        
  border-top: 1px solid #2a2e35;
  border-bottom: 1px solid #2a2e35;
}

/* Main heading */
.why-hire h1 {
  font-size: 2rem;
  margin-bottom: 25px;
}

/* Sub-points */
.why-hire h2 {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 12px 0;
  color: #b8bcc4; 
}
.why-hire {
  background-color: #1a1d22; 
  color: #e6e6e6;            
  text-align: center;         
  padding: 60px 20px;         
  border-top: 1px solid #2a2e35;
  border-bottom: 1px solid #2a2e35;
}
.why-hire h1 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.why-hire h2 {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 12px auto;      
  color: #b8bcc4;         
  max-width: 600px;       
}


.why-hire::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #3a3f47;
  margin: 0 auto 20px;
}


.our-cars{
display:grid;
height:auto;
margin-bottom:0%;
}
.tours-packages {
  padding: 60px 20px;
  text-align: center;
}
.tours-packages h1 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.packages-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.package-card {
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.package-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.package-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.package-card .book-button {
  width: 120px;
  height: 35px;
  line-height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.package-card .book-button:hover {
  background-color: rgb(59, 58, 58);
}
.service-card,
.cars-card,
.package-card {
  background-color: #20232a;
  color: #e6e6e6;
  border: 1px solid #2a2e35;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}
.book-button,
.view-more-button {
  background-color: #2a2e35;
  color: #ffffff;
  border: 1px solid #3a3f47;
}
.book-button:hover,
.view-more-button:hover {
  background-color: #3a3f47;
}
.contact-section {
  padding: 60px 20px;
  background-color:  rgb(36, 35, 35);
  text-align:left;
  color:white
}
.contact-section h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.contact-info p {
  font-size: 1rem;
  margin: 8px 0;
  text-align: left;
}
@media (max-width: 480px) {
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .contact-info .book-button {
    width: 100px;
    height: 35px;
    font-size: 0.9rem;
  }
}
.contact-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px; 
}
.whatsapp-logo {
  display: inline-flex;
  justify-content:left;
  align-items: left;
  width: 45px;
  height: 45px;
  border-radius: 30%;
  text-decoration: none;
}
.whatsapp-logo img {
  width: 85px;
  height: 35px;
  object-fit: contain;
}

