.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the content fills the container without stretching */         /* Full viewport height */
}

.fordes
{
    display: flex;
    justify-content: center; /* Horizontally centers content */
    align-items: center;    /* Vertically centers content */
    height: 100vh; 
}
/* Video-Specific Optimization */
.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Mobile-specific carousel */
@media (max-width: 767px) {
    /* Show only on mobile devices */
    .mobile-carousel {
        display: block;
    }

    /* Carousel images for mobile devices with adjustable height */
    .mobile-carousel-image {
        width: 100%;
        height: auto;
        max-height: 400px;  /* You can adjust this value based on your preference */
        object-fit: cover;  /* This will ensure the image maintains aspect ratio and covers the entire area */
    }

    /* Adjust text size for mobile */
    .mobile-text {
        font-size: 1.5rem;  /* Adjust the font size for better readability on mobile */
        line-height: 1.3;
    }

    /* Smaller headings for mobile */
    .mobile-text h4 {
        font-size: 1.2rem; /* Adjust for smaller headings */
    }

    .mobile-text h1 {
        font-size: 2.5rem; /* Adjust for smaller headings */
    }
}

@media (min-width: 768px) {
    /* Hide the mobile carousel for tablets and desktops */
    .mobile-carousel {
        display: none;
    }
}

/* About Section Styles */

.section-about-title 

h1 {
    color: #102a43;
    font-size: 2.5rem;
    line-height: 1.2;
}

h1 .text-primary {
    color: #007bff;
    font-weight: bold;
}

/* Why Choose Us Section Styles */

.flex {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.card {
    flex: 0 0 24%; /* Each card takes up 1/4 of the row */
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    color: #000;
    text-align: center;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 50%;
    color: inherit;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bg-blue {
    background: linear-gradient(to bottom right, #3b82f6, #60a5fa);
}

.bg-green {
    background: linear-gradient(to bottom right, #10b981, #34d399);
}

.bg-orange {
    background: linear-gradient(to bottom right, #f97316, #fb923c);
}

.bg-purple {
    background: linear-gradient(to bottom right, #8b5cf6, #a78bfa);
}

.pd {
    padding: 30px;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .flex {
        flex-wrap: wrap;
    }
    .card {
        flex: 0 0 calc(50% - 1rem); /* Two cards per row on tablets */
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 100%; /* One card per row on small screens */
    }
}



.custom-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000; /* Tailwind: blue-800 */
  position: relative;
  display: inline-block;
}


.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.tour-card:hover {
    transform: scale(1.03);
}

.tour-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
}

.tour-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 0 0 15px 15px;
    color: #fff;
    text-align: center;
    transition: background 0.4s ease;
}

.tour-overlay h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tour-btn {
    padding: 8px 18px;
    background-color: #FF6600;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.tour-btn:hover {
    background-color: #e25400;
}

.n1 
{
color: #ffffff;
}

/* .bg {
     
    background: linear-gradient(to bottom, #ffffff, rgb(204 204 204 / 67%));

} */

    .testimonial-carousel img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

    .testimonial-item {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 10px;
    }

    .testimonial-content {
        background-color: #fff;
    }

    .testimonial-content p {
        font-size: 15px;
        color: #444;
    }

    .testimonial-img img {
        transition: transform 0.3s ease;
    }

    .testimonial-img:hover img {
        transform: scale(1.05);
    }

    .owl-carousel .owl-item > div {
        margin: 10px;
    }

    .top-rounded-img {
    border-top-left-radius: 6.5px;
    border-top-right-radius: 6.5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}



