:root {
    --primary: #D81920 !important;
    --light: #F8F8F8;
    --dark: #252525;
}

*{
    
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body{
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

#sliderImg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.6;
    animation: zoom 10s linear infinite;
}



.content {
    text-align: center;
    color: #fff;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}





/* Responsive adjustments */
@media (max-width: 768px) {
    .banner {
        height: 60vh; 
    }

    .slider {
        height: 100%; 
    }

    #sliderImg {
        height: 100%;
        width: 100%;
        transform: scale(1);
        opacity: 1;
        
    }
    .content h1{
        font-size: 20px;
    }
    .content{
        font-size: 15px;
		padding: 0 10px;
    }
    .pt-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary {
        margin-bottom: 10px;
        padding-top: 5px;
    }


}
 




.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/*** Navbar ***/
/* .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
} */


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (min-width: 992px) and (max-width: 1032px) {
    .navbar .navbar-nav .nav-link {
        font-size: 14px !important;
    }
}




.btn-primary{
    background-color: #D81920;
    border: 1px solid #D81920;
    /* padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
    padding-right: 2rem !important;
    padding-left: 2rem !important; */
    border-radius: 5px;
}

.btn-primary:hover {
    border: 1px solid #D81920;
    background: #FDC210;
}

.btn-primary:active {
    background-color: #D81920 !important;
    border-color: #D81920 !important;
    
}

btn-primary:focus {
    color: #fff !important;
    background-color: #D81920 !important;
    border-color: #D81920 !important;
    box-shadow: 0 0 0 0.25rem rgba(252, 202, 39, 0.5) !important;
}
.btn-2{
    border: 2px solid #fff;
    background: transparent;
}

.btn-2:hover{
    border: 2px solid #C16404;
    background: #C16404;
}

hr {
    border: 1px dashed gray;
    width: 90%;
    margin: 0 auto; 
}


.btn {
    font-weight: 500;
    transition: .5s;
}



.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/* Annimations */
@keyframes zoom {
    0% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: scale(1); 
        opacity: 1; 
    }
    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}
.fade-in {
    opacity: 0;
    animation: fadeIn 4s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-in-left {
    transform: translateX(-100%);
    animation: slideInLeft 3s forwards;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
    }
}

/* Image animation */
/* .image-container {
    position: relative;
    overflow: hidden;
}

.image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover::after {
    opacity: 1;
}

.image-container img {
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
} */



/* round image */
.rounded-image {
    border-radius: 50%; 
    width: 100px; 
    height: 100px; 
}
/* Add hover animation for images */
.image-animate {
    transition: transform 0.5s ease; /* Apply a smooth transition effect */
}

.image-animate:hover {
    transform: scale(1.2); /* Increase the image size on hover */
}



/* Style the <a> tags */
a {
    color: #D81920; 
    text-decoration: none; 
    transition: color 0.3s; 
}

/* Style the <a> tags on hover */
a:hover {
    color: #d81920 !important; 
}

a h2{
    color: #000; 
    text-decoration: none; 
    transition: color 0.3s; 
}

/* Style the <a> tags on hover */
a h2:hover {
    color: #D81920; 
}

/* Footer */
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #D81920;
    letter-spacing: 1px;
    box-shadow: none;
}


.footer .copyright {
    color: #777777;
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}


.big-heading {
    font-size: 5rem;
    position: relative;
    display: inline-block;
    animation: animatePulse 0.5s infinite alternate;
}


@media (max-width: 768px) {
    .big-heading {
        font-size: 3rem;
    }
}


/* Hide the image on mobile screens */
@media (max-width: 767px) {
    .image-container {
        display: none;
    }
}

/* Center-align other items on mobile screens */
@media (max-width: 767px) {
   
    .mt-5 {
        margin-top: 5px !important; 
    }
    .ms-5 {
        margin-left: 5px !important; 
    }
    .p-4 {
        padding: 4px !important; 
    }
    .border-right {
        border-right: none !important; 
    }
}

/* Change font size on mobile screens */
@media (max-width: 767px) {
    .heading-container h1 {
        font-size: 10px !important; /* Adjust the font size as desired */
    }
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/* FAQS */

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #D81920;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
}


.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.3rem;
    color: #000;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
}

.accordion-button:hover {
    background-color: #D81920 !important;
    color: white !important;
    z-index: 2;
}

/* COntact Form CSS */

/* global styling */

label{
    display: block;
    margin-bottom: 0.5rem;

}

select{
    display: block;
    width: 100%;
    height: 55px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

input{
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}
/* form */

.form{
    width: clamo(320px, 30%, 430px);
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 0.35rem;
    padding: 1.5rem;
}

.form-step{
    display: none;
    transform-origin: top;
    animation: animate .5s;
    
}

.form-step-active{
    display: block;
}

.input-group{
    margin: 2rem 0;
}

@keyframes animate {
    from {
        transform: scale(1 , 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}


/* progress Bar */

.progressbar{
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
}

.progressbar::before, .progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: -1;
}

.progress{
    background-color: #D81920;
    width: 0%;
}

.progress-step{
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-step::before{
    counter-increment: step;
    content: counter(step);

}

.progress-step::after{
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666;
}

.progress-step-active{
    background-color: #D81920;
    color: #f3f3f3;
   
}


/* Pricing */

/* Section Styles */
.padding {
    padding: 40px 0;
}


.section-title_home h2 {
    font-size: 28px;
    color: #333;
}

.section-title_home .b-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin: 20px auto;
}

/* Feature Box Styles */
.feature-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.feature-box:hover {
    transform: scale(1.05);
}

.feature-box h1 {
    font-size: 36px;
    color: #000;
}

.feature-box p {
    font-size: 16px;
    color: #000;
}

.feature-box ul {
    list-style-type: none;
    padding: 0;
}

.feature-box ul li {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}


.img-fluid{
    width: 100%;
    height: 100%;
}


/* Bell Icon */
.whatsapp {
    position: fixed;
    right: 25px;
    top: 77%;
    z-index: 9999;
}
.whatsapp h5 {
    color: white;
    background: var(--primary);
    padding: 12px 16px;
    border-radius: 100%;
    border: 2px solid white;
}

/* Pulse Annimate */

.animatePulse{
    animation: animatePulse 0.5s infinite alternate;
}

@keyframes animatePulse {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.0);
    }
}


html,body .unique-sidebar-scroll{
    overflow-x: hidden;
}


.car-height img{
    height: auto;
    width: 100%;
}

@media (max-width: 767px) {
    .car-height img {
        height: 100% !important;
        width: 100% !important;
    }
}



/* Gallery */

.gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-image img {
    height: 250px;
    width: 350px;
    transform: scale(1.0);
    transition: transform 0.4s ease;
  }
  
  .img-box {
    box-sizing: content-box;
    margin: 10px;
    height: 250px;
    width: 350px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
  }
  
  .caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .transparent-box {
    height: 250px;
    width: 350px;
    background-color:rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
  }
  
  .img-box:hover img { 
    transform: scale(1.1);
  }
  
  .img-box:hover .transparent-box {
    background-color:rgba(0, 0, 0, 0.5);
  }
  
  .img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
  }
  
  .img-box:hover {
    cursor: pointer;
  }
  
  .caption > p:nth-child(2) {
    font-size: 0.8em;
  }
  
  .opacity-low {
    opacity: 0.5;
  }

            /* Testimonial */

.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
border:1px solid #ECECEC;
    box-shadow: 0 39px 38px #01224569, 0 15px 12px #01224585;
}
#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}
.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--primary);
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#customers-testimonials .item {
    text-align: center;
    padding: 50px;
        margin-bottom:80px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
   
    margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: var(--primary);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

