/* === Prevent Body Overflow === */

html,
body {
    overflow-x: hidden !important; /* Hide horizontal scroll */
    overflow-y: auto; /* Allow vertical scrolling */
    height: 100%;
    margin: 0;
    padding: 0;
}

/* scrollbar */
/* Scrollbar width */
::-webkit-scrollbar {
    width: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

/* Scrollbar Handle Hover Effect */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0056b3, #003580);
}

/* scroolbar */
/* NAVBAR BASE */
.navbar{
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.3));
}

.navbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.navbar-brand img{
  max-width: 110px;
  height: auto;
  display: block;
}

/* IMPORTANT: do not force full width on desktop */
.navbar-nav{
  width: auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link{
  color: #fff;
  font-size: 18px;
  padding: 10px 10px;
  white-space: nowrap;
}
.nav-link:hover{
  color: #fff;

}


.nav-link i{
  color: #f5bb24;
  margin-right: 6px;
}

.dropdown-menu{
  border-radius: 10px;
}

/* IMPORTANT: button should not be 30% on desktop */
.btn-book{
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  background: #F5BB24;
  color: #111;
  border: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.btn-book:hover{
  background: #F5BB24;
  transform: scale(1.03);
}

/* FIX FOR iPad Pro and Nest Hub range */
@media (min-width: 992px) and (max-width: 1100px){
  .navbar .container{
    gap: 10px;
  }

  .navbar-brand img{
    max-width: 95px;
  }

  .navbar-nav{
    gap: 6px;
  }

  .nav-link{
    font-size: 14px;
    padding: 8px 8px;
  }

  .btn-book{
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* MOBILE RULES KEEP */
@media (max-width: 768px){
  .breadcrumbs{
    display: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .navbar{
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    background: #000;
    box-shadow: 0px 4px 10px rgba(0,0,0,.1);
  }

  body{
    padding-top: 70px !important;
  }

  .btn-book{
    display: block;
    margin: 10px auto;
    width: fit-content;
  }

  .navbar-toggler{
    border: none;
    outline: none;
  }

  .navbar-toggler-icon{
    filter: invert(1);
  }
}


/* ======= Slider Styling ======= */
.carousel-item {
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100vh; /* Full height for larger screens */
}

/* Center the text inside the carousel */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
}

.carousel-caption h2 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    color: white;
    font-size: 1rem;
}

/* ======= Mobile Adjustments for Small Screens ======= */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .book-now-mobile {
        display: block;
        text-align: right;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 75vh; /* Increase height to fit better in mobile view */
    }

    .carousel-caption {
        width: 95%;
        padding: 12px;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .navbar {
        top: 0;
    }

    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        height: 65vh; /* Slightly reduce height for smaller phones */
    }

    .carousel-caption {
        width: 100%;
        padding: 8px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* ======= Section Styling ======= */
/* Modern Section Styling */
.tour-section {
    text-align: center;
    background: linear-gradient(to bottom, #eef2f3, #dfe9f3);
    padding: 80px 0;
}
.tour-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Glassmorphism Card Styling */
.tour-card {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.tour-card:hover img {
    transform: scale(1.1);
}
.tour-card h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
}
.tour-card p {
    font-size: 1rem;
    color: #444;
}
.tour-card .see-more {
    font-weight: bold;
    color: #48b6fe;
    text-decoration: none;
}
.tour-card .see-more:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tour-section h2 {
        font-size: 2rem;
    }
    .tour-card h3 {
        font-size: 1.4rem;
    }
}

/* carousel */

/* ======= Destination Carousel Styling ======= */
/* Trending Destination Section */
#trending-destination {
    padding: 4rem 0;
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);
    text-align: center;
}

.trending-slide {
    width: 37rem;
    height: 20rem;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.trending-slide-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.trending-slide-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
}

.trending-slide-content h2 {
    font-size: 2rem;
    font-weight: bold;
}

.trending-slide-content p {
    font-size: 1.2rem;
}

.see-more {
    font-weight: bold;
    color: #ffc107;
    text-decoration: none;
}

.see-more:hover {
    text-decoration: underline;
}

/* Swiper Pagination - Fixed at the Bottom of the Slider */
.trending-pagination {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #0a662f !important;
    width: 12px;
    height: 12px;
    margin: 5px !important;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Remove Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}

/* about_us */
/* ======= Modern About Section ======= */
.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    text-align: center;
}
.about-section h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.description {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.feature i {
    font-size: 2rem;
    color: #48b6fe;
}

/* ======= Interactive Image Grid ======= */
.image-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
}
.image-box {
    position: relative;
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.image-box:hover {
    transform: scale(1.05);
}
.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    font-size: 1rem;
    padding: 5px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* ======= Popup Modal (Updated for Smaller Height) ======= */
.image-modal {
    position: fixed;
    top: 50px; /* Adjusted so it doesn't hide navbar */
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.image-modal img {
    max-width: 60%;
    max-height: 60vh; /* Reduced height */
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.3);
    animation: zoomIn 0.3s ease;
}
.image-modal.show {
    opacity: 1;
    visibility: visible;
}
.close-btn {
    position: fixed;
    bottom: 460px; /* Move it down from the navbar */
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    font-size: 28px;
    font-weight: bold;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.close-btn:hover {
    color: red;
}

/* Zoom Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 2.2rem;
    }
    .image-grid {
        flex-direction: column;
        align-items: center;
    }
    .image-box {
        width: 80%;
    }
}

/* gallery */
/* ======= Gallery Section Styling ======= */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}
.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #0a662f;
    margin-bottom: 15px;
}
.gallery-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* ======= Responsive Grid Layout ======= */
/* ======= Gallery Grid Layout ======= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* ======= Gallery Items (All Same Size) ======= */
.gallery-item {
    width: 100%;
    aspect-ratio: 1/1; /* Makes square images */
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container without distortion */
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* ======= Responsive Design ======= */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Special Sizes */
.large {
    grid-column: span 2;
    grid-row: span 2;
}
.medium {
    grid-column: span 1;
    grid-row: span 1;
}
.small {
    grid-column: span 1;
    grid-row: span 1;
}

/* ======= Image Popup Modal Styling ======= */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}
.gallery-modal.show {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}
.gallery-modal img {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.3);
    animation: zoomIn 0.3s ease;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

/* Zoom Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ======= Responsive Media Queries ======= */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .large {
        grid-column: span 1;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* umrah packages */
/* ======= Umrah Section Styling ======= */
.umrah-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.umrah-overlay {
    width: 100%;
    height: 500px;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    padding: 30px;
    max-width: 80%;
    margin: auto;
    border-radius: 10px;
}

.umrah-heading {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.umrah-description {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 700px;
    margin: 15px auto;
    line-height: 1.8;
}

.btn-call {
    background: linear-gradient(45deg, #f5bb24, #0d6efd);
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.btn-call:hover {
    background: linear-gradient(45deg, #0d6efd, #f5bb24);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .umrah-section {
        height: auto;
        padding: 60px 0;
    }
    .umrah-overlay {
        max-width: 95%;
        padding: 30px 20px;
    }

    .umrah-heading {
        font-size: 2.5rem;
    }

    .umrah-description {
        font-size: 1rem;
    }
    .btn-call {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* umrah packages */

/* meet with us */
.team-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #004d26;
}
.section-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 40px;
}
.team-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.team-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}
.team-card h3 {
    font-size: 1.4rem;
    color: #333;
}
.team-card p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
}
.social-icons a {
    color: #004d26;
    font-size: 1.2rem;
    margin: 0 5px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #65c1fd;
}

/* meett */
.testimonial-section {
    text-align: center;
    padding: 80px 0;
    background: #f9f9f9;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0a662f;
    margin-bottom: 10px;
}
.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* testimonial */
/* Testimonial Slider */
.testimonial-section {
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);
    width: 100%;
    height: auto;
    padding: 80px 0;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}
.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}
.testimonial-slider {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}
.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.user-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #0a662f;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.testimonial-card:hover .user-img {
    transform: scale(1.1);
}
.user-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}
.user-role {
    color: #777;
    font-size: 1rem;
    font-style: italic;
}
.testimonial-text {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    font-style: italic;
}
.rating {
    font-size: 1.4rem;
    color: #f4b400;
    margin-top: 5px;
}
.swiper-pagination-bullet {
    background: #f5bb24 !important;
    width: 12px;
    height: 12px;
    margin: 5px !important;
    position: relative;
    top: 10px;
}
.swiper-pagination-bullet-active {
    transform: scale(1.3);
}
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }
    .user-img {
        width: 70px;
        height: 70px;
    }
    .user-name {
        font-size: 1.1rem;
    }
    .user-role {
        font-size: 0.9rem;
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* services */
/* Services Section */
.services-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("/assets/images/services_bg.webp") center/cover no-repeat
        fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Content Container */
.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border-radius: 15px;
    max-width: 90%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-in-out;
}

/* Title & Description */
.services-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.services-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Button */
.services-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(45deg, #f5bb24, #ff6600);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.services-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5);
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .services-section {
        height: auto;
        padding: 60px 0;
    }
    .services-container {
        padding: 25px;
        max-width: 95%;
    }
    .services-title {
        font-size: 2rem;
    }
    .services-description {
        font-size: 1rem;
    }
    .services-button {
        font-size: 1rem;
        padding: 12px 22px;
    }
}

/* services */
/* brand */
.brands-section {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
}
.brands-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.slick-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.slick-track {
    display: flex !important;
    justify-content: center;
}

.brand img {
    width: 170px;
    height: 150px;
    filter: grayscale(100%);
    margin: 0 auto;

    transition: filter 0.3s ease, transform 0.3s ease;
}
.brand img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* international */
/* International Tour Section */
.intern_tour {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.intern_tour-slider {
    padding: 20px;
}

.intern_tour-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px;
}

.intern_tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

.intern_tour-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
}

.intern_tour-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.intern_tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.explore-btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(45deg, #f5bb24, #ffff);
    color: black;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .intern_tour-card {
        padding: 25px;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .intern_tour-card {
        padding: 20px;
        margin: 8px;
    }
    .intern_tour-card h3 {
        font-size: 1.3rem;
    }
    .intern_tour-card p {
        font-size: 0.9rem;
    }
    .explore-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .intern_tour-card {
        padding: 15px;
        margin: 5px;
    }
    .intern_tour-card img {
        height: 180px;
    }
    .intern_tour-card h3 {
        font-size: 1.2rem;
    }
    .intern_tour-card p {
        font-size: 0.85rem;
    }
}
/* newsletter */
/* Newsletter Section */
.newsletter {
    text-align: center;
    padding: 60px 0;
    /* background: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc); */
    color: black;
    border-bottom: 2px solid #48b6fe;
}

.newsletter-box {
    background: #F5BB24;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: auto;
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: black;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.newsletter-input {
    width: 70%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    color: black;
}

.newsletter-input::placeholder {
    color: black;
    opacity: 0.7;
}

.newsletter-input:focus {
    background: white;
    color: black;
}

/* Stylish Button */
.newsletter-btn {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.newsletter-btn i {
    margin-left: 8px;
    transition: 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.7);
}

.newsletter-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-box {
        padding: 35px;
    }

    .newsletter-title {
        font-size: 1.7rem;
    }

    .newsletter-text {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
        padding: 12px;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
}
/* footer */

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-body {
    background: black;
    color: white;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
}

/* Footer Text */
.footer-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}

/* Footer Links */
.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #ffdd57;
}

/* Fixing Email Visibility */
.footer-contact a {
    color: white !important;
    text-decoration: none;
    font-weight: bold;
}

.footer-contact a:hover {
    color: #ffdd57 !important;
}

/* Social Icons */
.footer-socials {
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: white;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #ffdd57;
    transform: scale(1.1);
}

/* Contact Info Icons */
.footer-contact i {
    margin-right: 10px;
    color: #ffdd57;
}

/* Footer Bottom Fix */
.footer-bottom {
    background: #F5BB24;
    color: black;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .footer-bottom {
        font-size: 12px; /* Make text smaller for mobile */
        padding: 12px 10px;
        text-align: center;
    }
}

/* ======= Services Banner Styling services styling start======= */
.services-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.services-banner img {
    width: 100%;
    height: 100vh;
    background-position: center;
    object-fit: cover;
    filter: brightness(0.7);
}

.services-banner .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
}

.services-banner h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-banner p {
    font-size: 18px;
    margin: 0;
}

/* services_hotels_three */
.hotel-booking {
    background: #1a1a2e; /* Dark Elegant Blue */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hotel-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hotel-title span {
    color: #ffe100;
}

.hotel-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

.hotel-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 280px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: scale(1.05);
}

.feature-box i {
    font-size: 40px;
    color: #ffe100;
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 16px;
}

.hotel-btn {
    display: inline-block;
    margin-top: 20px;
    background: #48b6fe;
    color: #333;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.hotel-btn:hover {
    background: #48b6fe;
    color: white;
}
/* summer-vacation */
/* ======= Hero Video Section ======= */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100ch;
    overflow: hidden;
}

.hero-video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

.overlay-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn-explore {
    background: #F5BB24 !important;
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.btn-explore:hover {
    background: linear-gradient(45deg, #0d6efd, #f5bb24);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-video-section {
        height: 50vh;
    }

    .overlay-content h1 {
        font-size: 1.8rem;
    }

    .overlay-content p {
        font-size: 1rem;
    }

    .btn-explore {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* summer_vaction */
.trip-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f9, #cfe0f7);
}

.img-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.img-card:hover {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.trip-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    color: #333;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.trip-title {
    font-size: 28px;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
}

.trip-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.btn-explore {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
    color: #fff;
}

/* summmer_vacation */

/* visa part */
.visa-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9fe, #e0ebf9);
}

.visa-details-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.visa-title {
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
}

.visa-details {
    padding-left: 0; /* Remove default padding */
    margin-top: 10px;
}

.visa-details li {
    display: flex;
    align-items: center;
    gap: 5px; /* Reduce space between icon and text */
    font-size: 16px; /* Adjust font size */
    margin-bottom: 5px; /* Reduce space between list items */
}

/* visa form */
.visa-form-section {
    padding: 60px 15px;
    background: linear-gradient(135deg, #f4f4f4, #e9eef5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
}

.visa-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    color: black;
    position: relative;
}

.visa-form h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff3b3b;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

.visa-form label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.visa-form label::after {
    content: " *";
    color: red;
}

.visa-form input,
.visa-form select,
.visa-form textarea {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 12px;
    width: 100%;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
    background: #f8f9fa;
}

.visa-form input:focus,
.visa-form select:focus,
.visa-form textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(30, 58, 138, 0.2);
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .visa-form {
        padding: 30px;
    }
    .visa-form h2 {
        font-size: 24px;
    }
}

/* package */
.package-section {
    padding: 60px 0;
}

.package-details,
.contact-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}
.package-details h3,
.contact-info h3 {
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
}

.package-details ul {
    padding-left: 0;
    margin: 0;
}

.package-details ul li {
    margin: 0;
    padding: 0;
    line-height: 1.4; /* Adjust for better readability */
}

/* conatact_us */

/* contact us */

/* personal_information */
/* ===== Contact Numbers Section ===== */
.contact-numbers-new {
    background: #111;
    padding: 30px 0;
    border-bottom: 2px solid #48b6fe;
}

.contact-box-new {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-bottom: 2px solid #48b6fe;
}

.contact-box-new:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-icon-new {
    font-size: 1.8rem;
    color: white;
    background: #79c8fb; /* Gold background */
    padding: 15px;
    border-radius: 50%; /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

/* WhatsApp Special Styling */
.whatsapp-new {
    background: rgba(
        0,
        128,
        0,
        0.8
    ) !important; /* Darker green for better visibility */
}

/* WhatsApp Special Styling */
.whatsapp-new .contact-icon-new {
    background: #25d366; /* WhatsApp Green */
    color: white;
}

.contact-box-new h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    flex-grow: 1; /* Allows text to take up available space */
}

.contact-box-new p {
    font-size: 1rem;
    margin: 5px 0 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-box-new {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .contact-icon-new {
        margin-left: 0;
        margin-bottom: 10px;
    }
}
/* whatsapp_floating */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #128c7e;
}
/* tickets_information */

/* Ticketing Information Section */
.ticket-info-section {
    padding: 60px 0;
    background: #f8f9fa; /* Light grey background for contrast */
}

.ticket-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #222;
}

/* Ticket Cards */
.ticket-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.ticket-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
}

.ticket-card-text {
    font-size: 1.1rem;
    margin-top: 15px;
    color: #555;
}

/* Button Styling */
.ticket-btn-secondary {
    background: linear-gradient(45deg, #f5bb24, #0d6efd);
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.ticket-btn-secondary i {
    font-size: 1.2rem;
}

.ticket-btn-secondary:hover {
    background: linear-gradient(45deg, #f5bb24, #0d6efd);
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ticket-card {
        margin-bottom: 20px;
    }

    .ticket-section-title {
        font-size: 2rem;
    }

    .ticket-card-title {
        font-size: 1.6rem;
    }

    .ticket-card-text {
        font-size: 1rem;
    }
}

/* booking */
.bookingWrap {
    background: #f6f7fb;
    padding: 55px 0;
}
.bookingCard {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.bookingHead {
    background: linear-gradient(135deg, #0d6efd, #18a2ff);
    color: #fff;
    padding: 18px 22px;
}
.bookingHead h3 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
}
.bookingBody {
    padding: 22px;
}
.bookingLabel {
    font-weight: 700;
    color: #111827;
    font-size: 13px;
    margin-bottom: 6px;
}
.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px 12px;
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .bookingWrap {
        padding: 40px 0;
    }
    .bookingBody {
        padding: 18px;
    }
    .bookingHead {
        padding: 16px 18px;
    }
    .bookingHead h3 {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .bookingWrap {
        padding: 28px 0;
    }
    .bookingBody {
        padding: 14px;
    }
    .bookingHead {
        padding: 14px 14px;
    }
    .bookingHead h3 {
        font-size: 17px;
    }
    .form-control,
    .form-select {
        padding: 11px 11px;
        font-size: 14px;
    }
    .submitBtn {
        width: 100%;
    }
    textarea.form-control {
        min-height: 120px;
    }
}
