:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
    --color-default: #ffffff;
    --color-primary: #111111;
    --color-secondary: #E31937;
    --color-bg-dark: #0d0d0d;
    --color-bg-section: #111111;
    --color-bg-card: #1a1a1a;
    --color-text-muted: rgba(255, 255, 255, 0.6);
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
    background-color: var(--color-bg-dark);
}

a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

a:hover {
    color: #E31937;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
    scroll-margin-top: 70px;
    overflow: clip;
}

.sections-bg {
    background-color: var(--color-bg-section);
}

.section-header {
    text-align: center;
    padding-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #fff;
}

.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-secondary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-header p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background: #E31937;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: #111111;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #0d0d0d;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #0d0d0d;
    border-color: var(--color-secondary) transparent var(--color-secondary)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    background: transparent;
    color: #fff;
}

.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 70px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
    background: rgba(13, 13, 13, 0.95) !important;
}

.header .logo img {
    max-height: 40px;
    margin-right: 4px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    font-family: var(--font-primary);
}
.navbar li {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: #E31937;
}

.sticked-header-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 576px) {
    .navbar {
        padding: 0;
    }
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #E31937;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #fff;
}

@media (min-width: 576px) {
    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 576px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        flex-direction: column;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(17, 17, 17, 0.95);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9999;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: #fff;
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: var(--color-primary);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff;
    }

    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
        color: #0f0f0f;
        background: rgba(0, 131, 116, 0.8);
    }

    .mobile-nav-show {
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.about {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
}

.about .call-us {
    left: 10%;
    right: 10%;
    bottom: 0;
    background-color: var(--color-bg-card);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
}

.about .call-us h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about .call-us p {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--color-secondary);
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
    padding: 40px 0;
    background: var(--color-bg-section);
}

.stats-counter .stats-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-counter .stats-item .purecounter {
    min-width: 90px;
    padding-right: 15px;
}

.stats-counter .stats-item i {
    font-size: 44px;
    line-height: 0;
    margin-right: 15px;
}

.stats-counter .stats-item span {
    font-size: 40px;
    display: block;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 40px;
}

.stats-counter .stats-item p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
    padding: 60px 0;
}

.services .service-item {
    padding: 40px;
    background: var(--color-bg-card);
    height: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon i {
    color: #fff;
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(227, 25, 55, 0.15);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
}

.services .service-item h3 {
    color: #fff;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: var(--color-secondary);
}

.services .service-item:hover .icon:before {
    background: rgba(227, 25, 55, 0.3);
}

.services .service-item:hover h3 {
    border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 10px;
}

.testimonials {
    background: var(--color-bg-dark);
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 10px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
    background: var(--color-bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #E31937;
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-secondary);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: end;
}

.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
    color: var(--color-primary);
}

.portfolio .portfolio-flters li {
    margin-right: 0;
}

.portfolio .btn-order {
    font-family: var(--font-primary);
    font-weight: 200;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 1px 20px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: #E31937;
    /* box-shadow: 0 0 15px #E31937; */
    border: 2px solid #E31937;
}

@media (max-width: 575px) {
    .portfolio .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-wrap {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio-info {
    padding: 25px 20px;
    background-color: var(--color-bg-card);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}
.portfolio-info h4 a {
    color: #fff;
    transition: 0.3s;
}

.portfolio-info h4 a:hover {
    color: #E31937;
}
.portfolio-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {
    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}
.portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
.portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    font-size: 16px;
}

.portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: #9c9c9c;
    font-size: 12px;
}

.portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-info .btn-visit:hover {
    background: #009d8b;
}

.portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-info .btn-order:hover {
    background: #c41430;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: white;
    height: 100%;
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: #009d8b;
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: var(--color-bg-section);
}

.contact .info-container {
    height: 100%;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.3);
}

.contact .info-item {
    width: 100%;
    background-color: #111111;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: #E31937;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    height: 100%;
    background: var(--color-bg-card);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.08);
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #E31937;
    border: 0;
    padding: 14px 45px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #111111;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    position: relative;
    background: #fff;
    padding: 60px 0 0 0;
}

@media (min-width: 1365px) {
    .hero {
        background-attachment: fixed;
    }
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #161414;
}

.hero p {
    color: rgba(17, 14, 14, 0.6);
    font-weight: 500;
    margin-left: 20px;
}

.hero .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 11px 30px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: #E31937;
    box-shadow: 0 0 15px rgba(227, 25, 55, 0.4);
    border: 2px solid #E31937;
    margin-top: 20px;
    margin-left: 20px;
}

.hero .btn-get-started:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }
}

/* -------------------------------------------------------------
# Feature Section
---------------------------------------------------------------- */
.feature-icon img {
    width: 30px;
    height: 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: #0a0a0a;
    padding: 50px 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--font-primary);
}

.footer .footer-info p {
    font-size: 14px;
    font-family: var(--font-primary);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #fff;
    border-color: #E31937;
    background: #E31937;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    color: #E31937;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #fff;
}

.footer .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

.footer .credits a {
    color: #fff;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* background: #0d6efd; */
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--------------------------------------------------------------
# New Landing Page - Hero Header
--------------------------------------------------------------*/
.header-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent !important;
    box-shadow: none !important;
}

.header-hero .logo h1 {
    color: #fff !important;
}

.header-hero .logo h1 span {
    color: #E31937;
}

.navbar-hero a,
.navbar-hero a:focus {
    color: rgba(255, 255, 255, 0.85) !important;
}

.navbar-hero a:hover,
.navbar-hero .active,
.navbar-hero .active:focus,
.navbar-hero li:hover > a {
    color: #fff !important;
}

.navbar-hero > ul > li > a:before {
    background-color: #E31937 !important;
}

.btn-hero-phone {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #E31937;
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-phone:hover {
    background: #c41430;
    color: #fff;
}

/*--------------------------------------------------------------
# New Hero Section
--------------------------------------------------------------*/
.hero-new {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 40%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 60px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(227, 25, 55, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.hero-new .container-fluid {
    z-index: 1;
}

.hero-content {
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

.hero-accent-bar {
    width: 6px;
    height: 80px;
    background: #E31937;
    position: absolute;
    left: 40px;
    top: 10px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title span {
    color: #E31937;
}

.hero-car-name {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.hero-price {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.hero-price span {
    color: #E31937;
    font-size: 22px;
    font-weight: 700;
}

.btn-drive-now {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 14px 40px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: 0.3s;
    text-decoration: none;
}

.btn-drive-now:hover {
    background: #E31937;
    border-color: #E31937;
    color: #fff;
}

.hero-image-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-social {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.hero-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    transition: 0.3s;
}

.hero-social a:hover {
    color: #E31937;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-content {
        padding-left: 30px;
        padding-top: 20px;
    }
    .hero-accent-bar {
        left: 12px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .hero-new {
        padding: 100px 0 40px 0;
        min-height: auto;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-content {
        padding-left: 25px;
        text-align: left;
    }
    .hero-accent-bar {
        left: 8px;
        height: 50px;
    }
    .hero-car-img {
        max-width: 100%;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Today's Specials Section
--------------------------------------------------------------*/
.specials-section {
    padding: 80px 0;
    background: var(--color-bg-section);
}

.specials-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.specials-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #E31937;
    color: #fff;
    border-color: #E31937;
}

.special-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(227, 25, 55, 0.3);
}

.special-card-img {
    overflow: hidden;
    height: 220px;
}

.special-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.special-card:hover .special-card-img img {
    transform: scale(1.08);
}

.special-card-body {
    padding: 20px;
}

.special-card-body h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.special-price {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #E31937;
    margin-bottom: 0;
}

.special-price span {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.btn-book-now {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 18px;
    color: #fff !important;
    background: #E31937 !important;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-book-now:hover {
    background: #c41430 !important;
}

/*--------------------------------------------------------------
# Promo Banner Section
--------------------------------------------------------------*/
.promo-banner {
    padding: 0;
    overflow: hidden;
}

.promo-image-col {
    height: 450px;
    overflow: hidden;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content-col {
    background: var(--color-bg-dark);
}

.promo-content {
    padding: 60px;
    position: relative;
}

.promo-accent-bar {
    width: 50px;
    height: 6px;
    background: #E31937;
    margin-bottom: 20px;
}

.promo-content h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.btn-follow {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    color: #E31937;
    text-decoration: none;
    border-bottom: 2px solid #E31937;
    padding-bottom: 4px;
    transition: 0.3s;
}

.btn-follow:hover {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .promo-image-col {
        height: 300px;
    }
    .promo-content {
        padding: 40px;
    }
    .promo-content h2 {
        font-size: 32px;
    }
}

/*--------------------------------------------------------------
# Services/Features Section
--------------------------------------------------------------*/
.services-features {
    padding: 80px 0;
    background: var(--color-bg-section);
}

.features-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.features-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-icon-box {
    padding: 15px;
}

.feature-icon-box i {
    font-size: 36px;
    color: #E31937;
    margin-bottom: 10px;
    display: block;
}

.feature-icon-box p {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    margin: 0;
}

.features-img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# More Cars / Explore Fleet Section
--------------------------------------------------------------*/
.more-cars-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.btn-view-all {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 40px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-view-all:hover {
    background: #E31937;
    border-color: #E31937;
    color: #fff;
}

/* Swiper Slider Styles for Specials & Fleet */
.specials-swiper,
.fleet-swiper {
    padding-bottom: 50px;
}

.specials-swiper .swiper-pagination-bullet,
.fleet-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.specials-swiper .swiper-pagination-bullet-active,
.fleet-swiper .swiper-pagination-bullet-active {
    background: #E31937;
    opacity: 1;
}

.specials-swiper .special-card,
.fleet-swiper .special-card {
    height: 100%;
}
