@font-face {
    font-family: "Poppins-Medium";
    src: url(../fonts/Poppins-Medium.woff2) format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/Poppins-Regular.woff2) format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Saira-Bold";
    src: url(../fonts/Saira-Bold.woff2) format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Saira-SemiBold";
    src: url(../fonts/Saira-SemiBold.woff2) format("woff2");
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c30a2e;
    --secondary-color: #292929;
    --white-color: #fff;
    --black-color: #000;
    --para-text-color: #272727;
    --transition: 0.3s ease-in;
    --Poppins-Medium: "Poppins-Medium";
    --Poppins-Regular: "Poppins-Regular";
    --Saira-Bold: "Saira-Bold";
    --Saira-SemiBold: "Saira-SemiBold";
}

html {
    scroll-behavior: smooth;
}

body {
    transition: var(--transition);
    color: var(--para-text-color);
    font-family: var(--Poppins-Regular);
}

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

svg {
    width: 30px;
    transition: var(--transition);
}

a,
button {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    color: var(--primary-color);
}

p {
    color: var(--para-text-color);
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    transition: var(--transition);
}

h1 {
    font-size: 2.5rem;
    text-transform: capitalize;
    font-family: var(--Saira-Bold);
}

i{
    transition: var(--transition);
}

h2 {
    font-size: 2rem;
    text-transform: capitalize;
    font-family: var(--Saira-Bold);
}

h3 {
    font-size: 1.75rem;
    text-transform: capitalize;
    font-family: var(--Saira-Bold);
}

h4 {
    font-size: 1.5rem;
    font-family: var(--Saira-Bold);
}

h5 {
    font-size: 1.25rem;
    font-family: var(--Saira-Bold);
}

h6 {
    font-size: 1rem;
    font-family: var(--Saira-Bold);
}

ul {
    list-style: none;
    margin: 1em 0;
    padding-left: 0;
}

li {
    margin-bottom: 0.5rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: unset;
}

.input-wrapper {
    margin-bottom: 20px;
}

/* .container {
    max-width: 1280px;
} */

.swiper-container {
    overflow: hidden;
}

.button-style1 {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 22px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.button-style1:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--black-color);
    transform: scale(1.03) translateY(-1px);
}

ul.dropdown-menu {
    padding: 0;
    border-radius: 0;
    border: 0;
    display: none;
    background-color: var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.section-padding {
    padding: 5rem 0;
}

.section-heading .title {
    font-size: 3rem;
    text-transform: capitalize;
    color: var(--secondary-color);
    font-family: var(--Saira-Bold);
    margin-bottom: 0;
    line-height: 1.3;
}

.section-heading {
    border-left: 3px solid var(--primary-color);
    padding-left: 25px;
}

.section-heading .subtitle {
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--Poppins-Medium);
    position: relative;
}

.primary-text {
    color: var(--primary-color);
}

.header.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    animation: slidetop 0.5s linear;
    box-shadow: 1px 2px 3px #0000001c;
    background-color: var(--white-color);
}

@keyframes slidetop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0%);
    }
}

.toggle-menu {
    display: none;
}


nav.breadcrum-area {
    padding: 70px;
    min-height: 450px;
    position: relative;
    align-content: center;
}

nav.breadcrum-area:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, #60af28 0%, transparent 85%);
    height: 100%;
    z-index: 0;
}

nav.breadcrum-area .page-title {
    font-size: 3.6rem;
    color: var(--black-color);
    position: relative;
    font-weight: 600;
    z-index: 2;
    margin-top: 4rem;
}

nav.breadcrum-area .breadcrumb {
    position: relative;
    padding: 0 26px 0 0;
    width: max-content;
    z-index: 2;
}

.form-control:focus,
.select2-container:focus {
    outline: 1px solid var(--primary-color);
}

nav.breadcrum-area .breadcrumb li {
    margin-bottom: 0;
    color: var(--black-color);
}

#goToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid #fff;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 16px;
}

#goToTopBtn:hover {
    background-color: var(--secondary-color);
}

.top-header {
    background-color: #fff;
    position: relative;
}

.top-header:after {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 80%;
    background-color: var(--primary-color);
    content: "";
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
}

.top-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .wrapper .right {
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 999;
}

ul.social-media {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
}

.top-header a {
    color: var(--white-color);
    font-size: 0.9rem;
}

.top-header .wrapper .right .item i {
    color: #fff;
    margin-right: 5px;
}

.top-header .wrapper .right .item {
    border-right: 1px solid #eee;
    margin-right: 10px;
    padding: 10px;
}

ul.social-media a {
    color: var(--white-color);
    background-color: var(--primary-color);
    line-height: normal;
    padding: 3px 8px;
    border: 1px solid #fff;
}

ul.social-media a:hover {
    background-color: var(--white-color);
}

ul.social-media a:hover i {
    color: var(--primary-color);
}

.main-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo-area img {
    max-width: 148px;
    margin-top: -94px;
    z-index: 999;
    position: absolute;
}

nav.navigation-area ul {
    display: flex;
    gap: 10px;
}

nav.navigation-area ul li {
    margin-bottom: 0;
}

nav.navigation-area ul li a {
    padding: 10px 18px;
    text-transform: capitalize;
    color: var(--black-color);
}

nav.navigation-area ul li a:hover, nav.navigation-area ul li a.active {
    color: var(--primary-color);
}

.header p {
    font-size: 0.9rem;
}

.hero-slider .content {
    position: absolute;
    top: 46%;
    width: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-slider .swiper-slide:after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, black, transparent);
    position: absolute;
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.hero-slider .content .subtitle {
    color: var(--white-color);
    font-size: 1rem;
    padding-left: 15px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.hero-slider .content .title {
    color: var(--primary-color);
    font-size: 3.2rem;
    font-family: var(--Saira-Bold);
    position: relative;
    line-height: 1.2;
    z-index: 2;
}

.hero-slider .content .title span {
    color: var(--white-color);
}

.hero-slider .content .subtitle:after {
    content: "";
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 0;
}

.feature-section {
    background-color: var(--primary-color);
    padding: 2rem 0 1rem;
}

.feature-section .wrapper {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: -112px;
    position: relative;
    z-index: 5;
}

.feature-item img {
    width: 80px;
    margin-bottom: 16px;
}

.feature-section p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.feature-item .title {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.services .inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

.services .inner:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, black, transparent);
    transition: all 0.3s ease;
}

.services .inner:hover:after {
    background: linear-gradient(0deg, #c30a2e80, #c30a2e80);
}

.services .inner .content {
    position: absolute;
    top: 78%;
    left: 10px;
    padding: 0 10px;
    width: calc(100% - 10px);
    z-index: 8;
    transition: all 0.3s ease;
}

.services .inner:hover .content {
    top: 50%;
    transform: translateY(-50%);
}

.services p {
    color: var(--white-color);
}

.services .inner .content a {
    color: var(--white-color);
    font-family: var(--Saira-Bold);
    font-size: 2rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services .inner img {
    width: 100%;
    object-fit: cover;
    height: 275px;
}

.about-section .wrapper {
    display: flex;
}

.about-section .wrapper .image-area {
    width: 50%;
    position: absolute;
    z-index: 0;
}

.about-section .wrapper .content-area {
    width: 54%;
    padding: 40px;
    background-color: #f5f5f5;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-top: 100px;
}

.about-section .wrapper .content-area .info {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.about-section .wrapper .content-area .info .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section .wrapper .content-area .info .item h5 {
    color: var(--secondary-color);
}

.about-section .wrapper .content-area .info .item img {
    width: 50px;
    padding: 10px;
    box-shadow: 1px 2px 3px #0000001c;
    object-fit: contain;
    background: #fff;
}

.about-section ul {
    display: flex;
    flex-wrap: wrap;
}

.about-section ul li {
    width: 49%;
    position: relative;
    padding-left: 17px;
    display: flex;
    align-items: center;
}

.about-section ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translateY(-50%);
}

.cta-section {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 5;
}

.cta-section::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c4105d6;
}

.large-heading {
    color: var(--primary-color);
    font-size: 7rem;
    font-family: var(--Saira-Bold);
    line-height: 8rem;
    margin-bottom: 20px;
}

.large-heading span {
    -webkit-text-stroke: 2px var(--primary-color);
    color: transparent;
}

.cta-vector-shape {
    position: absolute;
    right: -17%;
    rotate: -91deg;
    top: 35%;
    transform: translateY(-50%);
}

.cta-section .image-area img {
    margin-left: -70px;
    margin-bottom: 17px;
}

.perfect-fit  .inner {
    position: relative;
}

.perfect-fit  .inner img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.perfect-fit .inner:after {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 10%, rgba(255, 255, 255, 0) 30%);
    position: absolute;
    transition: all 0.5s ease;
}

.perfect-fit .inner:hover:after {
    background: linear-gradient(0deg,rgba(195, 10, 43, 1) 10%, rgba(255, 255, 255, 0) 30%);
}

.perfect-fit .inner .content {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white-color);
}

.brands-section:after{
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #141414d6;
    position: absolute;
}


.footer-copyright p {
    color: var(--black-color);
}

.footer-copyright p a {
    color: var(--black-color);
    text-transform: capitalize;
}

.footer {
    padding: 5rem 0 0 0;
    position: relative;
    margin-top: 5rem;
}

.footer-logo img {
    max-width: 220px;
}

.footer .container{
    z-index: 2;
    position: relative;
}

.footer:after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #c30a2e;
    position: absolute;
}

.footer a {
    color: var(--white-color);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.footer-contact ul li span i {
    background-color: #fff;
    color: #c30a2e;
    padding: 8px;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-contact h5 {
    margin-bottom: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.footer-links ul li::after {
    position: absolute;
    content: "";
    top: 9px;
    left: -2px;
    width: 11px;
    height: 9px;
    background-color: #fff;
    clip-path: polygon(12% 46%, 0 0, 100% 42%, 0 100%);
}

.footer-copyright {
    padding: 15px 0;
    background-color: #c30a2e;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
    border-top: 1px solid #fff;
}

ul.social {
    display: flex;
    gap: 10px;
}

ul.social li {
    background-color: transparent;
    border: 2px solid var(--white-color);
    padding: 0 10px;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    display: flex;
    min-width: 44px;
    transition: var(--transition);
}

ul.social li:hover {
    transform: scale(1.03) translateY(-1px);
    border-color: none;
    background: #fff;
}

ul.social li:hover i{
    color: #c30a2e;
}

nav.breadcrum-area .breadcrumb li a {
    color: var(--black-color);
}


.contact-section .info-area {
    padding: 30px;
}

.contact-section .info-area .info-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-section .info-area .info-item .info-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-section .info-area .info-item:hover svg {
    transform: scaleX(-1);
}

.contact-section .info-area .info-item a {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.contact-section .footer-social-media ul {
    background-color: var(--white-color);
}

.contact-section .footer-social-media::after {
    background-color: #eeeeee;
}

.book-appointment-form {
    padding: 40px;
}

.form-control {
    border: 0;
    background-color: #f3f1f1;
    padding: 10px;
    border-radius: 2px;
}

.feature-box .icon i, .step-box .step-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

i.fas.fa-check-circle {
    color: var(--primary-color);
    margin-right: 10px;
}

.feature-box:hover .icon i, .step-box:hover .step-icon i{
    transform: scale(1.03) translateY(-10px);
}

.step-box .step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}


/* -----------------------29.10.2025---------------------------- */
.hero-paragraph {
    position: relative;
    z-index: 2;
    color: #fff;
    margin-top: 10px;
}

.subtitle.wow.fadeInUp i {
    font-size: 12px;
    color: #c30a2e;
}

.trusted-sec{
    background-color: #f5f5f5;
    position: relative;
}

.trusted-text h3{
    font-size: 2.5rem;
    text-transform: capitalize;
    color: #c30a2e;
    font-family: var(--Saira-Bold);
    margin-bottom: 0;
}

.trusted-text p{
    color: #000;
    transition: var(--transition);
}

.trusted-img{
    position: absolute;
    top: -46px;
}

.trusted-img img{
    width: 80%;
    height: 450px;
    object-fit: cover;
    margin: auto;
}


/* ------------------Responsive Website--------------------------------*/
@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

    .about-section ul li {
    font-size: 13px;
}

    .info p {
    font-size: 13px !important;
}

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 991px) {

    .hero-slider .content .title {
    font-size: 3rem;
}

.footer {
    margin-top: 0;
}

    .about-section .wrapper {
    display: flex;
    flex-direction: column;
}

.about-section .wrapper .image-area {
    width: 100%;
    position: relative;
    z-index: 0;
}

.about-section .wrapper .content-area {
    width: 100%;
    margin-top: 80px;
}

.trusted-img {
    position: relative;
    top: 0px;
}

.trusted-img img {
    width: 100%;
    height: auto;
}


.top-header {
    background-color: #fff;
    position: relative;
    display: none !important;
}

.header .logo-area img {
    max-width: 120px;
    margin-top: 0;
    z-index: 999;
    position: relative;
}

.new-btn-class-carz{
    display: none;
}

nav.navigation-area ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.navbar-collapse {
        background: #fff;
        border-radius: 10px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        position: absolute;
        width: 100%;
        top: 106%;
        z-index: 999;
    }




}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

        .hero-slider .content .title {
        font-size: 2.5rem;
    }

    .hero-slider .content {
    width: 74%;
}

.feature-section .wrapper {
    margin-top: -170px;
}

}


@media only screen and (max-width: 800px) {

    .feature-section .wrapper {
    margin-top: -170px;
}

}


@media only screen and (max-width: 768px) {

    .feature-section .wrapper {
    margin-top: -170px;
}

}

@media only screen and (max-width: 767px) {

    .section-heading .title {
    font-size: 2.5rem;
}

.hero-slider .content {
    top: 34%;
}

.feature-section .wrapper {
        margin-top: -236px;
    }

    .about-section .wrapper .content-area {
    padding: 20px;
}

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

        .hero-slider .content {
        width: 92%;
    }

        .about-section .wrapper .content-area {
        margin-top: 60px;
    }

}

@media only screen and (max-width: 500px) {

    .hero-slider .content .title {
        font-size: 2rem;
    }

    .about-section .wrapper .content-area {
        margin-top: 50px;
    }

    .section-heading .title {
        font-size: 2rem;
    }

    .trusted-text h3 {
    font-size: 2rem;
}

}

@media only screen and (max-width: 480px) {

        .hero-slider .content {
        width: 97%;
    }

    .footer h4 {
    font-size: 20px;
}

}

@media only screen and (max-width: 414px) {

    .hero-slider .content .title {
        font-size: 1.5rem;
    }

    .services .inner .content a {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.section-heading .title {
        font-size: 1.8rem;
    }

    .hero-slider .content {
        width: 94%;
    }

    .hero-slider .content .subtitle {
    font-size: 0.8rem;
    padding-left: 0px;
}

.hero-paragraph {
    font-size: 14px;
}


    .about-section .wrapper .content-area .info .item {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: column;
}

.section-heading {
    padding-left: 10px;
}

.about-section ul li {
    width: 100%;
}

}

@media only screen and (max-width: 375px) {
    .hero-slider .content {
        width: 95%;
    }

    .perfect-fit .inner img {
    height: 320px;
}

}

@media only screen and (max-width: 360px) {

        .section-heading .title {
        font-size: 1.5rem;
    }

}


@media only screen and (max-width: 320px) {

        .trusted-text h3 {
        font-size: 1.3rem;
    }

}


.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 0 !important;
    align-items: center;
}