:root {
    /* Custom Color Palette */
    --primary-color: #2196F3;       /* Dark Blue */
    --secondary-color: #ecf0f1;     /* Light Gray */
    --accent-color: #e74c3c;        /* Red */
    --background-color: #f5f5f5;    /* Soft Background */
    --text-color: #000;          /* Dark Text */
    --light-text-color: #666666;    /* Lighter Text */
    --max-light: #ffff;
    
    /* Custom Typography */
    --font-primary: 'Urbanist', sans-serif;
    --font-secondary: 'Urbanist', sans-serif;
    
    /* Font Sizes */
    --font-size-base: 1.1rem;
    --font-size-heading: 2rem;
    --font-size-subheading: 1.2rem;
    --font-size-paragraph: 1.1rem;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: var(--font-size-base);
}

/* Custom Styles for Headings */
h1, h2, h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Custom Button Style */
button, .btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: var(--accent-color);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
}

.py-5 {
    padding-top: 4rem!important;
    padding-bottom: 4rem!important;
}

/* Additional Styling for Sections */
.header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/*Header start*/

/* Upper Header Styling */
#upper-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
}

#upper-header .contact-info i {
    margin-right: 5px;
    color: var(--max-light);
}

#upper-header .social-icons a {
    color: var(--secondary-color);
}

#upper-header .contact-info a {
    color: var(--max-light);
}

#upper-header .social-icons a:hover {
    color: var(--accent-color);
}

/* Lower Header Styling */
#lower-header {
    background-color: var(--bs-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#lower-header .navbar-brand img {
    width: 220px !important;
    margin-bottom: -10px;
    margin-top: -10px;
}

#lower-header .navbar-nav .nav-link {
    font-size: 1.2rem;
    margin-right: 4px;
    padding: 8px 16px;
    font-weight: 500;
}

#lower-header .navbar-nav .nav-link:hover {
    color: var(--max-light);
    background-color: var(--primary-color);
    border-radius: 4px;
}

/* Centering the Menu */
#lower-header .navbar-collapse {
    justify-content: center;
}

/* Dropdown Styling */
#lower-header .navbar-nav .dropdown-menu {
    /*background-color: var(--secondary-color);*/
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#lower-header a.dropdown-item {
    font-size: 19px;
    padding: 8px 35px;
}

#lower-header .navbar-nav .dropdown-item {
    color: var(--text-color);
}

#lower-header .navbar-nav .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Book Now Button */
#lower-header .btn-primary {
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: background-color 0.3s;
}

#lower-header .btn-primary:hover {
    background-color: var(--accent-color);
}

@media screen and (max-width: 768px) {
    #upper-header {
        display: none;
    }
}
@media screen and (max-width: 1400px) {
    #lower-header .btn-primary {
        display: none;
    }
}

/*Header Ends*/

/*Footer*/

#site-footer {
	background-color: #333;
	color: var(--max-light);
	padding: 60px 0 15px 0;
	text-align: center;
}

#site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#site-footer .footer-container .footer-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	text-align: left;
}

@media screen and (max-width: 899px) {
    #site-footer .footer-container .footer-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	text-align: left;
}
}
@media screen and (max-width: 768px) {
    #site-footer .footer-container .footer-row {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 20px;
	text-align: left;
}
}

#site-footer .footer-col {
    flex: 1;
    margin: 15px;
}

#site-footer .footer-col h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--max-light);
}

.footer-col p,
.footer-col ul,
.footer-col .contact-info {
    font-size: 0.9em;
    line-height: 1.5;
    color: var(--max-light);
}

#site-footer .footer-col ul {
    list-style: none;
    padding: 0;
}

#site-footer .footer-col ul li {
    margin-bottom: 10px;
}

#site-footer .footer-col ul li a {
    color: var(--max-light);
    text-decoration: none;
}

#site-footer .footer-col ul li a:hover {
    text-decoration: underline;
}

#site-footer .footer-col .contact-info li {
    margin-bottom: 10px;
}

#site-footer .footer-col .social-links {
    display: flex;
    justify-content: space-between;
    max-width: 150px;
}

#site-footer .footer-col .social-links a {
    color: var(--max-light);
    font-size: 1.2em;
}

#site-footer .footer-col .social-links a:hover {
    color: var(--accent-color); /* Use your site's primary color */
}

#site-footer .footer-logo {
    max-width: 210px;
    margin-bottom: 15px;
    background-color: var(--max-light);
    border-radius: 10px;
    padding: 5px;
}

#site-footer .footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.9em;
    color: var(--max-light);
}

#site-footer .footer-bottom p {
    padding: 10px;
    margin: 0;
}


/*footer ends*/

/*hero kens burgs image slider*/

  .swiper-container {
    width: 100%;
    height: 400px;
  }
  
  .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Ken Burns effect on images */
  .ken-burns-effect {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 15s linear infinite;
  }

  @keyframes kenBurns {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.3); }
  }

/*hero video section*/

/* Video Section Styling */
#video-section {
    position: relative;
    height: 550px; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Video */
#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    opacity: 0.8; /* Slight opacity to allow overlay visibility */
}

/* Overlay to darken the video */
#video-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark transparent overlay */
    z-index: 2;
}

/* Centered Content */
#video-section .video-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 20px;
}

#video-section .video-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--max-light);
}

#video-section .video-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}


/*hero video section ends*/

/* Hero Section Styling */
#hero {
    height: 100%;
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    height: 100%;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
}

/*Mobile view start*/

@media screen and (max-width: 768px){
    #hero {
    height: 170px;
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    height: 170px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
}
#header-search-input {
    display: none;
}
#lower-header .navbar-brand img {
    width: 150px !important;
    margin-bottom: -8px;
    margin-top: -8px;
}
#customSearchSection {
    background-color: var(--max-light)!important;
    /* border-radius: 10px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    transition: all 0.3s ease;
}
#customSearchSection h2 {
    color: var(--primary-color) !important;
}
#customSearchSection .my-5 {
    margin-top: 1rem!important;
    margin-bottom: 0rem!important;
}
}

/*Mobile view ends*/

#heroCarousel .carousel-item img {
    object-fit: cover;
    height: 100%;
}

#heroCarousel .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    text-align: center;
    z-index: 2;
    background-color: rgb(0 0 0 / 56%);
    padding: 20px;
    border-radius: 10px;
}

.hero-heading {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    margin-bottom: 10px;
    color: #fff;
}

.hero-subheading {
    font-size: 1.2rem;
    font-family: var(--font-secondary);
    margin-bottom: 20px;
}

#heroCarousel .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: var(--accent-color);
    border: none;
}

#heroCarousel .btn-primary:hover {
    background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .hero-heading {
        font-size: 1.8rem;
    }
    .hero-subheading {
        font-size: 1rem;
    }
}
#heroCarousel button {
    background-color: #e74c3c05;
}

/*aboutus section*/

#about-us {
    background-color: var(--max-light);
    color: var(--text-color);
}

#about-us .section-title {
    font-size: var(--font-size-heading);
    font-family: var(--font-primary);
    color: var(--primary-color);
}

#about-us .lead {
    font-size: var(--font-size-subheading);
    color: var(--light-text-color);
}

#about-us img {
    border-radius: 8px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

#about-us .btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    font-size: var(--font-size-base);
    transition: background-color 0.3s ease;
}

#about-us .btn-primary:hover {
    background-color: var(--accent-color);
}

/* Why Choose Us Section Styles */


/* Section Title and Lead Text */
#why-choose-us .section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-heading);
    color: var(--primary-color);
}

#why-choose-us .lead {
    font-size: var(--font-size-paragraph);
    color: var(--light-text-color);
}

/* Equal Box Size with Flex */
.why-us-item {
    background-color: var(--max-light);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ensures equal height */
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box Shadow */
    position: relative;
}

.why-us-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow on Hover */
    transform: translateY(-5px); /* Lift on hover */
}

/* Icon Style with Hover Effect */
.why-us-item i {
    color: var(--primary-color); /* Primary color for icons */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-us-item:hover i {
    color: var(--accent-color); /* Change color on hover */
}

.why-us-item h4 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-subheading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-us-item p {
    font-size: var(--font-size-paragraph);
    color: var(--light-text-color);
    text-align: center;
}

/* Transparent Overlay */
#why-choose-us .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.1); /* Light transparent blue */
    z-index: 1;
}

/* Ensuring Equal Size for All Sections */
.why-us-item {
    min-height: 230px; /* Ensures all sections maintain the same height */
}

/* Responsive for Smaller Screens */
@media (max-width: 768px) {
    .why-us-item {
        min-height: 280px; /* Adjust for smaller screens */
    }
}

/*Dynamisc Tour Packges*/

#tour-packages {
    padding: 50px 0;
    background-color: var(--background-color);
}

#tour-packages h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.package-slider {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    padding: 20px;
}

.package-item {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 300px;
    text-align: center;
}

.package-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.package-item h3 {
    margin: 15px 0 10px;
    color: var(--primary-color);
}

.package-item p {
    color: var(--light-text-color);
    margin-bottom: 15px;
}

.package-item .btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.package-item .btn:hover {
    background-color: var(--accent-color);
}

/*home page tour style*/

#featured-tour-packages {
    padding: 50px 0;
    background-color: var(--background-color);
}

#featured-tour-packages h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.package-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.package-item {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.package-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.package-item h5 {
    margin: 15px 0 10px;
    color: var(--primary-color);
}

.package-item p {
    color: var(--light-text-color);
    margin-bottom: 15px;
}

.package-item .btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.package-item .btn:hover {
    background-color: var(--accent-color);
}

#featured-tour-packages .btn {
    display: block;
    text-align: center;
    margin: 40px auto;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
}

#featured-tour-packages .btn:hover {
    background-color: var(--accent-color);
}

/*Admin Panel*/

.admin-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

form {
    margin-bottom: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

form button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: var(--accent-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
}

table th {
    background-color: var(--primary-color);
    color: white;
}

table td a.btn {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
}

table td a.btn:hover {
    background-color: var(--primary-color);
}

/*tour packages*/

#tour-packages .tour-packages-page .card-title {
    color: var(--primary-color);
}

#tour-packages .tour-packages-page .card:hover {
    transform: scale(1.05);
}

/* Ensure all package cards have the same height */
#tour-packages .tour-packages-page .card {
    height: 100%; /* Make card height flexible */
    display: flex;
    flex-direction: column; /* Align items vertically */
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Ensure card body takes available space */
#tour-packages .tour-packages-page .card-body {
    flex: 1; /* Allow the body to grow and fill the card */
}

/* Optional: Add some margin between the cards */
#tour-packages .tour-packages-page .package-item {
    margin-bottom: 20px; /* Adjust spacing as needed */
}

@media (max-width: 999px) {
    #tour-packages .tour-packages-page .col-md-4, #search-results .col-md-4, #location-packages .col-md-4 {
    flex: 0 0 auto;
    width: 50%;
}
}

@media (max-width: 768px) {
    #tour-packages .tour-packages-page .col-md-4, #search-results .col-md-4, #location-packages .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
}}

#tour-packages .tour-packages-page .card-img-top {
    min-height: 220px;
    object-fit: cover;
    max-height: 150px;
}

/*FAQ home page*/

/* FAQ Section Styling */
#faq {
    background-color: var(--max-light);
    padding: 60px 0;
}

#faq h2 {
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: var(--font-size-heading);
    text-align: center;
}

.accordion-item {
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

.accordion-button {
    font-family: var(--font-secondary);
    font-size: var(--font-size-subheading);
    color: var(--text-color);
    background-color: var(--secondary-color);
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-family: var(--font-primary);
    font-size: var(--font-size-paragraph);
    color: var(--light-text-color);
    background-color: var(--max-light);
    padding: 20px;
    line-height: 1.7;
    border-top: 1px solid var(--secondary-color);
}

/* Adjust padding and margins for small screens */
@media (max-width: 768px) {
    #faq {
        padding: 40px 0;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 15px;
    }

    .accordion-body {
        font-size: 0.85rem;
        padding: 15px;
    }
}

/*about us page*/

/* Page Header with Full-Width Image, Overlay, and Centered Title */
.page-header {
    position: relative;
    width: 100%;
    height: 340px; /* Adjust height as needed */
    overflow: hidden;
}

.page-header .header-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-header .header-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure the image covers the whole area */
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
}

.page-header .page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--max-light);
    text-align: center;
    z-index: 1; /* Ensure it appears on top of the overlay */
    width: 80%;
}

.page-header .page-title h1 {
    font-size: var(--font-size-heading);
    margin-bottom: 15px;
    color: var(--max-light);
}

.page-header .breadcrumb {
    justify-content: center;
    background: none;
    padding: 0;
    font-size: var(--font-size-paragraph);
}

.page-header .breadcrumb-item a {
    color: var(--max-light);
}

.page-header .breadcrumb-item.active {
    color: var(--secondary-color);
}

/*contact us page*/

#contact-info {
    background-color: var(--max-light);
}

.contact-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    background-color: var(--max-light); 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#contact-info .contact-card i {
    color: var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

@media (max-width: 768px) {
    #contact-info .col-md-4 {
    margin-bottom: 20px;
}
}



#contact-form h2, #google-map h2 {
    margin-bottom: 20px;
}

/*.map-responsive {*/
/*    overflow: hidden;*/
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
/*    position: relative;*/
/*}*/

/*.map-responsive iframe {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

#contact-form .commitment-text {
    /*max-width: 500px;*/
    margin: 0 auto;
    /*font-size: 16px;*/
    /*line-height: 1.6;*/
}

#contact-form .commitment-text h2 {
    /*font-size: 28px;*/
    margin-bottom: 15px;
}

#contact-form .commitment-text p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    #contact-form .commitment-text {
        max-width: 100%;
    }
}

/*deals section*/

#deals-section {
    background-image: url("https://allindiaishwarholiday.com/assets/images/holiday-bg-img.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Fixed background */
    position: relative;
    z-index: 1;
    color: #fff;
}

#deals-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 38%); /* Semi-transparent dark overlay */
    z-index: 2;
}

#deals-section .container {
    position: relative;
    z-index: 3;
}

#deals-section h2, #deals-section p {
    color: #fff;
}

#deals-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

#deals-section .card:hover {
    transform: scale(1.05);
}

#deals-section .card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

#deals-section .card:hover img {
    transform: scale(1.1);
}

#deals-section .card-body {
    background-color: var(--primary-color); 
    padding: 20px;
    text-align: left;
    color: #fff;
    border-radius: 0 0 15px 15px;
}

#deals-section .card-title {
    font-size: 20px;
    margin-bottom: 0;
}

#deals-section .card-text {
    font-size: 16px;
}

@media (max-width: 768px) {
    #deals-section .card img {
        height: 200px;
    }
}

/*testimonials*/

#testimonials {
    background-color: var(--max-light);
}

/*#testimonials h2, #testimonials p {*/
/*    color: var(--max-light);*/
/*}*/
#testimonials img {
    max-width: 70%; 
    height: auto;
}

#testimonials .swiper {
    padding: 20px 8px;
}

#testimonials .testimonial-card {
    background-color: var(--max-light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 26%);
    text-align: center;
}

#testimonials .customer-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

#testimonials .customer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

#testimonials .rating span {
    font-size: 20px;
    color: #ffd700;
}

#testimonials .customer-review {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.swiper-pagination {
    margin-top: 20px;
}


/*Packages template*/

.package-header {
    margin-bottom: 30px;
}

.package-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    max-height: 350px !important;
}

.package-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.package-details h2, .package-details h3 {
    color: #007bff;
    margin-top: 20px;
}

.package-details p, .package-details ul {
    font-size: 1rem;
    line-height: 1.6;
}

.package-details ul {
    list-style-type: disc;
    padding-left: 20px;
}

.packages-day-ite-icon {
    color: var(--primary-color);
    padding: 5px 7px;
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    margin-left: -38px;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .package-header h1 {
        font-size: 2rem;
    }

    .package-details {
        padding: 15px;
    }

    .package-details p, .package-details ul {
        font-size: 0.9rem;
    }
}

.packges-bottom-section {
    background-color: var(--max-light);
    padding: 30px 20px;
    margin-bottom: 60px;
}

/*footer fixed iocns*/

/* Fixed Side Icons */
#site-footer .fixed-icons {
    position: fixed;
    right: 10px;
    bottom: 40%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#site-footer .fixed-icons a {
    margin: 10px 0;
    background-color: var(--primary-color);
    color: var(--max-ligth);
    padding: 6px 10px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    transition: background-color 0.3s ease;
    border: 2px solid var(--max-light);
}   

#site-footer .fixed-icons .phone-icon {
    background-color: blue;
}
#site-footer .fixed-icons .whatsapp-icon {
    background-color: #25D366;
}
#site-footer .fixed-icons .mail-icon {
    background-color: #ad0000;
}

#site-footer .fixed-icons a:hover {
    background-color: var(--accent-color);
}

/* Popup Form Styles */
#site-footer .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#site-footer .form-content {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    margin: 0 10px;
}

#site-footer .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: var(--primary-color);
}

#site-footer .popup-form form input,
#site-footer .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#site-footer .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px
}

/*Search bar*/

.location-search-link {
    color: #007bff; /* Custom color for the link */
    font-weight: bold;
}

.location-search-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/*menu search bar*/

/* Search bar container */
.search-bar {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

#search-bar-input {
    width: 200px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    z-index: 1000;
    display: none;
}

.search-result-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.search-result-item:hover {
    background: #f0f0f0;
}

.search-no-result {
    padding: 10px;
    color: #999;
}


/* Header search bar container */
.header-search-bar {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

#header-search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.header-search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    z-index: 1000;
    display: none;
}

.header-search-result-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.header-search-result-item:hover {
    background: #f0f0f0;
}

.header-search-no-result {
    padding: 10px;
    color: #999;
}

/*Custom Search section */

/* Custom Search Bar Styles */
#customSearchSection {
    background-color: var(--accent-color);
    /*border-radius: 10px;*/
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/*#customSearchSection:hover {*/
/*    transform: translateY(-5px); */
/*    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);*/
/*}*/

#customSearchSection h2 {
    color: var(--max-light); /* Primary color for headings */
}

#searchQuery,
#searchLocation {
    border-radius: 5px;
    border: 1px solid #007bff; /* Primary color border */
    transition: border-color 0.3s;
}

#searchQuery:focus,
#searchLocation:focus {
    border-color: #0056b3; /* Darker border on focus */
    box-shadow: 0 0 5px rgba(0, 91, 187, 0.5); /* Light shadow on focus */
}

#searchDays {
    border-radius: 5px;
    border: 1px solid #007bff; /* Primary color border */
    transition: border-color 0.3s;
}

#searchDays:focus {
    border-color: #0056b3; /* Darker border on focus */
}

#searchButton {
    background-color: #007bff; /* Button primary color */
    border-color: #007bff;
    transition: background-color 0.3s, border-color 0.3s;
    width: 100%;
    padding: 6px;
}

#searchButton:hover {
    background-color: #0056b3; /* Darker color on hover */
    border-color: #0056b3;
}


/* Fixed WhatsApp Icon Styling */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    background-color: #25D366; /* WhatsApp green color */
    color: #ffffff; /* Icon color */
    font-size: 24px; /* Icon size */
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-fixed i {
    font-size: 45px;
}

.whatsapp-fixed:hover {
    background-color: #20b957; 
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-fixed i {
    margin: 0; /* Remove any margin around the icon */
}

.full-height-card {
    height: 100%;
}

/*Tempo Traveller Gallery*/
#tempo-traveller-gallery .clickable-image {
    cursor: pointer;
    height: 235px;
    object-fit: cover;
}





