:root {
    --primary-color: #ffd500;
    --secondary-color: #1C1E22;
    --dark-color: #212529;
    --white-color: #ffffff;
    --black-color: #000000;
}

.sub-head {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 35px;
}

.sub-head::before,
.sub-head::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.sub-head::before {
    top: 12px;
    width: 30px;
}

.sub-head::after {
    top: 18px;
    width: 20px;
}

.main-head {
    font-size: 30px;
    font-weight: 800;
    line-height: 38px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.head-center .main-head {
    text-align: center;
}

.offcanvas .offcanvas-logo img {
    width: 100px;
    height: auto;
}

.head-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

p {
    font-size: 15px;
}

.custom-btn {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

.page-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.page-watermark img {
    max-width: 300px;
    width: 30vw;
    height: auto;
    filter: grayscale(100%) brightness(1.2);
}


.float-icons {
    position: fixed;
    top: 70%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-btn.phone {
    background: linear-gradient(135deg, #0072ff, #0044cc);
}

.float-btn:hover {
    transform: scale(1.1);
}




.liquid-btn a i {
    color: var(--primary-color);
}

.liquid-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, transform 0.3s ease;
}

.liquid-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.liquid-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 300%;
    background: linear-gradient(90deg, #E2BD0C, #E2BD0C);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
    z-index: -1;
}

.liquid-btn:hover::before {
    width: 130%;
    border-radius: 0;
}

.liquid-btn:hover {
    color: #fff;
    border-color: transparent;
}

.liquid-btn:hover i {
    transform: translateX(6px);
}

#preloader {
    --uib-size: 200px;
    --uib-speed: 2s;
    --uib-color: #E2BD0C;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.ping::before,
.ping::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: var(--uib-size);
    width: var(--uib-size);
    border-radius: 50%;
    background-color: var(--uib-color);
    animation: pulse7132 var(--uib-speed) linear infinite;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.ping::after {
    animation-delay: calc(var(--uib-speed) / -2);
}

@keyframes pulse7132 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.top-button {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 9999;
    background-color: #E2BD0C;
    color: #fff;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: none;
    padding: 0px;
}

.top-button:hover {
    background-color: #FFD700;
    transform: translateY(-5px) scale(1.2);
    animation: hoverBounce 0.6s ease;
}

/* Keyframes for subtle bounce */
@keyframes hoverBounce {
    0% {
        transform: translateY(-5px) scale(1.2);
    }

    50% {
        transform: translateY(-10px) scale(1.25);
    }

    100% {
        transform: translateY(-5px) scale(1.2);
    }
}





/* ====================header================= */
header {
    position: relative;
}

header .header-logo img {
    width: 100px;
    height: auto;
}

#mobilemenu {
    padding-left: 140px !important;
}

header .header-logo {
    position: absolute;
    top: 12%;
    left: 6%;
    z-index: 99999;
}

.top-bar .social-icons a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border: 1.5px solid #000;
    border-radius: 50%;
    color: #000;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
}

/* Create the liquid (fill) layer */
.top-bar .social-icons a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E2BD0C;
    /* your yellow brand color */
    z-index: -1;
    transition: top 0.4s ease;
}

/* Hover Effect */
.top-bar .social-icons a:hover::before {
    top: 0;
    /* slide up like a liquid fill */
}

.top-bar .social-icons a:hover {
    color: #fff;
    border-color: #E2BD0C;
}

.working-hours.alt-style {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding-left: 15px;
    transition: 0.3s ease;
}


.working-hours.alt-style i {
    color: var(--primary-color);
    font-size: 16px;
    transition: 0.3s ease;
}

.working-hours.alt-style strong {
    color: var(--primary-color);
    margin-left: 4px;
}

.working-hours.alt-style:hover i {
    transform: rotate(20deg);
}

.right-contact .email i {
    border: 1.5px solid #fff;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color:var(--primary-color);
    border-radius: 2px;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 26px;
    height: 2px;
    background-color: #000;
    display: inline-block;
    box-shadow: 0 6px 0 0 #000, 0 12px 0 0 #000;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: var(--primary-color);
}



/* Hover Effect */
.right-contact .email i:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: #e2bd0c;
    transform: translateY(-2px);
}

.right-contact span {
    color: #fff !important;
}


header .header__two-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mean-container .mean-nav ul li a.mean-expand {
    background: var(--primary-color-1);
    height: 22px;
}

header .list-inline-item {
    margin: 0px 10px;
}

.header__area-menubar-center-menu.two ul li a {
    padding: 31px 15px;
}

.header__area-menubar-right-box-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 1px solid var(--border-color-1);
    padding-left: 20px !important;
    margin-left: 0px !important;
}

#mobilemenu a.active {
    color: var(--primary-color);
    font-weight: 900;
    position: relative;
}

#mobilemenu a.active::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.header__two-topbar .container .row {
    margin-top: 25px;
}


/* ================================footer */
.subscribe__area-left-notification h6 {
    color: var(--text-white);
    max-width: 100%;
}

.footer__two .footer-tag {
    text-align: justify;
}

.footer__two .lh-lg {
    padding-left: 3px !important;
}

.footer__two {
    padding: 40px 0px 0px 0px;
    background-image: url('../image/shape/footer-bg-1.png');
    background-attachment: fixed !important;
}

.footer-title {
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}



.footer__two-widget-about-social ul li a i {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 3px;
    width: 70%;
    background: linear-gradient(90deg, #ffb300, #ffb300ab);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.footer-title:hover::after {
    width: 100%;
}


.footer__two-widget-location-item-info a {
    max-width: 300px;

}

.copyright__two {

    margin-top: 20px;
}

.subscribe__area-bg {
    background-image: url('../image/shape/subscribe.jpg');

}

.footer__two-widget.footer-border {
    position: relative;
    padding-left: 25px;
}

.footer__two-widget-about-social ul li a i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
}


.subscribe__area-left-notification-icon img {
    width: 50%;
    height: auto;
}

.video-pulse::before {
    display: none;

}

.video-pulse::after,
.video-pulse::before {
    display: none;
}

.subscribe__area-bg {
    border-radius: 15px;
}



.lh-lg li a i {
    padding-right: 10px;
}

.lh-lg li {
    list-style: none !important;
    padding: 5px 0px;

}

.lh-lg li i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.lh-lg li:hover i {
    transform: translateX(5px) scale(1.2);
    color: var(--primary-color);
}

/* ===========about us ================*/
.about-right {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.masked-video {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    -webkit-mask-image: url('../image/home/mask.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;

    mask-image: url('../image/home/mask.png');
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;

    transition: transform 0.5s ease;
}

.masked-video:hover {
    transform: scale(1.05);
    /* subtle zoom on hover */
}

.inner-about {
    padding: 115px 0px 40px 0px;
}

.inner-about .container-fluid {
    width: 80%;
}

.about-left {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.about-left p {
    text-align: justify;
}

.about-left p i {
    color: var(--primary-color);
}

.inner-about .row {
    padding: 60px 0px;
}

.about-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: all 0.6s ease;
}

.video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-wrapper:hover video {
    transform: scale(1.07);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.05),
            rgba(0, 0, 0, 0.35));
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 0.8;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }
}

.inner-about {

    position: relative;
}

.about-overlay-go h2 {
    font-size: 138px;
    color: var(--primary-color);
    font-weight: 800;
}

.about-overlay-go {
    position: absolute;
    top: 1%;
    right: 2%;
}

.about-overlay-go {

    animation: overlayZoom 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes overlayZoom {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}



/* ===========================hera banner ======================= */
.hero-banner {
    position: relative;
    overflow: hidden;
    overflow: visible;
}



.hero-carousel .hero-slide {
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    animation: fadeInUp 1.2s ease;
}

.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 5;
    transform: translateY(-50%);
    padding: 0 40px;
}

.hero-nav button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 20px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 3px 5px !important;
}

.hero-nav button:hover {
    background: #FFD700;
    color: #000;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-banner .custom-btn a i {
    padding-left: 10px;
}

.hero-banner .custom-btn a {
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--white-color);
    font-weight: 700;
    padding: 15px 40px;
    margin-top: 15px;
}

.booking-box .booking-btn {
    font-size: 14px;
}

.booking-box {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    padding: 25px 15px;
    width: 90%;
    max-width: 1100px;
    z-index: 10;
    animation: fadeUp 1s ease forwards;
}

.booking-box .form-label {
    font-weight: 600;
    color: #444;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.booking-box .form-control,
.booking-box .form-select {
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.booking-box .form-control:focus,
.booking-box .form-select:focus {
    border-color: #000;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    outline: none;
}

.booking-box .btn {
    height: 48px;
    border: 2px solid #000;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.booking-box .btn:hover {
    background: #000;
    color: #fff;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* packages */
.inner-packages {
    padding: 20px 0px;
}

.inner-packages .container-fluid {
    width: 90%;
}

.package-section {
    background: #fff;
}


.package-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-item:hover {
    transform: translateY(-8px);
}

.package-img {
    position: relative;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-item:hover img {
    transform: scale(1.12);
}

.offer-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffd700;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 18px 20px;
    transition: all 0.5s ease;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.info-header .price {
    color: #ffd700;
    font-weight: 700;
    font-size: 17px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.package-info .desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.package-item:hover .package-info {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25));

    padding-bottom: 30px;
}

.package-item:hover .info-header .price {
    opacity: 1;
    transform: translateY(0);
}

.package-item:hover .desc {
    opacity: 1;
    max-height: 120px;
}

.package-carousle {
    padding: 30px 0px;
}

.side-head-wrap {
    position: relative;
    margin-bottom: 35px;
}

.side-head-wrap::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, #FFD700, #FFA500);
    border-radius: 2px;
}

.head-right p {
    text-align: justify;
}

.package-carousle .owl-dots {
    text-align: center !important;
    margin-top: 25px !important;
}

.package-carousle .owl-dot span {
    display: block !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* Hover Effect */
.package-carousle .owl-dot:hover span {
    background: rgba(255, 215, 0, 0.6) !important;
}

.package-carousle .owl-dot.active span {
    width: 20px !important;
    background: linear-gradient(to right, #FFD700, #FFA500) !important;
    border-radius: 10px !important;
    /* box-shadow: 0 0 10px rgba(255, 165, 0, 0.5) !important; */
}


/* ===========gallert section============== */
.inner-gallery {
    padding: 70px 0px 20px 0px;
}

.gallery-wrap {
    padding: 40px 0;
    text-align: center;
}

.gallery-wrap .container-fluid {
    width: 90%;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.gallery-img video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.inner-gallery {
    position: relative;
}

.copyright__two,
.copyright__three {
    padding: 17px 0px !important;
}

.gallery-overlay h2 {
    font-size: 90px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-overlay {
    position: absolute;
    top: -10px;
    right: 2%;
    z-index: -1;
}

/*======================== home cta====================== */
.home-cta {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.home-cta .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    object-fit: cover;
    z-index: 0;
}

.home-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top,
            rgba(216, 216, 216, 0.4) 0%,
            rgba(184, 184, 184, 0.2) 40%,
            rgba(255, 255, 255, 0) 100%
        ); */
    z-index: 1;
    mix-blend-mode: multiply;
}


/* CTA content */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 30px 60px;
    border-radius: 10px;
    border: 2px solid var(--white-color);
}

.cta-content a {
    background-color: var(--white-color);
    border: 2px solid var(--white-color);
}

.cta-content h2 {
    font-size: 34px;
    color: var(--white-color);
}

/* ====================form section====================== */

.form-wrap {
    padding: 30px 0px 20px 0px;
}


.booking-form {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);

}

.booking-form .form-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 6px;
    padding-left: 10px;
}

.booking-form .form-label {
    color: #000;
    font-weight: bolder;
}

.booking-form .form-label i {
    color: #ffc107;
    font-size: 18px;
}

.booking-form input,
.booking-form select {
    height: 50px;

}

.booking-form input,
.booking-form select,
.booking-form textarea {
    border-radius: 0px !important;
    border: 1px solid #ccc;
    padding: 12px 16px;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #ffc107;
    outline: none;
}

.booking-form button:hover {
    transform: scale(1.05);
    background-color: #ffb300 !important;
}

.inner-form .container-fluid {
    width: 70%;
}

/* ================rental ========================*/
.inner-rental {
    padding: 30px 0px;
}

.rental-wrap .owl-stage-outer {
    padding: 20px 0px !important;
}

.car-item {
    padding: 20px 0px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(224, 224, 224, 0.1);
    padding: 20px;
    text-align: center;
    border: 1px solid rgb(223, 223, 223);
    min-height: 500px;
    flex: 1;
}

.car-item .rental-img a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;


}

.car-item img {
    width: 80% !important;
}

.rentel-detail h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffcc00;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.4s ease-in-out;
    margin-bottom: 15px;
}

.rentel-detail h4::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    width: 4%;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ffeb3b);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(255, 204, 0, 0.4);
    transition: all 0.4s ease-in-out;
}



.rentel-detail h4:hover::after {
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
    transform: translateX(-50%) scaleX(1.1);
}

.car-details .amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.car-details .amount p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffb300;
    letter-spacing: 0.3px;
}

.car-details .amount p span {
    color: #666;
    font-weight: 500;
    font-size: 13px;
}

.car-details .amount .rating {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #fff8e1;
    padding: 4px 10px;
    border-radius: 25px;
    box-shadow: inset 0 0 5px rgba(255, 193, 7, 0.3);
}

.car-details .amount .rating i {
    color: #ffc107;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.car-details .amount .rating .rate-text {
    margin-left: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.car-details .amount:hover {
    background: #fffbe6;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.15);
}

.car-details .amount:hover .rating i {
    transform: scale(1.1);
    color: #ff9800;
}

.specification {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: #fff8e1;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.15);
    margin-top: 10px;
    transition: all 0.3s ease;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: inset 0 0 6px rgba(255, 193, 7, 0.1);
    transition: all 0.3s ease;
}

.spec-item i {
    color: #ffb300;
    font-size: 16px;
    background: rgba(255, 193, 7, 0.15);
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.spec-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.rental-wrap .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.rental-wrap .owl-nav button {
    pointer-events: all;
    background: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9800;
    font-size: 20px;
    transition: all 0.3s ease;
}

.rental-wrap .owl-nav button:hover {
    background: #ff9800;
    color: #fff;
    transform: scale(1.1);
}

.rental-wrap .owl-nav button:focus {
    outline: none;
}

@media (max-width: 768px) {
    .rental-wrap .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}


/* =============================================================
              about us page
================================================================ */

/* ==========sub banner=========== */
.inner-sub-banner {
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.inner-sub-banner {
    position: relative;
}

.sub-overlay {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
}

.banner-content-wrap h2 {
    color: #fff;
    margin: 20px 0px;
}

.banner-content-wrap {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
}

.service-section .banner-content-wrap {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 100% !important;
    width: 100%;
}

.about-inner {
    padding: 30px 0px 0px 0px;
    position: relative;
}


/* 
.about-inner::after {
    content: "";
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(to right,
            rgba(226, 189, 12, 0),
            rgb(255, 213, 0),
            rgba(226, 189, 12, 0));
} */
.inner-why .side-head-wrap::after {
    display: none !important;
}

.inner-why {
    position: relative;
    width: 100%;
    background-image: url('../image/home/why-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
    overflow: hidden;
}

.inner-why::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

.why-wrap {
    padding: 40px 0px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    flex: 1 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.why-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px;
}

.why-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: transform 0.8s ease, box-shadow 0.8s ease;
    transform-style: preserve-3d;
}

.why-card:hover .why-img img {
    transform: translateY(-10px) rotateX(15deg) rotateY(15deg) rotateZ(15deg) scale(1.1);
}


.why-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: #333;
    transition: color 0.4s ease;
}

.why-card:hover .why-content h3 {
    background: linear-gradient(90deg, #FFD700, #E2BD0C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #FFD700, #E2BD0C, #FFD700);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card:hover::before {
    opacity: 0.2;
}

.about-features-wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-features-item {
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

.about-features-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff7e6;
}

.about-features-item i {
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 1.2rem;
}

.about-features-item:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #E2BD0C;
}

.contact-page .booking-form {
    box-shadow: none !important;

}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
    box-shadow: none !important;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgb(226, 226, 226);
    border-radius: none !important;
}

.card-contact {
    padding: 20px 0px 60px 0px;

}

.contact-card {
    flex: 1;
    padding: 20px 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card h4 {
    font-size: 20px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);
}

.contact-img-overlay img {
    width: 50px;
    height: auto;
}

.contact-img-overlay {
    position: absolute;
    top: 20%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.contact-card:hover h4 {
    color: var(--primary-color);
}

.contact-card:hover .contact-img-overlay img {
    animation: shake 0.5s ease-in-out infinite;
    filter: hue-rotate(45deg) brightness(1.2);
}

.contact-card h4,
.contact-card a {
    transition: all 0.3s ease;
}

.contact-card a {
    color: #000;
    font-weight: 600;
}

.contact-card:hover h4,
.contact-card:hover a {
    color: #E2BD0C;
}


@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-3px) rotate(-3deg);
    }

    40% {
        transform: translateX(3px) rotate(3deg);
    }

    60% {
        transform: translateX(-3px) rotate(-3deg);
    }

    80% {
        transform: translateX(3px) rotate(3deg);
    }

    100% {
        transform: translateX(0);
    }
}

:root {
    --yellow: #ffd500;
    --white: #fff;
    --black: #000;
}

.navbar-area {
    background-color: var(--yellow);
    color: var(--black);
    font-family: "Poppins", sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.social-icons a {
    color: var(--black);
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--yellow);
}

/* Navbar */
.main-navbar {
    background-color: var(--yellow);
    padding: 15px 0;
}

.logo {
    width: 85px;
}

.nav-link {
    color: var(--black);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--white);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

.right-contact {
    align-items: center;
}

.call-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.call-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.offcanvas-header .offcanvas-logo img {
    width: 60px !important;
    height: auto;
}

.offcanvas {
    width: 100%;
    max-width: 400px;
}

.offcanvas-header {
    background-color: var(--yellow);
}

.offcanvas .nav-link {
    color: var(--black);
    font-weight: 600;
    margin: 8px 0;
}

.offcanvas .nav-link:hover {
    color: var(--white);
}

.offcanvas-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.offcanvas-menu .nav-item {
    position: relative;
}

.offcanvas-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    color: var(--black-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgb(202, 202, 202);
}

.offcanvas-menu .nav-link i {
    font-size: 18px;
    color: var(--black-color);
    transition: color 0.3s ease;
}

.offcanvas-menu .nav-link:hover {
    color: var(--primary-color);
}

.offcanvas-menu .nav-link:hover i {

    color: var(--primary-color);
}

.navbar-area {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.main-navbar {
    background-color: var(--primary-color);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar-scrolled {
    box-shadow: 0 3px 10px rgba(27, 27, 27, 0.15);
    padding: 0px 0px !important;
}

.main-navbar {
    background-color: var(--yellow);
    padding: 0px 0px !important;
}

/* Dropdown Wrapper */
.dropdown-custom {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    padding: 10px 0;
    border-radius: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sub-menu li a {
    display: block;
    padding: 8px 18px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.sub-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000;
}

.dropdown-custom:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .dropdown-custom .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        box-shadow: none;
        padding-left: 15px;
    }
}

.offcanvas-menu .dropdown-custom {
    position: relative;
}

.offcanvas-menu .sub-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
    display: none;
}

.offcanvas-menu .sub-menu li a {
    display: block;
    padding: 6px 0;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.offcanvas-menu .sub-menu li a:hover {
    color: var(--yellow);
}

.dropdown-custom.active .toggle-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


/* ========================blog page=============================== */
.inner-blog {
    padding: 10px 0px 70px 0px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 16px 16px 0 0;
}



.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;

}

.blog-card::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 4px;
    height: 60px;
    background: var(--yellow);
    border-radius: 0 0 4px 0;
    transition: height 0.4s ease, background 0.4s ease;
}

.blog-card:hover::after {
    height: 100px;
}

.blog-content {
    padding: 20px;
    text-align: left;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #222;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.blog-content .read-more {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-card {
    flex: 1;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



.blog-card:hover .blog-content h4 {
    color: var(--yellow);
}

.blog-card p {
    text-align: justify;
}

.blog-card:hover .read-more {
    gap: 8px;
}

.blog-img {
    position: relative;
}

.blog-overlay {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.blog-overlay-1 img {
    width: 50px;
    height: auto;
}

.blog-overlay-1 {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}


/* ===================faq section =============*/
.inner-faq .accordion-button:focus {
    box-shadow: none;
}

.inner-faq .accordion {
    border: none;
    background: #fff;
}

.inner-faq .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.inner-faq .accordion-button {
    padding: 0px 20px !important;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    background-color: #fff;
    border: none;
    transition: all 0.3s ease;
}


.inner-faq .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.inner-faq .accordion-body {
    padding: 18px 22px;
    background-color: #fff;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-faq .accordion-item:hover {
    transform: translateY(-2px);
}

.inner-faq .accordion-item:first-of-type .accordion-button {
    border-radius: 10px 10px 10px 10px;
}

.inner-faq .accordion-item:last-of-type {
    border-radius: 0 0 10px 10px;
}


/*========================testimonial ==================================*/
.inner-testimonial {
    padding: 50px 0px;
}

.textimonial-wrap .row {
    margin-top: 50px;
}

.testimonial-item p {
    text-align: justify;
}

.inner-testimonial .container-fluid {
    width: 80%;
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding: 60px 0px;
}

.testimonial-left {
    display: flex;
    justify-content: center;
    align-items: center;

}

.testimonial-left img {
    width: 80%;
}

.testimonial-item {
    background: #fff;
    padding: 30px 40px;
    padding-left: 40px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    max-width: 800px !important;
}

.testimonial-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-item h5 {
    margin-top: 15px;
    color: #000;
    font-weight: 600;
}

.testimonial-item span {
    color: #888;
    font-size: 14px;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 60px;
    margin-bottom: 10px;
}

.inner-testimonial .owl-dots {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inner-testimonial .owl-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    transition: 0.3s;
}

.inner-testimonial .owl-dots {
    gap: 20px;
}

.inner-testimonial .owl-carousel button.owl-dot {
    background: #c0c0c0;
}

.inner-testimonial .owl-dot.active {
    background: var(--primary-color) !important;
}

.testimonial-carousel {
    position: relative;
    padding-left: 20px;
}

.testimonial-carousel::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 5px;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, rgba(180, 180, 180, 0.1), rgba(120, 120, 120, 0.4), rgba(180, 180, 180, 0.1));
    border-radius: 2px;
    z-index: -1;
    pointer-events: none;
}



/* ===========services page ============*/

.service-section .sub-banner-content {
    height: 100vh;
}

.service-head {
    position: relative;
    display: inline-block;
    font-size: 62px;
    font-weight: 700;
    color: #222;
    text-transform: capitalize;
    margin-bottom: 50px;
    padding-bottom: 30px;
    text-align: center;
    z-index: 999;
}

.service-head::after {
    content: "";
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50px;
    background: url("../image/home/service-line.png") no-repeat center;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
    z-index: 99;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-family: sans-serif;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.scroll-down p {
    font-size: 20px;
    letter-spacing: 1px;
    margin: 5px 0 0;
    animation: fadeIn 2s infinite;
}

.scroll-down .arrow i {
    font-size: 28px;
    display: inline-block;
    animation: jump 1.5s infinite;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-10px);
    }

    40% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-5px);
    }

    80% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

.side-bar {
    position: sticky;
    top: 80px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0 auto;
}

.booking-form h3,
.related-packages h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #f2b500;
    padding-bottom: 5px;
}

.booking-form form input,
.booking-form form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.booking-form form textarea {
    min-height: 80px;
    resize: none;
}

.booking-form form button {
    width: 100%;
    padding: 12px;
    background-color: #f2b500;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking-form form button:hover {
    background-color: #d1a200;
}


.related-packages ul {
    list-style: none;
    padding: 0;
}

.related-packages ul li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.related-packages ul li i {
    margin-right: 8px;
    color: #f2b500;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.related-packages ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 6px;
}

.related-packages ul li a:hover {
    color: #fff;
    background: #f2b500;
}

.related-packages ul li a:hover i {
    transform: translateX(5px);
}



.inner-services {
    padding: 40px 0px;
}

.inner-services .container-fluid {
    width: 80%;
}

.services-left {
    padding: 50px 30px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.services-content p {
    text-align: justify;
}

.services-content .main-head {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-content .main-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-content .main-head::before {
    content: '';
    width: 4px;
    height: 0;
    background: var(--primary-color);
    border-radius: 2px;
    display: block;
    animation: growVertical 1s ease forwards;
}

@keyframes growVertical {
    0% {
        height: 0;
    }

    100% {
        height: 30px;
    }
}


.services-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.plan-inner .main-head i {
    color: var(--primary-color);
    font-size: 24px;
}

.plan-inner .main-head {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
    border-bottom: 2px dotted #e0e0e0;
    padding-bottom: 5px;
}

.plan-inner h6 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #444;
}

.itinerary-list li {
    display: block;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
}

.itinerary-list li:hover {
    transform: translateX(5px);
    color: #f2b500;
}

.itinerary-list li i {
    color: #f2b500;
    margin-right: 10px;
    font-size: 18px;
    margin-top: 3px;
}

.itinerary-list li ul {
    margin-left: 25px;
    margin-top: 5px;
}

.itinerary-list li ul li i {
    font-size: 14px;
}

.package-cover {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.package-cover {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.child-1.card {
    flex: 1 1 45%;
    background: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(158, 158, 158, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.child-1.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-cover .feature-list {
    padding-left: 5px !important;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    transition: color 0.3s ease;
}

.feature-list li i {
    color: #f2b500;
    margin-right: 10px;
    font-size: 16px;
}



.key-attraction {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.key-attraction li {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 10px);
    min-width: 150px;
    padding: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.key-attraction li i {
    color: #f2b500;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.key-attraction li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: #f2b500;
}


.note-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff7e6;
    border-left: 4px solid #f2b500;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.note-box i {
    font-size: 24px;
    color: #f2b500;
}

.note-text {
    font-size: 18px;
    font-weight: 600;
    color: #f2b500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.note-text i {
    font-size: 24px;
}

.service-section .star-rating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    font-size: 22px;
    color: #f2b500;
    z-index: 10;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-section .star-rating i {
    transition: transform 0.3s ease;
}

.service-section .star-rating i:hover {
    transform: scale(1.2);
}


/* rental booking form */
/* === Car Booking Modal Styling === */
.rental-modal-wrap .booking-modal {
    border: none;
    border-radius: 20px;
    background: linear-gradient(to bottom right, #fff, #f9f7e8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeInUp 0.4s ease;
}

.rental-modal-wrap .booking-modal .modal-header {
    background: linear-gradient(90deg, #e2bd0c, #f6dc66);
    color: #fff;
    border-bottom: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 15px 25px;
}

.rental-modal-wrap .booking-modal .modal-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rental-modal-wrap .booking-modal .modal-body {
    padding: 30px 25px;
    background-color: #fffef9;
}

.rental-modal-wrap .input-box {
    margin-bottom: 15px;
}

.rental-modal-wrap .input-box label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.rental-modal-wrap .input-box label i {
    color: #e2bd0c;
    margin-right: 8px;
}

.rental-modal-wrap .input-box .form-control {
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    transition: 0.3s;
    font-size: 15px;
}

.rental-modal-wrap .input-box .form-control:focus {
    border-color: #e2bd0c;
    box-shadow: 0 0 0 0.2rem rgba(226, 189, 12, 0.2);
}

.rental-modal-wrap textarea.form-control {
    resize: none;
}

.rental-modal-wrap .error-message {
    font-size: 13px;
}

.rental-modal-wrap .liquid-btn {
    background: linear-gradient(90deg, #e2bd0c, #f7e37c);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.rental-modal-wrap .liquid-btn:hover {
    background: linear-gradient(90deg, #f6dc66, #e2bd0c);
    transform: translateY(-2px);
}

/* Subtle entrance animation */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}