
    @media (max-width: 768px) {
        .category-item {
            min-width: 160px;
        }
        
        .category-image {
            height: 160px;
        }
        
        .category-item h3 {
            font-size: 14px;
            padding: 10px;
        }
    }






.top-bar {
    background-color: #008c95;
    color: white;
    font-size: 14px;
    padding: 5px 20px;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar .social-icons a {
    color: white;
    margin-left: 15px; 
    font-size: 18px;
    transition: color 0.3s;
}

.top-bar .social-icons a:hover {
    color: #ffcc00;
}

.cart-icon {
    color: white;
    font-size: 18px;
    margin-left: 15px;
}

/* Navbar Styling */
.navbar {
    background-color: white;
    padding: 10px 20px;
}

.nav-link {
    color: #3f3f46 !important;
    /* Zinc color */
    font-weight: bold;
    margin-right: 15px;
}

.nav-link:hover {
    border-bottom: 2px solid #3f3f46;
}

.navbar-nav .nav-link {
font-size: 14px;
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        width: 100%;
        text-align: center;
    }
}

.search-bar input {
    padding: 5px 10px;
    border: none;
    border-radius: 20px;
    outline: none;
    width: 200px;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #333;
    cursor: pointer;
}

.cart-icon,
.social-icons a {
    color: white;
    font-size: 18px;
    margin-left: 15px;
}

@media (max-width: 768px) {
    /* Main container */
    .top-bar {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    /* Center align the contact info section */
    .top-bar .contact-info {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
    }
    
    /* Center each line (email and phone) */
    .top-bar .contact-info span {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 5px;
        white-space: nowrap;
    }
    
    /* Style icons */
    .top-bar .contact-info i {
        margin-right: 5px;
    }
    
    /* Hide the WhatsApp text but keep icon */
    .top-bar .contact-info span:nth-child(3) {
        display: none;
    }
    
    /* Add WhatsApp icon next to phone number */
    .top-bar .contact-info span:nth-child(2) i.fab.fa-whatsapp {
        display: inline-block;
        margin-left: 5px;
    }
    
   /* Search box - smaller size */
.search-box {
    max-width: 90px;
    padding: 2px;
    font-size: 13px;
    margin-left: 10px; /* Search box se pehle space add karega */
}

    
    /* Social icons and cart in separate row */
    .top-bar > .d-flex {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    
    /* Space between icons */
    .social-icons {
        display: flex;
        justify-content: center;
        margin-right: 15px;
    }
    
    .social-icons a {
        margin: 0 8px;
    }
    
    /* Cart position */
    .cart-icon {
        margin-left: 10px;
    }
}


/* Carousel Image Styling */
.carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

/* Service Section Styling */
.services {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: #f8f8f8;
}

.service-card {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 0 10px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-menu {
    background-color: #00a4b6;
    border: none;
}

.dropdown-item {
    color: white;
    font-weight: bold;
}

.dropdown-item:hover {
    background-color: #008c95;
}

/* Background container styling */
.background-container {
position: relative;
width: 100%;
height: 400px; /* Adjust height as needed */
overflow: hidden;
}

.background-image {
width: 100%;
height: 100%;
object-fit: cover;
}


/* Carousel container */
#carouselExample {
    position: relative;
    width: 100%;
    height: 700px; /* Fixed height container */
    overflow: hidden;
}

/* Image handling - covers entire area while maintaining aspect ratio */
.carousel-item {
    position: relative;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will fill the container while maintaining aspect ratio */
    object-position: center; /* Centers the image */
}

/* Dark overlay on images */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 99, 99, 0.3); /* Transparent black overlay (30% opacity) */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Content styling - further left aligned */
.carousel-content {
    color: white;
    text-align: left;
    max-width: 800px;
    padding: 0 20px;
    margin-left: 5%; /* Reduced margin from left edge (percentage for responsiveness) */
}

.carousel-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Button container - also left aligned */
.carousel-buttons {
    margin-top: 20px;
    text-align: left;
}
.btn {
    padding: 10px 25px;
    margin: 0 10px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-primary {
    background-color: #008B8B; /* Red button like in your reference */
    border-color: #008B8B;
}

.btn-outline-light {
    color: white;
    border-color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-content h1 {
        font-size: 1.8rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 8px 20px;
    }
}

.popular-tours {
    padding: 20px 0 50px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

.section-title {
    color: #008B8B;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    align-items: stretch;
}

.tour-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-image {
    position: relative;
    width: 100%;
    height: 200px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-content {
    padding: 15px;
}

.tour-content h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.tour-metadata {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.tour-metadata i {
    color: #008B8B;
    margin-right: 4px;
}

.tour-rating {
    margin-bottom: 8px;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.tour-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #008B8B;
    font-weight: 600;
    font-size: 1.1rem;
}

.book-now {
    background: #008B8B;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
}

.book-now:hover {
    background: #006666;
}

@media (max-width: 768px) {
    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 !important;
        margin: 0 !important;
    }
}

.view-all-btn {
    display: inline-block;
    background-color: #008B8B;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.view-all-container {
    text-align: center;
    margin: 20px 0;
    position: relative;
    z-index: 1; /* Ensure it's not covered by other elements */
}

@media (max-width: 768px) {
    .view-all-container {
        margin: 30px 0 !important; /* Adjust the container margin on mobile */
    }
    
    .view-all-btn {
        padding: 12px 25px !important; /* Increase padding for better touch target */
        font-size: 1.1rem !important; /* Slightly larger text for better readability */
    }
}


   
.content-container {
    max-width: 1100px;
    margin: auto;
    padding-top: 40px;
}
h2 {
    color: #008B8B;
    font-weight: bold;
}
h4, strong {
    font-weight: bold;
}
p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
.highlight {
    color: #008B8B;
    font-weight: bold;
}



.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-prev {
    left: -18px; /* Moved closer to edge */
}

.nav-next {
    right: -18px; /* Moved closer to edge */
}



.faq-title {
    
    margin-bottom: 40px;
    color: #008B8B;
}

.faq-container {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    padding-left: 70px; /* Make space for the number box */
    overflow: hidden;
}

.number-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(135deg, #3498db, #008B8B);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.icon {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 15px 20px;
    line-height: 1.6;
    color: #666;
}

.faq-item:hover .faq-question {
    background-color: #f0f0f0;
}

/* When clicked/active */
.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.feedback-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
    font-size: 24px;
    color: #f1c40f;
}

footer {
    background-color: #000;
    color: #008B8B; /* Gold color like in the image */
    padding: 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main footer content styling */
.footer-main {
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #f8f3f3;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
    margin-bottom: 30px;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    color: #008B8B; /* Gold color for headings */
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
}

/* Styling for lists */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #f8f8f8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: block;
    padding: 3px 0;
}

.footer-section ul li a:hover {
    color: #008B8B; /* Gold color on hover */
}

/* About section styling */
.about-text {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.traveler-choice {
    max-width: 80px;
    height: auto;
}

/* Footer bottom styling */
.footer-bottom {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom-left, .footer-bottom-right {
    margin: 5px 0;
}

.footer-bottom a {
    color: #141412; /* Gold color for links */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
        margin-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        margin-top: 10px;
    }
}

/* Adding small arrow icons before links like in the image */
.footer-section ul li a:before {
    content: "›";
    margin-right: 8px;
    color: #008B8B;
}

/* Logo and brand styling */
.footer-logo {
    margin-bottom: 15px;
}

.footer-brand {
    color: #008B8B;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 15px 0;
}

/* Contact info styling */
.contact-info .footer-bottom{
    color: #f8f8f8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info i .footer-bottom {
    color: #008B8B;
    width: 20px;
    margin-right: 10px;
}

.contact-info a {
    color: #f8f8f8;
    text-decoration: none;
}

.contact-info a:hover {
    color: #008B8B;
}

/* Social icons styling */
.social-icons  {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: #f8f8f8;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #008B8B;
}

/* Google map styling */
.map-container {
    width: 100%;
}

.google-map {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.view-map-btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-map-btn:hover {
    background-color: #f0f0f0;
}

/* Charter now button */
.charter-btn {
    display: inline-block;
    border: 1px solid #080808;
    color: #111111;
    background-color: transparent;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.charter-btn:hover {
    background-color: #4d6b86;
    color: #000;
}



.about-text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
}

.payment-methods {
    display: flex;
    margin-top: 20px;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    margin-right: 10px;
}

.traveler-choice {
    height: 50px;
    margin-top: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #030303;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-logo {
    height: 40px;
    margin-right: 20px;
}

.chat-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00c853;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.chat-bubble i {
    color: white;
    font-size: 24px;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.we-are-here {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 120px;
    height: auto;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px; /* Increased spacing between sections */
        padding-bottom: 20px; /* Additional padding at bottom */
        border-bottom: 1px solid #f7f7f7; /* Optional divider between sections */
    }
    
    /* Remove border from last section */
    .footer-section:last-child {
        border-bottom: none;
    }
    
    /* Specific spacing for Activities section */
    .footer-section:nth-child(2) {
        margin-top: 30px; /* Add space before Activities */
    }
    
    /* Specific spacing for Get in Touch section */
    .footer-section:nth-child(3) {
        margin-top: 30px; /* Add space before Get in Touch */
    }
    
    /* Specific spacing for Map section */
    .footer-section:nth-child(4) {
        margin-top: 30px; /* Add space before Map */
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        margin-top: 15px;
    }
    
    /* Add extra padding to the footer container for mobile */
    .footer-container {
        padding: 20px 15px;
    }
    
    /* Ensure section headings have space */
    .footer-section h3 {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Reset other elements but keep the body margins */
    body * {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}
