/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 20px;
    margin-left: 20px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 65px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    color: white;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 15px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}



.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    ;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}

/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px #ff0000d4;
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
    height: 100%;
}

.service .service-item:hover {
    display: flex;
    border: 1px solid red;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgb(0 0 0 / 73%), rgb(0 0 0 / 78%)), url(../images/cabs/carsbg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: linear-gradient(to bottom, #ea001e, #33040a);
    /* background: var(--bs-secondary); */
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 0 10px #fff;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 50%;
    right: -35px;
    font-weight: 900;
    border: 1px solid var(--bs-white);
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: linear-gradient(to bottom, #db001c, #100002);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
    border: 1px solid rgb(255, 181, 181);
    height: 100%;
    background-color: var(--bs-light);

}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item h4 {
    padding: 5px 10px;
    text-align: center;
    font-weight: 600;
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
    box-shadow: 0 0 10px #0000004a;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 a,
.team .team-item:hover .team-content h5 {
    color: var(--bs-white);
}

.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial .testimonial-item .client-message {
    height: 150px;
}

@media screen and (max-width:768px) {
    .testimonial .testimonial-item .client-message {
        height: 200px;
    }
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/










h3 {
    /* font-family: 'Brush Script MT', cursive; */
    color: #0d6efd;
}

.content-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

/* social midea */
.wrapper {
    display: flex;

    flex-direction: row;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}

.wrapper .fas {
    margin: auto;
}

.fab {
    margin: auto;

}

.social {
    color: #FFF;
    transition: all 0.35s;
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.social:hover {
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    transition: all ease 0.5s;
    -moz-transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;

}

.facebook {
    color: #4267B2;
}

.phone {
    color: #1DA1F2;
}

.youtube {
    color: #c4302b;
}

.pinterest {
    color: #c8232c;
}

.instagram {
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;

}

.tumblr {
    color: #34526f;
}

.whatsapp {
    color: #25D366;
}

.bg-ico {
    display: flex;
    background-color: #FFF;
    width: 50px;
    height: 50px;
    line-height: 90px;
    margin: 0 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 28%;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.158);
    opacity: 0.99;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;

}

.bg-ico:hover {
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.8);
}

#facebook:hover {
    background-color: #4267B2;
}

#phone:hover {
    background-color: #1DA1F2;

}

#youtube:hover {
    background-color: #c4302b;
}

#pinterest:hover {
    background-color: #c8232c;
}

#instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);


}

#tumblr:hover {
    background-color: #34526f;
}

#whatsapp:hover {
    background-color: #25D366;
}

.facebook:hover,
.phone:hover,
.youtube:hover,
.pinterest:hover,
.instagram:hover,
.tumblr:hover,
.whatsapp:hover {
    color: #fff;
    transform: scale(1.3);

}

.headline-red {
    font-size: 45px;
    font-weight: 800;
    /* text-transform: uppercase; */
    /* letter-spacing: 2px; */
    /* background: linear-gradient(45deg, #e52b2b, #051936); */
    /* background: linear-gradient(135deg, #ff0000, #ff4d4d, #1667df); */
    background: linear-gradient(to bottom, #ff0000, #4e000b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.411);
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); */
}

.headline-red1 {
    font-size: 37px;
    font-weight: 800;
    background: linear-gradient(to bottom, #ff0000, #4e000b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.411);
}

.footer-a a:hover {
    color: rgb(255, 0, 0) !important;
}

.quicklink a:hover {
    color: #ff000d !important;
    letter-spacing: 4px;
}

.quicklink ul {
    text-decoration-color: #c8232c !important;
}

.routes a:hover {
    color: #ff000d !important;
    letter-spacing: 2px;
}

.red-text {
    background: linear-gradient(to bottom, #ff0000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.411);

}

.footerbg {
    background: linear-gradient(#000000d1, rgba(0, 0, 0, 0.9)), url(../images/photo/footerbg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.btn-danger:hover {
    color: #fff;
    background-color: #ff6574;
    border-color: #b02a37;
}

/*  */
.custom {
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.custom-main {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.custom-slide {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

.custom-slide:nth-child(1),
.custom-slide:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
}

.custom-slide:nth-child(3) {
    left: 50%;
}

.custom-slide:nth-child(4) {
    left: calc(50% + 220px);
}

.custom-slide:nth-child(5) {
    left: calc(50% + 440px);
}

.custom-slide:nth-child(6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.custom-content {
    width: min(30vw, 400px);
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    font: 400 0.85rem helvetica, sans-serif;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}

.custom-content .custom-title {
    /* font-family: 'arial-black'; */
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(to bottom, #ff0000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.411);
}

.custom-content .custom-description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 0.8rem;
}

.custom-content button {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
}

.custom-slide:nth-of-type(2) .custom-content {
    display: block;
    animation: custom-show 0.75s ease-in-out 0.3s forwards;
}

@keyframes custom-show {
    0% {
        filter: blur(5px);
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.custom-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    user-select: none;
}

.custom-nav .custom-btn {
    background: linear-gradient(to bottom, #ff0000, #4e000b);
    color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
}

.custom-nav .custom-btn:hover {
    /* background-color: rgba(255,255,255,0.3); */
    background: linear-gradient(to bottom, #4e000b, #ff0000);
}

@media (width > 650px) and (width < 900px) {
    .custom-content .custom-title {
        font-size: 1rem;
    }

    .custom-content .custom-description {
        font-size: 0.7rem;
    }

    .custom-content button {
        font-size: 0.7rem;
    }

    .custom-slide {
        width: 160px;
        height: 270px;
    }

    /* Positions */
    /* .custom-slide:nth-child() {
      
    } */

    .custom-slide:nth-child(4) {
        left: 50%;
    }

    .custom-slide:nth-child(5) {
        left: calc(50% + 170px);
    }

    .custom-slide:nth-child(6) {
        left: calc(50% + 340px);
        opacity: 0.9;
    }

    .custom-slide:nth-child(7) {
        left: calc(50% + 510px);
        opacity: 0.8;
    }

    .custom-slide:nth-child(8) {
        left: calc(50% + 680px);
        opacity: 0.6;
    }

    .custom-slide:nth-child(9) {
        left: calc(50% +850px);
        opacity: 0.4;
    }

    .custom-slide:nth-child(10) {
        left: calc(50% + 1020px);
        opacity: 0.2;
    }
}

/* @media (width < 650px) {
    .custom-content .custom-title {
        font-size: 0.9rem;
    }

    .custom-content .custom-description {
        font-size: 0.65rem;
    }

    .custom-content button {
        font-size: 0.7rem;
    }

    .custom-slide {
        width: 130px;
        height: 220px;
    }

  
    .custom-slide:nth-child(3) {
        left: 50%;
    }

    .custom-slide:nth-child(4) {
        left: calc(50% + 140px);
    }

    .custom-slide:nth-child(5) {
        left: calc(50% + 280px);
    }

    .custom-slide:nth-child(6) {
        left: calc(50% + 420px);
        opacity: 0.9;
    }

    .custom-slide:nth-child(7) {
        left: calc(50% + 560px);
        opacity: 0.8;
    }

    .custom-slide:nth-child(8) {
        left: calc(50% + 700px);
        opacity: 0.6;
    }

    .custom-slide:nth-child(9) {
        left: calc(50% + 840px);
        opacity: 0.4;
    }

    .custom-slide:nth-child(10) {
        left: calc(50% + 980px);
        opacity: 0.2;
    }
} */

/*  */
.group {
    /* ... */
    will-change: transform;
    /* We should be nice to the browser - let it know what we're going to animate. */
    animation: scrolling 10s linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.groupcarousel {

    &:hover .group {
        animation-play-state: paused;
    }
}

/*  */
.navbar-brand img {
    margin-left: 100px;
}

/* Background section */
.c-section {
    background: #00000000;
    /* padding: 60px 20px; */
    text-align: center;
    color: #fff;
}

/* Title & subtitle */
.c-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff0000;
}

.c-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ddd;
}

/* Transparent form */


/* Labels */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff00003b;
    background: rgba(255, 255, 255, 0.1);
}

/* Submit button */
.btn-submit {
    background: linear-gradient(320deg, #ea001ecc, #ff00006b);
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}



/* Transparent form (reduced size) */
.c-form {
    max-width: 500px;
    /* smaller width */
    margin: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    /* reduced padding */
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

/* Inputs & textarea (smaller) */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    /* reduced padding */
    font-size: 0.9rem;
    /* smaller font */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    outline: none;
    background: transparent;
    color: #fff;
}

/*  */
.steps .steps-item h4 {
    padding: 25px;
    margin: auto;
}

.categories .btn-custom:hover {
    color: #fff !important;
}

/*  */
.d-height {
    height: 250px;
}

.testim-text p {

    color: #4b2108;
    font-size: 45px;
    font-family: 'Brush Script MT', cursive;
}

/*  */

.faqwrapper {
    width: 100%;
}

.faqcontainer h1 {
    margin-bottom: 20px;
}

.faqcontainer {
    background: linear-gradient(to bottom, #07a3fa, #003a5b);
    /* background-color: white; */
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 20px 0;
}

.question {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 80px 15px 15px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    color: #ffffffb0;
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

.question.active+.answercont {}

@media screen and (max-width: 790px) {
    html {
        font-size: 14px;
    }

    .wrapper {
        width: 80%;
    }
}

.man-img {
    position: absolute;
    top: 100px;
    right: -50px;
}

@media screen and (max-width:768px) {
    .man-img {
        position: relative;
        top: 10px;
        right: 0;
        left: 0;
    }

    .question {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 15px 40px 15px 15px;
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
}

/*  */

.flip-loop {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.flip-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.flip-item {
    width: 200px;
    height: 280px;
    position: relative;
    transform-style: preserve-3d;
    border-radius: 15px;
    transition: transform 1s;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .flip-item {
        width: 300px;
    }
}

/* Flip when active OR hover */
.flip-item.active,
.flip-item:hover {
    transform: rotateY(180deg);
}

.flip-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

.flip-face.front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-face.back {
    background: linear-gradient(135deg, #ff6b6b, #b51734, #ffb3b3);
    /* radish theme */
    color: #fff;
    transform: rotateY(180deg);
    flex-direction: column;
}

.flip-face.back h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #00c6fd;
}

.flip-face.back p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.flip-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Moving Border Effect */
.flip-face::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 3px;
    /* border thickness */
    background: linear-gradient(90deg,
            transparent,
            red,
            transparent) no-repeat;
    background-size: 300% 300%;
    /* bigger so it can move */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: moveBorder 4s linear infinite;
}

/* Animate border around edges */
@keyframes moveBorder {
    0% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.flip-face h2 {
    color: #fff !important;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.attraction-card a:hover {
    color: #00c6fd !important;
}

.rotate-text {
    display: inline-block;
    animation: spin 5s linear infinite;
    /* speed: 5s, repeat forever */
}

@keyframes spin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(180deg);
    }
}

.faqcontainer1 {
    background: linear-gradient(to bottom, #0dcaf0, #002f44) !important;
    /* background-color: white; */
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 10px 0;
}

.headline-blue {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(to bottom, #00a7f2, #0082c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.411);
}

.faqcontainer2 {
    background: linear-gradient(to bottom, #0dcaf0, #002f44) !important;
    /* background-color: white; */
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 20px 0;
    padding: 20px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #0dcaf0 !important;
    box-shadow: 0 0 10px #33333387;
}

/*  */
.gallery-img {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 150px;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Limit popup image size */
.glightbox-container .gslide img {
    max-width: 90vw;
    /* 90% of viewport width */
    max-height: 80vh;
    /* 80% of viewport height */
    object-fit: contain;
}

.sticky-side {
    position: sticky;
    top: 90px;
}

.text-justify {
    text-align: justify;
}

.cab-img img {
    border: 1px solid black;
    border-radius: 15px;
}

/*  */
.cab-h {
    color: #bb0018 !important;
}

.cab-book a {
    background: linear-gradient(to bottom, #ff2441, #3d0e14);
}

.cab-book a:hover {
    background: linear-gradient(to bottom, #3d0e14, #ff2441);
}



.info-card {
    background: #fff;
    border-left: 5px solid #dc3545;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-img {
    width: 100%;
    height: 225px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fade-in {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-height {
    height: 120px;
}

/*  */
/* Container */
.review-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.review-wrapper-inner {
    width: 100%;
    max-width: 920px;
    /* padding: 30px; */
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

/* Slide content */
.review-img {
    height: 140px;
    width: 140px;
    object-fit: cover;
    border-radius: 50%;
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); */
}

/* .review-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 10px 8px;
    box-sizing: border-box;
} */




.review-slider {
    position: relative;
    max-width: 900px;
    width: 100%;
    height: 100%;
    /* full height for centering */
    padding: 50px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* vertical centering */
    text-align: center;
    row-gap: 20px;
    height: 100%;
    width: 100%;
}

.review-slide p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

.review-quote {
    font-size: 28px;
    color: #0070af;
}

.review-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.review-job {
    font-size: 13px;
    color: #666;
}

/* Pagination bullets */
.review-pagination .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
}

.review-pagination .swiper-pagination-bullet-active {
    background: #4070f4;
}

/* Custom nav buttons (arrows) */
.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0070af;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background .15s, transform .15s;
    user-select: none;
}

.review-btn:hover {
    transform: translateY(-50%) scale(1.06);
    background: #0099b7;
}

.review-btn-prev {
    left: 6px;
}

.review-btn-next {
    right: 6px;
}

.review-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .review-img {
        height: 120px;
        width: 120px;
    }

    .review-slide p {
        padding: 0 14px;
        font-size: 14px;
    }

    .review-btn {
        display: none;
    }

    /* hide arrows on small screens */
}

.swiper {
    padding-bottom: 30px !important;
}

.faq-p p {
    font-size: 20px;
    color: #003a5b;
}

.tch-header {
    background: linear-gradient(to right, #0072ff, #00c6ff);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 20px;
}

.tch-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 39%);
}

.tch-sidebar .tch-nav-link {
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
}

.tch-sidebar .tch-nav-link i,
img {
    margin-right: 10px;
    color: #0292b1;
}

.tch-sidebar .tch-nav-link.active,
.tch-sidebar .tch-nav-link:hover {
    background: #eafffc;
    color: #009fc1;
}

.tch-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 68%);
}

.tch-section h3 {
    color: #00a0c3;
    font-weight: 600;
    margin-bottom: 15px;
}

.tch-section {
    scroll-margin-top: 90px;
    /* adjust to your navbar height */
}

.headline-blue {
    font-size: 45px;
    font-weight: 800;
    background: linear-gradient(to bottom, #0dcaf0, #0086a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.411);
}

.tch-sidebar img {
    width: 20px;
}

@media screen and (max-width:768px) {
    .headline-red {
        font-size: 30px;
    }
}

.booking-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 280px;
}

.booking-form h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    text-align: center;
}

.booking-form input,
.booking-form select,
.booking-form button {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: #1296db;
}

.booking-form button {
    background: #00a8db;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.booking-form button:hover {
    background: #007fa4;
}

.booking-form button i {
    margin-right: 8px;
}

.ertiga {
    position: absolute;
    top: 185px;
    left: -100px;
    z-index: 2;
}

.ertiga img {
    width: 400px;
    /* border: 2px solid rgb(14, 145, 221); */
}

@media screen and (max-width:768px) {
    .ertiga {
        position: absolute;
        top: 110px;
        left: -100px;
        z-index: 2;
        left: -50px;
    }

    .ertiga img {
        width: 250px;
    }

    .why-left {
        margin-bottom: 80px;
    }
}

.about-img img {
    border: 2px solid rgb(0, 174, 255);
}

.indent {
    text-indent: 60px;
}

/*  */
.circle_container {
    margin: 50px auto;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    /* background-image: url("https://i.ibb.co/jVL0zvC/section-img.jpg"); */
    background-image: linear-gradient(rgb(0 0 0 / 27%), rgb(0 0 0 / 31%)), url(../images/cabs/car-c.webp);
    background-size: cover;
    background-position: 43%;
    opacity: .8;
    position: relative;
}

/* .circle_container::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #000;
    z-index: 999;
} */
.center-div {
    position: absolute;
    top: 45%;
    margin-top: -30px;
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-div h2 {
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    text-align: center;
    margin-top: 100px;
}

.center-div p {
    margin-top: 30px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    line-height: 30px;

}

.choices {
    display: flex;
}

.left-top,
.right-top,
.right-bottom,
.left-bottom,
.left-mid,
.right-mid {
    position: absolute;
    display: flex;
    transition: .6s;
    cursor: pointer;
    width: 100%;
    user-select: none;
}

.left-top:hover,
.right-top:hover,
.right-bottom:hover,
.left-bottom:hover,
.left-mid:hover,
.right-mid:hover {
    transform: scale(1.1);
}

.left-top {
    left: -70%;
    top: 3%;
}

.right-top {
    left: 70%;
    top: 3%;
}

.right-bottom {
    left: 70%;
    top: 80%;
}

.left-bottom {
    left: -70%;
    top: 80%;
}

.left-mid {
    left: -88%;
    top: 41%;
}

.right-mid {
    left: 85%;
    top: 41%;
}

.left-top-circle,
.right-top-circle,
.right-bottom-circle,
.left-bottom-circle,
.left-mid-circle,
.right-mid-circle {
    position: relative;
    background-color: #0093d8;
    ;
    width: 100px;
    height: 100px;
    border-radius: 50%;

}

.left-top-circle {
    left: 81%;
}


.left-bottom-circle {
    left: 81%;
}

.left-mid-circle {
    left: 81%;
}

.left-top-circle img,
.right-top-circle img,
.right-bottom-circle img,
.left-bottom-circle img,
.left-mid-circle img {
    width: 70%;
    display: block;
    position: absolute;
    top: 15%;
    left: 12%;
}

.right-bottom-circle i,
.left-bottom-circle i,
.right-top-circle i,
.left-top-circle i,
.left-mid-circle i,
.right-mid-circle i {
    font-size: 55px;
    position: absolute;
    top: 22px;
    left: 16px;
}


.left-top-text,
.right-top-text,
.right-bottom-text,
.left-bottom-text {
    position: relative;
    padding: 8px;
    width: 80%;
}

.left-mid-text,
.right-mid-text {
    position: relative;
    padding: 8px;
    width: 60%;
}


.left-top-text {
    left: -27%;
}

.right-top-text {
    left: 7.5%;
}

.right-bottom-text {
    left: 7.5%;
    top: 80%;
}

.left-bottom-text {
    left: -27%;
}

.left-mid-text {
    left: 0%;
    top: 50%;
}

.right-mid-text {
    left: 1.5%;
    top: 50%;
}

.left-top-text h3,
.right-top-text h3,
.right-bottom-text h3,
.left-bottom-text h3,
.left-mid-text h3,
.right-mid-text h3 {
    text-align: right;
    color: #cb001a;
    font-weight: bold;
    opacity: .9;
    font-size: 22px;
}

.right-top-text h3,
.right-bottom-text h3,
.right-mid-text h3 {
    text-align: left;
}

.left-top-text p,
.right-top-text p,
.right-bottom-text p,
.left-bottom-text p {
    margin-top: 30px;
    color: #4c4c4d;
    font-weight: bold;
    line-height: 1.4;
    text-align: justify;
    font-size: 16px;
}


.left-mid-text p {
    margin-top: 30px;
    color: #4c4c4d;
    font-weight: bold;
    line-height: 1.4;
    text-align: justify;
    font-size: 16px;
}

.right-mid-text p {
    margin-top: 30px;
    color: #4c4c4d;
    font-weight: bold;
    line-height: 1.4;
    text-align: justify;
    font-size: 16px;
}

.about-circle {
    overflow: hidden;
}

/*  */
/* TIMELINE */
.timeline {
    position: relative;
    margin: 24px auto 80px;
    padding: 40px 0;
    width: 100%;
}

/* central road line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: #0070aa;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(2, 146, 177, 0.12);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 30px;
    box-sizing: border-box;
    transition: transform .6s cubic-bezier(.2, .9, .2, 1), opacity .6s ease;
    will-change: transform, opacity;
    opacity: 1;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* content card */
.timeline-content {
    display: inline-block;
    max-width: 420px;
    background: var(--card-bg);
    padding: 35px 15px 18px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgb(20 40 50 / 56%);
    transition: transform .3s ease, box-shadow .3s ease;
}

.timeline-content h4 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #c9041d;
}

.timeline-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14.5px;
}

.timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(20, 40, 50, 0.12);
}

/* circle icon on the center line */
.timeline-icon {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #008fcf;
    border: 3px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(2, 146, 177, 0.08);
    z-index: 3;
}

.timeline-icon img {
    width: 42px;
    height: 42px;
    display: block;
}

/* initial hidden state - will be toggled to .show */
.timeline-item.hidden {
    opacity: 0;
    transform: translateY(30px) scale(.98);
    pointer-events: none;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* moving car */
.moving-car {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 64px;
    z-index: 6;
    pointer-events: none;
}

.moving-car img {
    width: 100%;
    display: block;
}

/* RESPONSIVE */
@media (max-width:900px) {
    .timeline-item {
        padding: 20px 16px;
    }

    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width:720px) {
    .timeline::before {
        left: 28px;
        transform: none;
    }

    /* move road to left */
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 18px;
        margin-bottom: 34px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-icon {
        left: 170px;
        top: -20px;
        transform: none;
    }

    .moving-car {
        left: 33px;
        transform: none;
    }
}

/* small visual tweaks */
.timeline-item .timeline-content {
    border-left: 4px solid transparent;
}

.timeline-item.show .timeline-content {
    border-left-color: #d80505;
}

.timeline-item i {
    color: #fff;
    font-size: 30px;
}

/*  */
.gallery1 {
    padding: 20px;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    text-align: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    margin-top: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:768px) {
    .lightbox-content {
        max-width: 90%;
        max-height: 90%;
        height: auto;
        margin-top: 50%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

.close {
    position: absolute;
    top: 80px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ccc;
}

/*  */
/* Wrapper */
.reply-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    max-width: 900px;
    margin: 40px auto;
}

/* Headings */
.reply-wrapper h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #c60000;
}

.reply-wrapper p {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* Inputs & Textarea */
.reply-wrapper .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: none;
    transition: all 0.3s ease;
}

.reply-wrapper .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
}

/* Star Rating */
.star-block {
    margin-bottom: 20px;
}

.star-block label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

/* Container for stars */
.star-rating {
    direction: rtl;
    /* makes hover fill from left */
    font-size: 22px;
    display: inline-flex;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.2s ease;
    padding: 0 2px;
}

/* Hover effect - fill from left */
.star-rating label:hover,
.star-rating label:hover~label {
    color: #ffc107;
    transform: scale(1.15);
}

/* Selected (checked) stars */
.star-rating input:checked~label {
    color: #ffc107;
    animation: star-pop 0.3s ease;
}

/* Animation on click */
@keyframes star-pop {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 193, 7, 0.6);
    }

    50% {
        transform: scale(1.4);
        text-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Checkbox */
.form-check-label {
    font-size: 14px;
    color: #555;
}

/* Submit Button */
.btn-submit {
    background: #dc3545;
    color: #fff;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #ff6574;
    border-color: #b02a37;
    transform: translateY(-2px);
}

/*  */
.post-navigation {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.post-nav-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.post-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.post-nav-card i {
    font-size: 20px;
    color: #999;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.post-nav-card:hover i.fa-arrow-left {
    transform: translateX(-6px);
    color: #e74c3c;
}

.post-nav-card:hover i.fa-arrow-right {
    transform: translateX(6px);
    color: #e74c3c;
}

.post-nav-content small {
    display: block;
    color: #64a7df;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.post-nav-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    transition: color 0.3s ease;
}

.post-nav-card:hover .post-nav-content h4 {
    color: #c0392b;
    /* darker red on hover */
}

/* Specific styles for Prev & Next */
.prev-post {
    text-align: left;
    flex-direction: row;
}

.next-post {
    text-align: right;
    flex-direction: row-reverse;
}

/* Responsive: stack vertically */
@media (max-width: 768px) {
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .post-nav-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Custom Hero */
.custom-hero {
    background: url("../images/cabs/white-car.webp") no-repeat center center/cover;
    height: 70vh;
    margin-top: 10px;
    background-attachment: fixed;
}


.custom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    /* overlay effect */
}

.custom-hero-content {
    position: relative;
    z-index: 2;
}

.trip-bg {
    background: #bef4ff !important;
}

.trip-bg p {
    font-size: 26px;
}

#custom-travel h2 {
    font-size: 1.8rem;
    font-weight: 500;
}

.custom-travel-card img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-travel-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.custom-blog-meta {
    font-weight: bold;
    font-size: 14px;
    color: #5bc0de;
}

.custom-blog-badge {
    background: #5bc0de;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 3px;
}

.custom-blog-date i,
.custom-blog-author i {
    margin-right: 5px;
    color: #adb5bd;
}

.custom-blog-author .custom-author-link {
    color: #5bc0de;
    text-decoration: none;
    font-weight: 500;
}

.custom-blog-author .custom-author-link:hover {
    text-decoration: underline;
}

/* Sticky button position */
.whatsapp-btn {
    position: fixed;
    top: 85%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: #25d366;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px;
    width: 60px;
    height: 60px;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

/* Only icon shakes */
.whatsapp-btn img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    animation: shake 0.8s ease-in-out infinite;
    animation-delay: 2s;
    transform-origin: center;
}

/* Pause icon shake on hover */
.whatsapp-btn:hover img {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Shake animation */
@keyframes shake {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@media screen and (max-width:768px) {
    .whatsapp-btn {
        position: fixed;
        top: 93%;
    }

    .fixed-header {
        top: 0px !important;
    }

    .page-title {
        padding: 100px 0 50px 0 !important;
    }

    .section-title {
        margin-bottom: 0px;
        padding: 30px 12px;
    }

    .how-it-works {
        height: auto;
    }

    section,
    .section {
        padding: 40px 0;
    }
}

/* Sticky button position */
.whatsapp-btn {
    position: fixed;
    top: 85%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: #25d366;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px;
    width: 60px;
    height: 60px;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

/* Only icon shakes */
.whatsapp-btn img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    animation: shake 0.8s ease-in-out infinite;
    animation-delay: 2s;
    transform-origin: center;
}

/* Text inside button */
.whatsapp-text {
    margin-left: 10px;
    opacity: 0;
    color: #fff;
    transition: opacity 0.3s ease;
}

/* On hover, expand button */
.whatsapp-btn:hover {
    width: 160px;
    padding: 12px 10px;
}

/* Show text on hover */
.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
}

/* Pause icon shake on hover */
.whatsapp-btn:hover img {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Shake animation */
@keyframes shake {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@media screen and (max-width:768px) {
    .whatsapp-btn {
        position: fixed;
        top: 93%;
    }

    .tour {
        text-align: center;
    }

    .tour img {
        margin-bottom: 15px;
    }

    .tch-sidebar .tch-nav-link i,
    img {
        margin-right: 0;
    }
}
.f-icon i{
    padding-right: 10px;
    color: red;
}
.footerbg h4{
    margin-bottom: 35px;
}

/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background-color: #760f10;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 25px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}

.section-heading {
    font-size: 26px;
    font-weight: 700;
    color: #222;
  }
  .content-text { 
    color: #444; 
    font-size: 16px; 
    line-height: 1.6; 
  }
  .content-list {
    padding-left: 18px; 
    color: #444;
    line-height: 1.6;
  }