/* ===================== FONTS & COLOR VARIABLES ===================== */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Jost:wght@400;500&family=Open+Sans:wght@400;600&display=swap");
:root {
    /* Font Families */
    --primary-font: "Jost", sans-serif;
    --secondary-font: "Open Sans", sans-serif;

    /* Color Scheme */
    --primary-color: #10418c;
    --tertiary-color: #d41414;
    --font-color-dark: #222;
    --font-color-light: #fff;
    --bg-dark-blue: #0a2540;
    --bg-light-grey: #f7fbf9;
}

/* ===================== BASE DOCUMENT STYLES ===================== */
body {
    font: 400 1rem/1.5 var(--secondary-font);
    color: var(--font-color-dark);
    margin: 0;
    transition: all 0.3s ease;
}

/* ===================== TOP NAVIGATION BAR ===================== */
.top-navbar {
    background: var(--bg-dark-blue);
    color: white;
    height: 36px;
    display: flex;
    align-items: center;
}

.top-navbar svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    vertical-align: middle;
}

.top-navbar .d-flex {
    gap: 1rem;
}

.top-navbar .d-flex > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================== MAIN NAVIGATION BAR ===================== */
.bottom-navbar {
    position: sticky;
    top: 0;
    height: 76px;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ===================== NAVIGATION LINKS & ITEMS ===================== */
.nav-link {
    font: 500 1.125rem/1 var(--primary-font);
    color: var(--font-color-dark) !important;
}

.nav-link:hover,
.dropdown-item:hover {
    color: var(--tertiary-color) !important;
}

/* ===================== SOCIAL MEDIA ICONS ===================== */
.social-group {
    gap: 0.75rem;
}

.social-icon {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
    text-decoration: none !important;
    padding: 4px;
    border: 1px solid white;
    background: transparent;
}

.social-icon:hover {
    background: white;
    color: var(--bg-dark-blue);
    text-decoration: none;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ===================== UTILITY CLASSES ===================== */
.text-caption {
    font: 400 0.75rem/1.33 var(--secondary-font);
}

.thin-icon {
    font-weight: 100;
    transform: scale(0.9);
}

/* ===================== SUPER BUTTON ===================== */
.super-button {
    position: relative;
    padding: 12px 24px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: #d41414;
    text-decoration: none;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    white-space: nowrap;

    /* Responsive improvements */
    box-sizing: border-box; /* Ensures padding is included in width/height */
    min-width: max-content; /* Prevents button from shrinking too much */
    text-align: center;
    line-height: 1.2; /* Better text vertical alignment */

    /* Responsive font size */
    @media (max-width: 768px) {
        font-size: 10px;
        padding: 10px 20px;
    }

    @media (max-width: 480px) {
        font-size: 10px;
        padding: 8px 16px;
        height: 40px;
    }

    /* For very small screens */
    @media (max-width: 360px) {
        white-space: normal; /* Allow text to wrap if needed */
        word-break: keep-all; /* Prevent awkward word breaks */
        padding: 8px 12px;
    }
}
.super-button span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #171618, #10418c);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.super-button span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #171618, #10418c);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.super-button span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #171618, #10418c);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.super-button span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to top, #171618, #10418c);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* ===================== HERO SECTION & SLIDESHOW ===================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-slideshow,
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content appears above the overlay */
}
/* ===================== SEARCH COMPONENT ===================== */
.search-box {
    max-width: 820px;
    margin: auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 44px;
    border-radius: 50px;
    padding-right: 120px;
    border: none;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
    pointer-events: none;
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    border-radius: 50px;
    padding: 8px 24px;
    height: 38px;
    background: var(--tertiary-color);
    color: white;
    border: none;
    transition: background 0.3s ease;
}
.search-btn:hover {
    background: var(--primary-color);
}

/* ===================== FLOATING WHATSAPP BUTTON ===================== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 2000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.floating-whatsapp:hover {
    background: #19b955;
}

.floating-whatsapp i {
    color: white !important;
}

/* ===================== DROPDOWN MENUS (DESKTOP) ===================== */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .navbar .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border: none;
        border-bottom: 4px solid #d41414;
        animation: fadeIn 0.3s ease forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }
}
/* ===================== DROPDOWN TOGGLE ELEMENTS ===================== */
.dropdown-toggle-split::after {
    display: none;
}

.dropdown-toggle-split .bi-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.dropdown-toggle-split[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.nav-item.dropdown > div > .nav-link:first-child {
    padding-right: 0.25rem !important;
}

.nav-item.dropdown > div > .dropdown-toggle-split {
    padding-left: 0.25rem !important;
}
/* Destinations Section Styles */
.destinations-section {
    background: #fff;
    text-align: center;
    margin-top: 50px;
}

.destinations-section .subtitle {
    color: var(--tertiary-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.destinations-section .title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 50px;
}

/* Circle Gallery Styles */
.circle-gallery {
    gap: 2px;
    display: flex;
    padding-top: 5%;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 30px;
    height: auto;
}

.circle-item {
    position: relative;
    width: 200px;
    height: 200px;
    text-decoration: none;
    margin-bottom: 40px;
}

/* Circle Styles */
.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease-in-out;
}

/* Text Styles - Always visible on mobile */
.circle-text {
    display: block;
    color: var(--tertiary-color);
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    position: static;
    transform: none;
    opacity: 1;
    text-shadow: none;
    text-decoration: none;
    padding: 0;
}

/* Desktop Styles */
@media (min-width: 1023px) {
    .circle-gallery {
        height: 200px;
    }
    .circle-item {
        margin-bottom: 0;
    }

    /* Wave effect */
    .circle-item:nth-child(1) {
        bottom: 0px;
        z-index: 1;
    }
    .circle-item:nth-child(2) {
        bottom: 40px;
        z-index: 2;
    }
    .circle-item:nth-child(3) {
        bottom: 80px;
        z-index: 3;
    }
    .circle-item:nth-child(4) {
        bottom: 40px;
        z-index: 2;
    }
    .circle-item:nth-child(5) {
        bottom: 0px;
        z-index: 1;
    }

    /* Overlap circles slightly */
    .circle-item:not(:first-child) {
        margin-left: -30px;
    }

    /* Text positioning for desktop */
    .circle-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        margin-top: 0;
        padding: 4px 12px;
        border-radius: 15px;
        display: inline-block;
        transition: opacity 0.3s ease-in-out;
        z-index: 20;
    }

    /* Hover effects for desktop */
    .circle-item:hover .circle {
        transform: scale(1.08) translateY(-10px);
        z-index: 1;
        outline: 2px solid var(--tertiary-color);
        outline-offset: -10px;
        opacity: 0.8;
    }

    .circle-item:hover .circle-text {
        opacity: 1 !important;
    }

    /* Background overlay on hover - removed since we're using image opacity instead */
    .circle-item::before {
        display: none;
    }
}

/* View All Button */
.destinations-section .btn-container {
    text-align: center;
    margin-top: 100px;
}

.destinations-section .btn-danger {
    padding: 8px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    background-color: #d41414;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.destinations-section .btn-danger:hover {
    background-color: var(--primary-color);
}

@media (max-width: 426px) {
    .circle-item {
        position: relative;
        width: 160px;
        height: 160px;
        margin: 10px;
    }

    .circle {
        border-radius: 50%;
        object-fit: cover;
        width: 100%;
        height: 100%;
        display: block;
        filter: brightness(68%); /* roughly 32% dark overlay effect */
    }

    .circle-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        padding: 6px 10px;
        font-size: 16px;
        color: white;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
        opacity: 1;
        z-index: 2;
        background-color: transparent;
    }
}

/* Who We Are Section */
.homepage-who-we-are {
    margin: 5% 10%;
}

.homepage-who-we-are-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.homepage-who-we-are-image-column {
    flex: 0 0 45%;
}

.homepage-who-we-are-image-column img {
    width: 100%;
    height: 500px;
    /* Set specific height - adjust this value as needed */
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    /* Centers the image within the container */
}

.homepage-who-we-are h2 {
    font-size: 14px;
    text-transform: uppercase;
    color: #d41414;
    font-weight: 600;
    margin-bottom: 16px;
}

.homepage-who-we-are h3 {
    font-size: 48px;
    font-weight: 600;
    color: #10418c;
}

.homepage-who-we-are-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Stats Container */
.homepage-who-we-are-stats-container {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.homepage-who-we-are-stat-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.homepage-who-we-are-stat-icon {
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.homepage-who-we-are-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.homepage-who-we-are-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #10418c;
    line-height: 1;
}

.homepage-who-we-are-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

/* Learn More Button */
.learn-more-btn {
    background-color: #d41414;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--tertiary-color);
}
.hover-btn:hover {
    background: var(--primary-color);
    border: none;
}
/* Responsive Design */
@media (max-width: 1023px) {
    .homepage-who-we-are-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .homepage-who-we-are-image-column {
        flex: none;
        width: 100%;
    }

    .homepage-who-we-are-text-column {
        padding-left: 0;
    }

    .homepage-who-we-are-who-we-are h3 {
        font-size: 32px;
    }

    .homepage-who-we-are-stats-container {
        gap: 30px;
        justify-content: space-between;
    }

    .homepage-who-we-are-stat-item {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .homepage-who-we-are-stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .homepage-who-we-are- h3 {
        font-size: 28px;
    }
}

/* Button */
.learn-more-btn {
    background-color: #d41414;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more-btn:hover {
    background-color: #930909;
    transform: translateY(-2px);
}

.learn-more-btn i {
    margin-left: 8px;
    font-size: 14px;
}

/*======================second-banner==================================*/
.second-banner {
    position: relative;
    width: 100%;
    height: 650px;
    margin-bottom: 10%;
}

.banner-background {
    background-size: cover;
    background-position: center;
    height: 600px;
    color: white;
    text-align: center;
}

.banner-text-wrapper {
    padding-top: 100px;
}

.banner-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.card-image-wrapper:hover .activities-content {
    transform: translateY(-50px);
}
.overlay-card {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    width: 720px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
}
.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.32);
    color: white;
    padding: 7px 15px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.card-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
}

.slide-button {
    transform: translateY(150%);
    transition: transform 0.3s ease;
    background-color: #d41414;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}
.slide-button:hover {
    background-color: #10418c;
}
@media (max-width: 768px) {
    .second-banner {
        height: auto;
        margin-bottom: 100px;
    }

    .banner-background {
        height: 400px;
        padding: 40px 20px;
    }

    .banner-text-wrapper {
        padding-top: 60px;
    }

    .banner-subtitle {
        font-size: 12px;
    }

    .banner-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .overlay-card {
        width: 90%;
        bottom: -40px;
    }

    .card-title {
        font-size: 18px;
    }

    .slide-button {
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 22px;
    }

    .card-title {
        font-size: 16px;
    }

    .slide-button {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* ===================== fixed-trip CARDS SECTION ===================== */
.subtitle {
    color: #d41414;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-title {
    color: #10418c;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.fixed-trip-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fixed-trip-left {
    flex: 2;
    text-align: left;
}

.fixed-trip-left h2 {
    margin: 0 0 10px 0;
}

.days {
    color: #333;
    font-weight: normal;
}

.fixed-trip-middle {
    flex: 3;
    display: flex;
    justify-content: space-around;
    text-align: left;
}

.fixed-trip-middle .label {
    font-size: 0.85rem;
    color: #555;
    margin: 0 0 5px 0;
}

.fixed-trip-middle .value {
    font-weight: bold;
    margin: 0;
}

.fixed-trip-middle .available {
    color: #10418c;
}

.fixed-trip-right {
    flex-shrink: 0;
}

.join-btn {
    background: #d41414;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

.join-btn:hover {
    background: darkred;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .destination-item {
        width: calc(25% - 23px);
        /* 4 items per row */
    }
}

@media (max-width: 900px) {
    .destination-item {
        width: calc(33.333% - 20px);
        /* 3 items per row */
    }
}

@media (max-width: 600px) {
    .destination-item {
        width: calc(50% - 15px);
        /* 2 items per row */
    }
}

/* ===================== MOBILE RESPONSIVE STYLES ===================== */
@media (max-width: 991.98px) {
    /* Mobile menu offcanvas */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 180px;
        height: 100vh;
        padding: 20px;
        background: white;
        z-index: 1050;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        right: 0;
    }

    /* Mobile navigation items */
    .navbar-nav {
        margin-top: 60px;
        gap: 0.5rem !important;
    }

    .nav-item {
        border-bottom: 2px solid var(--tertiary-color);
    }

    .nav-link,
    .dropdown-item {
        padding: 12px 0 !important;
        font-size: 1rem !important;
    }

    /* Mobile dropdown adjustments */
    .dropdown-menu {
        border: none !important;
        padding-left: 15px;
        background: rgba(0, 0, 0, 0.03);
    }

    .dropdown-toggle-split {
        display: none;
    }

    /* Mobile navbar toggler state */
    .navbar-toggler[aria-expanded="true"] {
        display: none !important;
    }

    /* Mobile button adjustments */
    .button {
        width: 100%;
        margin: 15px 0 0 0;
    }

    /* Mobile menu overlay */
    body.navbar-open {
        overflow: hidden;
    }

    body.navbar-open::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
    }
    .uppercase {
        text-transform: uppercase !important;
    }
    /* Mobile search adjustments */
    .search-box {
        padding: 0 15px;
    }

    .search-icon {
        display: none;
    }

    .search-input {
        padding-left: 20px;
        padding-right: 100px;
        height: 44px;
    }

    .search-btn {
        padding: 6px 14px;
        height: 32px;
        font-size: 14px;
        right: 20px;
    }

    /* Mobile typography adjustments */
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .nav-item.dropdown > div > .nav-link:first-child {
        padding-right: 0.5rem;
    }

    /* Mobile top navbar adjustments */
    .top-navbar .container-fluid {
        padding: 0 15px;
    }

    .top-navbar .d-flex {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-navbar .text-caption {
        font-size: 0.65rem;
    }

    /* Mobile social icons */
    .social-group {
        gap: 0.5rem;
    }

    .social-icon {
        width: 20px;
        height: 20px;
        padding: 3px;
    }

    .social-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* ===================== SMALL MOBILE (320px) ===================== */
@media (max-width: 320px) {
    .destination-banner {
        background-size: contain !important;
        height: 100px !important;
    }
}

/* ===================== TABLET/LAPTOP (1024px) ===================== */
@media (max-width: 1024px) {
    .nav-link {
        font-size: 1rem !important;
    }

    .bottom-navbar {
        height: 64px;
    }
}

/* ===================== SIDEBAR BUTTON ===================== */
.sidebar-personalize-btn {
    font-size: 0.69rem;
}

/* =====================FIXED DEPARTURES===================== */

.fixed-container {
    margin: 5% 15%;
}

.fixed-header {
    text-align: center;
    margin-bottom: 50px;
}

.fixed-departures {
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-title {
    color: #1e4a72;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fixed-trips-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Add consistent spacing between cards */
}

.fixed-trip-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 100px; /* Increased for better proportion */
    width: 100%; /* Ensure full width */
}

.fixed-trip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.fixed-trip-info {
    flex: 0 0 280px; /* Consistent fixed width */
    min-width: 280px;
    max-width: 280px;
    padding-right: 20px; /* Add some spacing */
}

.fixed-trip-name {
    color: #222222;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixed-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e4a72;
    font-size: 14px;
    font-weight: 500;
}

.fixed-duration i {
    color: #1e4a72;
    width: 16px; /* Fixed icon width for alignment */
}

.fixed-trip-details {
    display: flex;
    align-items: center;
    gap: 30px; /* Consistent gap */
    flex: 1;
    justify-content: flex-end;
    padding-left: 20px;
}

.fixed-detail-group {
    text-align: center;
    min-width: 110px;
    max-width: 110px;
    flex-shrink: 0; /* Prevent shrinking */
}

.detail-group {
    /* Fix the class name inconsistency */
    text-align: center;
    min-width: 110px;
    max-width: 110px;
    flex-shrink: 0;
}

.fixed-detail-label {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 500;
}

.fixed-price {
    color: #1e4a72;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.fixed-departure-date {
    color: #1e4a72;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.fixed-availability {
    color: #1e4a72;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.fixed-join-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    min-width: 100px;
    flex-shrink: 0; /* Prevent button from shrinking */
}

.fixed-join-btn:hover {
    background-color: #10418c;
    transform: translateY(-1px);
    color: white;
}

.fixed-join-btn:active {
    transform: translateY(0);
}

/* Alternative Grid Layout (more reliable for complex layouts) */
.fixed-trip-card-alternative {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 100px;
}

.fixed-trip-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 110px) auto;
    gap: 20px;
    align-items: center;
    justify-content: end;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fixed-container {
        margin: 5% 10%;
    }

    .fixed-trip-details {
        gap: 20px;
    }

    .fixed-detail-group,
    .detail-group {
        min-width: 100px;
        max-width: 100px;
    }
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 36px;
    }

    .fixed-trip-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        min-height: auto;
        padding: 25px;
    }

    .fixed-trip-info {
        flex: 1;
        min-width: 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .fixed-trip-name {
        white-space: normal;
        text-overflow: initial;
        overflow: visible;
        font-size: 20px;
    }

    .fixed-trip-details {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding-left: 0;
    }

    .fixed-detail-group,
    .detail-group {
        min-width: 140px;
        max-width: 140px;
    }

    .fixed-join-btn {
        width: 200px;
        margin: 15px auto 0;
        display: block;
    }
}

@media (max-width: 1023px) {
    .fixed-container {
        margin: 5% 8%;
    }

    .fixed-trip-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }
     .fixed-trip-info {
        display: flex;
        flex-direction: column;
        align-items: center; /* centers both trip name + duration */
        text-align: center;
    }

    .fixed-join-btn {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 520px) {
    .fixed-container {
        margin: 5% 5%;
    }
 .fixed-trip-info {
        display: flex;
        flex-direction: column;
        align-items: center; /* centers both trip name + duration */
        text-align: center;
    }
    .main-title {
        font-size: 28px;
    }

    .fixed-trip-card {
        padding: 20px 15px;
    }

    .fixed-trip-name {
        font-size: 18px;
    }

    .fixed-trip-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .fixed-detail-group,
    .detail-group {
        min-width: auto;
        max-width: none;
        text-align: center;
    }

    .fixed-join-btn {
        width: 100%;
        margin-top: 15px;
    }
}

/* Additional utility classes */
.w-fit {
    width: fit-content;
}

.homepage-packages-section {
    margin: 0 10% 5% 10%;
}

.homepage-section-title {
    text-align: center;
    font-weight: 500;
    color: var(--tertiary-color);
    font-size: 16px;
}

.homepage-section-subtitle {
    color: var(--primary-color);
    font-size: 48px;
    text-align: center;
    margin-bottom: 5%;
}

.homepage-package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.homepage-package-heading {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background-color: transparent;
    border: 1px solid #dc3545;
    border-radius: 50%;
    color: #dc3545;
    font-size: 18px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background-color: #dc3545;
    color: white;
}

/* ===== Footer-template-css ===== */
/* ===== Subscribe Section ===== */
.footer-page-template .subscribe-section {
    background-color: #10418c;
    padding: 10px 0;
}

.footer-page-template .subscribe-container {
    padding: 0px 120px;
}

.footer-page-template .subscribe-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer-page-template .subscribe-content h3 {
    text-align: center;
    padding-top: 1%;
}
.footer-page-template .subscribe-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
    white-space: nowrap;
}

.footer-page-template .subscribe-form {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
    position: relative;
}

.footer-page-template .footer-form-group {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
}

.footer-page-template .email-icon {
    position: absolute;
    left: 15px;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-page-template .email-icon svg {
    width: 100%;
    height: 100%;
}

.footer-page-template .subscribe-form input {
    width: 100%;
    padding: 14px 25px 14px 45px;
    /* Adjusted left padding for SVG icon */
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0footer-page-template 0.1);
    padding-right: 120px;
    position: relative;
}

.footer-page-template .subscribe-form button {
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    border-radius: 50px;
    padding: 8px 20px;
    background: #d41414;
    color: white;
    border: none;
    transition: all 0footer-page-template 0.3s ease;
    height: 48px;
}
.subscribe-form button:hover {
    background: #10418c;
}

/* ===== Main Footer Content ===== */
.footer-page-template .footer-container {
    max-width: 100%;
    display: grid;
    background-color: #e5e5e5;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 120px;
}



.footer-page-template .logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.footer-page-template .footer-logo p {
    font-size: 14px;
    line-height: 1footer-page-template 0.6;
    margin-bottom: 15px;
    color: #222222;
}

.footer-page-template .trustpilot {
    margin-top: 20px;
    color: #222222;
}

.footer-page-template .trust-icons {
    display: flex;
    gap: 25px;
}

.footer-page-template .trust-icons a {
    display: inline-block;
    transition: transform 0footer-page-template 0.3s ease;
}

.footer-page-template .trust-icons a:hover {
    transform: translateY(-3px);
}

.footer-page-template .trust-icons img {
    height: 30px;
    /* Adjust size as needed */
    width: auto;
    transition: filter 0footer-page-template 0.3s ease;
}

.footer-page-template .trust-icons a:hover img {
    filter: none;
    /* Shows full color on hover */
}

.footer-page-template .footer-section h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #222222;
    position: relative;
    padding-bottom: 10px;
}

.footer-page-template .footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #10418c;
}

.footer-page-template .footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-page-template .footer-section ul li {
    margin-bottom: 12px;
}

.footer-page-template .footer-section ul li a {
    color: #222222;
    text-decoration: none;
    transition: all 0footer-page-template 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-page-template .footer-section ul li a:hover {
    color: #10418c;
    transform: translateX(5px);
}

.footer-page-template .footer-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #222222;
    font-size: 14px;
}

.footer-page-template .footer-contact-info i {
    margin-right: 12px;
    color: #222222;
    min-width: 20px;
}

.footer-page-template .footer-social-media h4,
.footer-page-template .payment-methods h4 {
    font-size: 16px;
    margin: 25px 0 15px;
    color: #222222;
}

.footer-page-template .footer-social-icons {
    display: flex;
    gap: 12px;
    /* Increased gap for better spacing */
}

.footer-page-template .footer-social-icon {
    color: #222222;
    /* Black icon color */
    background-color: transparent;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0footer-page-template 0.3s ease;
    border: 1px solid #222222;
    /* Black border */
    padding: 6px;
    /* Space between border and icon */
}

.footer-page-template .footer-social-icon:hover {
    background-color: #222222;
    /* Black background on hover */
    color: #ffffff;
    /* White icon on hover */
    transform: translateY(-3px);
    border-color: #222222;
    /* Maintain black border on hover */
}

.footer-page-template .footer-social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    /* Inherits color from parent */
}

.footer-page-template .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-page-template .payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-page-template .payment-icons img {
    height: 25px;
    transition: transform 0footer-page-template 0.3s ease;
}

.footer-page-template .payment-icons img:hover {
    transform: scale(1footer-page-template 0.1);
}

/* ===== Payment Methods Section ===== */
.footer-page-template .footer-payment-section {
    background-color: #ffffff;
    /* Match your footer background */
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-page-template .footer-payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-page-template .footer-payment-methods {
    text-align: center;
    padding: 15px 0;
}

.footer-page-template .footer-payment-methods h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #10418c;
}

.footer-page-template .footer-payment-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-page-template .footer-payment-icons img {
    height: 30px;
    width: auto;
    transition: transform 0footer-page-template 0.3s ease;
}

.footer-page-template .footer-payment-icons img:hover {
    transform: scale(1footer-page-template 0.1);
}

/* Remove any existing filter if you want original colors */
.footer-page-template .footer-payment-icons img {
    filter: none;
}

/* ===== Footer Bottom ===== */

.footer-page-template .footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.footer-page-template .footer-bottom p {
    font-size: 14px;
}

.footer-page-template .footer-bottom a {
    color: #d41414;
    text-decoration: none;
    transition: color 0footer-page-template 0.3s ease;
    font-size: 18px;
    font-weight: 700;
}

.footer-page-template .footer-bottom a:hover {
    color: #10418c;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .footer-page-template .subscribe-content {
        gap: 20px;
    }

    .footer-page-template .subscribe-form {
        min-width: 350px;
    }
}

@media (max-width: 1023px) {
    .footer-page-template .subscribe-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .footer-page-template .subscribe-section h3 {
        text-align: center;
        white-space: normal;
    }

    .footer-page-template .subscribe-form {
        min-width: 100%;
    }

    .footer-page-template .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        padding: 30px 20px;
    }

    .footer-page-template .logo-img {
        max-width: 150px;
    }

    .footer-page-template .footer-social-icons {
        gap: 2px;
        /* Increased gap for better spacing */
    }
}

@media (max-width: 576px) {
    .footer-page-template .subscribe-container {
        padding: 0 20px;
        /* Reduced padding for mobile */
    }

    .footer-page-template .subscribe-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-page-template .subscribe-section h3 {
        text-align: center;
        white-space: normal;
        font-size: 20px;
        /* Slightly smaller for mobile */
        margin-bottom: 5px;
    }

    .footer-page-template .subscribe-form {
        min-width: 100%;
        max-width: 100%;
    }

    .footer-page-template .footer-form-group {
        flex-direction: column;
        gap: 10px;
    }

    .footer-page-template .subscribe-form input {
        width: 100%;
        padding: 12px 15px 12px 45px;
        /* Adjusted padding */
        padding-right: 15px;
        /* Remove right padding since button is below */
        font-size: 14px;
        border-radius: 4px;
        /* Changed from 50px for mobile */
    }

    .footer-page-template .subscribe-form button {
        position: relative;
        width: 30%;
        height: 40px;
        /* Smaller button */
        padding: 8px;
        margin-top: 5px;
        transform: none;
        top: auto;
        right: auto;
        font-size: 14px;
        border-radius: 10px;
        /* Changed from 50px for mobile */
    }

    .footer-page-template .email-icon {
        left: 15px;
        top: 22%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
    }

    /* Keep existing other styles */
    .footer-page-template .footer-social-icons {
        justify-content: center;
    }

    .footer-page-template .footer-payment-icons {
        justify-content: center;
    }

    .footer-page-template .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin: 0 20px;
        /* Adjusted margin for mobile */
        padding: 15px 0;
    }

    .footer-page-template .logo-img {
        max-width: 120px;
    }
}
/* Footer-template end */

/* ===================== DESTINATION-template start ===================== */
/* ===================== DESTINATION BANNER ===================== */
.destination-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.destination-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.destination-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* ===================== DESTINATION GRID ===================== */
.destination-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 5%;
    box-sizing: border-box;
}

/* ===================== DESTINATION CARDS ===================== */
.destination-item {
    position: relative;
    width: 100%;
    text-decoration: none;
    height: 380px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.destination-item a {
    text-decoration: none;
}

.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 38, 64, 0.75);
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 16px;
}

.destination-hover-border {
    position: absolute;
    top: 1.5%;
    left: 1.5%;
    right: 1.5%;
    bottom: 1.5%;
    border: 1px solid white;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.destination-activity-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.32);
    color: white;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.destination-content {
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
    color: white;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.destination-title {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: white;
}

.view-activity {
    display: none;
    color: white;
    font-size: 14px;
}

.view-btn {
    display: none;
    width: auto;
    padding: 6px 15px;
    text-align: center;
    background: #d41414;
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 100;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

/* Hover Effects */
.destination-item:hover .destination-overlay {
    opacity: 1;
}
.destination-item:hover .destination-hover-border {
    opacity: 1;
}
.destination-item:hover .destination-activity-badge {
    opacity: 0;
}
.view-btn:hover {
    background: var(--primary-color);
}
.destination-item:hover .view-activity {
    display: inline-flex;
}
.destination-item:hover .destination-content {
    transform: translateY(-90%);
}
.destination-item:hover img {
    transform: scale(1.05);
}

/* ===================== RESPONSIVE ADJUSTMENTS ===================== */
/* 4K Scaling */
@media (min-width: 2000px) {
    .destination-image-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
    .destination-item {
        height: 450px;
    }
    .destination-title {
        font-size: 24px;
    }
    .destination-activity-badge {
        font-size: 14px;
        padding: 6px 12px;
    }
    .view-btn,
    .view-activity {
        font-size: 16px;
    }
}

/* 6 cards on 4K screens (≥2560px) */
@media (min-width: 2560px) {
    .destination-image-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .destination-banner h1 {
        font-size: 84px;
    }
}

/* 5 cards on large screens (≥2000px) */
@media (min-width: 2000px) and (max-width: 2559px) {
    .destination-image-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* 3 cards on ≥1024px */
@media (min-width: 1024px) and (max-width: 1999px) {
    .destination-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .destination-item {
        height: 500px;
    }
}

/* 2 cards on tablets ≥768px */
@media (min-width: 768px) and (max-width: 1023px) {
    .destination-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile adjustments (≤767px) */
@media (max-width: 767px) {
    .destination-image-grid {
        margin: 60px auto;
        padding: 0 15px;
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .destination-item {
        height: 400px;
        margin-bottom: 20px;
    }

    .destination-banner {
        height: 250px;
        margin-bottom: 40px;
    }

    .destination-banner h1 {
        font-size: 36px;
        line-height: 1.2;
        padding: 0 20px;
    }

    .destination-title {
        font-size: 22px;
    }

    .view-btn,
    .view-activity {
        font-size: 15px;
    }
}
/* ===================== DESTINATION-template end ===================== */
/* ===================== DESTINATION-detail-template start ===================== */
/* ===================== DESTINATION BANNER ===================== */
.destination-detail-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-detail-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.destination-detail-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 4K Banner Adjustments */
@media (min-width: 2560px) {
    .destination-detail-banner {
        height: 500px;
    }

    .destination-detail-banner h1 {
        font-size: 84px;
        line-height: 92px;
    }
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    max-width: 100%;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 1143px;
    width: 100%;
}

.section-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #d41414;
    margin: 0;
}

.section-main-heading {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #10418c;
    margin: 0;
    max-width: 1143px;
}

.section-description {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #646464;
    margin: 12px 0 0;
    max-width: 1143px;
}

/* 4K About Section Adjustments */
@media (min-width: 2560px) {
    .about-section {
        padding: 120px 20px;
    }

    .section-main-heading {
        font-size: 56px;
        line-height: 64px;
    }

    .section-description {
        font-size: 22px;
        line-height: 32px;
    }
}

/* ===================== DESTINATION GRID CONTAINER ===================== */
.destination-detail-image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Changed from center to flex-start */
    gap: 25px;
    max-width: 2400px;
    margin: 0 120px;
}

/* Single item alignment */
.destination-detail-image-grid:has(> :only-child) {
    justify-content: flex-start;
    padding-left: 20px;
}

/* ===================== DESTINATION CARDS ===================== */
.destination-detail-item {
    position: relative;
    width: calc((100% - 100px) / 5); /* Default 5 columns */
    min-width: 280px;
    height: 380px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.3s ease;
}
.destination-detail-item a {
    text-decoration: none;
    color: inherit;
}

.destination-detail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 38, 64, 0.75);
    opacity: 0.3;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 16px;
}

.destination-detail-package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.32);
    color: white;
    padding: 7px 15px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.destination-detail-content {
    position: absolute;
    bottom: 20px;
    left: 7%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 4;
    color: white;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.destination-detail-title {
    font-family: "Jost", sans-serif;
    font-size: 25px;
    font-weight: 500;
    transition: transform 0.9s ease;
}

.view-btn {
    display: none;
    width: auto;
    padding: 8px 16px;
    background: #d41414;
    color: white;
    border-radius: 100px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.4s ease;
}

/* ===================== HOVER EFFECTS ===================== */
.destination-detail-item:hover img {
    transform: scale(1.03);
}

.destination-detail-item:hover .destination-detail-overlay {
    opacity: 0.4;
}

.destination-detail-item:hover .destination-detail-content {
    transform: translateY(-20px);
}

.destination-detail-item:hover .destination-detail-title {
    transform: translateY(-5px);
}

.destination-detail-item:hover .view-btn {
    display: inline-flex;
}

/* ===================== 4K RESPONSIVE ADJUSTMENTS ===================== */
@media (min-width: 2560px) {
    .destination-detail-item {
        width: calc((100% - 125px) / 6); /* 6 columns */
        height: 450px;
    }

    .destination-detail-title {
        font-size: 28px;
    }

    .destination-detail-package-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .view-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* ===================== LARGE DESKTOP (1920px) ===================== */
@media (min-width: 1920px) and (max-width: 2559px) {
    .destination-detail-item {
        width: calc((100% - 100px) / 5); /* 5 columns */
    }
}

/* ===================== STANDARD DESKTOP (1440px) ===================== */
@media (min-width: 1440px) and (max-width: 1919px) {
    .destination-detail-item {
        width: calc((100% - 75px) / 4); /* 4 columns */
    }
}

/* ===================== SMALL DESKTOP (1200px) ===================== */
@media (min-width: 1200px) and (max-width: 1439px) {
    .destination-detail-item {
        width: calc((100% - 75px) / 3); /* 3 columns */
    }
}

/* ===================== LAPTOP (1024px) ===================== */
@media (min-width: 1024px) and (max-width: 1199px) {
    .destination-detail-item {
        min-width: 225px;
        height: 350px;
    }

    .section-main-heading {
        font-size: 42px;
        line-height: 50px;
    }
}

/* ===================== TABLET (768px) ===================== */
@media (min-width: 768px) and (max-width: 1022px) {
    .destination-detail-item {
        min-width: 250px;
        height: 350px;
    }

    .section-main-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .destination-detail-title {
        font-size: 22px;
    }

    .view-btn {
        display: inline-flex;
    }
}

/* ===================== MOBILE (480px) ===================== */
@media (max-width: 767px) {
    .destination-detail-item {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }

    .destination-detail-image-grid {
        justify-content: center;
    }

    .destination-detail-banner h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .section-main-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .view-btn {
        display: inline-flex;
    }
}
/* ===================== SMALL MOBILE (320px) ===================== */
@media (max-width: 479px) {
    .destination-detail-item {
        height: 320px;
    }

    .destination-detail-banner h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .destination-detail-title {
        font-size: 18px;
    }

    .view-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .destination-detail-image-grid:has(> :only-child) {
        justify-content: center !important;
        padding-left: 0 !important;
    }
}

/* ===================== DESTINATION-detail-template end ===================== */

/* ===================== Customize-your-trip-template start ===================== */
.customize-trip-section {
    position: relative;
    width: 100%;
    height: 384px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.6);
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 751px;
    max-width: 90%;
    z-index: 2;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.section-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #d41414;
    margin: 0;
}

.section-main-heading {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #10418c;
    margin: 0;
}

.section-description {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #646464;
    margin: 0;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    gap: 8px;
    width: 207px;
    height: 44px;
    background: #d41414;
    border: none;
    border-radius: 100px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none; /* removes underline from <a> */
}

.btn-view-more {
    background: var(--primary-color);
}
.btn-view-more:hover {
    background-color: #10418c !important;
}
.cta-button:hover {
    background: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .customize-trip-section {
        height: auto;
        padding: 80px 20px;
        margin-top: 0;
    }

    .section-main-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .section-description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .section-main-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .section-title {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        max-width: 207px;
    }
}
/* ===================== Customize-your-trip-template end ===================== */
/* ===================== Activities-template start ===================== */

/* =====================  BANNER ===================== */

.activities-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activities-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.activities-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 4K Banner Adjustments */
@media (min-width: 2560px) {
    .activities-banner {
        height: 500px;
    }

    .activities-banner h1 {
        font-size: 84px;
        line-height: 92px;
    }
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
    display: flex;
    justify-content: center;
    margin: 5% 10%;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 1143px;
    width: 100%;
}

.section-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #d41414;
    margin: 0;
}

.section-main-heading {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #10418c;
    margin: 0;
    max-width: 1143px;
}

.section-description {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #646464;
    margin: 12px 0 0;
    max-width: 1143px;
}

/* 4K About Section Adjustments */
@media (min-width: 2560px) {
    .about-section {
        padding: 120px 20px;
    }

    .section-main-heading {
        font-size: 56px;
        line-height: 64px;
    }

    .section-description {
        font-size: 22px;
        line-height: 32px;
    }
}

/* ===================== DESTINATION GRID CONTAINER ===================== */
.homepage-activities-section {
    margin: 0 10%;
}
.activities-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* force 4 items per row */
    box-sizing: border-box;
}

/* ===================== activity CARDS ===================== */
.activities-item {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.3s ease;
}
.activities-item a {
    text-decoration: none;
    color: inherit;
}

.activities-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.activities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 38, 64, 0.75);
    opacity: 0.3;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 16px;
}

.activities-package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.32);
    color: white;
    padding: 7px 15px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.activities-content {
    position: absolute;
    bottom: 20px;
    left: 7%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 4;
    color: white;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.activities-title {
    font-family: "Jost", sans-serif;
    font-size: 25px;
    font-weight: 500;
    transition: transform 0.9s ease;
}

.view-btn {
    display: none;
    width: auto;
    padding: 8px 16px;
    background: #d41414;
    color: white;
    border-radius: 100px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.4s ease;
}

/* ===================== HOVER EFFECTS ===================== */
.activities-item:hover img {
    transform: scale(1.03);
}

.activities-item:hover .activities-overlay {
    opacity: 0.4;
}

.activities-item:hover .activities-content {
    transform: translateY(-20px);
}

.activities-item:hover .activities-title {
    transform: translateY(-5px);
}

.activities-item:hover .view-btn {
    display: inline-flex;
}

.activity-btn:hover {
    background-color: var(--primary-color) !important;
}
.hover-btn:hover {
    background-color: var(--primary-color) !important;
}

@media (max-width: 1199px) {
    .activities-image-grid {
        grid-template-columns: repeat(
            3,
            1fr
        ); /* 3 cards on smaller desktop/laptops */
    }
}

@media (max-width: 991px) {
    .activities-image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards on tablets */
    }
}

@media (max-width: 575px) {
    .activities-image-grid {
        grid-template-columns: 1fr; /* 1 card on mobile */
    }
}

/* ===================== Activities-template end ===================== */
/* ===================== Activity-detail-template start ===================== */
.activity-navbar {
    top: 70px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    z-index: 20;
    overflow-x: auto;
}

/* SLIDER EFFECT ON MOBILE */
.activity-navbar .nav-links {
    display: flex;
    gap: 10px;
    justify-content: space-between;

    padding: 0 15px;
    list-style: none;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
}

.activity-navbar .nav-links::-webkit-scrollbar {
    display: none;
}

.activity-navbar .nav-links li {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.activity-navbar .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
    white-space: nowrap;
}

.activity-navbar .nav-links a:hover,
.activity-navbar .nav-links a.active {
    color: #10418c !important; /* Force blue color */
}
@media (max-width: 769px) {
    .activity-navbar {
        padding: 10px 0;
        top: 60px; /* or adjust based on your mobile header height */
    }

    .activity-navbar .nav-links li {
        position: relative;
        padding-right: 15px; /* Add spacing before the '|' */
    }

    .activity-navbar .nav-links li:not(:last-child)::after {
        content: "|";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #10418c;
        font-weight: 400;
        font-size: 14px;
    }

    .activity-navbar .nav-links a {
        font-size: 14px;
        padding-right: 5px; /* To avoid overlapping the pipe */
    }
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes it behave like background-size: cover */
}

.banner-content {
    position: relative;
    z-index: 1; /* Puts content above the image */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.activity-main-title {
    font-size: 36px;
    font-weight: 600;
    text-align: left;
    color: var(--primary-color);
    flex: 1;
}

.activity-social-section {
    display: flex;
    align-items: left;
    margin-right: 180px;
    gap: 12px;
}

.shares-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 8px;
}

.shares-count {
    font-size: 0.875rem;
    color: #4b5563;
}

.shares-label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.social-buttons {
    display: flex;
    gap: 4px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-btn.facebook {
    background-color: #3b82f6;
}
.social-btn.twitter {
    background-color: #000;
}
.social-btn.messenger {
    background-color: #3b82f6;
}
.social-btn.whatsapp {
    background-color: #22c55e;
}
.social-btn.share {
    background-color: #16a34a;
}

.social-btn:hover {
    opacity: 0.9;
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: start;
    gap: 24px;
}

/* Trek Info Card */
.activity-info-card {
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.activity-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 equal columns */
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.info-value {
    font-weight: 600;
    color: #111827;
}

/* Content Sections */
.activity-content-section {
    margin-top: 32px;
}

.activity-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 20px;
}

.activity-highlights-content p {
    margin-bottom: 12px;
    color: #646464;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}

.overview-text {
    color: #646464;
    line-height: 1.7;
}

/* Enhanced Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 40px;
}

.itinerary-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-image: repeating-linear-gradient(
        to bottom,
        #2563eb 0px,
        #2563eb 8px,
        transparent 8px,
        transparent 16px
    );
}

.timeline-item {
    position: relative;
    background: white;
    padding: 20px;
    margin-left: 20px;
}

.timeline-marker {
    position: absolute;
    left: -46px;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: #2563eb;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.day-title {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.day-description {
    margin-bottom: 16px;
}

.day-description p {
    color: #4b5563;
    margin-bottom: 8px;
}

.day-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
}

.detail-item i {
    color: #2563eb;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-text {
    text-align: center;
}

.detail-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 2px;
    font-weight: 500;
}

.detail-value {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 600;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 150px;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.price-header {
    margin-bottom: 24px;
}

.price-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.group-pricing {
    background-color: #f5f5f5;
    margin-bottom: 24px;
    padding: 15px;
    border-radius: 15px;
}

.group-title {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 12px;
}

.price-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-tier {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.tier-price {
    font-weight: 600;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-book {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-book:hover {
    background-color: #10418c;
}

.btn-inquire {
    background-color: white;
    color: #dc2626;
    border: 1px solid #dc2626;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-inquire:hover {
    background-color: #fef2f2;
}

/* Customize Card */
.customize-card {
    background: #eff6ff;
    border-radius: 8px;
    padding: 24px;
    text-align: center; /* <-- Add this */
}

.customize-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 12px;
}

.customize-text {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.btn-personalize {
    background-color: #d41414;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-personalize:hover {
    background-color: #10418c ;
}
/* Expert Card */
.expert-card {
    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.expert-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #10418c;
    margin-bottom: 16px;
}

.expert-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.expert-avatar-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d1d5db;
}

.expert-name {
    font-weight: 600;
    margin-bottom: 4px;
}
.expert-contact-icons {
    display: flex;
    gap: 8px;
}

.contact-icon {
    width: 24px; /* SVG size */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.message svg {
    fill: #2563eb; /* Tailwind blue-600 */
}

.contact-info {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Route Section */
.section-title {
    text-align: left;
    margin-left: 0px;
    margin-top: 0px;
    font-size: 28px;
    color: #10418c;
    font-weight: bold;
}

.route-section {
    text-align: center;
    margin-top: 30px;
}

.route-map-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

/* Include/Exclude Section */
.include-exclude-section {
    padding: 25px 0px;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch; /* Add this line */
}

.cost-includes,
.cost-excludes {
    flex: 1;
    min-width: 300px;
}

.cost-includes h3,
.cost-excludes h3 {
    font-size: 20px;
    color: #10418c;
    margin-bottom: 15px;
}

.cost-includes ul,
.cost-excludes ul {
    list-style-type: none; /* This removes the bullet points */
    padding-left: 0; /* Optional: removes default padding */
}

.cost-includes ul li,
.cost-excludes ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.cost-includes ul li::before {
    content: "✅";
    margin-right: 8px; /* Adds some space between emoji and text */
}

.cost-excludes ul li::before {
    content: "❌";
    margin-right: 8px; /* Adds some space between emoji and text */
}

/* Gallery Section */
.gallery-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 20px;
}

.main-slider {
    position: relative;
    width: 70%;
}

.slider-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.nav.prev {
    left: 10px;
}

.nav.next {
    right: 10px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 25%;
}

.thumbnail-list img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.2s;
}

.thumbnail-list img:hover {
    transform: scale(1.03);
}

.essential-info-section {
    margin-top: 20px;
}

.essential-info-section p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.essential-info-section ol {
    padding-left: 20px;
    color: #222;
}

.essential-info-section ol li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.activity-faq-container {
    flex-direction: column;
    align-items: center;
    gap: 52px;
    max-width: 945px;
    margin: 20px auto;
}
.scroll-margin {
    scroll-margin-top: 120px;
}

.activity-faq-header {
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #d41414;
    margin: 0;
}

.activity-faq-heading {
    font-family: "Jost";
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #10418c;
}

.activity-faq-card {
    width: 100%;
    margin-bottom: 25px;
    background: #fbfbfb;
    border: 1px solid #e1e1e1;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}

.activity-faq-category {
    font-family: "Jost";
    font-size: 24px;
    font-weight: 600;
    color: #10418c;
    margin-bottom: 24px;
}

.activity-faq-item {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.activity-faq-question h5 {
    font-family: "Jost";
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #222222;
}

.activity-faq-item.expanded .activity-faq-question h5 {
    color: #222222;
}

.activity-faq-answer {
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 24px;
    color: #646464;
    margin: 0;
    display: none;
}

.activity-faq-item.expanded .activity-faq-answer {
    display: block;
}

.similar-packages-subheading {
    font-size: 48px;
    font-weight: bold;
    color: #003366;
    text-align: center;
    max-width: 1200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 2fr 1fr; /* Keep the original ratio */
        gap: 20px;
    }

    .container {
        padding: 16px 12px;
    }

    .activity-social-section {
        margin-right: 100px; /* Reduce margin for smaller screens */
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .activity-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .container {
        padding: 16px 12px;
    }

    .itinerary-timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -40px;
        width: 14px;
        height: 14px;
    }

    .timeline-item {
        margin-left: 15px;
    }

    .day-details {
        gap: 16px;
    }

    .detail-item {
        min-width: 100px;
    }
    .itinerary-timeline::before {
        left: 10px; /* Match center of .timeline-marker */
    }
}

@media (max-width: 480px) {
    .activity-info-grid {
        grid-template-columns: 1fr;
    }
    .main-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .content-left {
        order: 1;
        width: 100%;
    }

    .sidebar {
        order: 2;
        width: 100%;
        position: static; /* Remove sticky positioning on mobile */
    }

    .activity-main-title {
        font-size: 24px;
        text-align: center;
    }

    .activity-social-section {
        margin-right: 0;
        justify-content: center;
        margin-bottom: 20px;
    }

    .activity-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .main-slider {
        width: 100%;
    }

    .thumbnail-list {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }

    .thumbnail-list img {
        min-width: 80px;
        height: 60px;
    }

    .container {
        padding: 12px 8px;
    }
    .social-buttons {
        flex-wrap: wrap;
    }

    .main-title {
        font-size: 1.25rem;
    }

    .itinerary-timeline {
        padding-left: 25px;
    }

    .timeline-marker {
        left: -34px;
        width: 12px;
        height: 12px;
    }

    .timeline-item {
        margin-left: 10px;
        padding: 16px;
    }

    .day-details {
        justify-content: space-around;
        gap: 12px;
    }

    .detail-item {
        min-width: 80px;
    }

    .detail-item i {
        font-size: 18px;
    }
    .itinerary-timeline::before {
        left: 6px; /* Match center of smaller .timeline-marker */
    }
}

/* ===================== GOOGLE REVIEWS SECTION ===================== */
.google-activity-reviews-section {
    margin: 5% 10% 5% 10%;
    text-align: center;
}

.review-subheading {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.review-heading {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
}

.activity-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.google-review-card {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

.stars {
    font-size: 14px;
    color: #ffd233;
    line-height: 1;
}

.google-icon {
    width: 20px;
    position: absolute;
    right: 0;
}

.review-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

/* ===================== RESPONSIVE STYLES ===================== */
@media (max-width: 1200px) {
    .client-reviews .reviews {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .review-banner h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .review-heading,
    .client-reviews h2 {
        font-size: 36px;
    }

    .client-reviews .reviews {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .review-banner {
        height: 250px;
    }

    .review-banner h1 {
        font-size: 32px;
    }

    .review-heading,
    .client-reviews h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .client-reviews .reviews {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .client-reviews {
        margin: 80px auto;
    }
}

/* 4K and large screens */
@media (min-width: 2000px) {
    .review-banner {
        height: 500px;
    }

    .review-banner h1 {
        font-size: 84px;
    }

    .google-activity-reviews-section,
    .client-reviews {
        max-width: 1800px;
    }

    .client-reviews .reviews {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .image-wrapper {
        height: 250px;
    }
}

/* ----------------------------- */
.similar-packages-heading {
    font-size: 48px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 40px auto; /* Centered inside container */
    padding-left: 15px;
}

/* ----------------------------- */
/* Trip Cards Container */
/* ----------------------------- */
.similar-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 5% 5% 5%;
    justify-content: flex-start; /* changed from center to flex-start */
}

/* ----------------------------- */
/* Individual Trip Card */
/* ----------------------------- */
.similar-card {
    width: 300px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
}

/* ----------------------------- */
/* Trip Image Container & Hover */
/* ----------------------------- */
.similar-image-container {
    position: relative;
    overflow: hidden;
}
.similar-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
.similar-card:hover .similar-image {
    transform: scale(1.05);
}

/* ----------------------------- */
/* Duration Tag (on image) */
/* ----------------------------- */
.similar-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* ----------------------------- */
/* Trip Info Section */
/* ----------------------------- */
.similar-info {
    padding-top: 15px;
}
.similar-category {
    font-size: 12px;
    margin-bottom: 4px;
    color: var(--primary-color);
}
.similar-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222222;
}
.similar-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    justify-content: space-between;
}
.similar-currency {
    color: #666;
    font-size: 12px;
}
.similar-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--tertiary-color);
}

/* ----------------------------- */
/* Trip Bottom Section */
/* ----------------------------- */
.similar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding-top: 10px;
    border-top: 1px solid #d4d1d1;
    min-height: 40px;
}

/* ----------------------------- */
/* Book Now Button */
/* Nudged downward for alignment between price and rating */
/* ----------------------------- */
.book-now-button {
    background-color: var(--tertiary-color);
    color: #fff;
    padding: 7px 29px;
    font-size: 14px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none; /* Remove underline */

    transition: background 0.3s;
    transform: translateY(25px); /* Lowered without affecting stars */
}
.book-now-button:hover {
    background-color: var(--primary-color);
}

/* ----------------------------- */
/* Trip Rating (Stars) */
/* ----------------------------- */
.similar-rating {
    display: flex;
    gap: 3px;
    width: 120px;
    margin-top: 5px;
    align-items: center;
}

/* ----------------------------- */
/* Responsive Breakpoints */
/* ----------------------------- */

/* 4 cards on ≥1440px */
@media (min-width: 1440px) {
    .similar-card {
        width: calc((100% - 90px) / 4); /* gap: 3 * 30px */
    }
}

/* 3 cards on ≥1024px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .similar-card {
        width: calc((100% - 60px) / 3); /* gap: 2 * 30px */
    }
}

/* 2 cards on tablets ≥768px */
@media (min-width: 768px) and (max-width: 1023px) {
    .similar-card {
        width: calc((100% - 30px) / 2); /* gap: 1 * 30px */
    }
}

/* 1 card on ≤425px (mobiles) */
@media (max-width: 425px) {
    .similar-card {
        width: 100%;
    }
}/* ===================== FIXED DEPARTURES ===================== */
.activity-container {
    max-width: 1200px;
    margin: 0 auto;
}

.activity-header {
    margin-bottom: 50px;
}

.activity-fixed-departures {
    color: #10418c;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.activity-fixed-trips-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-fixed-trip-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-fixed-trip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.activity-fixed-trip-details {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Changed from 4 to 5 */
    align-items: center;
    gap: 15px; /* Reduced from 20px to 15px */
}

.activity-fixed-detail-group {
    text-align: center;
}

.activity-fixed-detail-label {
    color: #666;
    font-size: 13px; /* Slightly reduced from 14px */
    margin-bottom: 5px;
}

.activity-fixed-price {
    color: #1e4a72;
    font-size: 13px; /* Slightly reduced from 14px */
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

.activity-fixed-departure-date {
    color: #333;
    font-size: 13px; /* Slightly reduced from 14px */
    font-weight: 500;
}

.activity-fixed-availability {
    color: #1e4a72;
    font-size: 13px; /* Slightly reduced from 14px */
    font-weight: 500;
}

.activity-fixed-join-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px; /* Reduced padding */
    border-radius: 25px;
    font-size: 13px; /* Slightly reduced from 14px */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    width: 100%;
    white-space: nowrap; /* Prevents button text from wrapping */
}

.activity-fixed-join-btn:hover {
    background-color: #10418c;
    transform: translateY(-1px);
}

.activity-fixed-join-btn:active {
    transform: translateY(0);
}

/* Alternative: More compact layout */
.activity-fixed-trip-details-compact {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr; /* Custom column widths */
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .activity-fixed-trip-details {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 15px;
    }
    
    .activity-fixed-join-btn {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .activity-fixed-trip-details {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .activity-fixed-trip-details {
        grid-template-columns: 1fr;
    }
    
    .activity-fixed-join-btn {
        grid-column: 1;
    }
}
/* ===================== Activity-detail-template end ===================== */
/* ===================== booking-template-start ===================== */
/* ===================== booking BANNER ===================== */
.booking-banner {
    position: relative;
    width: 100%;
    height: 420px;
    background: no-repeat center top/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.booking-banner h1 {
    position: relative;
    z-index: 2;
    font: 450 64px/72px "Jost", sans-serif;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===================== booking SECTION ===================== */
.booking-template-section {
    max-width: 100%;
    text-align: center;
}

.booking-template-section-heading {
    width: 100%;
    margin-top: 5%;
}

.booking-template-section-title {
    font: bold 16px/24px "Open Sans", sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: #d41414;
}

.section-main-heading {
    font: 450 48px/56px "Jost", sans-serif;
    color: #10418c;
    margin: 0;
}

.section-description {
    font: 400 18px/28px "Open Sans", sans-serif;
    text-align: center;
    color: #646464;
    margin: 12px 0 0;
    max-width: 1143px;
}

/* ===================== FORM STYLES ===================== */
.booking-template-form-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 30px;
    font-family: "Open Sans", sans-serif;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.row .col-md-6 {
    flex: 0 0 calc(50% - 10px);
}

select:invalid {
    color: #999;
}

.booking-template-form-header h1,
.booking-template-form-header h2 {
    text-align: center;
    font-weight: bold;
}

.booking-template-form-header h1 {
    color: #10418c;
    font-size: 28px;
    margin-bottom: 30px;
}

.booking-template-form-header h2 {
    color: var(--tertiary-color);
    font-size: 17px;
}

.booking-form,
.booking-template-form-section {
    display: flex;
    flex-direction: column;
}

.booking-form {
    gap: 25px;
}
.booking-template-form-section {
    gap: 20px;
}

.booking-template-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.booking-template-form-section h2 {
    color: #10418c;
    font: 900 24px/1.2 "Open Sans", sans-serif; /* Increased size and adjusted line-height */
    padding-bottom: 5px;
    border-bottom: 2px solid #eee; /* Made border slightly thicker */
    letter-spacing: -0.2px; /* Optional: slight tightening of letter spacing */
}

.booking-template-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-template-form-group label {
    font: 600 14px/1 "Open Sans", sans-serif;
    color: #444;
}

.booking-template-form-group input,
.booking-template-form-group textarea,
.booking-template-form-group select {
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.booking-template-form-group input:focus,
.booking-template-form-group textarea:focus,
.booking-template-form-group select:focus {
    border-color: #10418c;
    box-shadow: 0 0 0 2px rgba(16, 65, 140, 0.1);
}

.booking-template-form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.booking-template-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-template-submit-btn {
    background: #d41414;
    color: white;
    border: none;
    width: 110px;
    padding: 16px;
    font: 400 16px/1 "Open Sans", sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 50px auto 0;
    display: block;
    text-align: center;
}

.booking-template-submit-btn:hover {
    background: #10418c;
}

/* ===================== RESPONSIVE ADJUSTMENTS ===================== */
@media (max-width: 768px) {
    .booking-booking-template-form-container {
        padding: 20px;
    }
    .booking-template-form-header h1 {
        font-size: 24px;
    }
    .row .col-md-6 {
        flex: 0 0 100%;
    }
    .booking-template-form-card {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .booking-banner {
        height: 200px;
    }
    .booking-banner h1 {
        font: 450 28px/36px "Jost", sans-serif;
        padding: 0 10px;
    }
}

@media (min-width: 361px) and (max-width: 480px) {
    .booking-banner {
        height: 240px;
    }
    .booking-banner h1 {
        font: 450 32px/40px "Jost", sans-serif;
        padding: 0 10px;
    }
}

@media (min-width: 481px) and (max-width: 991px) {
    .booking-banner {
        height: 300px;
    }
    .booking-banner h1 {
        font: 450 40px/48px "Jost", sans-serif;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .booking-banner {
        height: 400px;
    }
    .booking-banner h1 {
        font: 450 56px/64px "Jost", sans-serif;
    }
}

@media (min-width: 2560px) {
    .booking-banner {
        height: 500px;
    }
    .booking-banner h1 {
        font: 450 84px/92px "Jost", sans-serif;
    }
}
/* ===================== booking-template end ===================== */
/* ===================== personalize-your-trip start ===================== */
/* ===================== personalize BANNER ===================== */
.personalize-my-trip-template .personalize-my-trip-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.personalize-my-trip-template .personalize-my-trip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0personalize-my-trip-template 0.3);
    z-index: 1;
}

.personalize-my-trip-template .personalize-my-trip-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0personalize-my-trip-template 0.3);
}

.personalize-my-trip-template .personalize-booking-form-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 30px;
    font-family: "Open Sans", sans-serif;
}

.personalize-my-trip-template .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* adjust spacing as needed */
}

select:invalid {
    color: #999;
    /* makes the placeholder look like a placeholder */
}

.personalize-my-trip-template .row .personalize-my-trip-template .col-md-6 {
    flex: 0 0 calc(50% - 10px);
    /* two columns with a small gap */
}

.personalize-my-trip-template .form-header h2 {
    text-align: center;
    color: var(--tertiary-color);
    font-size: 17px;
    font-weight: 600;
}

.personalize-my-trip-template .form-header h1 {
    text-align: center;
    color: #10418c;
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 600;
}

.personalize-my-trip-template .booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.personalize-my-trip-template .form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0personalize-my-trip-template 0.08);
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.personalize-my-trip-template .form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.personalize-my-trip-template .form-section h2 {
    color: #10418c;
    font-size: 20px;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.personalize-my-trip-template .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.personalize-my-trip-template .form-group label {
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.personalize-my-trip-template .form-group input,
.personalize-my-trip-template .form-group textarea {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0personalize-my-trip-template 0.3s;
}

.personalize-my-trip-template .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.personalize-my-trip-template .w3.personalize-my-trip-template .org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='currentColor'%3E%3Cpath%20d='M12%2015.personalize-my-trip-template .0006L7.personalize-my-trip-template .75732%2010.personalize-my-trip-template .758L9.personalize-my-trip-template .17154%209.personalize-my-trip-template .34375L12%2012.personalize-my-trip-template .1722L14.personalize-my-trip-template .8284%209.personalize-my-trip-template .34375L16.personalize-my-trip-template .2426%2010.personalize-my-trip-template .758L12%2015.personalize-my-trip-template .0006Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;

    padding-right: 40px;
    /* space for icon */
    padding-left: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    background-color: #fff;
}

.personalize-my-trip-template .form-group input:focus,
.personalize-my-trip-template .form-group select:focus,
.personalize-my-trip-template .form-group textarea:focus {
    border-color: #10418c;
    box-shadow: 0 0 0 2px rgba(16, 65, 140, 0personalize-my-trip-template 0.1);
}

.personalize-my-trip-template .form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.personalize-my-trip-template .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.personalize-my-trip-template .submit-btn {
    background: #d41414;
    color: white;
    border: none;
    width: 15%;
    padding: 8px;
    font-size: 16px;
    border-radius: 30px;
    /* More rounded corners */
    cursor: pointer;
    font-weight: 400;
    transition: background 0personalize-my-trip-template 0.3s;
    margin: 10px auto 0;
    /* Top margin + auto centering */
    display: block;
    /* Needed to center with margin auto */
    text-align: center;
}

.personalize-my-trip-template .submit-btn:hover {
    background: #b01010;
}

/* Required field indicator */

/* Base styles remain unchanged */

/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .personalize-my-trip-template .personalize-booking-form-container {
        padding: 15px;
    }

    .personalize-my-trip-template .form-header h1 {
        font-size: 20px;
    }

    .personalize-my-trip-template .form-header h2 {
        font-size: 15px;
    }

    .personalize-my-trip-template .row .personalize-my-trip-template .col-md-6 {
        flex: 0 0 100%;
    }

    .personalize-my-trip-template .form-card {
        padding: 15px;
    }

    .personalize-my-trip-template .form-section h2 {
        font-size: 18px;
    }

    .personalize-my-trip-template .submit-btn {
        width: 100%;
    }
}

/* Standard Mobile (361px to 480px) */
@media (min-width: 361px) and (max-width: 480px) {
    .personalize-my-trip-template .personalize-booking-form-container {
        padding: 20px;
    }

    .personalize-my-trip-template .form-header h1 {
        font-size: 22px;
    }

    .personalize-my-trip-template .form-header h2 {
        font-size: 16px;
    }

    .personalize-my-trip-template .row .personalize-my-trip-template .col-md-6 {
        flex: 0 0 100%;
    }

    .personalize-my-trip-template .form-card {
        padding: 20px;
    }

    .personalize-my-trip-template .form-section h2 {
        font-size: 18px;
    }

    .personalize-my-trip-template .submit-btn {
        width: 100%;
    }
}

/* Tablet (481px to 991px) */
@media (min-width: 481px) and (max-width: 991px) {
    .personalize-my-trip-template .personalize-booking-form-container {
        padding: 30px;
    }

    .personalize-my-trip-template .form-header h1 {
        font-size: 24px;
    }

    .personalize-my-trip-template .form-header h2 {
        font-size: 17px;
    }

    .personalize-my-trip-template .row .personalize-my-trip-template .col-md-6 {
        flex: 0 0 100%;
    }

    .personalize-my-trip-template .form-card {
        padding: 25px;
    }

    .personalize-my-trip-template .form-section h2 {
        font-size: 20px;
    }

    .personalize-my-trip-template .submit-btn {
        width: 15%;
    }
}

/* Laptop (992px to 1440px) */
@media (min-width: 992px) and (max-width: 1440px) {
    .personalize-my-trip-template .personalize-booking-form-container {
        padding: 40px;
    }

    .personalize-my-trip-template .form-header h1 {
        font-size: 28px;
    }

    .personalize-my-trip-template .form-header h2 {
        font-size: 17px;
    }

    .personalize-my-trip-template .row .personalize-my-trip-template .col-md-6 {
        flex: 0 0 calc(50% - 10px);
    }

    .personalize-my-trip-template .form-card {
        padding: 30px;
    }

    .personalize-my-trip-template .form-section h2 {
        font-size: 20px;
    }
}

/* Large Screens / 4K (2560px and above) */
@media (min-width: 2560px) {
    .personalize-my-trip-template .personalize-booking-form-container {
        max-width: 1200px;
        padding: 60px;
    }

    .personalize-my-trip-template .form-header h1 {
        font-size: 36px;
    }

    .personalize-my-trip-template .form-header h2 {
        font-size: 20px;
    }

    .personalize-my-trip-template .row .personalize-my-trip-template .col-md-6 {
        flex: 0 0 calc(50% - 10px);
    }

    .personalize-my-trip-template .form-card {
        padding: 40px;
    }

    .personalize-my-trip-template .form-section h2 {
        font-size: 24px;
    }
}
/* ===================== personalize-your-trip end ===================== */
/* ===================== about-template start ===================== */
/* ===================== about BANNER ===================== */
.about-us-template .about-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-template .about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.6); /* Increased from 0.3 to 0.6 for better text readability */
    z-index: 1;
}

.about-us-template .about-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0about-us-template 0.3);
}

/* ===about Container === */
.about-us-template .about-section {
    margin: 5% 10% 5% 10%;
}

.about-us-template .about-container {
    margin: 0 auto;
}

/* === Main Row: Text + Image === */
.about-us-template .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

.about-us-template .text-content {
    flex: 1 1 600px;
}

/* .about-us-template .image-content {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.about-us-template .image-content img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%; 
} */


.about-us-template .image-content {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
}

.about-us-template .image-content img {
    width: 100%;        /* take full width */
    max-width: 100%;    /* remove the 400px limit */
    height: auto;       /* keep aspect ratio */
    object-fit: cover;
    border-radius: 5%; /* rounded corners */
}


/* === Headings & Paragraphs === */
.about-us-template .red-text {
    color: var(--tertiary-color);
    text-transform: uppercase;
    font-weight: bold;
    margin: 5% 0;
}

.about-us-template .main-heading {
    font-size: 42px;
    color: #10418c;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1about-us-template 0.3;
}

.about-us-template .para {
    color: #555;
    margin-bottom: 15px;
    line-height: 1about-us-template 0.7;
}

/* === Stats === */
.about-us-template .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1140px;
    padding-top: 5%;
}

.about-us-template .stat-box {
    flex: 1 1 18%;
    min-width: 150px;
    padding: 2%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.about-us-template .icon-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-us-template .icon-text img {
    width: 30px;
    height: auto;
}

.about-us-template .icon-text h2 {
    font-size: 24px;
    color: #111;
    font-weight: bolder;
    margin: 0;
}

.about-us-template .stat-box p {
    font-size: 18px;
    color: #555;
    margin-top: 5px;
    margin-left: 38px;
    white-space: nowrap; /* ✅ Prevents text from wrapping */
    overflow: hidden; /* ✅ Hides overflow */
    text-overflow: ellipsis; /* ✅ Adds "..." if text is too long */
}

/* === Mission & Vision - Figma Design === */
.about-us-template .mission-vision {
    text-align: center;
}

.about-us-template .mission-vision .about-us-template .red-text {
    margin-bottom: 10px;
}

.about-us-template .quote {
    font-size: 48px;
    font-weight: 700;
    color: #10418c;
    margin: 20px 0 50px;
}

.about-us-template .mission-vision-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 0 auto;
}

.about-us-template .mission-vision-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    text-align: left;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0about-us-template 0.08);
}

.about-us-template .icon-container {
    width: 60px;
    height: 60px;
    border: 2px solid #4a90e2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9ff;
    flex-shrink: 0;
}
@media (max-width: 1023px) {
    .about-us-template .mission-vision-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-us-template .content {
        text-align: center;
    }
}

.about-us-template .icon-container img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.about-us-template .content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.about-us-template .content p {
    font-size: 16px;
    color: #666;
    line-height: 1about-us-template 0.6;
    margin: 0;
}

.about-us-template .why-choose-us {
    max-width: 100%;
    margin: 0 auto;
    padding: 5% 10%;
    text-align: center;
    background-color: #f7f7f7;
}

.about-us-template .why-choose-us .about-us-template .tagline {
    color: var(--tertiary-color);
    font-weight: 600;
    letter-spacing: 0about-us-template 0.5px;
}

.about-us-template .why-choose-us h2 {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5%;
}

.about-us-template .features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.about-us-template .feature-box {
    flex: 1;
    min-width: 280px;
    max-width: 32%;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.about-us-template .icon {
    background-color: #003366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-us-template .feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-us-template .feature-box p {
    font-size: 14px;
    color: #555;
}

/* Team section */
.about-us-template .team-section {
    margin: 0% 10% 5% 10%;
}

.about-us-template .team-section h5 {
    color: #d41414;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}

.about-us-template .team-section h2 {
    font-size: 48px;
    font-weight: 600;
    color: #10418c;
    text-align: center;
}
.write-review-btn {
  background-color: var(--tertiary-color);
  color: white;
  border-radius: 50px;
  padding: 8px 20px;
  transition: background-color 0.3s ease; /* smooth hover effect */
}

.write-review-btn:hover {
  background-color: #10418c;
  color: white;
}


.about-us-template .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    justify-content: start;    
    gap: 20px;
}

.about-us-template .team-card {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    margin-bottom: 20px;

}

.about-us-template .team-card-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    /* Inherit text color from parent */
    /* Add some padding for better click area */
}

.about-us-template .team-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-us-template .team-card h3 {
    font-size: 18px;
    color: #163172;
}

.about-us-template .team-card p {
    margin: 3px 0;
    font-weight: 600;
    font-size: 14px;
    color: #222222;
}

.about-us-template .social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.about-us-template .social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0about-us-template 0.3s ease;
}

.about-us-template .social-icons a:hover {
    transform: translateY(-3px);
}

.about-us-template .social-icons a:hover .about-us-template .whatsapp-icon svg {
    fill: white;
}

/* View All Button Styles */
.about-us-template .view-all-btn-container {
    text-align: center;
}

.about-us-template .view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    height: 44px;
    width: auto;
    background-color: #d41414;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 100px;
    transition: all 0about-us-template 0.3s ease;
    text-transform: uppercase;
    font-size: 16px;
}

.about-us-template .view-all-btn:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

.about-us-template .partners-section {
    margin: 5% 10% 5% 10%;
    overflow: hidden;
}

.about-us-template .partners-label {
    color: red;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.about-us-template .partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.about-us-template .partners-heading {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.about-us-template .carousel-controls {
    display: flex;
    gap: 10px;
}

.about-us-template .carousel-btn {
    background-color: transparent;
    border: 1px solid red;
    border-radius: 50%;
    color: red;
    font-size: 18px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-template .logo-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.about-us-template .logo-card {
    width: 195px;
    height: 120px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0about-us-template 0.1);
}

.about-us-template .logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 14px;
}

/* ===================== RESPONSIVE STYLES ===================== */
@media only screen and (max-width: 426px) {
    /* Feature boxes - show 1 per row */
    .about-us-template .features {
        flex-direction: column;
        align-items: center;
    }

    .about-us-template .feature-box {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Adjust other elements for mobile if needed */
    .about-us-template .about-banner h1 {
        font-size: 42px;
        line-height: 1about-us-template 0.2;
    }

    .about-us-template .main-heading {
        font-size: 32px;
    }

    .about-us-template .mission-vision-cards {
        flex-direction: column;
    }

    .about-us-template .team-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .about-us-template .logo-track {
        gap: 15px;
    }

    .about-us-template .logo-card {
        width: 160px;
        height: 100px;
    }
}
/* ===================== about-template end ===================== */
/* ===================== legal-template start ===================== */
/* ===================== legal BANNER ===================== */
.legal-docs-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-docs-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.legal-docs-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 550;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.legal-container .subheading {
    color: #d41414;
    font-size: 18px;
    margin-top: 50px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.legal-container .heading {
    color: #10418c;
    font-size: 35px;
}
/* 4K Banner Adjustments */
@media (min-width: 2560px) {
    .legal-docs-banner {
        height: 500px;
    }

    .legal-docs-banner h1 {
        font-size: 84px;
        line-height: 92px;
    }
}

.legal-container {
    padding: 2rem;
    text-align: center;
    margin: 5%;
}

.legal-subheading {
    color: red;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.legal-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobile default: 1 column */
    gap: 2rem;
    justify-content: center;
    align-items: start;
}

@media (min-width: 768px) {
    .legal-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
    }
}

@media (min-width: 1024px) {
    .legal-grid {
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
    }
}
.legal-card {
    border: 2px solid #10418c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%; /* Allow grid to stretch cards evenly */
    max-height: 480px; /* Optional fixed height */
}

.legal-card a {
    display: flex;
    flex-grow: 1;
    overflow: hidden; /* Ensure image stays within bounds */
}

.legal-card img {
    width: 100%;
    height: 100%;
    max-height: 400px; /* control height of image */
    object-fit: cover; /* fill image nicely */
    display: block;
    transition: transform 0.3s ease; /* Optional: Add hover effect */
}

.legal-card a:hover img {
    transform: scale(1.02); /* Optional: subtle zoom on hover */
}

.legal-label {
    background-color: #10418c;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin: 1px;
    border-radius: 10px 10px 10px 10px; /* Adjusted to match card border */
}
/* ===================== legal-template end ===================== */
/* ===================== team-template-start ===================== */
/* ===================== team BANNER ===================== */
.team-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.team-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Team section */
.team-section {
    margin: 0% 10% 0 10%;
}

.team-section h5 {
    color: var(--tertiary-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 80px;
    text-align: center;
}

.team-section h2 {
    font-size: 48px;
    font-weight: 600;
    color: #10418c;
    text-align: center;
    font-family: var(--primary-font);
}

.team-template-container {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(240px, 1fr)
    ); /* reduced from 300px */
    gap: 20px;
    margin: 5% 0 0 0;
}

.team-template-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-template-card-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.team-template-card img {
    width: 100%;
    aspect-ratio: 3/4; /* taller image */
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.team-template-card:hover img {
    transform: scale(1.03);
}

.team-template-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: var(--primary-font);
}

.team-template-card p {
    margin: 3px 0;
    font-weight: 600;
    font-size: 14px;
    color: #222222;
}

.team-template-card .team-template-social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
}

.team-template-social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-template-social-icons a:hover {
    transform: translateY(-3px);
}

.team-template-social-icons a:hover .whatsapp-icon svg {
    fill: white;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .team-template-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .team-section h2 {
        font-size: 36px;
    }

    .team-template-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .team-section{
        padding-bottom: 20px;
        margin: 0 5%;
    }
    .team-section h2 {
        font-size: 28px;
    }

    .team-template-container {
        grid-template-columns: 1fr;
    }

    .team-banner h1 {
        font-size: 48px;
        line-height: 56px;
    }
}
/* ===================== team-template-end ===================== */
/* ===================== team-detail-template start ===================== */
/* ===================== team-detail BANNER ===================== */
.team-detail-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-detail-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.team-detail-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

.profile-image {
    position: sticky;
    top: 75px; /* Leave space for the main navbar */
    align-self: flex-start; /* Prevents the image from stretching */
    height: fit-content; /* Ensures the container only takes the height it needs */
}

.profile-image img {
    width: 300px;
    border-radius: 8px;
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    color: #10418c;
}

.profile-details .role {
    color: #10418c;
    margin: 5px 0 20px 0;
    font-size: 20px;
    font-weight: 500;
}

.team-detail-contact-icons {
    display: flex;
    margin: 10px 0;
}

.team-detail-contact-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.2s;
}

.team-detail-contact-icons a:hover {
    transform: scale(1.1);
}

.team-detail-contact-icons svg {
    width: 24px;
    height: 24px;
}

.team-detail-description {
    margin: 10px 0;
    color: #555;
    line-height: 1.6;
}

.profile-details h2 {
    margin-top: 30px;
    color: #003366;
}

.achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.achievements img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  margin: 0.5rem;
  border-radius: 4px;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.achievements a:hover img {
  transform: scale(1.03);
}

/* Mobile devices - 1 card per row */
@media (max-width: 767px) {
  .achievements a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .achievements img {
    width: 100%;
    margin: 0.25rem 0;
  }
}

/* Tablet devices (iPad Air, etc.) - 2 cards per row */
@media (min-width: 768px) and (max-width: 1024px) {
  .achievements a {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
  
  .achievements img {
    width: 100%;
    margin: 0.25rem 0;
  }
}

/* Desktop devices - 3 or more cards per row */
@media (min-width: 1025px) {
  .achievements a {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
  
  .achievements img {
    width: 100%;
    margin: 0.25rem 0;
  }
}

/* Large desktop - 4 cards per row */
@media (min-width: 1200px) {
  .achievements a {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .profile-image {
        position: static; /* Remove sticky behavior on mobile */
        align-self: center;
    }

    .profile-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .team-detail-banner h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .achievements {
        justify-content: center;
    }

    .achievements img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .team-detail-banner h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .profile-details h1 {
        font-size: 28px;
    }

    .achievements img {
        width: 120px;
    }
}
/* ===================== team-detail-template end ===================== */

/* ===================== blogs-template-start ===================== */
/* ===================== blogs BANNER ===================== */
.blog-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.blog-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Blog post section */
.blogs-template .blog-post {
    margin: 5% 10% 0 10%;
}

.blogs-template .blog-post .date {
    color: #d41414;
    font-size: 0.875rem; /* 14px */
}

.blogs-template .blog-post h1 {
    font-size: 3rem; /* 48px */
    margin: 0.625rem 0;
    color: #10418c;
    font-weight: bolder;
}

.blogs-template .blog-post .content {
    margin: 1.25rem 0;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* Share section */
.blogs-template .share {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.blogs-template .share span {
    font-weight: bold;
    margin-right: 0.625rem;
}

.blogs-template .share .social-icons {
    display: flex;
    gap: 0.625rem;
}

.blogs-template .share .social-icons a:hover svg {
    transform: scale(1.1);
}

.blogs-template .share .social-icons a svg {
    width: 1.625rem;
    height: 1.625rem;
    fill: #10418c;
    transition: transform 0.2s ease;
}

.blogs-template .image-placeholder.small {
    height: 34.875rem; /* 558px */
}

/* Similar Blogs */
.blogs-template .similar-blogs {
    margin: 0 10% 0 10%;
}

.similar-blogs .blog-section-title {
    text-align: center;
    color: #d41414;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5%;
}

.similar-blogs h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin: 0.625rem 0 1.875rem;
    color: #10418c;
}

.similar-blogs .blogs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(359px, 1fr));
    gap: 1.375rem;
    justify-items: center;
}

.similar-blogs .blog-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 359px;
    height: auto;
}

.similar-blogs .blog-card .date {
    color: #555;
    font-size: 0.75rem;
}

.similar-blogs .blog-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0.625rem 0;
}

.similar-blogs .blog-card h4 {
    font-size: 0.875rem;
    color: #666;
}

.similar-blogs .blog-card a {
    color: #d41414;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.blogs-template-image-wrapper {
    position: relative;
    width: 100%;
    height: 12.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.similar-blogs .blog-card:hover .blog-image {
    transform: scale(1.03);
}

.date-overlay {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    background-color: #00000052;
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    backdrop-filter: blur(2px);
}

/* Media Queries */

/* Small laptops (2 cards per row) */
@media (max-width: 1023px) {
    .blog-post,
    .similar-blogs {
        margin-left: 3.75rem;
        margin-right: 3.75rem;
    }

    .similar-blogs .blogs {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Tablets */
@media (max-width: 768px) {
    .blog-post,
    .similar-blogs {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
    }

    .blog-post h1 {
        font-size: 2.25rem;
    }
}

/* Phones */
@media (max-width: 425px) {
    .blog-post,
    .similar-blogs {
        margin-left: 0.9375rem;
        margin-right: 0.9375rem;
    }

    .similar-blogs .blogs {
        grid-template-columns: 1fr;
    }

    .similar-blogs .blog-card {
        width: 100%;
        max-width: 359px;
    }

    .blog-post h1 {
        font-size: 1.75rem;
    }

    .similar-blogs h2 {
        font-size: 1.375rem;
    }

    .similar-blogs .blog-card h3 {
        font-size: 1rem;
    }

    .similar-blogs .blog-card img.blog-image {
        height: 10rem;
    }

    .date-overlay {
        font-size: 0.75rem;
        padding: 0.1875rem 0.625rem;
    }
}

/* Tiny screens (iPhone SE, Galaxy Fold) */
@media (max-width: 375px) {
    .blog-post h1 {
        font-size: 1.5rem;
    }

    .similar-blogs .blog-card h3 {
        font-size: 0.9375rem;
    }

    .date-overlay {
        font-size: 0.6875rem;
        padding: 0.125rem 0.5rem;
    }
}

/* 4K and ultra-wide screens */
@media (min-width: 2000px) {
    .similar-blogs {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-post {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-post h1 {
        font-size: 3.5rem;
    }

    .blog-post .content {
        font-size: 1.125rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .similar-blogs h2 {
        font-size: 2.25rem;
    }

    .similar-blogs .blog-card h3 {
        font-size: 1.375rem;
    }

    .similar-blogs .blog-card .date {
        font-size: 1rem;
    }

    .blogs-template-image-wrapper {
        height: 15.625rem;
    }
}

@media (min-width: 2500px) {
    .similar-blogs .blogs {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 3000px) {
    .similar-blogs .blogs {
        grid-template-columns: repeat(8, 1fr);
    }
}
/* ===================== blogs-template-end ===================== */
/* ===================== blog-singe-tremplate start ===================== */
/* ===================== blog-singe BANNER ===================== */
.blog-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.blog-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Blog post section */
.blog-single-post {
    margin: 5% 10% 0 10%;
}

.blog-single-post .blog-single-date {
    color: #d41414;
    font-size: 0.875rem; /* 14px */
}

.blog-single-post h1 {
    font-size: 3rem; /* 48px */
    margin: 0.625rem 0;
    color: #10418c;
    font-weight: bolder;
}

.blog-single-post .content {
    margin: 1.25rem 0;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* Share section */
.blog-single-share {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.blog-single-share span {
    font-weight: bold;
    margin-right: 0.625rem;
}

.blog-single-share .blog-single-share-social-icons {
    display: flex;
    gap: 0.625rem;
}

.blog-single-share .blog-single-share-social-icons a:hover svg {
    transform: scale(1.1);
}

.blog-single-share .blog-single-share-social-icons a svg {
    width: 1.625rem;
    height: 1.625rem;
    fill: #10418c;
    transition: transform 0.2s ease;
}

.image-placeholder.small {
    height: 34.875rem; /* 558px */
}

/* Similar Blogs */
.blog-single-similar-blogs {
    margin: 0 10% 0 10%;
}

.blog-single-similar-blogs .blog-section-title {
    text-align: center;
    color: #d41414;
    font-size: 16px;
    font-weight: 600;
}

.blog-single-similar-blogs h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin: 0.625rem 0 1.875rem;
    color: #10418c;
}

.blog-single-similar-blogs .blogs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(359px, 1fr));
    gap: 1.375rem;
    justify-items: center;
}

.blog-single-similar-blogs .blog-card {
    background: white;

    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 359px;
    height: auto;
}

.blog-single-similar-blogs .blog-card .blog-single-date {
    color: #555;
    font-size: 0.75rem;
}

.blog-single-similar-blogs .blog-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0.625rem 0;
    color: #333;
}

.blog-single-similar-blogs .blog-card h4 {
    font-size: 0.875rem;
    color: #666;
}

.blog-single-similar-blogs .blog-card a {
    color: #d41414;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.blog-single-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-single-similar-blogs .blog-card:hover .blog-image {
    transform: scale(1.03);
}

.blog-single-date-overlay {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    background-color: #00000052;
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    backdrop-filter: blur(2px);
}

/* Media Queries */

/* Small laptops (2 cards per row) */
@media (max-width: 1023px) {
    .blog-single-post,
    .blog-single-similar-blogs {
        margin-left: 3.75rem;
        margin-right: 3.75rem;
    }

    .blog-single-similar-blogs .blogs {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Tablets */
@media (max-width: 900px) {
    .blog-single-post,
    .blog-single-similar-blogs {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
    }

    .blog-single-post h1 {
        font-size: 2.25rem;
    }
}

/* Phones */
@media (max-width: 425px) {
    .blog-single-post,
    .blog-single-similar-blogs {
        margin-left: 0.9375rem;
        margin-right: 0.9375rem;
    }

    .blog-single-similar-blogs .blogs {
        grid-template-columns: 1fr;
    }

    .blog-single-similar-blogs .blog-card {
        width: 100%;
        max-width: 359px;
    }

    .blog-single-post h1 {
        font-size: 1.75rem;
    }

    .blog-single-similar-blogs h2 {
        font-size: 1.375rem;
    }

    .blog-single-similar-blogs .blog-card h3 {
        font-size: 1rem;
    }

    .blog-single-similar-blogs .blog-card img.blog-image {
        height: 10rem;
    }

    .blog-single-date-overlay {
        font-size: 0.75rem;
        padding: 0.1875rem 0.625rem;
    }
}

/* Tiny screens (iPhone SE, Galaxy Fold) */
@media (max-width: 375px) {
    .blog-single-post h1 {
        font-size: 1.5rem;
    }

    .blog-single-similar-blogs .blog-card h3 {
        font-size: 0.9375rem;
    }

    .blog-single-date-overlay {
        font-size: 0.6875rem;
        padding: 0.125rem 0.5rem;
    }
}

/* 4K and ultra-wide screens */
@media (min-width: 2000px) {
    .blog-single-similar-blogs {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-single-post {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-single-post h1 {
        font-size: 3.5rem;
    }

    .blog-single-post .content {
        font-size: 1.125rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-single-similar-blogs h2 {
        font-size: 2.25rem;
    }

    .blog-single-similar-blogs .blog-card h3 {
        font-size: 1.375rem;
    }

    .blog-single-similar-blogs .blog-card .blog-single-date {
        font-size: 1rem;
    }

    .blog-single-image-wrapper {
        height: 15.625rem;
    }
}

@media (min-width: 2500px) {
    .blog-single-similar-blogs .blogs {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 3000px) {
    .blog-single-similar-blogs .blogs {
        grid-template-columns: repeat(8, 1fr);
    }
}
/* ===================== blog-singe-tremplate end ===================== */
/* ===================== faq-template start ===================== */
/* ===================== faq BANNER ===================== */
.faq-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.faq-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-template-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    max-width: 945px;
    margin: 100px auto;
    padding: 0 20px;
}

.faq-template-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.section-title {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #d41414;
    margin: 0;
}

.faq-template-heading {
    font-family: "Jost";
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #10418c;
    margin: 0;
}

.faq-template-card {
    width: 100%;
    background: #fbfbfb;
    border: 1px solid #e1e1e1;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}

.faq-template-category {
    font-family: "Jost";
    font-size: 24px;
    font-weight: 600;
    color: #10418c;
    margin-bottom: 24px;
}

.faq-template-item {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-template-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-template-question h5 {
    font-family: "Jost";
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #222222;
}

.faq-template-item.expanded .faq-template-question h5 {
    color: #222222;
}

.faq-template-icon {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.faq-template-item.expanded .faq-template-icon {
    color: #222222;
}

.faq-template-answer {
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 24px;
    color: #646464;
    margin: 0;
    display: none;
}

.faq-template-item-expanded .faq-answer {
    display: block;
}
/* ===================== faq-template end ===================== */
/* ===== CONTACT-template start ===== */

/* ===== CONTACT SECTION ===== */
.contact-us-template .contact-template-section {
    max-width: min(1400px, 90%);
    margin: clamp(30px, 5vw, 80px) auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 60px);
}

.contact-us-template .contact-template-info,
.contact-us-template .contact-form {
    flex: 1;
    min-width: min(100%, 400px);
    z-index: 20;
}

.contact-us-template .contact-template-item {
    display: flex;
    gap: clamp(10px, 1.5vw, 20px);
    margin-bottom: clamp(15px, 2vw, 30px);
    align-items: flex-start;
}

/* Media query for extra large screens */
@media (min-width: 2000px) {
    .contact-us-template .contact-template-section {
        max-width: 1600px;
    }
}
/* ===== CONTACT-template end ===== */
/* ===================== terms-template start ===================== */

/* ===================== terms BANNER ===================== */
.terms-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.terms-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Blog post section */
.terms-template-blog-post {
    margin: 5% 10%;
}

.terms-template-blog-post .date {
    color: #d41414;
    font-size: 0.875rem; /* 14px */
}

.terms-template-blog-post h3 {
    font-size: 1.5rem; /* 48px */
    margin: 2rem 0 1rem 0; /* 32px */
    margin-top: 5.5%;
    color: #10418c;
    font-weight: bolder;
}

.terms-template-blog-post .content {
    margin: 1.25rem 0;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* Media Queries */

/* Medium laptops (3 cards per row) */
@media (max-width: 1439px) {
    .similar-blogs .blog-card {
        flex: 1 1 calc(33.333% - 1.375rem);
        max-width: calc(33.333% - 1.375rem);
    }
}

/* Small laptops (2 cards per row) */
@media (max-width: 1023px) {
    .terms-template-blog-post,
    .similar-blogs {
        margin-left: 3.75rem;
        margin-right: 3.75rem;
    }

    .similar-blogs .blog-card {
        flex: 1 1 calc(50% - 1.375rem);
        max-width: calc(50% - 1.375rem);
        max-height: unset;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .terms-template-blog-post,
    .similar-blogs {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
    }

    .terms-template-blog-post h3 {
        font-size: 2.25rem;
    }
}

/* Phones */
@media (max-width: 425px) {
    .terms-template-blog-post,
    .similar-blogs {
        margin-left: 0.9375rem;
        margin-right: 0.9375rem;
    }

    .similar-blogs .blogs {
        flex-direction: column;
        align-items: center;
    }

    .similar-blogs .blog-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .terms-template-blog-post h3 {
        font-size: 1.75rem;
    }

    .similar-blogs h2 {
        font-size: 1.375rem;
    }

    .similar-blogs .blog-card h3 {
        font-size: 1rem;
    }

    .similar-blogs .blog-card img.blog-image {
        height: 10rem;
    }

    .date-overlay {
        font-size: 0.75rem;
        padding: 0.1875rem 0.625rem;
    }
}

/* Tiny screens (iPhone SE, Galaxy Fold) */
@media (max-width: 375px) {
    .terms-template-blog-post h3 {
        font-size: 1.5rem;
    }

    .similar-blogs .blog-card h3 {
        font-size: 0.9375rem;
    }

    .date-overlay {
        font-size: 0.6875rem;
        padding: 0.125rem 0.5rem;
    }
}

/* 4K and ultra-wide screens */
@media (min-width: 2000px) {
    .similar-blogs {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }

    .terms-template-blog-post {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }

    .terms-template-blog-post h3 {
        font-size: 3.5rem;
    }

    .terms-template-blog-post .content {
        font-size: 1.125rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .similar-blogs h2 {
        font-size: 2.25rem;
    }

    .similar-blogs .blog-card h3 {
        font-size: 1.375rem;
    }

    .similar-blogs .blog-card .date {
        font-size: 1rem;
    }

    .image-wrapper {
        height: 15.625rem;
    }
}

@media (min-width: 2500px) {
    .similar-blogs .blog-card {
        flex: 1 1 calc(16.666% - 1.375rem);
        max-width: calc(16.666% - 1.375rem);
    }
}

@media (min-width: 3000px) {
    .similar-blogs .blog-card {
        flex: 1 1 calc(12.5% - 1.375rem);
        max-width: calc(12.5% - 1.375rem);
    }
}
/* ===================== terms-template end ===================== */
/* ===================== Search-template start ===================== */
/* ===================== Search BANNER ===================== */
.search-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.search-banner h1 {
    position: relative;
    z-index: 2;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===================== search PACKAGES SECTION ===================== */
.search-result-section {
    padding: 60px 150px;
    margin-bottom: 100px;
    background: #fff;
}

/* Search Header */
.search-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.search-result-heading {
    font: 500 38px/1.2 sans-serif;
    color: var(--primary-color);
}

/* Search Form */
.search-form-container {
    width: 40%;
    flex-shrink: 0;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 100px 12px 50px;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--tertiary-color);
}

.search-template-icon {
    position: absolute;
    left: 18px;
    color: #666;
}

.search-button {
    position: absolute;
    right: 4px;
    background: var(--tertiary-color);
    color: white;
    border: none;
    margin: 3px;
    padding: 12px 20px;
    border-radius: 50px;
    font: 500 14px/1 sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    width: auto;
}

.search-button:hover {
    background: #10418c;
}

/* search Cards Grid */
.search-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.search-template-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
    text-decoration: none;
}

.search-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 4 / 4;
    transition: transform 0.4s ease;
}

.search-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.search-template-card:hover .search-image {
    transform: scale(1.05);
}

.search-template-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(11, 0, 0, 0.3);
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.search-template-info {
    padding-top: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.search-template-category {
    font-size: 14px;
    color: var(--primary-color);
    font-size: 400;
    margin-bottom: 5px;
}

.search-template-title {
    font: 600 24px/1.2 sans-serif;
    margin: 0 0 10px;
    color: black;
}

.search-template-meta {
    font-size: 16px;
    margin-bottom: 10px;
}

.search-template-meta span {
    margin-right: 20px;
    color: #646464;
}

.search-template-price {
    font: bold 16px/1 sans-serif;
    color: var(--tertiary-color);
    margin-top: auto;
}

/* ----------------------------- */
/* search-template Bottom Section */
/* ----------------------------- */
.search-template-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d4d1d1;
    min-height: 40px;
}
.search-template-currency {
    color: #646464;
    font-size: 12px;
    font-weight: 400;
}

/* ----------------------------- */
/* Book Now Button */

.search-template-rating {
    display: flex;
    gap: 3px;
    width: 120px;
    margin-top: 5px;
    align-items: center;
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* Large tablets (992px and below) */
@media (max-width: 992px) {
    .search-result-section {
        padding: 60px 80px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 769px) {
    .search-result-section {
        padding: 40px 30px;
    }

    .search-header {
        flex-direction: column;
        gap: 15px;
    }

    .search-form-container {
        width: 100%;
    }

    .search-input-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .search-input {
        padding-right: 50px;
    }

    .search-button {
        position: static;
        margin-top: 10px;
        width: 30%;
    }

    .search-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-banner h1 {
        font-size: 48px;
        line-height: 56px;
    }
}

/* Large phones (576px and below) */
@media (max-width: 576px) {
    .search-result-section {
        padding: 30px 20px;
    }

    .search-banner h1 {
        font-size: 36px;
        line-height: 44px;
    }
}

/* Small phones (426px and below) - 1 CARD PER ROW */
@media (max-width: 426px) {
    .search-result-section {
        padding: 30px 15px;
    }

    .search-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .search-banner {
        height: 280px;
    }

    .search-banner h1 {
        font-size: 32px;
        line-height: 40px;
        padding: 0 15px;
    }

    .search-result-heading {
        font-size: 28px;
    }

    .search-input {
        padding: 10px 15px 10px 40px;
    }

    .search-template-icon {
        left: 15px;
    }

    .search-button {
        max-width: 25%; /* Full width button on smallest screens */
    }
}

/* Extra small phones (375px and below) */
@media (max-width: 375px) {
    .search-result-section {
        padding: 25px 10px;
    }

    .search-banner {
        height: 250px;
    }

    .search-banner h1 {
        font-size: 28px;
        line-height: 36px;
    }
}
/* ===================== Search-template end ===================== */

/* ===================== Review template start ===================== */
/* ===================== BANNER SECTION ===================== */
.review-banner {
    position: relative;
    width: 100%;
    height: 348px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}
.review-banner h1 {
    position: relative;
    z-index: 2;
    font-family: var(--primary-font);
    font-weight: 450;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* ===================== GOOGLE REVIEWS SECTION ===================== */
.reviews-template .google-reviews-section {
    margin: 5% 10% 5% 10%;
    text-align: center;
}
.reviews-template .review-template-subheading {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}
.reviews-template .review-heading {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
}
.reviews-template .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.reviews-template .google-review-card {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reviews-template .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.reviews-template .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.reviews-template .reviewer-name {
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}
.reviews-template .stars {
    font-size: 14px;
    color: #ffd233;
    line-height: 1;
}
.reviews-template .google-icon {
    width: 20px;
    position: absolute;
    right: 0;
}
.reviews-template .review-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}
/* ===================== CLIENT REVIEWS SECTION ===================== */
.reviews-template .client-reviews-section {
    margin: 0 10% 5% 10%;
}
.reviews-template .client-reviews-section .client-section-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.reviews-template .client-reviews-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 40px;
    color: var(--primary-color);
}
.reviews-template .client-reviews-section .reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.reviews-template .client-reviews-section .review-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
}
.reviews-template .client-reviews-section .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.reviews-template .image-wrapper {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.reviews-template .review-image {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.reviews-template .client-reviews-section .review-card:hover .review-image {
    transform: scale(1.05);
}
.reviews-template .image-wrapper {
    position: relative;
    /* other styles */
}
.reviews-template .quote-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(170, 170, 170, 0.9); /* White with 90% opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.reviews-template .quote-icon svg {
    width: 20px;
    height: 20px;
}
.reviews-template .client-reviews-section .review-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--primary-color);
    font-family: var(--primary-font);
}
.reviews-template .client-reviews-section .review-card .description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
/* ===================== RESPONSIVE STYLES ===================== */
@media (max-width: 1200px) {
    .reviews-template .client-reviews-section .reviews {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .reviews-template .review-banner h1 {
        font-size: 48px;
        line-height: 1.2;
    }
    .reviews-template .review-heading,
    .reviews-template .client-reviews-section h2 {
        font-size: 36px;
    }
    .reviews-template .client-reviews-section .reviews {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .reviews-template .review-banner {
        height: 250px;
    }
    .reviews-template .review-banner h1 {
        font-size: 32px;
    }
    .reviews-template .review-heading,
    .reviews-template .client-reviews-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .reviews-template .client-reviews-section .reviews {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reviews-template .client-reviews-section {
        margin: 80px auto;
    }
}
/* 4K and large screens */
@media (min-width: 2000px) {
    .reviews-template .review-banner {
        height: 500px;
    }

    .reviews-template .review-banner h1 {
        font-size: 84px;
    }

    .reviews-template .google-reviews-section,
    .reviews-template .client-reviews-section {
        max-width: 1800px;
    }

    .reviews-template .client-reviews-section .reviews {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .reviews-template .image-wrapper {
        height: 250px;
    }
}
/* ===================== Review template end ===================== */
/* ===================== partner-template start ===================== */
/* ===================== partner BANNER ===================== */
.partner-template .partner-banner {
    position: relative;
    width: 100%;
    height: 420px;
    background: no-repeat center top/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-template .partner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0partner-template 0.3);
    z-index: 1;
}

.partner-template .partner-banner h1 {
    position: relative;
    z-index: 2;
    font: 450 64px/72px "Jost", sans-serif;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0partner-template 0.3);
}

/* ===================== ABOUT SECTION ===================== */
.partner-template .partner-section,
.partner-template .partner-section-heading {
    display: flex;
    max-width: 100%;
}

.partner-template .partner-section {
    justify-content: center;
    padding: 40px 20px;
}

.partner-template .partner-section-heading {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 1143px;
}

.partner-template .partner-section-title {
    font: bold 16px/24px "Open Sans", sans-serif;
    text-transform: uppercase;
    color: #d41414;
}

.partner-template .partner-section-main-heading {
    font: 450 48px/56px "Jost", sans-serif;
    text-align: center;
    color: #10418c;
    margin: 0;
    max-width: 1143px;
}

.partner-template .partner-section-description {
    font: 400 18px/28px "Open Sans", sans-serif;
    text-align: center;
    color: #646464;
    margin: 12px 0 0;
    max-width: 1143px;
}

/* ===================== FORM STYLES ===================== */
.partner-template .partner-form-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 30px;
    font-family: "Open Sans", sans-serif;
}

.partner-template .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-template .row .partner-template .col-md-6 {
    flex: 0 0 calc(50% - 10px);
}

select:invalid {
    color: #999;
}

.partner-template .partner-form-header h1,
.partner-template .partner-form-header h2 {
    text-align: center;
    font-weight: bold;
}

.partner-template .partner-form-header h1 {
    color: #10418c;
    font-size: 28px;
    margin-bottom: 30px;
}

.partner-template .partner-form-header h2 {
    color: var(--tertiary-color);
    font-size: 17px;
}

.partner-template .booking-form,
.partner-template .partner-form-section {
    display: flex;
    flex-direction: column;
}

.partner-template .booking-form {
    gap: 25px;
}
.partner-template .partner-form-section {
    gap: 20px;
}

.partner-template .partner-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0partner-template 0.08);
    padding: 25px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.partner-template .partner-form-section h2 {
    color: #10418c;
    font: 900 24px/1partner-template 0.2 "Open Sans", sans-serif; /* Increased size and adjusted line-height */
    padding-bottom: 5px;
    border-bottom: 2px solid #eee; /* Made border slightly thicker */
    letter-spacing: -0partner-template 0.2px; /* Optional: slight tightening of letter spacing */
}

.partner-template .partner-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-template .partner-form-group label {
    font: 600 14px/1 "Open Sans", sans-serif;
    color: #444;
}

.partner-template .partner-form-group input,
.partner-template .partner-form-group textarea,
.partner-template .partner-form-group select {
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0partner-template 0.3s;
}

.partner-template .partner-form-group input:focus,
.partner-template .partner-form-group textarea:focus,
.partner-template .partner-form-group select:focus {
    border-color: #10418c;
    box-shadow: 0 0 0 2px rgba(16, 65, 140, 0partner-template 0.1);
}

.partner-template .partner-form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.partner-template .partner-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-template .partner-submit-btn {
    background: #b01010;
    color: white;
    border: none;
    width: 110px;
    padding: 16px;
    font: 400 16px/1 "Open Sans", sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0partner-template 0.3s;
    margin: 50px auto 0;
    display: block;
    text-align: center;
}

.partner-template .partner-submit-btn:hover {
    background: #10418c;
}

/* ===================== RESPONSIVE ADJUSTMENTS ===================== */
@media (max-width: 768px) {
    .partner-template .booking-partner-form-container {
        padding: 20px;
    }
    .partner-template .partner-form-header h1 {
        font-size: 24px;
    }
    .partner-template .row .partner-template .col-md-6 {
        flex: 0 0 100%;
    }
    .partner-template .partner-form-card {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .partner-template .partner-banner {
        height: 200px;
    }
    .partner-template .partner-banner h1 {
        font: 450 28px/36px "Jost", sans-serif;
        padding: 0 10px;
    }
}

@media (min-width: 361px) and (max-width: 480px) {
    .partner-template .partner-banner {
        height: 240px;
    }
    .partner-template .partner-banner h1 {
        font: 450 32px/40px "Jost", sans-serif;
        padding: 0 10px;
    }
}

@media (min-width: 481px) and (max-width: 991px) {
    .partner-template .partner-banner {
        height: 300px;
    }
    .partner-template .partner-banner h1 {
        font: 450 40px/48px "Jost", sans-serif;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .partner-template .partner-banner {
        height: 400px;
    }
    .partner-template .partner-banner h1 {
        font: 450 56px/64px "Jost", sans-serif;
    }
}

@media (min-width: 2560px) {
    .partner-template .partner-banner {
        height: 500px;
    }
    .partner-template .partner-banner h1 {
        font: 450 84px/92px "Jost", sans-serif;
    }
}
/* ===================== partner-template end ===================== */

@media screen and (max-width: 425px) {
    .center {
        text-align: center;
    }
}
