@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    --primary-color: #2c3e50;
    --secondary-color: #18a8d0;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --royal-gold: #D4AF37;
            --royal-purple: #5D3FD3;
            --royal-red: #B22222;

}

body {
    font-family: "Lexend", sans-serif !important;
    color: var(--text-color);
    overflow-x: hidden;
}
a{
    text-decoration: none !important;
}

.banner-title{
    font-size: 30px;
}

.book-button {
    display: inline-block;
    background-color: var(--secondary-color);
    /* red */
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 35px;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: var(--secondary-color);
}

/* Top Header */
.top-header {
    background-color: #16a8d0;
    color: white;
    padding: 5px 0;
    font-size: 14px;
}

.nav-link.active {
    color: var(--secondary-color);
    color: #fff !important;
    /* Optional: highlight text */
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}
.text-contact-page p{
    color: var(--text-color) !important;
}
.animated-button{
    color: var(--text-color) !important;
}

.social-icons a {
    color: white;
    margin-left: 12px;
    font-size: 16px;
}

.social-icons a img {
    width: 22px;
}


/* Main Navbar */
.main-navbar {
    padding: 15px 0;
    background-color: rgb(255 255 255 / 87%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.navbar-brand {
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 700;
    color: var(--text-color) !important;
    padding: 8px 10px;
    margin: 0 5px;
    position: relative;
}

.nav-item a {
    font-weight: 400;
    color: #000000;
    font-size: 15px;

}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Animation */
.navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.navbar-nav .dropdown-menu .active {
    background-color: var(--secondary-color) !important;


}

.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown Item Hover Effect */
.dropdown-item {
    transition: all 0.2s ease;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: var(--secondary-color) !important;
    padding-left: 25px;
    color: #000;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: 0 !important;
    border-bottom: 0;
    border-left: 0 !important;
}

.offcanvas-body {
    background-color: #000000 !important;
}

.offcanvas {
    background: #1a1a1a;
    color: #fff;
}

.mobile-nav .nav-link {
    color: #fff;
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .nav-link.active {
    color: var(--secondary-color);
}

.mobile-nav .dropdown-menu {
    background: #2a2a2a;
    border: none;
    border-radius: 0;
}

.mobile-nav .dropdown-item {
    color: #eee;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .dropdown-item:hover {
    background: #333;
    color: var(--secondary-color);
}

/* Close Button Fix */
.btn-close {
    filter: invert(1);
    opacity: 1;
    background-size: 1.25em;
    padding: 0.75em;
}

.btn-close-custom {
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    color: #000000;
    opacity: 1;
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.btn-close-custom:hover {
    color: var(--secondary-color);
    /* Your gold color */
    opacity: 0.8;
}

@media (max-width: 1400px) {
    .navbar-expand-xl .navbar-nav {
        flex-direction: row;
        margin: 0px;
        box-sizing: border-box;
        padding: 0px;
        font-size: 14px !important;
    }

}


/* Hide the default close button */
.btn-close {
    display: none;
}

/* Dropdown Animation */
.dropdown-menu.collapse {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-menu.collapse.show {
    max-height: 500px;
}

/* Chevron Animation */
.dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Hero Section */

.hero-section {
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .video-container {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
    }
    
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Video Overlay Styles */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        background: rgba(0,0,0,0.3);
        padding: 20px;
    }
.hero-section {
    position: relative;
    overflow: hidden;
}
.service-content-home{
    color: var(--text-color) !important;
}


.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    object-fit: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 270px 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.book-now a {
    text-decoration: none;
    position: relative;
    margin: 0;
    padding: 7px 17px;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: #000000;
    border-radius: 4px;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.book-now a:hover {
    animation: sh0 0.5s ease-in-out both;

}

@keyframes sh0 {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(7deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

.book-now :hover a {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.book-now a::before,
.book-now a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.book-now a:hover::before,
.book-now a:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.book-now a:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}

.book-now a:hover::after {
    transform: translate(50%, 0) scale(1.1);
}


.btn-explore {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    color: white;
    border: 3px solid var(--secondary-color);
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;

}

.btn-explore::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-explore:hover::after {
    transform: scaleX(1);
}

.btn-explore:hover {
    color: #fff;
}

/* Slick Slider Customization */
.slick-dots {
    display: none !important;


}

.slick-dots li button:before {
    color: rgb(0, 0, 0);
    opacity: 0.5;
    font-size: 30px !important;
    margin: 0;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

.slick-arrow {
    width: 100px;
    height: 100px;
    z-index: 10;
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 30px;
    color: white;
    opacity: 0.7;
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

/* Offcanvas Menu */
.offcanvas {
    background-color: var(--primary-color);
    color: white;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    font-weight: 700;
    font-size: 24px;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
}

.mobile-nav .nav-link {
    color: white !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-link {
        padding: 0px 0px !important;
        margin: 0 3px;
    }
}

@media (max-width: 767.98px) {
    .top-header {
        font-size: 12px;
    }

    .contact-info a {
        margin-right: 10px;
    }

    .social-icons a {
        margin-left: 8px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-explore {
        padding: 10px 25px;
    }

}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .section-padding {
        padding: 40px 0;
    }
}

@media screen and (max-width: 600px) and (min-width: 400px) {


    .section-padding {
        padding: 40px 0 !important;
    }

    .cta-one {
        display: none;
    }


}

/* about section start here  */

.section-padding {
    padding: 100px 0;
}



.about {
    position: relative;
    /* background: #000000; */
}

.section-subtitle {
    font-size: 13px;
    line-height: 10px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.section-title {
    font-size: 35px;
    color: #ffffff;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.25em;
    font-weight: 700;
}
.content-titles {
    font-size: 35px;
    color:var(--text-color);
    position: relative;
    margin-bottom: 15px;
    line-height: 1.25em;
    font-weight: 700;
}
.content p {
    color: #ffffff;
}

.content h5 {
    color: #ffffff;
}
.content-1 p{
    color: var(--text-color);
}
.content-1 h5{
    color:var(--text-color);
    font-size: 17px;
}
.content-1 span {
    color: var(--secondary-color);
}


.section-title span {
    color: var(--secondary-color);
}
.service-img img{
    border-radius: 30px;
}



/* ============================= */
.about{
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/about-background.jpg');
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-attachment: fixed;
}
.about .item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
}
.about .section-title{
    color: #fff;
}

.about .item img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.about .item:hover img {
    transform: scale(1.05);
}

.about .item .title {
    position: absolute;
    top: 0px;
    padding: 30px;
}

.about .item .title h4 {
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
}

.about .item .curv-butn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0 40px 0 0;

}

.about .item .curv-butn .vid {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 100%;
    background: transparent;
    color: #fff;
}

.icon-bg {
    background: #ffffff !important;
}

.about .item .curv-butn .br-left-top {
    position: absolute;
    top: -24px;
    left: -1px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}

.about .item .curv-butn .br-left-top svg {
    width: 24px;
    height: 24px;
}

.about .item .curv-butn .br-right-bottom {
    position: absolute;
    bottom: -1px;
    right: -24px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}

.about .item .curv-butn .br-right-bottom svg {
    width: 24px;
    height: 24px;
}

.about .item .curv-butn .icon {
    top: 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 21px;
    color: #fff;
    border: 1px solid var(--secondary-color);
    border-radius: 100%;
    margin-top: 17px;
}

.about .item:hover .curv-butn .icon {
    background-color: var(--secondary-color);
    color: #1b1b1b;
    border-radius: 100%;
}

.line-vr-section {
    position: relative;
    margin: -25px auto;
    border: 0;
    border-left: 1px solid;
    border-color: var(--secondary-color);
    width: 2px;
    height: 50px;
    z-index: 10;
    opacity: 1;
}

/* service section start here  */
.services2 .item .title {
    position: absolute;
    bottom: 0px;
    padding: 30px 15px 30px 110px;
    width: 100%;
    text-align: right;
}

.services2 .item .title h4 a {
    color: #fff;
    font-size: 21px;
    margin-bottom: 0;
    text-align: left;
    text-decoration: none;
}

.services2 {
    position: relative;
}

.services2 .item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
}

.services2 .item img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.services2 .item:hover img {
    transform: scale(1.05);
}

.services2 .item .title {
    position: absolute;
    bottom: 0px;
    padding: 30px 15px 30px 110px;
    width: 100%;
    text-align: right;
}

.services2 .item .title h4 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 0;
    text-align: left;
}

.services2 .item .curv-butn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0 40px 0 0;
}

.services2 .item .curv-butn .vid {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 100%;
    background: transparent;
    color: #fff;
}

/* show and hidden class */
.services2 .item .curv-butn .icon {
    font-size: 15px;
    font-weight: 700;
    font-style: normal;

}

.services2 .item .curv-butn .br-left-top {
    position: absolute;
    top: -24px;
    left: -1px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}

.services2 .item .curv-butn .br-left-top svg {
    width: 24px;
    height: 24px;
}

.services2 .item .curv-butn .br-right-bottom {
    position: absolute;
    bottom: -1px;
    right: -24px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}

.services2 .item .curv-butn .br-right-bottom svg {
    width: 24px;
    height: 24px;
}

.services2 .item .curv-butn .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #000000;
    border: 1px solid var(--secondary-color);
    background: transparent;
    border-radius: 100%;
}

.services2 .item:hover .curv-butn .icon {
    background-color: var(--secondary-color);
    color: #1b1b1b;
    border-radius: 100%;
}


/* car slider section start here  */
.cars1 {
    position: relative;
    overflow: hidden;
}

.cars1 .cars1-carousel {
    position: relative;
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.cars1 .cars1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.cars1 .item {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.cars1 .item .img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;

    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.cars1 .item:hover img {
    transform: scale(1.05);
}

.cars1 .item .con {
    position: relative;
    display: block;
    background-color: #222;
    padding: 30px 25px;
    margin-top: -55px;
    margin-left: 25px;
    margin-right: 25px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 2;
    visibility: visible;
    opacity: 0;
    border-radius: 20px;
}

.cars1 .item .con.opacity-1 {
    opacity: 0;
}

.cars1 .item .con.active {
    visibility: visible;
    opacity: 1;
}

.cars1 .item .con .title,
.cars1 .item .con .title a {
    font-size: 21px;
    margin-bottom: 0px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2em;
    transition: all 500ms ease;
}

.cars1 .item .con .details {
    font-size: 14px;
    color: #999;
    margin-bottom: 0;
    margin-right: 10px;
    transition: all 500ms ease;
}

.cars1 .item .con .details span {
    margin-right: 10px;
}

.cars1 .item .con .details span i {
    color: var(--secondary-color);
    margin-right: 2px;
    font-style: normal;
}

/* book */
.cars1 .item .con .book {
    text-align: -webkit-right;
    margin-top: 1px;
}

.cars1 .item .con .book .btn {
    margin: 0;
    background: var(--secondary-color);
    padding: 14px 21px;
    color: #1b1b1b;
    border-radius: 30px;
    font-weight: 300;
    font-size: 14px;
}

.cars1 .item .con .book .btn:hover {
    background: #fff;
    color: #1b1b1b;
}

.cars1 .item .con .book>div {
    display: table-cell;
    vertical-align: middle;
}

.cars1 .item .con .book>div:nth-child(2) {
    padding-left: 15px;
    padding-right: 0;
    font-size: 14px;
    line-height: 1.2em;
}

.cars1 .item .con .book>div>span {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    color: #999;
}

.cars1 .item .con .book .price {
    font-size: 21px;
    line-height: 1.2em;
    color: var(--secondary-color);
    font-weight: 700;
}

/* owl nav */
.owl-item.active .item .con {
    visibility: visible;
    opacity: 1;
}

.cars1 .owl-theme .owl-nav {
    position: absolute !important;
    top: 45% !important;
    bottom: auto !important;
    width: 100%
}

.cars1 .owl-theme .owl-nav {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.cars1 .owl-theme .owl-prev,
.cars1 .owl-theme .owl-prev {
    left: 10px !important
}

.cars1 .owl-theme .owl-next {
    right: 10px !important
}

.cars1 .owl-theme .owl-prev,
.cars1 .owl-theme .owl-next {
    color: #fff;
    position: absolute !important;
    top: 50%;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
    text-align: center;
    font-size: 14px
}

.cars1 .owl-theme .owl-prev>span,
.cars1 .owl-theme .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.cars1 .owl-carousel .owl-nav button.owl-next,
.cars1 .owl-carousel .owl-nav button.owl-prev {
    outline: none;
}

.cars1 .owl-theme .owl-nav [class*=owl-] {
    width: 55px;
    height: 55px;
    line-height: 58px;
    background: var(--secondary-color);
    border-radius: 100%;
    color: #1b1b1b;
    font-size: 10px;
    margin-right: 5px;
    margin-left: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.cars1 .owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    color: #1b1b1b;
}

.cars1 .owl-theme .owl-nav {
    top: 35% !important;
}

.cars1 .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}

.cars1 .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .cars1 .item .con {
        padding: 30px 20px;
        margin: 0;
    }

    .order2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .order1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .cars1 .item .con .book {
        text-align: left;
        margin-top: 3px;
    }

    .cars1-carousel {
        overflow: hidden;
    }

    .cars1 .owl-theme .owl-nav {
        display: none;
    }
}


/* testimonial start here  */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials .item {
    position: relative;
    padding: 40px 40px 0px;
    border-radius: 20px 20px 20px 0;
    background: rgb(238 238 238);
        box-shadow: 0px 0px 12px #ccc;
}

.testimonials .item .stars {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px 10px 20px;
    border-radius: 0 0 0 20px;
    color: #ce9c07;
    background: #ffffff;
}

.testimonials .item .stars i {
    font-size: 10px;
}

.testimonials .item .stars .shap-left-top {
    position: absolute;
    top: -2px;
    left: -20px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.testimonials .item .stars .shap-left-top svg {
    width: 24px;
    height: 24px;
}

.testimonials .item .stars .shap-right-bottom {
    position: absolute;
    bottom: -25px;
    right: -2px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.testimonials .item .stars .shap-right-bottom svg {
    width: 24px;
    height: 24px;
}

.testimonials .item i.fa-quote-left {
    color: var(--secondary-color);
    font-size: 45px;
    margin-bottom: 10px;
}

.testimonials .item .text h5 {
    border-radius: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 14px;
}

.testimonials .item .text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    color: #353535;
    margin-bottom: 15px;
}

.testimonials .item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -40px;
}

.testimonials .item .info .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials .item .info .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonials .item .info h6 {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonials .item .info p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5em;
    color: #585757;
    margin-bottom: 0;
}

.testimonials .item .img-curv {
    position: relative;
    padding: 15px;
    border-radius: 0 40px 0 0;
    background: #ffffff;
}

.testimonials .item .img-curv .shap-left-top {
    position: absolute;
    top: -23px;
    left: -4px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.testimonials .item .img-curv .shap-left-top svg {
    width: 24px;
    height: 20px;
}

.testimonials .item .img-curv .shap-right-bottom {
    position: absolute;
    bottom: -2px;
    right: -22px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.testimonials .item .img-curv .shap-right-bottom svg {
    width: 24px;
    height: 24px;
}

.testimonials .owl-nav {
    display: none;
}

/* lets talk section start here  */
.lets-talk {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/banner/2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.lets-talk .wrap {
    position: relative;
    background: #fff;
    padding: 45px 30px;
    overflow: hidden;
    z-index: 1;
}

.lets-talk[data-overlay-dark] h6,
.lets-talk h6 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 6px;
}

.lets-talk[data-overlay-dark] h5,
.lets-talk h5 {
    font-size: 35px;
    color: #fff;
    line-height: 1em;
}

.lets-talk[data-overlay-dark] p,
.lets-talk p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5em;
}

/* footer section start here  */
.main-footer {
    position: relative;
}

.main-footer__inner {
    position: relative;
    background-color: #000000;
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    mix-blend-mode: hard-light;
    opacity: 0.4;
}

.main-footer__top {
    padding-top: 88px;
    padding-bottom: 99px;
    position: relative;
}

@media (max-width: 991px) {
    .main-footer__top {
        padding-top: 88px;
        padding-bottom: 99px;
    }
}

@media (max-width: 767px) {
    .main-footer__top {
        padding-top: 70px;
        padding-bottom: 80px;
    }
}

.main-footer__top__element {
    position: absolute;
    right: 0;
    bottom: 50px;
    animation: messageMove 3s linear infinite;
}

.main-footer__top--two {
    padding-top: 220px;
}

@media (max-width: 991px) {
    .main-footer__top--two {
        padding-top: 80px;
    }
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.main-footer__bottom {
    text-align: center;
    background-color: var(--secondary-color);
}

.main-footer__bottom__inner {
    padding: 21px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 767px) {
    .main-footer__bottom__inner {
        flex-direction: column;
        justify-content: center;
    }
}

.main-footer__bottom__list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.main-footer__bottom__list li a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 138%;
    text-transform: capitalize;
    color: RGBA(var(--secondary-color, 20, 20, 20), 0.8);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.main-footer__bottom__list li a:hover {
    background-size: 100% 1px;
}

.copyright-section a {
    text-decoration: none;
    color: #000000;
}

.copyright-section {
    color: #000000;
}

.footer-widget--about h3 {
    color: #ffffff;
}

.footer-widget--about p {
    color: #ffffff;
}

.time li {
    color: #ffffff;
    list-style: none;
}

@media (max-width: 991px) {
    .footer-widget--about {
        width: 100%;
        max-width: 500px;
    }
}

.footer-widget--links {
    margin-left: 33px;
}

@media (max-width: 1199px) {
    .footer-widget--links {
        margin-left: 0;
    }
}

.footer-widget--post {
    margin-left: -63px;
}

@media (max-width: 1199px) {
    .footer-widget--post {
        margin-left: 0;
    }
}

.footer-widget__logo {
    display: inline-flex;
    margin-bottom: 22px;
    margin-top: 12px;
}

.footer-widget__title {
    margin-bottom: 36px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: capitalize;
    line-height: 1.5;
}

.footer-widget__title::before,
.footer-widget__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    background-color: var(--secondary-color);
    width: 14px;
    height: 2px;
}

.footer-widget__title::after {
    width: 51px;
    left: 19px;
}

.footer-widget__post {
    margin-top: 5px;
}

.footer-widget__post__item+.footer-widget__post__item {
    margin-top: 22px;
}

.footer-widget__post__item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

.footer-widget__post__item:hover .footer-widget__post__thumb img {
    transform: scale(1) rotate(0deg);
}

.footer-widget__post__item:hover .footer-widget__post__thumb::after {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.footer-widget__post__thumb {
    max-width: 78px;
    height: 79px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.footer-widget__post__thumb img {
    object-fit: cover;
    width: 100%;
    transform: scale(1.1) rotate(5deg);
    transition: all 0.4s ease-in-out;
}

.footer-widget__post__thumb::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: RGBA(var(--secondary-color, 20, 20, 20), 0.8);
    transform: translateY(-30px);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.footer-widget__post__meta a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-transform: capitalize;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.footer-widget__post__meta a i {
    font-size: 20px;
    margin-right: 8px;
    line-height: 1;
}

.footer-widget__post__meta a:hover {
    color: var(--secondary-color);
}

.footer-widget__post__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: #FFFFFf;
    opacity: 0.8;
}

.footer-widget__post__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__post__title a:hover {
    background-size: 100% 1px;
}

.footer-widget__post__title a:hover {
    color: var(--secondary-color);
}

.footer-widget__about-text {
    margin-bottom: 25px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    /* line-height: 175%; */
}

.footer-widget__newsletter .form-group__form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-widget__newsletter .form-group__form input[type=email] {
    border-radius: 8px;
    width: 100%;
    border: none;
    outline: none;
    height: 56px;
    display: block;
    border: none;
    outline: none;
    padding-left: 20px;
    padding-right: 70px;
    transition: all 500ms ease;
    color: var(--cityride-black, #141414);
    line-height: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    background-color: var(--cityride-white, #FFFFFF);
}

.footer-widget__newsletter .form-group__form input[type=email]::placeholder {
    color: #726B7D;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    font-size: 14px;
}

.footer-widget__newsletter .form-group__form button[type=submit] {
    position: absolute;
    right: 5px;
    bottom: 5px;
    top: 5px;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: var(--cityride-black, #141414);
    font-size: 16px;
    transition: all 500ms ease;
    padding: 14px 14px;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    background-color: var(--secondary-color);
}

.footer-widget__newsletter .form-group__form button[type=submit]:hover {
    color: var(--cityride-white, #FFFFFF);
}

.footer-widget__newsletter .form-group__check input[type=checkbox] {
    display: none;
}

.footer-widget__newsletter .form-group__check label {
    position: relative;
    line-height: normal;
    display: flex;
    cursor: pointer;
    position: relative;
    padding-left: 38px;
    margin-bottom: 0;
    color: rgba(var(--cityride-white-rgb, 255, 255, 255), 0.6);
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    opacity: 0.8;
}

.footer-widget__newsletter .form-group__check label a {
    text-decoration: underline;
    color: rgba(var(--cityride-white-rgb, 255, 255, 255), 0.8);
    margin-left: 8px;
    font-weight: 400;
}

.footer-widget__newsletter .form-group__check label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 5px;
    background-color: transparent;
    border: 1px solid rgba(var(--cityride-text-rgb, 131, 131, 131), 0.8);
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.footer-widget__newsletter .form-group__check label::after {
    content: "\f00c";
    color: var(--cityride-white, #FFFFFF);
    position: absolute;
    left: 0;
    bottom: 2px;
    border-radius: 4px;
    right: 0;
    line-height: 20px;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 700;
    transition: all 0.15s ease-in-out;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    opacity: 0;
}

.footer-widget__newsletter .form-group__check label:first-child {
    margin-top: 0;
}

.footer-widget__newsletter .form-group__check input[type=checkbox]:checked+label:after {
    opacity: 1;
}

.footer-widget__links {
    margin: 0;
}

.footer-widget__links li+li {
    margin-top: 7.5px;
}

.footer-widget__links li {
    font-size: 16px;
    color: var(--light-gray);
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.875;
}

.footer-widget__links li a {
    color: inherit;
    transition: all .2s linear;
}

.footer-widget__links li a:hover {
    color: var(--secondary-color);
    margin-left: 10px;
}

.footer-widget__links li a i {
    font-size: 15px;
    margin-right: 10px;
}

.footer-widget__info {
    margin-bottom: 24px;
}

.footer-widget__info li+li {
    margin-top: 11px;
}

.footer-widget__info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--cityride-white, #FFFFFF);
    font-weight: 500;
    line-height: 1.875;
}

.footer-widget__info li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__info li a:hover {
    background-size: 100% 1px;
}

.footer-widget__info li a:hover {
    color: var(--secondary-color);
}

.footer-widget__info__icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--cityride-white, #FFFFFF);
}

.footer-widget__info__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.footer-widget__text {
    font-size: 14px;
    color: var(--cityride-text, #838383);
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    margin-top: -10px;
    margin-bottom: 21px;
    max-width: 201px;
}

.footer-widget__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-widget__social a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-size: 16px;
    color: var(--cityride-white, #FFFFFF);
    transition: all 500ms ease;
}

.footer-widget__social a:hover {
    margin-top: -5px;

}

.cta-one {
    position: relative;
    z-index: 1;
    padding-bottom: 1px;
    padding-top: 1px;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cta-one {
        background-color: var(--cityride-white2, #F4F1EA);
        padding-bottom: 80px;
    }
}

.cta-one__inner {
    position: relative;
    z-index: 1;
    background-color: var(--secondary-color);
    margin-top: -144px;
    margin-bottom: -120px;
}

@media (max-width: 991px) {
    .cta-one__inner {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.cta-one__inner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

@media (max-width: 991px) {
    .cta-one__inner__bg {
        width: 100%;
    }
}

.cta-one__inner__bg::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    position: absolute;
}

.cta-one__inner__image {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.cta-one__inner__image img {
    animation: moveHorizontal 2s ease-in-out infinite;
}

@media (max-width: 991px) {
    .cta-one__inner__image {
        padding-top: 10px;
        text-align: center;
        position: relative;
        top: auto;
        right: auto;
        transform: translateY(0%);
    }
}

@media (max-width: 575px) {
    .cta-one__inner__image {
        display: none;
    }
}

.cta-one__content {
    padding: 55px 0px 55px 55px;
    background-color: var(--secondary-color) !important;
}

@media (max-width: 1199px) {
    .cta-one__content {
        padding: 40px 0px 40px 40px;
    }
}

.cta-one__content .sec-title {
    margin-bottom: 34px;
}

.cta-one__content .sec-title__shape::before,
.cta-one__content .sec-title__shape::after {
    background-color: var(--cityride-black, #141414);
}

.cta-one__content .sec-title__title {
    font-weight: 600;
    font-size: 30px;
}

.cta-one__content__btn .cityride-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid black;
    background-color: black;
    color: white;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 34px;
}

.cityride-btn__icon i {
    font-size: 16px;
}

/* Hover Effect */
.cityride-btn:hover {
    background-color: white;
    color: black;
    border-color: black;
}



.cta-one__inner__box {
    position: absolute;
    background-color: var(--cityride-black, #141414);
    width: 410px;
    bottom: 0;
    height: calc(100% + 21px);
    left: calc(50% - 205px + 279px);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

@media (max-width: 1199px) {
    .cta-one__inner__box {
        height: calc(100% + 0px);
        left: auto;
        right: 30px;
    }
}

@media (max-width: 991px) {
    .cta-one__inner__box {
        display: none;
    }
}

.cta-one__inner__box__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: multiply;
}

.cta-one__inner__box__one {
    position: absolute;
    left: 30%;
    top: 50%;
    z-index: -1;
    width: 170px;
    height: 243px;
    background: var(--secondary-color);
    border-radius: 85px;
    transform: matrix(1, 0, 0, -1, 0, 0) translateY(45%);
}

.cta-one__inner__box__two {
    position: absolute;
    left: 25%;
    top: 50%;
    z-index: -1;
    width: 170px;
    height: 243px;
    background: transparent;
    border: 5px solid var(--secondary-color);
    border-radius: 85px;
    transform: matrix(1, 0, 0, -1, 0, 0) translateY(55%);
}

.cta-one__inner__item-one {
    position: absolute;
    width: 49px;
    height: 21px;
    position: absolute;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    top: -21px;
    right: 34.8%;
    background-color: var(--cityride-black, #141414);
}

@media (max-width: 1199px) {
    .cta-one__inner__item-one {
        display: none;
    }
}

.cta-one__inner__item-two {
    position: absolute;
    width: 56px;
    height: 21px;
    position: absolute;
    clip-path: polygon(0 100%, 100% 100%, 17% 0);
    top: -21px;
    right: 4.8%;
    background-color: var(--cityride-black, #141414);
}

@media (max-width: 1199px) {
    .cta-one__inner__item-two {
        display: none;
    }
}

/* about page start here  */
.inner-page {
    /* background: url(../images/banner/slide2.jpg) no-repeat center / cover; */
     background: 
        url(../images/banner/slide2.jpg) center / cover no-repeat,
        linear-gradient(45deg, #3a3a3a, #414141); /* Blue gradient overlay */
    background-blend-mode: overlay; /* Blend modes: overlay, multiply, screen */
    min-height: 300px;
 
}

.inner-page .inner-heading {
    padding: 130px 0px;
    text-align: center;

}

.inner-page .inner-heading h3 {
    color: var(--secondary-color);

}
.inner-heading h1{
    color: var(--secondary-color);
}

.border-line {
    position: relative;
    height: 2px;
    width: 100%;
    max-width: 10%;
    background: transparent;
    margin: auto;
    overflow: hidden;
}

.border-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    background: var(--secondary-color);
    animation: borderAnimation 2s linear infinite;
}

@keyframes borderAnimation {
    0% {
        left: -10%;
    }

    100% {
        left: 100%;
    }
}


.car-card {
    border-radius: 12px;
    box-shadow: 0 0 20px rgb(169 169 169 / 86%);
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border: 3px solid transparent;
}

/* Add border on hover of card or image */
.car-card:hover,
.car-card:hover img {
    border-color: var(--secondary-color);
    /* red border */
}

/* Image zoom effect on hover */
.car-card img {
    width: 100%;
    object-fit: contain;
    background: #f9f9f9;
    transition: transform 0.4s ease;


}

.car-card:hover img {
    transform: scale(1.25);
}

.top-info {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    font-size: 16px;
}

.top-info span {
    font-weight: bold;
}

.book-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #000;
    color: #fff;
}

.details {
    padding: 16px;
}

.details h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.specs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 10px;
}

.specs div {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
}

.specs i {
    color: var(--secondary-color);
}

/* gallery style start here  */
.gallery-content h3 {
    color: var(--secondary-color);
}

.gallery-content p {
    color: #ffffff;
}

.gallery-items {
    position: relative;
    margin: 0 auto;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    height: 100%;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-detail {
    position: absolute;
    /* bottom: -50px; */
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    transition: all 0.5s ease;
    color:var(--light-gray);
}

.gallery-detail h4 {
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

/* Hover Effects */
.gallery-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-box:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-box:hover .bottom-fade {
    opacity: 1;
}

.gallery-box:hover .gallery-detail {
    bottom: 0;
}

.gallery-box:hover .gallery-detail h4 {
    transform: translateY(0);
}

/* Lightbox Effect */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 30px;
    text-align: center;
}

.filter-btn {
    background: #18a8d0;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-img {
        height: 250px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}


/* service area section start here  */

.service-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 25px #c6c6c6;
    transition: all 0.3s ease;
    position: relative;
}

.service-box:hover {
    box-shadow: 0 8px 30px rgba(255, 217, 217, 0.25);
    transform: translateY(-5px);
    border: 3px solid var(--secondary-color);
}

.service-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

/* contact us start here  */


.info-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-box a {
    text-decoration: none;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(122, 122, 122, 0.25);
    border: 1px solid var(--secondary-color);
}

.info-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-box h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-box p {
    margin: 0;
    color: #555;
}

.contact-section {
    padding: 140px 0 100px;
}

.contact-section .contact-info-block {
    text-align: center;
}

.contact-info-block .contact-information {
    box-shadow: 1px 3px 4px 3px #f4f4f4;
    margin-bottom: 25px;
}

.contact-section .image img {
    width: 100%;
}

.contact-section .text {
    background-color: #fff;
    padding: 50px 0;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
}

.contact-section .text h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #222222;
    position: relative;
}

.contact-section .text .left-lines:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #cccccc;
    left: 0;
    top: 60px;
}

.contact-section .text .left-lines:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #cccccc;
    left: 0;
    top: 65px;
}

.contact-section .text .right-lines:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #cccccc;
    right: 0;
    top: 60px;
}

.contact-section .text .right-lines:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #cccccc;
    right: 0;
    top: 65px;
}

.contact-section .text p {
    font-size: 18px;
    color: #222222;
}
.form-group-contact{
     background-color: #ffffff !important;
     border-radius: 20px;
}

.form-contact {
    padding: 100px 0;
    background-color: #ebebebcf;
}

.form-contact .text-block h3 {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-contact .text-block p {
    color: #ffffff;
}

.form-contact .text-block .rating {
    position: relative;
    display: inline-block;
    padding-left: 45px;
    margin-bottom: 30px;
}

.form-contact .text-block .rating .star {
    position: relative;
    color: var(--secondary-color);
    font-size: 12px;
    margin: 0px 2px;
}

.form-contact .text-block .rating .star:nth-child(2) {
    font-size: 14px;
}

.form-contact .text-block .rating:before {
    position: absolute;
    content: '';
    left: 0;
    top: 11px;
    height: 1px;
    width: 30px;
    background-color: #000000;
}

.form-contact .text-block .rating:after {
    position: absolute;
    content: '';
    right: -45px;
    top: 11px;
    height: 1px;
    width: 30px;
    background-color: #222222;
}

.form-contact form .form-group {
    margin-bottom: 35px;
}

.form-contact form .form-group label {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    display: block;
    margin-bottom: 15px;
}

.form-contact form .form-group input[type="text"] {
    width: 100%;
    background-color: #ffffff;
    height: 55px;
    padding-left: 10px;
    transition: .5s;
}

.form-contact form .form-group input[type="text"]:focus {
    box-shadow: 1px 1px 2px 1px #ededed;
    background-color: #ffffff;
}

.form-contact form .form-group textarea {
    width: 100%;
    background-color: #ffffff;
    padding-left: 10px;
    padding-top: 10px;
    transition: .5s;
    height: 130px;
}

.form-contact form .form-group textarea:focus {
    box-shadow: 1px 1px 2px 1px #ededed;
    background-color: #ffffff;
}

.form-contact form button {
    padding: 20px 50px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
}

.form-contact form button span {
    position: relative;
    z-index: 1;
}

/* book now start here  */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;

    border-radius: 15px;
}

form .group-box {
    display: flex;
    gap: 20px;
}

form .group-box .box {
    width: 50%;
}

form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #151515;
}

.booking-form h2 {
    color: var(--secondary-color);
}

form h4 {
    color: #292929;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 16px;
}

form input[type=submit] {
    width: 170px;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    background: var(--secondary-color);
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    form .group-box {
        flex-direction: column;
    }

    form input,
    form textarea,
    form select {
        width: 100% !important;
        padding: 10px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    form .group-box .box {
        width: 100%;
    }
}

@media only screen and (max-width: 678px) {

    form input,
    form textarea,
    form select {
        width: 100% !;
    }

    form .group-box .box {
        width: 100%;
    }


}

.main-navbar{
    /* position: absolute !important; */
    z-index: 9;
    width: 100%;
}
.animated-button a{
    color: var(--text-color)    ;
}
.about-item-img img{
    border-radius: 30px;
}


.marquee-tagline {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 15px 0;
}

.text-slide {
  display: inline-block;
  white-space: nowrap;
  animation: bounceMarquee 30s linear infinite alternate;
}

.text-slide ul {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}

/* Bouncing side-to-side animation */
@keyframes bounceMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(100vw - 100%));
  }
}

.float-btn{
   
    bottom: 40px;
    right: 10px;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: floating 2s ease-in-out infinite;
   
}
@keyframes floating{
    0%{
        transform: translatey(0px);
    }
    50%{
        transform: translatey(-10px);
    }
    100%{
        transform: translatey(0px);
    }
 
}
.float-btn a{
    text-decoration: none;
    color: #fff;
    background-color: #18a8d0;
    padding: 8px 26px;
    margin: 5px 0px;
    border-radius: 10px;
    box-shadow: 2px 3px 3px 0px rgb(101 101 101);
}
 
.float-btn img{
    width: 90px;
   
}

@media only screen and (max-width: 678px){
    
    .float-btn img {
    width: 60px;
}


    .float-btn a {
            padding: 6px 14px;
                font-size: 14px;
    }
}
.blogs-container .blogs-items img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.blogs-container .blogs-items{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 1rem;
    border: 2px solid #ffffff;
    overflow: hidden;
    transition: all 0.3s ease-in-out;

}
.blogs-container .blogs-items:hover{
    border: 2px solid #16a8d0;
}
.blogs-container .blogs-items:hover img{
    transform: scale(1.2);
}
.blog-page a{
    text-decoration: none;
    color: #000;
}
.blogs-container .blogs-items h3 {
    color: #303030;
    font-size: 1.4rem;
}   
.blog-page .date i{
    color: #16a8d0;
}

.blog-sidebar h3{
    font-size: 1.8rem;
    padding-left:1rem ;
    border-left: 4px solid #16a8d0;
}
.blog-sidebar .blog-sidebar-item{
   padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-top: 1.5rem;
}
.blog-sidebar .blog-sidebar-item h4{
font-size: 1.2rem;
color: #303030;

}
.blog-sidebar .blog-sidebar-item img{
    width: 100px;
    transition: all 0.3s ease-in-out;
}
.blogs-container-main{
    display: flex; 
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}
.blogs-container-main h1,
.blogs-container-main .h1{
    font-size: 2rem;

}
.blogs-container-main img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}