
/*** 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-color: #f2f2f2;
}

.sticky-top {
    transition: 1s;
  
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    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: 50px;
}



.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: 8px !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;
    }
}


/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    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, 0.219), rgba(0, 12, 33, 0.342)), 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 ***/

/*** 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 ***/

/*** Cars Categories Start ***/

/* =========================
   CATEGORIES SECTION
========================= */

.categories .categories-item{
    position: relative;
    border: 1px solid rgb(255, 123, 0);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fcfcfc6b;

}

/* Hover */
.categories .categories-item:hover{
    border-color: var(--bs-primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Inner card */
.categories .categories-item-inner{
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

/* Image */
.categories-img{
    background: rgb(255, 255, 255);
}

/* Content */
.categories-content{
    border-top: 4px solid #fff;
    text-align: center;
    background: rgb(255, 255, 255);
    padding: 18px;
}

/* Review stars */
.categories-review{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.btn-rese{
    background-color: #ff5100;
    color: #ffffff;
    width: 20%;
    margin-left: 40%;
    margin-top: 20px;
}
.btn-rese :hover{
background-color: #f8f9fa;
color: #ff5100;
}
/* =========================
   CAROUSEL NAVIGATION
========================= */


/* =========================
   DESKTOP
========================= */

@media (min-width:992px){

.categories-content h4{
    font-size: 18px;
}

.categories-content .bg-white{
    font-size: 16px;
    padding: 6px 15px;
}

.categories-content span{
    font-size: 13px;
}

.categories-content i{
    font-size: 15px;
}

.categories-content .btn{
    font-size: 14px;
    padding: 8px 18px;
}

}
.btn-rese{
    background-color: #ff5100;
    color: #ffffff;
    width: 20%;
    margin-left: 40%;
}
.btn-rese :hover{
background-color: #f8f9fa;
color: #ff5100;
}
/* =========================
   TABLET
========================= */

@media (max-width:991px){

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next{
    padding: 8px 24px;
    top: -55px;
    font-size: 14px;
}

.categories-content{
    padding: 15px;
}

.categories-review{
    flex-direction: column;
}

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

.categories-item{
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.categories-content h4{
    font-size: 18px;
}

.categories-content .bg-white{
    font-size: 13px;
    padding: 5px 12px !important;
}

.categories-content span{
    font-size: 11px;
}

.categories-content i{
    font-size: 14px;
}

.categories-content .btn{
    font-size: 14px;
    width: 100%;
}

}
/*tab and mob*/

/*** Blog Start ***/
/* =========================
   BLOG SECTION
========================= */

.blog .blog-item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* Hover effect */
.blog .blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

/* =========================
   BLOG IMAGE
========================= */

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* Image zoom */
.blog .blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/* Overlay effect */
.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.25);
    opacity: 0;
    transition: 0.4s;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

/* =========================
   BLOG CONTENT
========================= */

.blog .blog-item .blog-content {
    position: relative;
    padding: 25px;
    background: var(--bs-light);
}

/* Date badge */
.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--bs-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Comment + author row */
.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .blog .blog-item .blog-content{
        padding: 20px;
    }

    .blog .blog-item .blog-content .blog-date{
        left: 15px;
        padding: 8px 18px;
        font-size: 13px;
    }

}
/*** Blog 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;
   
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background-color: rgb(70, 69, 69);
    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 {
    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 ***/

/*** Contact Start ***/
/* =========================
   CONTACT SECTION
========================= */
.contact-section{
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section title */
.contact-section h1{
    font-weight: 700;
}

/* =========================
   CONTACT FORM DESIGN
========================= */
.contact-form-3d{
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.contact-form-3d:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.contact-form-3d h2{
    font-weight: 600;
}

/* Inputs */
.contact-form-3d .form-control{
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
}

.contact-form-3d .form-control:focus{
    border-color: var(--bs-primary);
    box-shadow: none;
}

/* Button */
.contact-form-3d .btn{
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-form-3d .btn:hover{
    transform: translateY(-2px);
}

/* =========================
   MAP DESIGN
========================= */
.map-container{
    width: 100%;
    height: 540px;
    min-height: 540px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.map-container iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px){

    .map-container{
        min-height: 350px;
        margin-top: 20px;
    }

}

/* Phone */
@media (max-width: 768px){

    .contact-section{
        padding: 60px 0;
    }

    .contact-form-3d{
        padding: 30px;
    }

    .map-container{
        min-height: 300px;
    }

}
/*** Contact End ***/


/*** Footer Start ***/
/* =========================
   FOOTER
========================= */

.footer {
    background: var(--bs-dark);
    padding: 70px 0 40px;
    color: #bfbfbf;
}

.footer-item h5{
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

/* footer links */
.footer .footer-item a {
    line-height: 35px;
    color: #bfbfbf;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

/* footer text */
.footer .footer-item p {
    line-height: 30px;
    color: #bfbfbf;
}

/* social buttons */
.footer .footer-item .footer-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    margin-right: 8px;
    transition: 0.3s;
}

.footer .footer-item .footer-btn a i {
    color: #fff;
    transition: 0.3s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

.footer .footer-item .footer-btn a:hover i {
    color: #fff;
}

/* =========================
   COPYRIGHT
========================= */

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #1f1f1f;
    padding: 20px 0;
    text-align: center;
    color: #bfbfbf;
    font-size: 14px;
}

/* =========================
   FAQ SECTION
========================= */

.faq-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: var(--bs-primary);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: all 0.35s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding: 15px 22px;
}

/* =========================
   EXTRA
========================= */

.text-center1{
    background-color: #272727a2;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

    .footer{
        text-align: center;
    }

    .footer .footer-item{
        margin-bottom: 30px;
    }

    .footer .footer-item .footer-btn a{
        margin: 5px;
    }

}
/*toggle*/
/* Mobile menu style */
@media (max-width: 991px) {

    /* Mobile menu container */
    .navbar-collapse {
        background: #ffffff00;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        text-align: center;
    }

    /* Menu links */
    .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 17px;
        font-weight: 500;
        color: #333;
     
    }

    .navbar-nav .nav-link:hover {
        color: #000000;
    }

    /* Reservation button */
    .navbar .btn {
        width: 100%;
        margin-top: 15px;
        text-align: center;
        padding: 10px;
    }

}
/* Move navbar toggle to top right */
@media (max-width: 991px){

.navbar{
position:relative;
}

.navbar-toggler{
position:absolute;
top:7%;
right:10px;
transform:translateY(-50%);
font-size:20px;
margin:0;
padding:6px 0px;
border:none;
outline:none;
box-shadow:none;
position: fixed;
}

/* prevent movement when clicking */

.navbar-toggler:focus,
.navbar-toggler:active{
outline:none;
box-shadow:none;
transform:translateY(-50%);
}

}
.navbar-toggler-icon{
width:24px;
height:24px;
}
/* Navbar layout for mobile */

.categories-carousel .owl-nav{
    display: none !important;
}
#spinner{
    display: none !important;
}