@font-face {
    font-family: 'RetroSignature';
    src: url('../fonts/RetroSignature.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.retro-font {
    font-family: 'RetroSignature', cursive;
}

.color-gold-hh {
    color: #fbb825;
}

.color-gree-hh {
    color: #7b7b23;
}

.heading-hh {
    font-size: 100px;
    text-align: center;
    /* font-weight: 600; */
}

.text-hh {
    font-size: 4rem;
    font-weight: 400;
}

.page-title-hh {
    font-size: 75px;
    font-weight: 600;
    line-height: 46px;
    display: inline-block;
}

.page-title-hh {
    font-size: 80px;
    font-weight: 550;
    line-height: 50px;
    display: inline-block;
}

.page-heading-title-hh {
    font-size: 24px;
    line-height: 98px;
    font-weight: 600;
    color: #898787;
}

.package-heading-hh {
    font-size: 70px;
    font-weight: 600;
}

.honeymoon-pack-fs {
    font-size: 70px;
}

/* Base container with padding for alignment */
.inner-container {
    background-color: transparent;
    transition: background-color 0.4s ease;
    padding: 0 15px;
}

/* Make header fixed and transparent by default */
.main-header.header-style3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
    transition: background-color 0.4s ease;
}

/* When scrolled - Make sure it spans full width */
.inner-container.scrolled {
    background-color: #f9f9f9 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    margin: 0 !important;
}

/* When scrolled, change link color */
.inner-container.scrolled .main-menu .navigation>li>a {
    color: #191616 !important;
}

/* Align menu to the right */
.nav-outer {
    margin-left: auto;
}

/* Default Menu Text Color (White) */
.main-menu .navigation>li>a {
    color: #fff !important;
    font-weight: 500;
}

/* Hover state for default menu */
.main-menu .navigation>li>a:hover {
    color: #fbb825 !important;
}

/* Safety: Hide all logo images by default to prevent overlap */
body .main-header .logo-box .logo img {
    display: none !important;
}

/* Default state - Show only default logo */
body .main-header .logo-box .logo .logo-default {
    display: block !important;
}

/* Scrolled state - Show only scrolled logo */
body .inner-container.scrolled .logo-box .logo .logo-default {
    display: none !important;
}

body .inner-container.scrolled .logo-box .logo .logo-scrolled {
    display: block !important;
}

.main-header .logo-box .logo img {
    width: 260px !important;
}

.about-us .about-logo {
    width: 300px;
    max-width: 100%;
    height: auto;
}

/* ++++++++++CSS:HOME+++++++++++++++++++++++++++++++ */

.slider-home4 .home4-content .title-slide {
    font-size: 65px;
    font-weight: 700px;
}

.home4-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

/* Modern Search Form Styling */
.search-form-widget-modern {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    margin: 0 auto;
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field label i {
    font-size: 16px;
    color: #4a9eff;
}

.search-field select,
.search-field input {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.search-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 2l1.4-1.4L6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.search-button-wrapper {
    display: flex;
    align-items: end;
}

.search-btn-modern {
    background: #fbb825;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn-modern:hover {
    background: #e5a820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 184, 37, 0.3);
}

.search-btn-modern i {
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .search-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-button-wrapper {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .search-btn-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .search-form-grid {
        grid-template-columns: 1fr;
    }

    .search-form-widget-modern {
        padding: 20px;
    }
}

.wd-search .form-group .search-bar-group label {
    color: #23292c;
}

.wd-search .form-group .btn-search {
    background-color: #f8c41e;
    color: #221e1e;
}

.wd-search .form-group .btn-search:hover {
    background-color: #758e26;
    color: white;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

.wd-search .form-group .btn-search i {
    color: #221e1e;
}

.social-link {
    color: #758e26;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #556b1f;
}

.follow-section {
    padding: 15px 0;
}

.footer-section {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333;
    border-radius: 12px;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-link {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #6b8e23;
}

.follow-section i {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.follow-section i:hover {
    color: #6b8e23;
}

.small-text {
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .footer-section {
        padding: 1.5rem;
    }

    .follow-section {
        margin-top: 10px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: 0.95rem;
    }
}

.m-200 {
    margin: 200px;
}

.m-100 {
    margin: 100px;
}

hr {
    margin: 3rem 0 !important;
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: auto;
    height: 310px;
}

.destination-banner .overlay {
    background: rgba(0, 0, 0, 0.55);
}

.breadcrumb-list li a:hover {
    color: #f5b942 !important;
}

index-2 {
    z-index: 2;
}

@media (max-width: 768px) {
    .destination-banner {
        min-height: 250px;
        padding: 50px 0;
    }

    .destination-banner h1 {
        font-size: 1.75rem;
    }
}

h2.blog {
    font-size: 28px;
}

.swiper-button-next,
.swiper-button-prev {
    border-radius: 0%;

}

.main-header .main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: -125% !important;
	top:10px;
}

.main-header .main-menu .navigation>li>ul {
    position: absolute;
    left: -100px;
}

/* 10122025 */
.slide-image {
            width: 70%;
            height: 400px;
            object-fit: cover;
        }

 .whh-image {
        height: 525px;
        padding: 15px;
        border-radius: 40px;
    }
    
    .swiper-slide {
            width: 125% !important;
            /*border:5px solid blue;*/
        }
    
    
@media (max-width: 768px) {
    
    .swiper-slide {
            width: 125% !important;
            /*border:5px solid red;*/
        }
    
    .swiper-wrapper {
        width: 125%;
    }
    
    .whh-image {
        height: 525px;
        padding: 15px;
        border-radius: 40px;
    }

    .TD_M>h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .DIHH_M>h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .STKLH_M>h2 {
        font-size: 19px;
        line-height: 30px;
    }


    .honeymoon-pack-fs {
        font-size: 37px;
    }

    .heading-hh {
        font-size: 50px;
    }

    .home4-content>h1 {
        font-size: 2rem !important;
        font-weight: 600 !important;
    }


    p.des {
        text-align: justify;
    }

    .about-us-h4 {
        margin: 10px;
        padding: 10px;
    }



    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul {
        background: #ffc107 !important;
    }


    .mobile-button i {
        color: #ffc107 !important;
    }

    .cta-image2 {
        margin-top: 85px;
    }

/*11122025*/
.package-heading-hh {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
}


h2 {
    font-size: 30px;
    line-height: 40px;
}

.tdi_hh{
     line-height: 40px !important;
}

.contact-us .contact-us-wrap > .inner-header .title {
    font-size: 30px;
}


.cta-image {
    height: 165px;
}
.slide-content-BJ h3 {
    font-size: 18px;
	font-weight: 500;
}

.cta-image2 {
    margin-top: 225px;
}

}



/* ===== IMAGE STYLES (ALL DEVICES) ===== */
.tour-listing-image {
    display: block;
}

.package-card {
    overflow: hidden;
}

.package-card img.listing-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.main-header .main-menu .navigation > li > ul > li > ul > li > a {
    /*color: #94cdf3;*/
    color: #161515;
}


