* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

  
  header {
    background-color: #18e056;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0; /* Keeps the header at the top when scrolling */
    z-index: 1000; /* Ensures it stays on top of other content */
    width: 100%;
  }
  
  .logo h1 {
    color: #ffffff;
    font-size: 30px;
  }
  
  nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    margin-right: 20px;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  .rent-car-btn {
    padding: 10px 20px;
    background-color: #18e056;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
  }
  
  .rent-car-btn:hover {
    background-color: orange;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  @media screen and (max-width: 768px) {
    nav {
      display: none;
      width: 100%;
      flex-direction: column;
      align-items: center;
      background-color: #000000;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      padding: 10px;
    }
  
    nav.active {
      display: flex;
    }
  
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  
    .hamburger {
      display: block;
    }
  }
 



  /* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    height: 70vh;
    color: white;
    text-align: center;
    position: relative;
    transition: background-image 1s ease-in-out; /* Smooth transition effect */
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
  }
  
  .hero-container {
    position: relative;
    z-index: 2; /* Ensures the content is above the overlay */
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .hero-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
  }
  
  .hero-btn:hover {
    background-color: #0056b3;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  
    .hero-btn {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
  }
  
.cta-button {

  display: inline-block;

  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}



/* General Section Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

.services {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.section-title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #004aad;
}

/* Service Cards Styling */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(50% - 20px); /* Two cards per row */
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.2em;
    color: #004aad;
    margin-bottom: 10px;
}

.service p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Learn More Button Styling */
.learn-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #004aad;
    color: white;
    font-size: 0.9em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #002f6c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service {
        width: calc(50% - 10px); /* Two cards per column on tablets and small devices */
    }
}

@media (max-width: 480px) {
    .service {
        width: calc(100% - 20px); /* Full width for very small screens */
    }
}


/* About Us Section */
.about-us {
    padding: 50px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2em;
    color: #004aad;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #004aad;
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #002f6c;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }
}


/* Why Us Section Styling */
.why-us-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.why-us-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-us-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.why-us-card:hover {
  transform: translateY(-10px);
}

.why-us-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.why-us-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.why-us-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .why-us-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-section h2 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .why-us-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-section h2 {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .why-us-cards {
    grid-template-columns: 1fr;
  }
}




/* Contact Us Section */
.contact-us {
    padding: 50px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.contact-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-text h2 {
    font-size: 2em;
    color: #004aad;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-block;
    padding: 10px 10px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-button i {
    font-size: 1.5em;
}

.whatsapp-button:hover {
    background-color: #1aad57;
    transform: scale(1.05);
}

.contact-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-text, .contact-image {
        text-align: center;
    }

    .contact-image img {
        max-width: 100%;
    }

    .whatsapp-button {
        justify-content: center;
    }
}


/* Gallery Section */
.gallery {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.section-title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #004aad;
}

/* Map Section */
.map-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.map-section h2 {
    font-size: 2em;
    color: #004aad;
    margin-bottom: 20px;
}

#map-container {
    width: 100%;
    height: 400px;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    #map-container {
        height: 300px;
    }

    .map-section h2 {
        font-size: 1.5em;
    }
}



/* Gallery Container */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}







/* Footer Styling */
.footer {
    background-color: #004aad;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-subscribe {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.footer-subscribe h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer-subscribe p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #004aad;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e6b800;
}

/* Footer Links */
.footer-links {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    font-size: 0.9em;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-subscribe, .footer-links {
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
    }

    .subscribe-form button {
        width: 100%;
    }
}







