.logo{

  height: 50px;
  width: 100%;
}
.whatsapp-button, .call-button {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  width: 50px; /* Width of the button */
  height: 50px; /* Height of the button */
  border-radius: 50%; /* Make it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px; /* Icon size */
  color: white; /* Icon color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Shadow effect */
  z-index: 1000; /* Ensure it appears above other elements */
}

.whatsapp-button {
  left: 20px; /* Position from the left */
  background-color: #25D366; /* WhatsApp color */
}

.call-button {
  right: 20px; /* Position from the right */
  background-color: #007bff; /* Call button color */
}

/* Optional: Add hover effect */
.whatsapp-button:hover, .call-button:hover {
  opacity: 0.8; /* Slightly reduce opacity on hover */
}
a{
  text-decoration: none;
}

.hero-section {
  position: relative;
  height: 100vh;
  background: url('cabimg/cabbghero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Darker overlay for clarity */
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  padding: 20px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  color: #fff;
  background-color: #2c3e50;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #e04b00;
}
p {
    font-family: 'Georgia', serif; /* Elegant serif font */
    font-size: 14px;               /* Font size */

    line-height: 1.6;              /* Spacing between lines */
    letter-spacing: 0.5px;         /* Slightly increase space between letters */
    margin: 15px 0;                /* Space above and below paragraphs */
}

.carousel-item img{
    height: 600px;
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;

    padding: 20px;
    border-radius: 8px;
  }
  
  .carousel-caption h5,
  .carousel-caption p {
    font-size: 1.2rem; /* Adjust text size */
  }
  
  @media (max-width: 768px) {
    .carousel-caption h5 {
      font-size: 1rem;
    }
    .carousel-caption p {
      font-size: 0.9rem;
    }
    .carousel-item img{
        height: 300px;
    }
  }
  
/* top header */
.top-header {
    background-color:white; /* Royal Blue */
    color: #ffffff;
    padding: 10px 0;
  }
  .top-header a {
    color: black;
    text-decoration: none;
  }

   /* Navbar styling */
   .navbar {
    background-color: #264653; /* Royal Blue */
    font-family: 'Playfair Display', serif; /* Royal, elegant font */
    padding: 10px 20px;
  }
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E9C46A; /* Sandy Beige */
  }
  .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  .navbar-nav .nav-link:hover {
    color: #F4A261; /* Deep Orange on hover */
  }
  .sticky-top {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds subtle shadow for stickiness */
  }

    
    
    /* about us */

    .about-section {
        background-color: #f9f9f9;
      }
      
      .about-section h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 20px;
      }
      
      .about-section p {
        font-size: 18px;
        color: #555;
        line-height: 1.6;
      }
   
      
      /* features section */

      /* Section Styling */
.features-section {
    position: relative;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
  }
  
  .fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('cabimg/cabbg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: -1;

    filter: blur(4px);
  }
  
  .feature-box {

    border-radius: 10px;

}
  
  .feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .feature-box p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* cab collection */

  .cab-collections {
    background-color: #f9f9f9;
  }
  
  .cab-collections h2 {
    font-size: 2rem;
    color: #333;
  }
  
  .card {
    border: none;
    transition: transform 0.3s;

}
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card-title {
    font-size: 1.25rem;
    color: #2c3e50 !important;
    font-weight: 700;
  }
  
  .card p {
    font-size: 0.9rem;
    color: #666;
  }
  
.btnbook2{
    background-color: #264653;
    color: white !important;
}
.btnbook2:hover{
    background-color: #376172;
}

  
  /* why choose us */
  .why-choose-us {
    background-color: #f9f9f9;
  }
  
  .why-choose-us h2 {
    font-size: 2rem;
    color: #333;
  }

  .why-choose-us .fas{
    color:#264653;
  }
  
  .card {
    border: none;
    transition: transform 0.3s;
  }

  .card img{
    padding: 20px;
    border-radius: 20px !important;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card-title {
    font-size: 1.25rem;
    color: #333;
  }
  
  .card-text {
    font-size: 0.9rem;
    color: #666;
  }
  
  .btn-primary {
    background-color: #264653;
    padding: 10px;

}
  .rating .fa-star{
color: #f39c12;
  }

  /* reviews
   */
   
.my-custom-carousel .my-carousel-item {
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 5px;
    background-color: #f8f8f8;
  }
  .my-review-card img.my-review-img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    object-fit: cover;
  }
  
  
  .my-review-card img.my-review-img2 {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    margin-top: 50px;
  margin-left: -25px;
  }
  
  .my-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }
  .my-review-name {
    font-weight: bold;
    margin-left: 12px;
  }
  .my-review-verified {
    color: #3498db;
    margin-left: 6px;
  }
  .my-review-date {
    font-size: 13px;
    color: #7f8c8d;
    margin-left: 10px;
  }
  .my-review-rating {
    color: #fcbf02;
    margin: 12px 0;
  }
  .my-review-text {
    font-size: 16px;
  }
  
  
  /* Media Queries */
  @media (max-width: 768px) {
    .my-custom-carousel .my-carousel-item {
      padding: 15px;
    }
    .my-review-card img.my-review-img {
      width: 60px;
      height: 60px;
    }
    .my-review-text {
      font-size: 14px;
    }
  }
  @media (max-width: 576px) {
    .my-custom-carousel .my-carousel-item {
      padding: 10px;
    }
    .my-review-card img.my-review-img {
      width: 50px;
      height: 50px;
    }
    .my-review-text {
      font-size: 13px;
    }
  }
  
  
  
  
  
  
  
  
    /* Media query for mobile devices */
    @media (max-width: 768px) {
      .googlereview {
          text-align: center;
      }
      .star-rating {
  font-size: 15px;
      }
  }
  
  .googlelogofull {
      width: 100px;
      height: 40px;
      margin-right: 10px;
  }
  
  .googlereview {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .star-rating {
      margin-left: 10px;
  }
  
  .btn-center {
      display: flex;
      justify-content: center;
      margin-top: 10px;
  }
  
  
  .bgreviews{
    background-color:#f8f8f8 ;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 20px;
  }
  
  
  
    /* foooter */

/* Footer Section Styling */
.footer-section {
    background-color: #2c3e50;
    color: #f1f1f1;
    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    text-align: left;

}

.footer-about, .footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 220px;
}

.footer-about h3, .footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

/* Footer Links Styling */
.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #f1f1f1 !important;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: #f39c12;
}

/* Contact Info Icons */
.footer-contact p {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
}

.footer-contact i {
    color: #f39c12;
}

/* Social Media Icons */
.footer-social .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social .social-icons a {
    color: #f1f1f1;
    font-size: 1.5rem;
}

.footer-social .social-icons a:hover {
    color: #f39c12;
}

/* Footer Bottom Styling */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;

    }

    .footer-about, .footer-links, .footer-contact, .footer-social {
        margin-bottom: 1.5rem;
    }
}






/* Base style for h1 */
h1 {
    font-size: 2.5rem; /* Default font size for desktop */
    font-weight: bold;
    color: #264653; /* Customize color as desired */
    text-align: center; /* Centers the text */
    margin: 20px 0; /* Adds top and bottom spacing */
  }
  
  /* Medium screens (tablets, small desktops) */
  @media (max-width: 992px) {
    h1 {
      font-size: 2rem; /* Slightly smaller for medium screens */
    }
  }
  
  /* Small screens (landscape phones, portrait tablets) */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.8rem; /* Further reduce size for small screens */
    }
  }
  
  /* Extra small screens (phones) */
  @media (max-width: 576px) {
    h1 {
      font-size: 1.5rem; /* Smallest size for very small screens */
    }
  }
  




  /*  */
  #safari-package {
    padding: 40px;
    background: #F4EFE2; /* Sand color for desert vibe */
    text-align: center;
}

#safari-package h2 {
    font-size: 2em;
    color: #B24C27; /* Earthy color */
    margin-bottom: 10px;
}

#safari-package p {
    font-size: 1em;
    color: #333;
    margin-bottom: 20px;
}

.package-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Jeep Safari Card */
.card-jeep-safari {
    background: #FFEBD6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
}

.card-jeep-safari:hover {
    transform: translateY(-10px);
}

.card-jeep-safari img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.card-jeep-safari h3 {
    font-size: 1.5em;
    color: #D35400;
    margin-top: 10px;
}

.card-jeep-safari p {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

/* Desert Night Stay Card */
.card-desert-stay {
    background: #FFF1CC;
    border: 2px solid #F9A825;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
}

.card-desert-stay:hover {
    transform: translateY(-10px);
}

.card-desert-stay img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.card-desert-stay h3 {
    font-size: 1.5em;
    color: #C79100;
    margin-top: 10px;
}

.card-desert-stay p {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

/* Camel Safari Card */
.card-camel-safari {
    background: #FFF8E7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    /* padding: 20px; */
    transition: transform 0.3s ease;
    position: relative;
}

.card-camel-safari:hover {
    transform: translateY(-10px);
}

.card-camel-safari img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.card-camel-safari h3 {
    font-size: 1.5em;
    color: #D84315;
    margin-top: 10px;
}

.card-camel-safari p {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

/* Unique Button Styling */

/* Jeep Safari Button */
.contact-jeep-safari-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #D35400;
    color: #FFF;
    font-size: 0.9em;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-jeep-safari-btn:hover {
    background-color: #A33E00;
}

/* Desert Night Stay Button */
.contact-desert-stay-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #F9A825;
    color: #FFF;
    font-size: 0.9em;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-desert-stay-btn:hover {
    background-color: #C79100;
}

/* Camel Safari Button */
.contact-camel-safari-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #FF7043;
    color: #FFF;
    font-size: 0.9em;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-camel-safari-btn:hover {
    background-color: #D84315;
}


/* desert hero section */


.safari-hero-section {
  position: relative;
  height: 100vh;
  background: url('cabimg/slider-1.jpg') center/cover no-repeat; /* Replace with a desert safari image */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.safari-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Darker overlay for emphasis */
}

.safari-hero-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  padding: 20px;
  z-index: 1;
}

.safari-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white; /* Gold color for a desert feel */
}

.safari-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.safari-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  color: #fff;
  background-color: #e04b00; /* Desert-inspired color */
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.safari-hero-btn:hover {
  background-color: #ff7e00;
}