html{
    overflow-x: hidden; /* Prevent horizontal overflow */

}
.logo{

    height: 50px;
}
a{
    text-decoration: none;
}


/* 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 */
  }

  /* hero section */
  /* Full-screen responsive video styling for desktop */
  .hero-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Video styling for desktop */
  .carousel-item video {
    width: 100%;

    object-fit: cover;
  }

/* main button */
.main-heading {
    text-align: center;
    margin: 40px 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.btn-gradient {
    display: block; /* Makes buttons stack vertically */
    width: 100%; /* Full width on smaller screens */
    margin: 10px 0; /* Margin between buttons */
    font-size: 1.2rem; /* Button text size */
    padding: 15px;
    border: none;
    border-radius: 10px; /* Rounded corners */
    color: white; /* Text color */
    text-align: center; /* Center text */
    transition: background 0.3s, transform 0.3s; /* Smooth transition */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Box shadow */
    font-weight: bold; /* Bold text */
}

.btn-jodhpur {
    background: linear-gradient(135deg, #c0392b, #e74c3c); /* Jodhpur button gradient */
}

.btn-udaipur {
    background: linear-gradient(135deg, #2980b9, #6dd5ed); /* Udaipur button gradient */
}

.btn-cab {
    background: linear-gradient(135deg, #f39c12, #f1c40f); /* Cab Rental button gradient */
}

.btn-desert {
    background: linear-gradient(135deg, #8e44ad, #9b59b6); /* Desert Safari button gradient */
}

/* Hover effects */
.btn-gradient:hover {
    transform: translateY(-3px); /* Slightly lift the button */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
    .btn-gradient {
        width: auto; /* Allow buttons to take natural width on larger screens */
        display: inline-block; /* Stack horizontally */
    }
}


  /* about jhodpur */

  .about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #f8f9fa; /* Light background for contrast */
}

.about-slider {
    width: 50%; /* Adjust the width as needed */
    max-width: 600px; /* Limit max width for larger screens */
}

.about-slider img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
}

.about-text {
    width: 50%; /* Adjust the width as needed */
    padding-left: 20px; /* Space between text and image */
}

.about-text h2 {
    color: #3c6e71; /* Attractive heading color */
    font-size: 2rem; /* Adjust font size */
}

.about-text p {
    color: #2a475e; /* Text color */
    font-size: 1.2rem; /* Font size for readability */
}

.button-group {
    margin-top: 20px; /* Space above buttons */
}

.button-group .btn {
    margin-right: 10px; /* Space between buttons */

    align-items: center;
}

.button-group .btn i {
    margin-right: 5px; /* Space between icon and text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Stack the slider and text vertically */
        align-items: center; /* Center items */
    }
    .about-slider, .about-text {
        width: 100%; /* Full width on small screens */
        padding: 0; /* Remove padding */
    }
    .about-text {
        padding-top: 20px; /* Space between slider and text */
    }
}


/* services section */

.services-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.services-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column; 
    margin-top: 20px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.service-description {
    font-size: 1rem;
    color: #f1f1f1;
    line-height: 1.5;
    margin-bottom: 15px;
}

.learn-more-btn {
    background-color: #ffffff;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Color-specific classes for each card */
.jodhpur-card {
    background-color: #a86435; /* Dark blue for Jodhpur */
}

.udaipur-card {
    background-color:  #d4a35a; /* Green-blue for Udaipur */
}

.cab-card {
    background-color: #2a4365; /* Golden brown for Cab Rental */
}

.desert-safari-card {
    background-color:  #3a7d76; /* Sandy brown for Desert Safari */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-heading {
        font-size: 2rem;
    }
}


/* gallery */

.custom-slider {
    margin: auto;
    max-width: 600px;
}

.custom-slider .carousel-item img {
    width: 100%;
    height: 400px;

    border-radius: 10px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.custom-slider .carousel-item img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* For devices less than 1200px */
@media (max-width: 1200px) {
    .custom-slider .carousel-item img {
        height: auto; /* Adjust height for medium devices */
    }
}

/* For devices less than 992px */
@media (max-width: 992px) {
    .custom-slider .carousel-item img {
        height: auto; /* Adjust height for small devices */
    }
}

/* For devices less than 768px */
@media (max-width: 768px) {
    .custom-slider .carousel-item img {
        height:auto; /* Adjust height for extra small devices */
    }
}

/* For devices less than 576px */
@media (max-width: 576px) {
    .custom-slider .carousel-item img {
        height: 200px; /* Adjust height for very small devices */
    }
}


/* jhodpur section */
.tour-package-section {
    padding: 60px 20px;
    text-align: center;
    color: #3c3c3c;
}

.tour-package-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ba8f56; /* Warm, desert-themed color */
}

.tour-package-subtitle {
    font-size: 1.25rem;
    color: #6d4c41; /* Earthy brown for subtitle */
    margin-bottom: 30px;
}


.package-overview {

margin-top: 20px;
    border-radius: 8px;
    text-align: center;
}
.package-title {
    font-size: 2rem;
    color: #6d4c41;
    margin-bottom: 20px;
}
.package-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}
.btn-custom {
    border-radius: 5px;
    font-weight: bold;
    padding: 10px 20px;
    margin: 5px;
}
.btn-contact {
    background-color: #007bff;
    color: white;
}
.btn-explore {
    background-color: #28a745;
    color: white;
}
.btn-contact:hover {
    background-color: #0056b3;
}
.btn-explore:hover {
    background-color: #218838;
}



/* cab  rental*/

.cab-section {
    text-align: center;

}
.book-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}



.owl-carousel .card {
    margin: 10px;
    border: none !important; 
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

.owl-carousel img {
    padding: 10px;
    border-radius: 20px;
}


.owl-nav button {
background-color:#E9C46A !important ; /* Semi-transparent background */
border: 2px solid #007bff; /* Border color matching the theme */
border-radius: 50% !important; /* Circular buttons */
width: 30px; /* Fixed width */
height: 30px; /* Fixed height */
display: flex;
align-items: center;
justify-content: center;
margin: 0 10px; /* Margin between buttons */
padding: 8px; /* Inner padding for buttons */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
transition: background-color 0.3s, transform 0.3s;
font-size: 20px !important;
}

.owl-nav button:hover {
background-color: #007bff !important; /* Change color on hover */
color: #fff; /* White color for icons on hover */
transform: scale(1.1); /* Enlarge on hover */
}


/* desert safari */

.safari-section {
    padding: 50px 0;
    text-align: center; /* Center text */
    color: white; /* White text */
}

.safari-section h5{
    color: white;
}
.jeep-safari {
    background-color: #d6b82a; /* Sandy yellow */
    border-radius: 10px; /* Rounded corners */
}
.desert-night {
    background-color: #2c3e50; /* Dark blue for night */
    border-radius: 10px; /* Rounded corners */
}
.camel-safari {
    background-color: #8d5b29; /* Earthy brown */
    border-radius: 10px; /* Rounded corners */
}
.safari-card {
    transition: transform 0.2s;
    margin: 15px;
}
.safari-card:hover {
    transform: scale(1.05); /* Zoom effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.safari-section .card-img-top {
    height: 200px; /* Fixed height for images */
    object-fit: cover;
    border-top-left-radius: 10px; /* Rounded corners for top */
    border-top-right-radius: 10px; /* Rounded corners for top */
 
    
}
.book-button {
    background-color: #2a4365; /* Darker orange */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.book-button:hover {
    background-color: #2a4365; /* Darker shade on hover */
}


/* why choose us */

.why-choose-us {
    position: relative; /* To position the pseudo-element */
    background-image: url('images/jhodpur-tour.jpg'); /* Replace with your image path */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Fixed background image */
    color: white; /* Text color */
    padding: 60px 0; /* Padding for top and bottom */
    text-align: center; /* Center align text */
}

.why-choose-us::before {
    content: ""; /* Required for pseudo-element */
    position: absolute; /* Positioning it absolutely */
    top: 0; /* Top position */
    left: 0; /* Left position */
    right: 0; /* Right position */
    bottom: 0; /* Bottom position */
    background-color: rgba(0, 0, 0, 0.5); /* Black filter with opacity */
    z-index: 1; /* Ensure it's behind the text */
}

.why-choose-us h2 {
    margin-bottom: 30px; /* Margin for bottom */
    font-size: 2.5rem; /* Font size for the heading */
    font-weight: bold; /* Bold text */
    position: relative; /* To position above the filter */
    z-index: 2; /* Ensure it's above the filter */
}

.why-choose-us .card {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent card background */
    border: none; /* Remove card border */
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.3s; /* Animation for hover */
    margin: 20px 0; /* Margin for top and bottom */
    position: relative; /* To ensure cards are above the background */
    z-index: 2; /* Ensure cards are above the filter */
}

.card:hover {
    transform: scale(1.05); /* Scale effect on hover */
}

.icon {
    padding-top: 10px;
    font-size: 2.5rem; /* Icon size */
    color: #007bff !important; /* Icon color */
    margin-bottom: 15px; /* Margin for bottom */
}

.why-choose-us .card-title {
    font-size: 1.5rem; /* Title font size */
    font-weight: bold; /* Title bold */
}

.card-text {
    font-size: 1rem; /* Text font size */
}

/* 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;
    }
}



/* Prevent horizontal overflow and layout shift */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Apply box-sizing globally */
*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Disable overflow for specific sections if needed */
.section {
    overflow: hidden;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


p {
    font-family: 'Georgia', serif; /* Elegant serif font */
    font-size: 14px;               /* Font size */
    color: #333333;                /* Dark gray color */
    line-height: 1.6;              /* Spacing between lines */
    letter-spacing: 0.5px;         /* Slightly increase space between letters */
    margin: 15px 0;                /* Space above and below paragraphs */
}






.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: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    margin-top: 50px;
  margin-left: -40px;
  }
  
  .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;
  }
  
  .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;
  }