
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.topbar {
    background: linear-gradient(90deg, #02703F 0%, #C41B05 100%); /* Gradient with logo colors */
    padding: 8px 20px;
    transition: background 0.3s ease;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar a,
.topbar a i {
    color: #f5f5f5;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.topbar a:hover,
.topbar a i:hover {
    color: #C4996C; /* Accent logo color */
    transform: translateY(-2px);
}

.topbar .btn-sm-square {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #C4996C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.topbar .btn-sm-square:hover {
    background-color: #C4996C;
    transform: scale(1.1);
}

.topbar .btn-sm-square i {
    color: white;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .topbar {
        display: none; /* Maintain existing behavior */
    }
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar-light {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: background 0.5s ease, padding 0.3s ease;
}

.navbar-light.sticky-top {
    position: fixed;
    background: var(--bs-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: max-height 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    filter: brightness(1.2);
    opacity: 1;
}

.navbar-light.sticky-top .navbar-brand img {
    max-height: 60px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-light .navbar-nav {
    flex-wrap: nowrap; /* Prevent wrapping */
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* Reduced from 1.2rem */
    font-weight: 600;
    color: var(--bs-white) !important;
    padding: 35px 10px; /* Reduced horizontal padding from 20px to 10px */
    text-transform: uppercase;
    letter-spacing: 1px; /* Reduced from 2px */
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap; /* Prevent text wrapping */
}

.navbar-light.sticky-top .navbar-nav .nav-link {
    color: #1A3C34 !important;
    padding: 20px 10px; /* Reduced horizontal padding */
    text-shadow: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 10px; /* Adjusted to match reduced padding */
    background: var(--bs-secondary);
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: calc(100% - 20px); /* Adjusted to match reduced padding */
}

.navbar-light .btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* Reduced from 1.1rem */
    font-weight: 600;
    padding: 8px 20px; /* Reduced padding from 10px 30px */
    border-radius: 50px;
    background-color: var(--bs-primary);
    border: 2px solid var(--bs-secondary);
    color: var(--bs-white);
    text-transform: uppercase;
    letter-spacing: 1px; /* Reduced from 2px */
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    margin-left: 10px; /* Reduced from ms-lg-4 (24px) */
}

.navbar-light .btn:hover {
    background-color: var(--bs-dark);
    border-color: var(--bs-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.navbar-light .navbar-toggler {
    border: 2px solid var(--bs-primary);
    background: transparent;
    padding: 8px;
}

.navbar-light .navbar-toggler span {
    color: var(--bs-primary);
    font-size: 1.5rem;
}

.navbar-light .dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-white);
    margin-left: 8px;
    transition: color 0.3s ease;
}

.navbar-light.sticky-top .dropdown-toggle::after {
    color: var(--bs-dark);
}

.navbar-light .nav-item .dropdown-menu {
    background: var(--bs-light);
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.navbar-light .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-light .dropdown-menu a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: var(--bs-dark);
    padding: 10px 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar-light .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 1200px) {
    .navbar-light .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
    }

    .navbar-light .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .navbar-light {
        background: var(--bs-light);
        position: relative;
    }

    .navbar-light .navbar-nav {
        flex-direction: column; /* Stack items vertically in collapsed state */
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light.sticky-top .navbar-nav .nav-link {
        color: #1A3C34 !important;
        padding: 10px 20px; /* Adjusted for mobile */
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid rgba(2, 112, 63, 0.2);
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }

    .navbar-light .btn {
        margin: 10px 20px;
        width: fit-content;
    }

    .navbar-light .nav-item .dropdown-menu {
        background: transparent;
        box-shadow: none;
    }

    .navbar-light .dropdown-menu a {
        color: var(--bs-dark);
    }
}

@media (min-width: 992px) {
    .navbar-light {
        border-bottom: none;
    }

    .navbar-light.sticky-top {
        background: var(--bs-light);
    }
}
/*** Navbar End ***/


/*** General Styles ***/
:root {
    --bs-primary: #C41B05; /* Logo red */
    --bs-secondary: #C4996C; /* Logo gold */
    --bs-dark: #02703F; /* Logo green */
    --bs-light: #f5f5f5; /* Light background */
    --bs-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bs-light);
    color: var(--bs-dark);
    line-height: 1.6;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
    background: rgba(2, 112, 63, 0.9); /* Green overlay */
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-border {
    border-color: var(--bs-secondary);
    border-right-color: transparent;
}
/*** Spinner End ***/

/*** Back to Top Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    border: 2px solid var(--bs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 99;
    opacity: 0.7;
}

.back-to-top:hover {
    background: var(--bs-dark);
    transform: translateY(-5px);
    opacity: 1;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    color: var(--bs-white);
    font-size: 1.2rem;
}
/*** Back to Top End ***/

/*** Button Start ***/
.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 12px 30px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-square { width: 32px; height: 32px; }
.btn-sm-square { width: 36px; height: 36px; }
.btn-md-square { width: 44px; height: 44px; }
.btn-lg-square { width: 56px; height: 56px; }

.btn-primary {
    background: var(--bs-primary);
    border: 2px solid var(--bs-secondary);
    color: var(--bs-white);
}

.btn-primary:hover {
    background: var(--bs-dark);
    border-color: var(--bs-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    color: var(--bs-dark);
}

.btn-light:hover {
    background: var(--bs-primary);
    border-color: var(--bs-white);
    color: var(--bs-white);
    transform: translateY(-3px);
}

.btn-hover {
    transition: color 0.3s ease;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}
/*** Button End ***/

/*** Section Title Start ***/
.section-title {
    font-family: 'Jolly Lodger', cursive, sans-serif !important;
	font-size: 2.6rem;
    font-weight: 200;
    color: transparent;
    color: var(--bs-primary);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::before,
.section-title::after {
    content: "";
    width: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px solid var(--bs-secondary);
    transition: width 0.3s ease;
}

.section-title::before {
    right: 0;
    margin-right: -70px;
}

.section-title::after {
    left: 0;
    margin-left: -70px;
}

.section-title:hover::before,
.section-title:hover::after {
    width: 80px;
}
/*** Section Title End ***/

/*** Topbar Start ***/
.topbar {
    background: linear-gradient(90deg, var(--bs-dark) 0%, var(--bs-primary) 100%);
    padding: 8px 20px;
    transition: background 0.3s ease;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar a,
.topbar a i {
    color: var(--bs-white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary);
    transform: translateY(-2px);
}

.topbar .btn-sm-square {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--bs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.topbar .btn-sm-square:hover {
    background-color: var(--bs-secondary);
    transform: scale(1.1);
}

.topbar .btn-sm-square i {
    color: var(--bs-white);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar-light {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: background 0.5s ease, padding 0.3s ease;
}

.navbar-light.sticky-top {
    position: fixed;
    background: var(--bs-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: max-height 0.3s ease;
}

.navbar-light.sticky-top .navbar-brand img {
    max-height: 60px;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bs-white) !important;
    padding: 35px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-light.sticky-top .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
    padding: 20px 20px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 20px;
    background: var(--bs-secondary);
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

.navbar-light .btn {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    background-color: var(--bs-primary);
    border: 2px solid var(--bs-secondary);
    color: var(--bs-white);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-light .btn:hover {
    background-color: var(--bs-dark);
    border-color: var(--bs-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.navbar-light .navbar-toggler {
    border: 2px solid var(--bs-primary);
    background: transparent;
    padding: 8px;
}

.navbar-light .navbar-toggler span {
    color: var(--bs-primary);
    font-size: 1.5rem;
}

.navbar-light .dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-white);
    margin-left: 8px;
    transition: color 0.3s ease;
}

.navbar-light.sticky-top .dropdown-toggle::after {
    color: var(--bs-dark);
}

.navbar-light .nav-item .dropdown-menu {
    background: var(--bs-light);
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.navbar-light .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-light .dropdown-menu a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: var(--bs-dark);
    padding: 10px 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar-light .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 1200px) {
    .navbar-light .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
    }

    .navbar-light .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .navbar-light {
        background: var(--bs-light);
        position: relative;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light.sticky-top .navbar-nav .nav-link {
        color: var(--bs-dark) !important;
        padding: 15px 20px;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid rgba(2, 112, 63, 0.2);
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
    }

    .navbar-light .btn {
        margin: 10px 20px;
        width: fit-content;
    }

    .navbar-light .nav-item .dropdown-menu {
        background: transparent;
        box-shadow: none;
    }

    .navbar-light .dropdown-menu a {
        color: var(--bs-dark);
    }
}

@media (min-width: 992px) {
    .navbar-light {
        border-bottom: none;
    }

    .navbar-light.sticky-top {
        background: var(--bs-light);
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-header .carousel-control-prev:hover,
.carousel-header .carousel-control-next:hover {
    opacity: 1;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    background-color: var(--bs-primary);
    background-size: 50% 50%;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel-header .carousel-control-next .carousel-control-next-icon:hover {
    background-color: var(--bs-dark);
}

.carousel-header .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-header .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-header .carousel-indicators li.active {
    width: 30px;
    border-radius: 20px;
    background-color: var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.carousel-header .carousel-inner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.carousel-header .carousel-inner .carousel-item.active img {
    transform: scale(1.1);
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(2, 112, 63, 0.7) 0%, rgba(196, 27, 5, 0.7) 100%);
    padding: 60px 20px;
    transition: background 0.5s ease;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption h4 {
    font-family: 'Arizonia', cursive;
    font-size: 1.8rem;
    color: var(--bs-secondary);
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption h1 {
    font-family: 'Jost', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--bs-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption .btn {
    font-size: 1.1rem;
    padding: 14px 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 600px;
    }

    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 600px;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption h4 {
        font-size: 1.2rem;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-header .carousel-indicators li {
        width: 10px;
        height: 10px;
    }

    .carousel-header .carousel-indicators li.active {
        width: 20px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(2, 112, 63, 0.7), rgba(196, 27, 5, 0.7)), url(../img/breadcrumb-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0 60px;
}

.bg-breadcrumb .breadcrumb-item a {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--bs-secondary) !important;
    transition: color 0.3s ease;
}

.bg-breadcrumb .breadcrumb-item a:hover {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .section-about-title {
    font-family: 'Arizonia', cursive;
    font-size: 1.8rem;
    color: var(--bs-primary);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about .section-about-title::before {
    content: "";
    width: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -70px;
    border-top: 2px solid var(--bs-secondary);
}

.about .about-content {
    padding: 30px;
    background: var(--bs-white);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about .about-content:hover {
    transform: translateY(-10px);
}

.about .about-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    color: var(--bs-dark);
    margin-bottom: 1.5rem;
}

.about .about-content p {
    font-size: 1.1rem;
    color: #555;
}

.about .about-img img {
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.about .about-img:hover img {
    transform: scale(1.05);
}
/*** About End ***/

/*** Services Start ***/
.service .service-content-inner {
    background: var(--bs-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service .service-content-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: var(--bs-primary);
}

.service .service-content-inner .service-icon i {
    font-size: 2.5rem;
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white);
}

.service .service-content-inner h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-dark);
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.service .service-content-inner:hover h5 {
    color: var(--bs-white);
}

.service .service-content-inner p {
    font-size: 1rem;
    color: #555;
    transition: color 0.3s ease;
}

.service .service-content-inner:hover p {
    color: var(--bs-white);
}
/*** Service End ***/

/*** Destination Start ***/
.destination .tab-class .nav-item a {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: var(--bs-dark);
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.destination .tab-class .nav-item a.active,
.destination .tab-class .nav-item a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.destination .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.destination .destination-img:hover {
    transform: translateY(-5px);
}

.destination .destination-img img {
    transition: transform 0.5s ease;
}

.destination .destination-img:hover img {
    transform: scale(1.2);
}

.destination .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(2, 112, 63, 0.8);
    padding: 20px;
    transition: bottom 0.5s ease;
}

.destination .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .destination-overlay h5,
.destination .destination-overlay a {
    color: var(--bs-white);
    font-family: 'Roboto', sans-serif;
}

.destination .search-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 15px 0 15px;
    transition: background 0.3s ease;
}

.destination .destination-img:hover .search-icon {
    background: var(--bs-primary);
}

.destination .search-icon a i {
    color: var(--bs-white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination .destination-img:hover .search-icon a i {
    opacity: 1;
}
/*** Destination End ***/

/*** Packages Start ***/
.packages .packages-item {
    background: var(--bs-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.packages .packages-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.packages .packages-img img {
    transition: transform 0.5s ease;
}

.packages .packages-item:hover .packages-img img {
    transform: scale(1.3);
}

.packages .packages-img .packages-info {
    background: rgba(2, 112, 63, 0.7);
    transition: background 0.3s ease;
}

.packages .packages-img .packages-info small,
.packages .packages-img .packages-info small i {
    color: var(--bs-white);
    font-size: 0.9rem;
}

.packages .packages-img .packages-price {
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 1.2rem;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: background 0.3s ease;
}

.packages .packages-item:hover .packages-img .packages-price {
    background: var(--bs-dark);
}

.packages .packages-content {
    padding: 20px;
}

.packages .packages-content h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.packages .packages-content small {
    font-size: 0.9rem;
    color: #555;
}

.packages .packages-content .fa-star {
    color: var(--bs-secondary);
}

.packages .packages-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.packages .packages-content .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
}

.packages .packages-carousel .owl-nav .owl-prev,
.packages .packages-carousel .owl-nav .owl-next {
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/

/*** Explore Tour Start ***/
.ExploreTour {
    background: var(--bs-light);
    padding: 80px 0;
}

.ExploreTour .section-title {
    font-family: 'Arizonia', cursive;
    font-size: 1.8rem;
    color: var(--bs-primary);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.ExploreTour .section-title::before,
.ExploreTour .section-title::after {
    content: "";
    width: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px solid var(--bs-secondary);
}

.ExploreTour .section-title::before {
    right: 0;
    margin-right: -70px;
}

.ExploreTour .section-title::after {
    left: 0;
    margin-left: -70px;
}

.ExploreTour h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--bs-dark);
    letter-spacing: 2px;
}

.ExploreTour p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

.ExploreTour .nav-tabs {
    border-bottom: 2px solid var(--bs-secondary);
}

.ExploreTour .nav-tabs .nav-item {
    margin: 0 10px;
}

.ExploreTour .nav-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-dark);
    background: var(--bs-white);
    border: 2px solid var(--bs-secondary);
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    padding: 10px 30px;
    transition: all 0.3s ease;
    position: relative;
    top: 2px; /* Align with border-bottom */
}

.ExploreTour .nav-tabs .nav-link.active,
.ExploreTour .nav-tabs .nav-link:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
    top: 0; /* Remove offset when active */
}

.ExploreTour .national-item,
.ExploreTour .international-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ExploreTour .national-item:hover,
.ExploreTour .international-item:hover {
    transform: translateY(-5px);
}

.ExploreTour .national-item img,
.ExploreTour .international-item img {
    transition: transform 0.5s ease;
}

.ExploreTour .national-item:hover img,
.ExploreTour .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour .national-content,
.ExploreTour .international-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    transition: background 0.3s ease;
}

.ExploreTour .national-item:hover .national-content,
.ExploreTour .international-item:hover .international-content {
    background: rgba(2, 112, 63, 0.7);
}

.ExploreTour .national-info h5,
.ExploreTour .international-info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bs-white);
    letter-spacing: 1px;
}

.ExploreTour .national-info a,
.ExploreTour .international-info a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: var(--bs-white);
    transition: color 0.3s ease;
}

.ExploreTour .national-info a:hover,
.ExploreTour .international-info a:hover {
    color: var(--bs-secondary);
}

.ExploreTour .tour-offer {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 20px;
    border-radius: 0 0 15px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.ExploreTour .tour-offer.bg-warning {
    background: var(--bs-secondary);
    color: var(--bs-dark);
}

.ExploreTour .tour-offer.bg-success {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.ExploreTour .national-plus-icon,
.ExploreTour .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ExploreTour .national-item:hover .national-plus-icon,
.ExploreTour .international-item:hover .international-plus-icon {
    opacity: 1;
}

.ExploreTour .InternationalTour-carousel .owl-nav .owl-prev,
.ExploreTour .InternationalTour-carousel .owl-nav .owl-next {
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.ExploreTour .InternationalTour-carousel .owl-nav .owl-prev:hover,
.ExploreTour .InternationalTour-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.ExploreTour .InternationalTour-carousel .owl-nav .owl-prev i,
.ExploreTour .InternationalTour-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.ExploreTour .InternationalTour-carousel .owl-nav .owl-prev:hover i,
.ExploreTour .InternationalTour-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

@media (max-width: 768px) {
    .ExploreTour .nav-tabs .nav-link {
        font-size: 0.95rem;
        padding: 8px 20px;
    }

    .ExploreTour .nav-tabs .nav-item {
        margin: 0 5px;
    }

    .ExploreTour .national-info h5,
    .ExploreTour .international-info h5 {
        font-size: 1.2rem;
    }

    .ExploreTour .national-info a,
    .ExploreTour .international-info a {
        font-size: 0.9rem;
    }
}
/*** Explore Tour End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery .gallery-item:hover {
    transform: translateY(-5px);
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-content {
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(2, 112, 63, 0.8);
}

.gallery .gallery-info {
    margin-bottom: -100%;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery .gallery-item:hover .gallery-info {
    margin-bottom: 0;
    opacity: 1;
}

.gallery .gallery-plus-icon {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
}

.gallery .tab-class .nav-item a {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: var(--bs-dark);
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.gallery .tab-class .nav-item a.active,
.gallery .tab-class .nav-item a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(2, 112, 63, 0.8), rgba(196, 27, 5, 0.8)), url(../img/tour-booking-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
}

.booking .section-booking-title {
    font-family: 'Arizonia', cursive;
    font-size: 1.8rem;
    color: var(--bs-white);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.booking .section-booking-title::before {
    content: "";
    width: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -70px;
    border-top: 2px solid var(--bs-white);
}

.booking h1 {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    color: var(--bs-white);
    margin-bottom: 1.5rem;
}

.booking p {
    font-size: 1.1rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
}

.booking form .form-floating input,
.booking form .form-floating select,
.booking form .form-floating textarea {
    background: var(--bs-white);
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    color: var(--bs-dark);
    transition: box-shadow 0.3s ease;
}

.booking form .form-floating input:focus,
.booking form .form-floating select:focus,
.booking form .form-floating textarea:focus {
    box-shadow: 0 0 10px rgba(196, 27, 5, 0.5);
    outline: none;
}

.booking form .form-floating label {
    color: #555;
}

.booking form .btn {
    font-size: 1.1rem;
    padding: 12px 0;
}
/*** Tour Booking End ***/

/*** Travel Guide Start ***/
.guide .guide-item {
    background: var(--bs-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide .guide-item:hover {
    transform: translateY(-10px);
}

.guide .guide-img img {
    transition: transform 0.5s ease;
}

.guide .guide-item:hover .guide-img img {
    transform: scale(1.1);
}

.guide .guide-img .guide-icon {
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    padding: 10px;
    transition: background 0.3s ease;
}

.guide .guide-item:hover .guide-img .guide-icon {
    background: var(--bs-primary);
}

.guide .guide-img .guide-icon i {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.guide .guide-item:hover .guide-img .guide-icon i {
    color: var(--bs-white);
}

.guide .guide-title {
    padding: 20px;
    background: var(--bs-light);
    transition: background 0.3s ease;
}

.guide .guide-item:hover .guide-title {
    background: var(--bs-primary);
}

.guide .guide-title h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-dark);
    transition: color 0.3s ease;
}

.guide .guide-item:hover .guide-title h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/

/*** Blog Start ***/
.blog .blog-item {
    background: var(--bs-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog .blog-item:hover {
    transform: translateY(-10px);
}

.blog .blog-img img {
    transition: transform 0.5s ease;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-img .blog-info {
    background: rgba(255, 255, 255, 0.3);
    color: var(--bs-white);
    font-size: 0.9rem;
}

.blog .blog-img .blog-icon {
    background: rgba(2, 112, 63, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.blog .blog-item:hover .blog-img .blog-icon {
    opacity: 1;
    height: 100%;
}

.blog .blog-img .blog-icon a {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog .blog-item:hover .blog-img .blog-icon a {
    opacity: 1;
}

.blog .blog-content {
    padding: 20px;
}

.blog .blog-content h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.blog .blog-content p {
    font-size: 1rem;
    color: #555;
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial {

    padding: 80px 0;
}

.testimonial .testimonial-item {
    background: var(--bs-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial .testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial .testimonial-comment {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.testimonial .owl-item.center .testimonial-comment {
    background: #e7e3d3 !important;
    color: var(--bs-white);
}

.testimonial .testimonial-img {
    width: 80px;
    height: 80px;
    border: 3px dotted var(--bs-primary);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto -40px;
    transition: border-color 0.3s ease;
}

.testimonial .owl-item.center .testimonial-img {
    border-color: var(--bs-white);
}

.testimonial .testimonial-img img {
    object-fit: cover;
}

.testimonial .testimonial-item h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    color: var(--bs-dark);
    margin-top: 2rem;
}

.testimonial .testimonial-item p {
    font-size: 0.9rem;
    color: #555;
}

.testimonial .fa-star {
    color: var(--bs-secondary);
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {

    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .owl-nav .owl-prev i,
.testimonial .owl-nav .owl-next i {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.testimonial .owl-nav .owl-prev:hover i,
.testimonial .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonial .owl-dot.active {
    width: 30px;
    border-radius: 20px;
    background: var(--bs-primary);
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact form .btn {
    font-size: 1.1rem;
    padding: 12px 0;
}

.contact form .form-floating input,
.contact form .form-floating textarea {
    background: var(--bs-white);
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    color: var(--bs-dark);
    transition: box-shadow 0.3s ease;
}

.contact form .form-floating input:focus,
.contact form .form-floating textarea:focus {
    box-shadow: 0 0 10px rgba(196, 27, 5, 0.5);
    outline: none;
}

.contact form .form-floating label {
    color: #555;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(2, 112, 63, 0.7), rgba(196, 27, 5, 0.7)), url(../img/subscribe-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
}

.subscribe .subscribe-title {
    font-family: 'Arizonia', cursive;
    font-size: 1.8rem;
    color: var(--bs-white);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.subscribe .subscribe-title::before,
.subscribe .subscribe-title::after {
    content: "";
    width: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px solid var(--bs-white);
}

.subscribe .subscribe-title::before {
    right: 0;
    margin-right: -70px;
}

.subscribe .subscribe-title::after {
    left: 0;
    margin-left: -70px;
}

.subscribe h1 {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    color: var(--bs-white);
    margin-bottom: 1.5rem;
}

.subscribe p {
    font-size: 1.1rem;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.subscribe .form-control {
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    border: 2px solid var(--bs-secondary);
    transition: box-shadow 0.3s ease;
}

.subscribe .form-control:focus {
    box-shadow: 0 0 10px rgba(196, 27, 5, 0.5);
    border-color: var(--bs-primary);
    outline: none;
}

.subscribe .btn {
    font-size: 1rem;
    padding: 10px 30px;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
    padding: 60px 0;
}

.footer .footer-item h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-white);
    margin-bottom: 1.5rem;
}

.footer .footer-item a {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #f5f5f5;
    line-height: 2.2;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer .footer-item a:hover {
    color: var(--bs-secondary);
    padding-left: 10px;
}

.footer .footer-item p {
    font-size: 1rem;
    color: #f5f5f5;
}
/*** Footer End ***/

/*** Copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.copyright a {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--bs-secondary);
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--bs-white);
}
/*** Copyright End ***/
        box-shadow: none;
    }

    .navbar-light .dropdown-menu a {
        color: #02703F;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        border-bottom: none;
    }

    .navbar-light.sticky-top {
        background: #f5f5f5;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-header .carousel-control-prev:hover,
.carousel-header .carousel-control-next:hover {
    opacity: 1;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    background-color: #C41B05; /* Primary logo color */
    background-size: 50% 50%;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel-header .carousel-control-next .carousel-control-next-icon:hover {
    background-color: #02703F; /* Secondary logo color for hover */
}

.carousel-header .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-header .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-header .carousel-indicators li.active {
    width: 30px;
    border-radius: 20px;
    background-color: #C4996C; /* Accent logo color */
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.carousel-header .carousel-inner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease; /* Smooth zoom effect */
}

.carousel-header .carousel-inner .carousel-item.active img {
    transform: scale(1.1); /* Subtle zoom-in on active slide */
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(2, 112, 63, 0.7) 0%, rgba(196, 27, 5, 0.7) 100%); /* Gradient with logo colors */
    padding: 60px 20px;
    transition: background 0.5s ease;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption h4 {
    font-family: 'Sour Gummy',   sans-serif !important;
    font-size: 2.0rem;
    color: #C4996C; /* Accent color */
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption h1 {
    font-family: 'Jost', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption .btn {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    background-color: #C41B05; /* Primary logo color */
    border: 2px solid #C4996C; /* Accent border */
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption .btn:hover {
    background-color: #02703F; /* Secondary logo color */
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 600px;
    }

    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 600px;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption h4 {
        font-size: 1.2rem;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-header .carousel-indicators li {
        width: 10px;
        height: 10px;
    }

    .carousel-header .carousel-indicators li.active {
        width: 20px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(2, 112, 63, 0.95), rgba(196, 27, 5, 0.95)), url(../img/breadcrumb-bg.jpg); /* Slightly darker gradient */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0 60px;
}

.bg-breadcrumb h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--bs-white);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-breadcrumb .breadcrumb-item a {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #E8D5B5 !important;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bg-breadcrumb .breadcrumb-item a:hover {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .breadcrumb-item.active {
    color: var(--bs-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/* Enhanced Services Section Styles */
/* ===== Premium Service Section Styles ===== */
.services-section {
    position: relative;
    overflow: hidden;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
    background: white;
}

.service-card.featured {
    box-shadow: 0 25px 50px rgba(196, 27, 5, 0.15);
}

.service-card.hover-zoom:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(2, 112, 63, 0.2);
}

.service-card .card-inner {
    position: relative;
    height: 100%;
}

.service-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-zoom:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured .service-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.service-badge {
    background: #C41B05;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.service-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.service-cta {
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    align-self: flex-start;
    padding: 12px 25px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
}

.service-cta:hover {
    background: white;
    color: #C41B05;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    opacity: 0.8;
}

.cta-card {
    background: linear-gradient(135deg, #C41B05 0%, #02703F 100%);
    color: white;
    transition: all 0.5s ease !important;
}

.cta-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(2, 112, 63, 0.4) !important;
}

@media (max-width: 992px) {
    .service-image {
        height: 250px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
}


/*** About End ***/

.btn-outline-primary {
    border-color: #02703F;
    color: #02703F;
}

.btn-outline-primary:hover {
    background-color: #02703F;
    color: white;
}

.btn-primary {
    background-color: #C41B05;
    border-color: #C41B05;
}

.btn-primary:hover {
    background-color: #02703F;
    border-color: #02703F;
}


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
/*** Packages Start ***/
.packages {
    background: var(--bs-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.packages .section-title {
    font-family: 'Jolly Lodger', cursive;
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.packages .section-title::before,
.packages .section-title::after {
    content: "";
    width: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px solid var(--bs-secondary);
}

.packages .section-title::before {
    right: 0;
    margin-right: -70px;
}

.packages .section-title::after {
    left: 0;
    margin-left: -70px;
}

/* Tab Navigation */
.packages .nav-tabs {
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: none;
    background: var(--bs-white);
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    flex-wrap: wrap;
}

.packages .nav-tabs .nav-item {
    margin: 0 5px;
}

.packages .nav-tabs .nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-dark);
    background: var(--bs-light);
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packages .nav-tabs .nav-link:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(196, 27, 5, 0.2);
}

.packages .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-dark));
    color: var(--bs-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(2, 112, 63, 0.3);
    transform: translateY(-2px);
}

.packages .nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.packages .nav-tabs .nav-link:hover::before {
    left: 100%;
}

/* Package Item */
.packages .packages-item {
    background: var(--bs-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.packages .packages-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(196, 27, 5, 0.2);
}

.packages .packages-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.packages .packages-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.packages .packages-item:hover .packages-img img {
    transform: scale(1.1);
}

.packages .packages-img .packages-info {
    background: linear-gradient(to top, rgba(2, 112, 63, 0.8), transparent);
    padding: 15px;
    transition: background 0.3s ease;
}

.packages .packages-img .packages-info small,
.packages .packages-img .packages-info small i {
    color: var(--bs-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.packages .packages-img .packages-price {
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: background 0.3s ease, transform 0.3s ease;
}

.packages .packages-item:hover .packages-img .packages-price {
    background: var(--bs-dark);
    transform: translateX(-50%) translateY(-5px);
}

.packages .packages-content {
    padding: 25px;
    background: var(--bs-white);
    transition: background 0.3s ease;
}

.packages .packages-content h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.6rem;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.packages .packages-content small {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.packages .packages-content .fa-star {
    color: var(--bs-secondary);
    font-size: 0.9rem;
}

.packages .packages-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.packages .packages-content .btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.packages .packages-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .packages .nav-tabs {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        border-radius: 15px;
    }

    .packages .nav-tabs .nav-item {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .packages .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .packages .packages-img img {
        height: 300px;
    }

    .packages .packages-content h5 {
        font-size: 1.4rem;
    }

    .packages .packages-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .packages {
        padding: 60px 0;
    }

    .packages .section-title {
        font-size: 2rem;
    }

    .packages .nav-tabs {
        padding: 10px;
    }

    .packages .nav-tabs .nav-link {
        font-size: 0.95rem;
        padding: 10px 15px;
    }

    .packages .packages-img img {
        height: 250px;
    }

    .packages .packages-content {
        padding: 20px;
    }
	
	/*** Enhanced Packages Section ***/
.packages {
    background-color: #f8f9fa;
}

.package-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(2, 112, 63, 0.15);
    border-color: rgba(2, 112, 63, 0.2);
}

.package-img {
    transition: all 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-badge {
    border-bottom-left-radius: 10px;
    font-weight: 600;
    z-index: 2;
}

.package-meta {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.package-content {
    transition: all 0.3s ease;
}

.package-card:hover .package-content {
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

/* Enhanced Tabs */
.tabs-wrapper {
    position: relative;
}

.nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.nav-pills::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    color: #555;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0 5px;
    display: flex;
    align-items: center;
}

.nav-pills .nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background: linear-gradient(135deg, #C41B05, #02703F);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(196, 27, 5, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .nav-pills .nav-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .package-card {
        margin-bottom: 20px;
    }
}
	
	
}






/*** Packages End ***/
/*** Packages End ***/


/*** Enhanced Explore Tour Start ***/
/* Explore Tour Section */
/* Explore Tour Section */
.explore-tour-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.explore-tour-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"></path><path fill="%23ffffff" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"></path><path fill="%23ffffff" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    z-index: 2;
}

.section-subtitle {
    font-family: 'Jolly Lodger', cursive;
    color: var(--bs-primary);
    font-size: 1.5rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    font-size: 2.5rem;
    text-transform: capitalize;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--bs-primary);
    margin: 1.5rem auto;
    position: relative;
}

.divider::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--bs-secondary);
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

/* Tour Tabs */
.tour-tabs .nav-pills {
    border: none;
}

.tour-tabs .nav-link {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #495057;
    background: transparent;
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    padding: 12px 30px;
    margin: 0 10px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.tour-tabs .nav-link:hover {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.tour-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.2);
    transform: translateY(-2px);
}

/* Tour Cards */
.tour-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    height: 100%;
    position: relative;
    z-index: 3;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-media {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tour-card:hover .tour-media img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 3;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tour-card:hover .tour-content {
    transform: translateY(0);
}

.tour-title {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tour-excerpt {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tour-meta {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tour-meta i {
    color: var(--bs-primary);
    margin-right: 5px;
}

/* Local Tour Specific */
.local-tour .tour-media {
    height: 250px;
}

.local-tour .tour-footer {
    border-top: 3px solid var(--bs-primary);
    transition: all 0.3s ease;
}

.local-tour:hover .tour-footer {
    background: var(--bs-primary);
}

.local-tour:hover .tour-footer h5 {
    color: white;
}

/* International Tour Specific */
.international-tour {
    margin: 10px;
}

.international-tour-carousel .owl-stage-outer {
    padding: 20px 0;
}

.international-tour-carousel .owl-item {
    opacity: 0.8;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.international-tour-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
}

/* Carousel Navigation */
.international-tour-carousel .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.international-tour-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: white !important;
    color: var(--bs-primary) !important;
    border: 1px solid var(--bs-primary) !important;
    margin-left: 10px !important;
    transition: all 0.3s ease;
}

.international-tour-carousel .owl-nav button:hover {
    background: var(--bs-primary) !important;
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .tour-media {
        height: 220px;
    }
    
    .local-tour .tour-media {
        height: 200px;
    }
    
    .tour-tabs .nav-link {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 0 5px;
    }
}

@media (max-width: 767.98px) {
    .explore-tour-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .tour-tabs .nav-link {
        width: 100%;
        margin: 5px 0;
    }
    
    .international-tour-carousel .owl-nav {
        position: relative;
        top: 0;
        text-align: center;
        margin-top: 20px;
    }
}

/* Ensure tab content display */
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}

/* Fix carousel layout */
.international-tour-carousel {
    overflow: hidden;
}

/* Accessibility improvements */
.tour-card a:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

.tour-tabs .nav-link:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* Updated Explore Tour Section */
.explore-tour-section {
    background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)), 
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Enhanced Text Contrast */
.section-subtitle {
    color: var(--bs-primary);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section-title {
    color: #2c3e50;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.lead.text-muted {
    color: #5a6a7a !important; /* Darker than default muted */
    font-weight: 500;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

/* Improved Tour Card Text Visibility */
.tour-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
}

.tour-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.tour-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.tour-meta {
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Better button visibility */
.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
}

.btn-outline-light:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Enhanced tab visibility */
.tour-tabs .nav-link {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Improved footer text */
.tour-footer h5 {
    color: #2c3e50;
    font-weight: 700;
    transition: all 0.3s ease;
}

.local-tour:hover .tour-footer h5 {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}


/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
/*** Booking Form Enhancements ***/
.booking-form-wrapper h4 {
    font-family: 'Poppins', sans-serif; /* Or your preferred professional font */
    font-size: 1.3rem; /* Slightly smaller for better readability */
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 1rem; /* Add some space below the heading */
    border-bottom: 2px solid #eee; /* Subtle separator */
    padding-bottom: 0.5rem;
}

.booking-form-wrapper .form-floating > label {
    color: #777; /* Slightly softer label color */
}

.booking-form-wrapper .form-control.safari-input,
.booking-form-wrapper .form-select.safari-input {
    border: 1px solid #ccc; /* More defined input border */
    border-radius: 0.3rem;
    padding: 0.8rem 1rem; /* Adjust padding for better touch targets */
    font-size: 0.9rem;
}

.booking-form-wrapper .form-control.safari-input:focus,
.booking-form-wrapper .form-select.safari-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.booking-form-wrapper .form-check-label {
    font-size: 0.9rem;
    color: #555;
}

.booking-form-wrapper .alert {
    margin-bottom: 1rem;
    border-radius: 0.3rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

.booking-form-wrapper .safari-btn {
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 0.3rem;
}
/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
/* ===== Premium Testimonials Section ===== */
.testimonial-section {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.testimonial-quote-icon {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 120px;
    color: rgba(196, 153, 108, 0.05);
    z-index: 0;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(196, 153, 108, 0.15);
}

.testimonial-card.featured {
    border: 2px solid #C41B05;
    box-shadow: 0 15px 40px rgba(196, 27, 5, 0.15);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #C41B05;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 112, 63, 0.15);
}

.testimonial-body {
    position: relative;
    z-index: 2;
}

.rating {
    color: #FFC107;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: rgba(196, 153, 108, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-image {
    position: relative;
    margin-right: 20px;
}

.client-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.verification-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #02703F;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    border: 2px solid white;
}

.client-info {
    text-align: left;
}

.client-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.client-details {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 8px;
}

.social-proof {
    margin-top: 5px;
}

.social-badge {
    display: inline-block;
    background: rgba(196, 153, 108, 0.1);
    color: #C41B05;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-highlight {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: #02703F;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(2, 112, 63, 0.3);
}

.testimonial-highlight i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 60px;
}

.trust-item {
    min-width: 120px;
}

.trust-value {
    line-height: 1;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

/* Carousel Navigation */
.owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: rgba(196, 27, 5, 0.1) !important;
    color: #C41B05 !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #C41B05 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        padding-left: 20px;
        font-size: 1rem;
    }
    
    .trust-indicators {
        margin-top: 40px;
    }
    
    .trust-item {
        min-width: 100px;
    }
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** Header Title with Jolly Lodger ***/
h3.header-title {
    font-family: 'Pacifico', cursive, sans-serif !important;
    font-size: 2.5rem; /* Larger size for header prominence (display-3 is ~4.5rem in Bootstrap) */
    font-weight: 400; /* Jolly Lodger only supports 400 */
    color: transparent; /* For gradient effect */
    background: linear-gradient(90deg, #FFD700, #FF8C00); /* Gold to Orange gradient for a safari sunset feel */
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth on dark background */
    letter-spacing: 3px; /* Increased spacing for Jolly Lodger's bold, distressed letters */
    position: relative;
    display: inline-block; /* For underline effect */
    padding: 0 1rem; /* Adjust padding */
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Decorative Underline with Safari Theme */
h3.header-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FF8C00); /* Matching gradient */
    /* Optional: Use a safari-themed pattern if available */
    /* background: url('img/safari-pattern.png') repeat-x center; */
    background-size: contain;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

/* Hover Effect for Interactivity */
h3.header-title:hover {
    transform: translateY(-5px); /* More pronounced lift effect for larger title */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    h3.header-title {
        font-size: 2.5rem; /* Smaller on mobile (display-3 adjusts in Bootstrap, but we override for precision) */
        letter-spacing: 1.5px;
    }
    h3.header-title::after {
        width: 70%;
        height: 3px;
        bottom: -5px;
    }
}

/*** Itinerary Page Start ***/
.itinerary-page {
    background: var(--bs-light);
    padding: 60px 0;
}



/* About Section (Highlights) */
.about {
    padding: 80px 0;
    background: var(--bs-white);
}

.about .section-header {
    margin-bottom: 30px;
}

.about .section-header p {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: var(--bs-secondary);
    text-transform: uppercase;
}

.about .section-header h2 {
    font-family: 'Jolly Lodger', cursive;
    font-size: 2.5rem;
    color: var(--bs-primary);
    position: relative;
    display: inline-block;
}

.about .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--bs-secondary);
}

.about .carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about .carousel img {
    object-fit: cover;
    height: 500px;
    width: 100%;
    transition: transform 0.5s ease;
}

.about .carousel-item:hover img {
    transform: scale(1.05);
}

.about .carousel-indicators {
    bottom: -50px;
}

.about .carousel-indicators button {
    background: var(--bs-secondary);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.about .carousel-indicators .active {
    background: var(--bs-primary);
}

.about .carousel-control-prev,
.about .carousel-control-next {
    width: 10%;
    background: rgba(2, 112, 63, 0.5);
    border-radius: 15px;
}

.about .carousel-control-prev-icon,
.about .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.about .about-content {
    padding: 20px;
}

.about .about-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.about .btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    padding: 10px 25px;
    border-radius: 50px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.about .btn:hover {
    background: var(--bs-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Projects Section (Inclusions/Exclusions) */
.subscribe {

    padding: 80px 0;
}

.subscribe .nav-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe .nav-item .nav-link {
    display: flex;
    align-items: center;
    background: var(--bs-white);
    border-radius: 10px;
    padding: 15px;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.subscribe .nav-item .nav-link:hover,
.subscribe .nav-item .nav-link.active {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(196, 27, 5, 0.2);
}

.subscribe .projects-icon {
    background: var(--bs-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.subscribe .nav-item .nav-link:hover .projects-icon,
.subscribe .nav-item .nav-link.active .projects-icon {
    background: var(--bs-dark);
}

.subscribe .tab-content .projects-content {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.subscribe .tab-content h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.subscribe .tab-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Experience Section (Timeline) */
.experience {
    padding: 80px 0;
    background: var(--bs-white);
}

.experience .section-header p {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: var(--bs-secondary);
    text-transform: uppercase;
}

.experience .section-header h2 {
    font-family: 'Jolly Lodger', cursive;
    font-size: 2.5rem;
    color: var(--bs-primary);
    position: relative;
    display: inline-block;
}

.experience .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--bs-secondary);
}

.experience .timeline {
    position: relative;
    margin: 40px 0;
}

.experience .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--bs-secondary);
    transform: translateX(-50%);
}

.experience .timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
}

.experience .timeline-item.left {
    left: 0;
}

.experience .timeline-item.right {
    left: 50%;
}

.experience .timeline-item .timeline-text {
    background: var(--bs-white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.experience .timeline-item:hover .timeline-text {
    transform: translateY(-5px);
}

.experience .timeline-item .timeline-date {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

.experience .timeline-item h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-dark);
    margin-bottom: 10px;
}

.experience .timeline-item h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: var(--bs-secondary);
    margin-bottom: 10px;
}

.experience .timeline-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.experience .timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--bs-primary);
    border-radius: 50%;
    z-index: 1;
}

.experience .timeline-item.left::before {
    right: -10px;
}

.experience .timeline-item.right::before {
    left: -10px;
}

.experience .timeline-item.left::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -30px;
    width: 30px;
    height: 2px;
    background: var(--bs-secondary);
}

.experience .timeline-item.right::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -30px;
    width: 30px;
    height: 2px;
    background: var(--bs-secondary);
}


/* Rates Section */
.packages {
    padding: 80px 0;
    background: var(--bs-light);
}

.packages .section-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: var(--bs-secondary);
    text-transform: uppercase;
}

.packages h1 {
    font-family: 'Jolly Lodger', cursive;
    font-size: 2.5rem;
    color: var(--bs-primary);
}

.packages .packages-item {
    background: var(--bs-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.packages .packages-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(196, 27, 5, 0.2);
}

.packages .packages-img img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.packages .packages-item:hover .packages-img img {
    transform: scale(1.1);
}

.packages .packages-info {
    background: linear-gradient(to top, rgba(2, 112, 63, 0.8), transparent);
}

.packages .packages-price {
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: background 0.3s ease, transform 0.3s ease;
}

.packages .packages-item:hover .packages-price {
    background: var(--bs-dark);
    transform: translateX(-50%) translateY(-5px);
}

.packages .packages-content {
    padding: 25px;
}

.packages .packages-content h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-dark);
}

.packages .packages-content small {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: var(--bs-secondary);
}

.packages .packages-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.packages .packages-content .btn-hover {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: all 0.3s ease;
}

.packages .packages-content .btn-hover:hover {
    background: var(--bs-dark);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about .carousel img {
        height: 400px;
    }

    .experience .timeline::before {
        left: 20px;
    }

    .experience .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 40px;
    }

    .experience .timeline-item::before {
        left: 10px;
    }

    .experience .timeline-item::after {
        left: 30px;
        width: 10px;
    }

    .booking h1 {
        font-size: 2rem;
    }

    .packages .packages-img img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .bg-breadcrumb {
        padding: 80px 0;
    }

    .bg-breadcrumb h3 {
        font-size: 2rem;
    }

    .about {
        padding: 60px 0;
    }

    .about .carousel img {
        height: 300px;
    }

    .subscribe {
        padding: 60px 0;
    }

    .experience {
        padding: 60px 0;
    }

    .booking {
        padding: 60px 0;
    }

    .packages {
        padding: 60px 0;
    }
}
/*** Itinerary Page End ***/

/*** Tour Details Section Start ***/
.tour-details {
    background: var(--bs-light);
    padding: 80px 0;
}

.tour-details .section-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-details h1 {
    font-family: 'Jolly Lodger', cursive;
    font-size: 2.5rem;
    color: var(--bs-primary);
    position: relative;
    display: inline-block;
}

.tour-details h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--bs-secondary);
}

.tour-details .nav-tabs {
    border: none;
    background: var(--bs-white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-details .nav-item {
    margin: 0 5px;
}

.tour-details .nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-dark);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.tour-details .nav-link i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.tour-details .nav-link:hover,
.tour-details .nav-link.active {
    background: var(--bs-primary);
    color: var(--bs-white);
    box-shadow: 0 4px 10px rgba(196, 27, 5, 0.3);
    transform: translateY(-2px);
}

.tour-details .details-card {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-white);
    padding: 30px;
    transition: transform 0.3s ease;
}

.tour-details .details-card:hover {
    transform: translateY(-5px);
}

.tour-details .details-card h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-bottom: 20px;
    position: relative;
}

.tour-details .details-card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bs-secondary);
}

.tour-details .details-card p,
.tour-details .details-card li {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.tour-details .details-card li {
    display: flex;
    align-items: center;
}

.tour-details .details-card li i {
    font-size: 1.1rem;
    margin-right: 10px;
}

.tour-details .details-card .text-primary {
    color: var(--bs-primary) !important;
}

.tour-details .details-card .text-danger {
    color: #dc3545 !important;
}

.tour-details .details-card .text-warning {
    color: #ffc107 !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .tour-details {
        padding: 60px 0;
    }

    .tour-details h1 {
        font-size: 2rem;
    }

    .tour-details .nav-tabs {
        flex-direction: column;
        border-radius: 15px;
        padding: 10px;
    }

    .tour-details .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .tour-details .nav-link {
        justify-content: center;
        padding: 12px;
    }

    .tour-details .details-card {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .tour-details .nav-link {
        font-size: 0.9rem;
    }

    .tour-details .details-card h4 {
        font-size: 1.3rem;
    }

    .tour-details .details-card p,
    .tour-details .details-card li {
        font-size: 0.95rem;
    }
}
/*** Tour Details Section End ***/
/*** Enhanced Packages Section ***/
.packages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23ffffff10" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') no-repeat;
    background-size: 100% auto;
    background-position: bottom;
    pointer-events: none;
}

.section-subtitle {
    font-family: 'Jolly Lodger', cursive;
    color: var(--bs-primary);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    font-size: 2.5rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--bs-primary);
    margin: 1.5rem auto;
    position: relative;
}

.divider::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--bs-secondary);
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.package-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(2, 112, 63, 0.15);
}

.package-media {
    overflow: hidden;
    position: relative;
}

.package-img {
    transition: transform 0.8s ease;
    height: 280px;
    object-fit: cover;
}

.package-card:hover .package-img {
    transform: scale(1.1);
}

.package-badge {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    border-bottom-left-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.package-badge span {
    font-size: 1.25rem;
    font-weight: 700;
}

.package-badge small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.package-meta {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.package-meta i {
    color: var(--bs-primary);
}

.package-content {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.package-title {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.package-card:hover .package-title {
    color: var(--bs-primary);
}

.package-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-rating {
    font-size: 0.9rem;
}

/* Carousel Navigation */
.owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: white !important;
    color: var(--bs-primary) !important;
    border: 1px solid var(--bs-primary) !important;
    margin-left: 10px !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: var(--bs-primary) !important;
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .package-img {
        height: 240px;
    }
    
    .package-content {
        padding: 1.25rem;
    }
    
    .package-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .packages-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .package-img {
        height: 200px;
    }
    
    .package-meta div {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-meta div > div {
        margin-bottom: 5px;
    }
    
    .owl-nav {
        top: -60px;
    }
}



/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/