/* @import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* Color Variables */
    --sn-primary-color: #000a23;
    --sn-primary-dark-color: #000614;
    /* Primary color */
    --sn-secondary-color: #f18023;
    --sn-dark-color: #333;
    --sn-light-color: #f8f9fa;
    --sn-link-color: #000a23;
    --sn-link-hover-color: #f18023;
    --sn-section-bg-color: #e7e7e7;
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    font-family: "Lato", serif;
    margin: 0;
    padding: 0;
}

/* Custom Header Styling */
.sn-header {
    background-color: var(--sn-light-color);
    color: var(--sn-dark-color);
    border-bottom: solid 2px #e5e5e5;
}

.sn-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.sn-logo {
    max-width: 130px;
}

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

.sn-header__title {
    font-size: 24px;
    font-weight: bold;
    color: var(--sn-dark-color);
}

.sn-header__nav .sn-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sn-nav-item {
    margin-right: 20px;
    padding: 10px;
}

.sn-nav-item {
    position: relative;
}

/* .sn-nav-item:hover {
    background-color: var(--sn-primary-dark-color);
} */

.sn-nav-link {
    text-decoration: none;
    color: var(--sn-link-color);
    font-size: 16px;
    padding: 10px 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.sn-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--sn-secondary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.sn-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.sn-nav-link:hover {
    color: var(--sn-link-hover-color);
}

.sn-nav-link {
    text-decoration: none;
    color: var(--sn-link-color);
    font-size: 16px;
    transition: color 0.3s ease;
}

.sn-nav-link:hover {
    color: var(--sn-link-hover-color);
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .sn-navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .sn-logo {
        max-width: 120px;
        /* Adjust logo size for mobile */
    }

    .sn-header__title {
        font-size: 20px;
    }

    .sn-nav {
        flex-direction: column;
        width: 100%;
    }

    .sn-nav-item {
        margin-right: 0;
        margin-bottom: 0px;
    }

    .sn-nav-item:last-child {
        margin-bottom: 0;
    }

    .sn-nav-link {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }
}

/* Tablet Responsiveness */
@media (min-width: 577px) and (max-width: 768px) {
    .sn-navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .sn-logo {
        max-width: 130px;
        /* Adjust logo size for tablet */
    }

    .sn-header__title {
        font-size: 22px;
    }

    .sn-nav {
        flex-direction: column;
        width: 100%;
    }

    .sn-nav-item {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .sn-nav-item:last-child {
        margin-bottom: 0;
    }

    .sn-nav-link {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }
}

/* Desktop Responsiveness */
@media (min-width: 769px) {
    .sn-navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .sn-header__title {
        font-size: 24px;
    }

    .sn-nav-item {
        margin-right: 0px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .sn-nav-link {
        font-size: 18px;
    }
}

.sn-navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.sn-navbar-toggle-icon {
    width: 20px;
    height: 3px;
    background-color: var(--sn-primary-color);
    margin: 2px 0;
}

.sn-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.925);
    z-index: 999;
}

.sn-navbar-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1050;
}

.sn-navbar-close-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--sn-link-color);
    margin: 5px 0;
    transform: rotate(45deg);
}

.sn-navbar-close:hover>.sn-navbar-close-icon {
    background-color: var(--sn-link-color);
}

.sn-navbar-close .sn-navbar-close-icon:nth-child(2) {
    transform: rotate(-45deg);
    margin-top: -8px;
}

/* Display the close button when the drawer is open */
.sn-header__nav.open+.sn-navbar-close {
    display: block;
}

.sn-overlay.open {
    display: block;
}

@media (max-width: 767.5px) {

    .sn-header__nav {
        display: none;
    }

    .sn-navbar-toggle {
        display: flex;
    }

    .sn-header__nav.open {
        display: flex;
        left: 0;
    }

    body.drawer-open {
        overflow: hidden;
    }

    .sn-header__nav {
        position: fixed;
        top: 0;
        left: -250px;
        height: 100%;
        background-color: var(--sn-light-color);
        width: 250px;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        flex-direction: column;
        padding-top: 60px;
    }

    .sn-navbar-close {
        display: block;
    }

    .sn-nav-item {
        text-align: center;
    }

}

@media (min-width: 768px) {
    .sn-navbar-toggle {
        display: none;
    }

    .sn-header__nav {
        display: flex;
    }
}

/* Topbar Styling */
.sn-topbar {
    background-color: var(--sn-primary-color);
    padding: 10px 0;
    /* border-bottom: 1px solid #ddd; */
}

.sn-topbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sn-topbar__left,
.sn-topbar__right {
    display: flex;
    justify-content: space-between;
}

.sn-topbar__left {
    margin-right: 20px;
}

.sn-topbar__item {
    margin-right: 20px;
}

.sn-topbar__link {
    text-decoration: none;
    color: var(--sn-light-color);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.sn-topbar__link i {
    margin-right: 5px;
}

.sn-topbar__link:hover {
    color: var(--sn-link-hover-color);
}

.sn-topbar__center {
    flex-grow: 1;
    text-align: center;
    font-size: 14px;
    color: var(--sn-light-color);
}

.sn-topbar__social {
    display: flex;
}

.sn-topbar__social-link {
    margin-right: 15px;
    color: var(--sn-light-color);
    font-size: 16px;
}

.sn-topbar__social-link:hover {
    color: var(--sn-secondary-color);
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .sn-topbar__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sn-topbar__left {
        width: 100%;
    }

    .sn-topbar__right {
        display: none;
    }

    .sn-topbar__center {
        display: none;
        text-align: center;
        margin-top: 10px;
    }

    .sn-topbar__social {
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
    }
}


/* Hero Section Styling */
.sn-hero {
    background: linear-gradient(to left, #362a0357, #362a0357), url('../images/red-car.jpg');
    /* Replace with your image URL */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: var(--sn-light-color);
    padding: 100px 0;
    position: relative;
    text-align: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sn-hero__content {
    /* max-width: 600px; */
    margin: 0 auto;
}

.sn-hero-ct {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.sn-hero__title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--sn-light-color);
}

.sn-hero__text {
    font-size: 18px;
    margin-bottom: 4cqh;
}

.sn-btn {
    padding: 13px 25px;
    background-color: var(--sn-secondary-color);
    color: var(--sn-light-color);
    font-size: 18px;
    text-decoration: none;
    border-radius: 0cap;
    border: 1px solid var(--sn-secondary-color);
    transition: background-color 0.3s ease;
}
.sn-btn a{
    color: var(--sn-light-color);
}

.sn-btn:hover {
    /* background-color: var(--sn-primary-dark-color); */
    opacity: 0.8;
}

.sn-outline-btn {
    padding: 13px 25px;
    /* background-color: var(--sn-light-color); */
    color: var(--sn-light-color);
    font-size: 18px;
    text-decoration: none;
    border-radius: 0cap;
    border: 1px solid var(--sn-light-color);
    transition: background-color 0.3s ease;
}
.sn-outline-btn a{
    color: var(--sn-light-color);
}

.sn-outline-btn:hover {
    background-color: var(--sn-secondary-color);
    color: var(--sn-light-color);
}

.sn-outline-btn-primary {
    padding: 13px 25px;
    /* background-color: var(--sn-light-color); */
    color: var(--sn-primary-color);
    font-size: 18px;
    text-decoration: none;
    border-radius: 0cap;
    border: 1px solid var(--sn-primary-color);
    transition: background-color 0.3s ease;
}
.sn-outline-btn a{
    color: var(--sn-light-color);
}
.sn-outline-btn-primary:hover {
    background-color: var(--sn-primary-color);
    color: var(--sn-light-color);
}
/* Overlay for darkening background image */
.sn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Ensure content is above the overlay */
.sn-hero__content {
    position: relative;
    z-index: 2;
}

.sn-hero-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Contact Form Styling */
/* Sleek Search Form */
.sn-hero__form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--sn-light-color);
    padding: 30px;
    border-radius: 8px;
    color: var(--sn-dark-color);
    box-shadow: 0px 11px 10px #e5e5e5;
    margin-top: 30px;
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.sn-hero__form:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Form Titles */
.sn-hero__form h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--sn-primary-color);
}

/* Responsive Flexbox Layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-row .col-md-6,
.form-row .col-md-12 {
    flex: 1;
}

/* Input, Select, and Textarea Styling */
.form-group {
    margin-bottom: 15px;
    text-align: left;
    color: var(--sn-dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.form-group select {
    cursor: pointer;
}

/* Input Focus Effect */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sn-secondary-color);
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
}

/* Price Range */
.sn-price-range {
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
}

#price-slider {
    margin-top: 10px;
}

#price-slider .ui-slider-range {
    background: linear-gradient(90deg, var(--sn-primary-color), var(--sn-secondary-color));
}

#price-slider .ui-slider-handle {
    background: var(--sn-primary-color);
    border-radius: 50%;
    width: 16px;
    height: 16px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .sn-hero__form {
        max-width: 100%;
        padding: 20px;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .sn-hero__title {
        font-size: 36px;
    }

    .sn-hero__text {
        font-size: 16px;
    }

    .sn-hero__form {
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
    }
}

.sn-shop-filters .form-row{
    display: block;
}

.sn-shop-filters .form-group{
    margin-bottom: 0;
}
.sn-shop-filters .col-md-6{
    width: 100%;
}
.sn-shop-filters .sn-hero__form{
    padding: 10px;
    margin-top: 0;
}
.sn-clear-btn{
    display: none;

}
.sn-shop-filters .sn-clear-btn{
    display: inline-block;
}




.sn-hero__highlight-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--sn-light-color);
    display: inline-block;
    /* background-color: var(--sn-secondary-color); */
    margin-bottom: 15px;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    /* padding: 5px 10px; */
    position: relative;
    /* margin-left: 15px; */
}

/* 
.sn-hero__highlight-title::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-left: 10px solid var(--sn-secondary-color);
    border-bottom: 10px solid transparent;
}

.sn-hero__highlight-title::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-right: 10px solid var(--sn-secondary-color);
    border-bottom: 10px solid transparent;
} */

/* Add responsive styling */
@media (max-width: 768px) {
    .sn-hero__highlight-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sn-hero__highlight-title {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* Price Range */
.sn-price-range {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

#priceRange {
    width: 100%;
    /* text-align: center; */
    max-width: 160px;
    margin-top: -9px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    background: transparent;
    color: var(--sn-secondary-color);
}

/* jQuery UI Slider */
#price-slider {
    width: 100%;
    margin-top: 10px;
}

.ui-slider-horizontal {
    height: 8px !important;
}

.ui-widget.ui-widget-content {
    border: none !important;
    background: #c7c7c7 !important;
}

.ui-widget-header {
    background: var(--sn-secondary-color) !important;
}

.ui-state-default {
    background: var(--sn-light-color) !important;
    border-color: var(--sn-secondary-color) !important;
}

.ui-slider .ui-slider-handle {
    height: 15px !important;
    width: 15px !important;
    border-radius: 50%;
    border-color: var(--sn-secondary-color) !important;
    top: -4px !important;
}

/* sn-section our services */
.sn-homesection {
    padding: 100px 0;
    background-color: var(--sn-light-color);
}

.sn-our__service {
    text-align: center;
}

.sn-section__title {
    width: 100%;
}

.sn-section__title h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--sn-secondary-color);
}

.sn-section__title h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--sn-primary-color);
}

.sn-section__title p {
    font-size: 16px;
    color: var(--sn-dark-color);
}

/* Service Section Container */
.sn-service__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Individual Service Item */
.sn-service__item {
    background: var(--sn-light-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 300px;
    border: solid 1px #eee;
    box-shadow: 0px 5px 10px rgba(145, 145, 145, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.sn-service__item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Service Icon */
.sn-service__icon {
    font-size: 40px;
    color: var(--sn-secondary-color);
    margin-bottom: 15px;
}

/* Title */
.sn-service__item h3 {
    font-size: 20px;
    color: var(--sn-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Paragraph */
.sn-service__item p {
    font-size: 14px;
    color: var(--sn-dark-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Circular Button */
.sn-btn-round {
    width: 40px;
    height: 40px;
    border: solid 2px var(--sn-secondary-color);
    color: var(--sn-secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}

/* Hover Effect for Button */
.sn-btn-round:hover {
    background: var(--sn-primary-dark-color);
    transform: scale(1.1);
}

.sn-service__item:hover .sn-btn-round {
    background: var(--sn-secondary-color);
    color: var(--sn-light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sn-service__content {
        flex-direction: column;
        align-items: center;
    }

    .sn-service__item {
        width: 100%;
        max-width: 350px;
    }
}
.sn-bg-secondary{
    background-color: var(--sn-secondary-color) !important;
}
.sn-bg-primary{
    background-color: var(--sn-primary-color) !important;
}
/* Feature Section */
.sn-our__feature {
    background-color: var(--sn-section-bg-color);
}

/* Main Container */
.sn-our__feature_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    /* margin-top: 40px; */
}

/* Feature Text Content */
.sn-our__feature_details {
    flex: 1;
    max-width: 450px;
}

.sn-feature__desc p {
    font-size: 16px;
    color: var(--sn-dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sn-feature__desc i {
    color: var(--sn-secondary-color);
    font-size: 18px;
}

/* Feature Image */
.sn-our__feature_image img {
    max-width: 450px;
    height: auto;
}

/* Feature Icons */
.sn-feature__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    max-width: 250px;
    gap: 20px;
}

.sn-feature__item {
    text-align: center;
    width: 45%;
    margin-bottom: 30px;
}

.sn-feature__item .sn-feature__icon {
    background-color: var(--sn-light-color);
    border-radius: 50%;
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0px 5px 10px rgba(145, 145, 145, 0.1);
}

.sn-feature__item img {
    width: 50px;
    height: auto;
}

.sn-feature__item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sn-dark-color);
}

/* Responsive for Tablets */
@media (max-width: 992px) {
    .sn-our__feature_container {
        flex-direction: column;
        text-align: center;
    }

    .sn-our__feature_details {
        max-width: 90%;
        margin: 0 auto;
    }

    .sn-our__feature_image img {
        max-width: 90%;
    }

    .sn-feature__items {
        max-width: 50%;
        gap: 10px;
    }

    .sn-feature__item {
        width: 40%;
    }
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .sn-our__feature {
        padding: 50px 0;
    }

    .sn-our__feature_details {
        max-width: 100%;
    }

    .sn-feature__desc p {
        font-size: 14px;
    }

    .sn-our__feature_image img {
        max-width: 100%;
    }

    .sn-feature__items {
        /* flex-direction: column; */
        max-width: 100%;
        width: 100%;
        align-items: center;
    }

    .sn-feature__item {
        width: 40%;
    }

    .sn-feature__item .sn-feature__icon {
        height: 85px;
        width: 8 5px;
    }

    .sn-feature__item img {
        width: 40px;
    }

    .sn-feature__item h5 {
        font-size: 14px;
    }
}

/*  SN SECTION FOR OUR CARS  */
.sn-our__cars {
    text-align: center;
}

/* Cars Container */
.sn-cars__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

/* Individual Car Card */
.sn-cars_item {
    /* background: #fff; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #acacac; */
    padding: 10px;
    text-align: left;
    max-width: 250px;
    transition: transform 0.3s ease-in-out;display: flex;
    flex-wrap: wrap;
    background-color: var(--sn-light-color);
    border: solid 1px;
    /* margin-bottom: 20px; */
}

.sn-cars_item:hover {
    transform: translateY(-5px);
}

.sn-col-list-njn{
    padding: 10px;
    width: calc(100% / 3);
}
/* for mobile */
@media (max-width: 600px) {
    .sn-col-list-njn{
        width: 100%;
    }
}
/* Car Image Slider */
.sn-cars_item_image {
    border-radius: 0px;
    overflow: hidden;
}

.sn-cars_item_image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

/* owl carouse dot manage */
.owl-dots {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 9;
    text-align: center;
    padding-bottom: 10px;
}

.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--sn-secondary-color) !important;
    border-radius: 50%;
    margin: 0 2px;
    transition: background 0.3s ease;
    opacity: 0.5;
}

.owl-dot.active {
    background: var(--sn-primary-color);
    opacity: 1;
}

/* Car Year Badge */
.sn-year__ {
    display: inline-block;
    /* background: var(--sn-primary-color); */
    border: 1px solid var(--sn-primary-color);
    color: var(--sn-primary-color);
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Car Title */
.sn-cars_item h3 {
    font-size: 20px;
    color: var(--sn-dark-color);
    margin: 5px 0;
}

/* Car Info List */
.sn-car__info_container ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 5px 0;
}

.sn-car__info_container li {
    font-size: 14px;
    color: var(--sn-dark-color);
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
    padding-right: 10px;
}

.sn-car__info_container i {
    color: var(--sn-secondary-color);
    font-size: 16px;
    display: inline-block;
}

/* Price & Button */
.sn-cars_item .sn-bottom__container {
    display: flex;
    justify-content: start;
    align-items: center;
}

.sn-cars_item .sn-bottom__container p {
    font-size: 16px;
    font-weight: bold;
    color: var(--sn-primary-color);
    margin: 0;
    padding-left: 10px;
}

.sn-cars_item .sn-btn {
    background: var(--sn-primary-color);
    color: #fff;
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 5px;
    max-width: 160px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.sn-cars_item .sn-btn:hover {
    background: var(--sn-dark-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    /* .sn-cars__container {
        flex-direction: column;
        align-items: center;
    } */

    .sn-cars_item {
        max-width: 320px;
    }
}

@media (max-width: 600px) {
    .sn-our__cars {
        padding: 60px 0;
    }

    .sn-cars_item {
        max-width: 350px;
        padding: 15px;
    }

    .sn-cars_item h3 {
        font-size: 18px;
    }

    .sn-car__info_container li {
        font-size: 13px;
    }

    .sn-cars_item .text-center p {
        font-size: 16px;
    }

    .sn-cars_item .sn-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* why choose us page */
.sn-why__people__choose__us {
    position: relative;
    background: var(--sn-section-bg-color);
}
.sn-featured__cars{
    background: var(--sn-section-bg-color);
}
.sn-why__people__choose__us__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    /* Ensures wrapping */
}

/* Right Side - Image first on mobile */
.sn-why__chooseUs__right {
    flex: 1;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.sn-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.sn-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Diagonal Overlay Effect */
.sn-image-overlay {
    position: absolute;
    top: 0;
    left: -89%;
    width: 100%;
    height: 100%;
    background: var(--sn-section-bg-color);
    transform: skewX(198deg);
    z-index: 2;
}

/* Left Content */
.sn-why__chooseUs__left {
    flex: 1;
    max-width: 50%;
    padding: 40px;
}

.sn-why__chooseUs__left .sn-section__title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sn-why__chooseUs__list {
    margin-top: 20px;
}

.sn-why__chooseUs__list_item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 10px; */
}

.sn-why__chooseUs__list_item p {
    margin-bottom: 5px;
}

.sn-why__chooseUs__list_item i {
    color: var(--sn-secondary-color);
    font-size: 18px;
}

/* 🔹 Responsive Design */
@media (max-width: 1024px) {
    .sn-why__people__choose__us__container {
        flex-direction: column;
        /* Stack on top */
    }

    .sn-why__chooseUs__right {
        max-width: 100%;
        order: -1;
        /* Moves image above */
    }

    .sn-why__chooseUs__left {
        max-width: 100%;
        text-align: left;
        padding: 30px;
    }

    .sn-image-wrapper img {
        max-width: 600px;
        border-radius: 10px;
    }

    .sn-image-overlay {
        display: none;
    }
}

@media (max-width: 768px) {
    .sn-why__chooseUs__left {
        padding: 20px;
    }

    .sn-why__chooseUs__left .sn-section__title h2 {
        font-size: 28px;
    }

    .sn-why__chooseUs__list {
        font-size: 16px;
    }

    .sn-why__chooseUs__list_item {
        flex-direction: column;
        align-items: flex-start;
    }

    .sn-image-overlay {
        display: none;
    }
}

@media (max-width: 480px) {
    .sn-why__chooseUs__left {
        padding: 15px;
    }

    .sn-why__chooseUs__left .sn-section__title h2 {
        font-size: 24px;
    }

    .sn-btn {
        width: 100%;
        text-align: center;
    }

    .sn-image-overlay {
        display: none;
    }
}

/* our blog section */
.sn-our__blog {
    text-align: center;
}

/* Blog Card */
.sn-blog__item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sn-blog__item:hover {
    transform: translateY(-5px);
}

/* Blog Image */
.sn-blog__item_image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Content */
.sn-blog__item_content {
    padding: 20px;
    text-align: left;
}

.sn-blog__item_content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.sn-blog__item_content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.sn-blog__item_content span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--sn-secondary-color);
    font-weight: 600;
}

.sn-blog__readmore {
    margin-top: 10px;
    color: var(--sn-dark-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    opacity: 0.7;
}

.sn-blog__item:hover .sn-blog__readmore {
    opacity: 1;
}

/* Section Wrapper */
.sn-diplay__info {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    /* Adjust height as needed */
    /* padding: 60px 0; */
    overflow: hidden;
}

/* Image Containers */
.sn-right__left_img,
.sn-right__left_content {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    overflow: hidden;
}

.sn-right__left_img {
    left: 0;
}

.sn-right__left_img::after,
.sn-right__left_content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sn-right__left_content {
    right: 0;
}

.sn-right__left_img img,
.sn-right__left_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Overlay in Container */
.sn-content_break_container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    /* top: 100px; */
    width: 100%;
}

/* Overlay Content */
.sn-overlay__text_img {
    padding: 30px;
    background: #00061481;
    text-align: center;
    max-width: 40%;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--sn-light-color);
}

.sn-overlay__text_img h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--sn-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .sn-diplay__info {
        flex-direction: column;
        min-height: 500px;
    }

    .sn-content_break_container {
        gap: 70px;
    }

    .sn-right__left_img {
        width: 100%;
        height: 250px;
        /* Adjust height */
        position: absolute;
    }

    .sn-right__left_content {
        width: 100%;
        height: 250px;
        /* Adjust height */
        position: absolute;
        right: 0;
        top: 250px;
    }

    .sn-overlay__text_img h3 {
        font-size: 20px;
    }

    .sn-overlay__text_img p {
        margin-bottom: 0;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    .sn-overlay__text_img {
        max-width: 100%;
    }
}

/* footer */

.sn-footer {
    background: linear-gradient(to right, #222222b7, #222222b7), url('../images/footer-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    text-align: center;
    padding: 40px;
}

/* Contact Page Styling */
.sn-contact-us-title { font-size: 32px; font-weight: bold; color: var(--sn-primary-color); }
.sn-contact-us-description { font-size: 16px; margin-bottom: 20px; color: var(--sn-dark-color); }
.sn-contact-info { background: var(--sn-section-bg-color); padding: 20px; border-radius: 10px; }
.sn-contact-info ul { padding: 0; }
.sn-contact-info li { font-size: 16px; margin-bottom: 10px; color: var(--sn-dark-color); }
.sn-contact-info i { margin-right: 10px; color: var(--sn-secondary-color); }
.sn-contact-form-container { background: var(--sn-light-color); padding: 20px; border-radius: 10px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); }
.sn-map-container { margin-top: 20px; border-radius: 10px; overflow: hidden; }


/* Divider */
.sn-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* Footer Main Content */
.sn-main__footer {
    padding-top: 10px;
    text-align: left;
}

/* Logo & About */
.sn-main__footer img {
    max-width: 140px;
    margin-bottom: 15px;
}

.sn-main__footer p {
    font-size: 14px;
    color: var(--sn-light-color);
    margin-bottom: 20px;
}

/* Social Media */
.sn-social__media {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.sn-social__media a {
    color: var(--sn-light-color);
    font-size: 18px;
    transition: 0.3s;
}

.sn-social__media a:hover {
    color: var(--sn-secondary-color);
}

/* Footer Links */
.sn-main__footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--sn-secondary-color);
}

.sn-main__footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sn-outline-btn {
    background-color: transparent;
}

.sn-main__footer ul li {
    margin-bottom: 8px;
}

.sn-main__footer ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.sn-main__footer ul li a:hover {
    color: var(--sn-secondary-color);
}

/* Copyright */
.sn-copyright {
    text-align: left;
    /* margin-top: 40px; */
    font-size: 14px;
    color: var(--sn-light-color);
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .sn-flex_button_container {
        flex-direction: column;
        align-items: center;
    }

    .sn-social__media {
        justify-content: center;
    }
}

/* SEO Content Section */
.sn-seo__content {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.sn-seo__content h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--sn-primary-color);
    margin-bottom: 20px;
}

.sn-seo__content p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Content Grid */
.sn-seo__content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.sn-seo__content_item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.sn-seo__content_item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--sn-secondary-color);
}

.sn-seo__content_item p {
    font-size: 14px;
    color: #666;
}

/* Additional Content Section */
.sn-seo__additional {
    margin-top: 40px;
    text-align: center;
}

.sn-seo__list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 20px auto;
}

.sn-seo__list li {
    font-size: 16px;
    padding: 10px 0;
    color: #444;
}

/* Buttons */
.sn-seo__button_container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* 📱 Responsive */
@media (max-width: 768px) {
    .sn-seo__content p {
        font-size: 14px;
    }

    .sn-seo__content_grid {
        grid-template-columns: 1fr;
    }

    .sn-seo__button_container {
        flex-direction: column;
    }
}


/* blog detail */
.sn-blog-detail-feature {
    align-items: center;
}
.sn-blog-detail-feature .sn-hero-ct{
    max-width: 100%;
    margin-top: auto;
    margin-bottom: 0;
}

/* Custom Sidebar Styles */
#sn-secondary {
    background-color: var(--sn-light-color);
    padding: 20px;
    border-radius: 5px;
}

.sn-widget {
    margin-bottom: 20px;
}

.sn-widget-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--sn-primary-color);
}

.sn-search-form {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sn-search-field {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    background-color: var(--sn-light-color);
    color: var(--sn-dark-color);
}

.sn-search-submit {
    padding: 10px;
    border: 1px solid #ddd;
    border-left: 0;
    background-color: var(--sn-secondary-color);
    color: var(--sn-light-color);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.sn-search-submit:hover {
    background-color: var(--sn-primary-dark-color);
}

.sn-latest-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sn-latest-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--sn-light-color);text-align: left;
}

.sn-latest-post-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--sn-dark-color);
    width: 100%;
}

.sn-post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.sn-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sn-post-content {
    padding: 10px;
    flex-grow: 1;
}

.sn-post-title {
    font-size: 1rem;
    margin: 0 0 5px;
    color: var(--sn-primary-color);
}

.sn-post-date {
    font-size: 0.875rem;
    color: var(--sn-dark-color);
}

.sn-categories {
    list-style: none;
    padding: 0;
}

.sn-categories li {
    margin-bottom: 10px;
}

.sn-categories li a {
    text-decoration: none;
    color: var(--sn-dark-color);
}

.sn-categories li a:hover {
    text-decoration: underline;
    color: var(--sn-link-hover-color);
}

.sn-search-form label{
    width: 100%;
}

/* Blog */
/* Blog Page Styles */
.sn-blog-posts {
    margin-top: 0;
}

.sn-blog-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--sn-light-color);
}

.sn-blog-post a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--sn-dark-color);
    width: 100%;
}

.sn-blog-post-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.sn-blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sn-blog-post-content {
    padding: 10px;
    flex-grow: 1;
}

.sn-blog-post-title {
    font-size: 1.25rem;
    margin: 0 0 5px;
    color: var(--sn-primary-color);
}

.sn-blog-post-date {
    font-size: 0.875rem;
    color: var(--sn-dark-color);
}

.sn-blog-post-excerpt {
    margin: 10px 0 0;
    color: var(--sn-dark-color);
}


/* Archive Page Styles */
.archive-header {
    margin-bottom: 20px;
}

.archive-title {
    font-size: 2rem;
    color: var(--sn-primary-color);
}

.archive-description {
    margin-top: 10px;
    color: var(--sn-dark-color);
}

.sn-archive-posts {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
}

.sn-archive-post {
    padding: 5px;
}

.sn-archive-post:hover {
    transform: translateY(-5px);
}

.sn-archive-post-link {
    
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--sn-light-color);
    transition: transform 0.3s ease;


    text-decoration: none;
    color: var(--sn-dark-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sn-archive-post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sn-archive-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sn-archive-post-content {
    padding: 15px;
    flex-grow: 1;
    text-align: left;
}

.sn-archive-post-title {
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--sn-primary-color);
}

.sn-archive-post-date {
    font-size: 0.875rem;
    color: var(--sn-dark-color);
    margin-bottom: 10px;
}

.sn-archive-post-excerpt {
    margin: 0;
    color: var(--sn-dark-color);
}

.sn-pagination {
    margin-top: 20px;
    text-align: center;
}

.sn-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--sn-light-color);
    color: var(--sn-dark-color);
    text-decoration: none;
}

.sn-pagination .page-numbers.current {
    background-color: var(--sn-primary-color);
    color: var(--sn-light-color);
}

.sn-pagination .page-numbers:hover {
    background-color: var(--sn-secondary-color);
    color: var(--sn-light-color);
}

/* Search Page Styles */
.search-header {
    margin-bottom: 20px;
}

.search-title {
    font-size: 2rem;
    color: var(--sn-primary-color);
}

.sn-search-posts {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
}

.sn-search-post {
    padding: 5px;
}

.sn-search-post:hover {
    transform: translateY(-5px);
}

.sn-search-post-link {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--sn-light-color);
    transition: transform 0.3s ease;

    
    text-decoration: none;
    color: var(--sn-dark-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sn-search-post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sn-search-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sn-search-post-content {
    padding: 15px;
    flex-grow: 1;
}

.sn-search-post-title {
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--sn-primary-color);
}

.sn-search-post-date {
    font-size: 0.875rem;
    color: var(--sn-dark-color);
    margin-bottom: 10px;
}

.sn-search-post-excerpt {
    margin: 0;
    color: var(--sn-dark-color);
}

.sn-pagination {
    margin-top: 20px;
    text-align: center;
}

.sn-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--sn-light-color);
    color: var(--sn-dark-color);
    text-decoration: none;
}

.sn-pagination .page-numbers.current {
    background-color: var(--sn-primary-color);
    color: var(--sn-light-color);
}

.sn-pagination .page-numbers:hover {
    background-color: var(--sn-secondary-color);
    color: var(--sn-light-color);
}
/* Contact Us Section */
.sn-contact-us {
    padding: 50px;
    background: var(--sn-light-color);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sn-contact-us-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--sn-primary-color);
    margin-bottom: 10px;
}

.sn-contact-us-description {
    font-size: 16px;
    color: var(--sn-dark-color);
    margin-bottom: 20px;
}

.sn-contact-form-container {
    margin-top: 20px;
}

/* Contact Information */
.sn-contact-info {
    padding: 40px;
    background: var(--sn-section-bg-color);
    border-radius: 10px;
}

.sn-contact-info-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sn-contact-info ul {
    list-style: none;
    padding: 0;
}

.sn-contact-info li {
    font-size: 16px;
    color: var(--sn-dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sn-contact-info li i {
    color: var(--sn-secondary-color);
    font-size: 18px;
}

/* Google Map */
.sn-map-container iframe {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* About Us Page Styles */
.sn-about-us {
    margin-top: 20px;
}

.sn-about-us-title {
    font-size: 2rem;
    color: var(--sn-primary-color);
    margin-bottom: 20px;
}

.sn-about-us-description {
    margin-bottom: 20px;
    color: var(--sn-dark-color);
}

.sn-about-us-content h2 {
    font-size: 1.5rem;
    color: var(--sn-primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.sn-about-us-content p {
    margin-bottom: 10px;
    color: var(--sn-dark-color);
}

.sn-about-us-content ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--sn-dark-color);
}

.sn-about-us-content ul li {
    margin-bottom: 5px;
}

.sn-about-info {
    margin-top: 20px;
}

.sn-about-info-title {
    font-size: 1.5rem;
    color: var(--sn-primary-color);
    margin-bottom: 10px;
}

.sn-about-info p {
    margin-bottom: 10px;
    color: var(--sn-dark-color);
}

/* Shop Page Styles */
.sn-shop-filters {
    margin-top: 0px;
}

.sn-shop-filters-title {
    font-size: 1.5rem;
    color: var(--sn-primary-color);
    margin-bottom: 20px;
}

.sn-shop-filters .form-group {
    margin-bottom: 20px;
}

.sn-shop-filters label {
    display: block;
    margin-bottom: 5px;
    color: var(--sn-dark-color);
}

.sn-shop-filters .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--sn-light-color);
    color: var(--sn-dark-color);
}

.sn-shop-filters .sn-btn {
    padding: 10px 20px;
    background-color: var(--sn-primary-color);
    color: var(--sn-light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.sn-shop-filters .sn-btn:hover {
    background-color: var(--sn-secondary-color);
}

.sn-vehicles {
    margin-top: 0px;
}

.sn-vehicles-title {
    font-size: 2rem;
    color: var(--sn-primary-color);
    margin-bottom: 20px;
}

.sn-vehicle__item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--sn-light-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.sn-vehicle__item:hover {
    transform: translateY(-5px);
}

.sn-vehicle__item_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sn-vehicle__item_content {
    padding: 15px;
}

.sn-vehicle__item_content h3 {
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--sn-primary-color);
}

.sn-vehicle__item_content p {
    margin: 0 0 10px;
    color: var(--sn-dark-color);
}

.sn-vehicle__item_content span {
    display: block;
    font-size: 0.875rem;
    color: var(--sn-dark-color);
    margin-bottom: 10px;
}

.sn-vehicle__readmore {
    text-decoration: none;
    color: var(--sn-link-color);
    font-weight: bold;
}

.sn-vehicle__readmore:hover {
    color: var(--sn-link-hover-color);
}

/* Single Vehicle Page Styles */
.sn-vehicle-single {
    margin-top: 20px;
}

.sn-vehicle-header {
    margin-bottom: 20px;
}

.sn-vehicle-title {
    font-size: 2rem;
    color: var(--sn-primary-color);
    margin-bottom: 10px;
}

.sn-vehicle-meta {
    font-size: 0.875rem;
    color: var(--sn-dark-color);
}

.sn-vehicle-content {
    margin-top: 20px;
}

.sn-vehicle-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.sn-vehicle-gallery {
    margin-bottom: 20px;
    position: relative;
}

.sn-vehicle-gallery-full {
    margin-bottom: 10px;
}

.sn-vehicle-gallery-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.sn-vehicle-gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: scroll;
}

.sn-vehicle-gallery-thumbnail {
    /* flex: 1 1 calc(20% - 10px); */
    cursor: pointer;
}

.sn-vehicle-gallery-thumbnail img {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    border-radius: 5px;  
    max-height: 100px;
    min-width: 50px;
}

.sn-vehicle-description {
    margin-bottom: 20px;
    color: var(--sn-dark-color);
}

.sn-vehicle-specifications {
    margin-top: 0px;
}

.sn-vehicle-specifications h2 {
    font-size: 1.5rem;
    color: var(--sn-primary-color);
    margin-bottom: 10px;
}

.sn-vehicle-specifications ul {
    display: flex;
    flex-wrap: wrap;
    /* gap: 5px; */
    list-style: none;
    padding: 0;
    color: var(--sn-dark-color);
    margin: 0;
}

.sn-vehicle-specifications ul li {
    flex: 1 1 calc(50% - 10px);
    margin-bottom: 0px;
    color: var(--sn-dark-color);
}

/* Custom Sidebar Styles */
.sn-widget {
    margin-bottom: 20px;
}

.sn-widget-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--sn-primary-color);
}

.sn-latest-parts {
    list-style: none;
    padding: 0;
}

.sn-latest-part-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--sn-light-color);
}

.sn-latest-part-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--sn-dark-color);
    width: 100%;
}

.sn-latest-part-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.sn-latest-part-content {
    padding: 10px;
    flex-grow: 1;
}

.sn-latest-part-content h3 {
    font-size: 1rem;
    margin: 0 0 5px;
    color: var(--sn-primary-color);
}

.sn-latest-part-content span {
    font-size: 0.875rem;
    color: var(--sn-dark-color);
}

/* Share Buttons Styles */
.sn-vehicle-share {
    margin-top: 10px;
}

.sn-vehicle-share span {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.sn-share-buttons {
    display: flex;
    /* gap: 10px; */
}

.sn-share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    /* border-radius: 5px; */
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
    flex: 1;
    background-color: #000614;
}

.sn-share-button i {
    margin-right: 5px;
}
.sn-share-facebook {
    background-color: #3b5998;
}

.sn-share-twitter {
    background-color: #1da1f2;
}

.sn-share-linkedin {
    background-color: #0077b5;
}

.sn-share-instagram {
    background-color: #e4405f;
}

.sn-share-pinterest {
    background-color: #bd081c;
}

.sn-share-youtube {
    background-color: #ff0000;
}

.sn-share-whatsapp {
    background-color: #25d366;
}

.sn-share-reddit {
    background-color: #ff4500;
}
.sn-share-button:hover {
    opacity: 0.8;
}

/* Inquiry Form Styles */
.sn-inquiry-form {
    background-color: #f9f9f9;
    padding: 20px;
    /* border-radius: 5px; */
    /* box-shadow: 0 0 10px rgba(59, 59, 59, 0.1); */
}

.sn-inquiry-form h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--sn-primary-color);
}

.sn-inquiry-form .form-group {
    margin-bottom: 15px;
}

.sn-inquiry-form .form-group input,
.sn-inquiry-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 0px;
    box-shadow: none;
    color: #333;
}

.sn-inquiry-form .form-group input::placeholder,
.sn-inquiry-form .form-group textarea::placeholder {
    color: #999; /* Placeholder color to gray */
}
.sn-inquiry-form .form-group textarea {
    resize: vertical;
    height: 100px;
}

.sn-inquiry-form .btn {
    background-color: var(--sn-primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.sn-inquiry-form .btn:hover {
    background-color: darken(var(--sn-primary-color), 10%);
}
.sn-inquiry-form p{
    margin-bottom: 0;
}

/* Pagination Styles */
.sn-pagination {
    text-align: center;
    margin-top: 20px;
}

.sn-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid var(--sn-dark-color);
    border-radius: 5px;
    background-color: var(--sn-light-color);
    color: var(--sn-dark-color);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.sn-pagination .page-numbers:hover {
    background-color: var(--sn-secondary-color);
    color: var(--sn-light-color);
}

.sn-pagination .current {
    background-color: var(--sn-primary-color);
    color: var(--sn-light-color);
    border-color: var(--sn-primary-color);
}

.sn-pagination .prev,
.sn-pagination .next {
    font-weight: bold;
}

.sn-pagination .prev:hover,
.sn-pagination .next:hover {
    background-color: var(--sn-primary-dark-color);
    color: var(--sn-light-color);
}

.sn-text-light{
    color: var(--sn-light-color) !important;
}
.sn-vehicles .sn-cars_item{
    max-width: 100% !important;
}








/* about us page */
/* About Hero Section */
.sn-about-hero {
    background: linear-gradient(to left, #00000083, #00000083), url('../images/blog-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--sn-light-color);
    padding: 80px 0;
    text-align: center;
}

.sn-about-hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sn-about-hero-row {
    max-width: 800px;
}

.sn-about-hero-ct {
    text-align: center;
}

.sn-about-hero__highlight-title {
    font-size: 20px;
    color: var(--sn-secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.sn-about-hero__title {
    font-size: 36px;
    font-weight: bold;
    color: var(--sn-light-color);
    margin-bottom: 15px;
}

.sn-about-hero__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sn-about-hero .sn-btn,
.sn-about-hero .sn-outline-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.sn-about-hero .sn-btn {
    background: var(--sn-secondary-color);
    color: var(--sn-light-color);
}

.sn-about-hero .sn-outline-btn {
    border: 2px solid var(--sn-secondary-color);
    color: var(--sn-secondary-color);
}

.sn-about-hero .sn-btn:hover {
    background: var(--sn-light-color);
    color: var(--sn-primary-color);
}

.sn-about-hero .sn-outline-btn:hover {
    background: var(--sn-secondary-color);
    color: var(--sn-light-color);
}

/* Our Mission & Vision Section */
.sn-mission-vision {
    background: var(--sn-section-bg-color);
    padding: 40px 0;
    text-align: center;
}

.sn-mission,
.sn-vision {
    background: var(--sn-light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.sn-mission:hover,
.sn-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.sn-section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--sn-primary-color);
    margin-bottom: 15px;
}

.sn-section-text {
    font-size: 18px;
    color: var(--sn-dark-color);
    line-height: 1.6;
}

/* Our Values Section */
.sn-values {
    background: var(--sn-light-color);
    padding: 80px 0;
    text-align: center;
}

.sn-value-box {
    background: var(--sn-section-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
}

.sn-value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.sn-value-icon {
    font-size: 40px;
    color: var(--sn-secondary-color);
    margin-bottom: 15px;
}

.sn-value-box h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--sn-primary-color);
    margin-bottom: 10px;
}

.sn-value-box p {
    font-size: 16px;
    color: var(--sn-dark-color);
    line-height: 1.6;
}


/* Customer Testimonials Section */
.sn-testimonials {
    background: var(--sn-light-color);
    padding: 80px 0;
    text-align: center;
}
.sn-testimonial-boxes{
    
    background: var(--sn-light-color);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
  display: flex;
  align-items: center;
}
.sn-testimonial-boxd {
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 20px;
    border: none !important;
}

.sn-testimonial-box {
    background: var(--sn-light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 20px;
}

.sn-testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.sn-testimonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.sn-testimonial-content p {
    font-size: 16px;
    color: var(--sn-dark-color);
    font-style: italic;
    margin-bottom: 10px;
}

.sn-testimonial-stars {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 10px;
}

.sn-testimonial-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--sn-primary-color);
}
.sn-why__chooseUs__list_content ul{
    list-style: none;
    padding: 0;
    margin-left: 0;

}
.sn-sidebar-main {
    text-align: left;
}

.sn-vehicle-gallery-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    bottom: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    height: fit-content;
}

.sn-gallery-nav-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 50%; /* Makes the buttons circular */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-gallery-nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.sn-gallery-nav-button i {
    transition: transform 0.3s ease;
}

.sn-gallery-nav-button:hover i {
    transform: scale(1.2);
}

/* Disable buttons when no images to navigate */
.sn-gallery-nav-button[disabled] {
    background-color: rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
}

.sn-gallery-nav-button:focus {
    outline: none; /* Removes the focus outline */
}
.list-unstyled{
    margin: 0;
}
.sn-widget-area {
    position: relative;
}
.sn-sidebar-main{
    position: sticky;
    top: 0;
}

/* Service Content */
.sn-service-content {
    /* background: var(--sn-light-color); */
    padding: 20px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    margin-bottom: 20px;
}

.sn-service-featured-image {
    margin-bottom: 20px;
    text-align: center;
}

.sn-service-featured-image img {
    max-width: 100%;
    /* border-radius: 8px; */
}

.sn-service-description {
    font-size: 16px;
    line-height: 1.6;
}

.sn-service-content{
    padding: 0px !important;
    background-color: transparent !important;
}
.sn-bg-light{
    background-color: var(--sn-light-color);
}
/* Sidebar */
.sn-service-sidebar {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sn-service-sidebar-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sn-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sn-service-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sn-service-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: 0.3s ease;
}

.sn-service-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}
.sn-indicator{
    position: absolute;
    bottom: 0px !important;
}
.sn-indicator [data-bs-target]{
    background-color: var(--sn-secondary-color) !important;
  height: 5px;
  width: 5px;
}
.sn-sticky-top{
    position: sticky;
    top: 0;
}
.accordion-button:not(.collapsed){
    background-color: var(--sn-secondary-color);
    color: var(--sn-light-color);
}
/* hover */
.accordion-button:hover {
    color: var(--sn-secondary-color) !important;
    color: #ffffff !important;
}
/* for sn service */
.sn-service-feature-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    /* space between */
    gap: 20px;
    flex-wrap: wrap;
}
.sn-service-feature-item{
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: solid 2px var(--sn-secondary-color);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.sn-service-feature-item:hover{
    transform: translateY(-5px);
}
.sn-service-feature-icon{
    font-size: 30px;
    color: var(--sn-secondary-color);
    position: relative;
    margin-bottom: 15px;
}
/* lets make circile to wrap the icon us before */
.sn-service-feature-icon::before {
    content: "";
    border-radius: 50%;
    padding: 10px;
    background-color: transparent;
    border: solid 2px var(--sn-secondary-color);
    position: absolute;
    height: 49px;
    width: 49px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

.sn-service-feature-title{
    font-size: 20px;
    font-weight: bold;
    color: var(--sn-primary-color);
    margin-bottom: 10px;
}
.sn-service-feature-text{
    font-size: 16px;
    color: var(--sn-dark-color);
    line-height: 1.6;
}
.sn-service-details{
    text-align: center;
}

.sn-car-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sn-car-options li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.sn-car-options li i {
    margin-right: 8px;
    color: #333;
}
/* responsive */
@media (max-width: 768px) {
    .sn-service-feature-item {
        margin-bottom: 20px;
    }
    .sn-service-feature-container {
        flex-direction: column;
        gap: 20px;
    }
}
.sn-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

.sn-logo {
    transition: max-width 0.3s ease-in-out; /* Smooth logo size change */
}

.sn-nav-link {
    transition: padding 0.3s ease-in-out; /* Smooth padding change */
}

.sn-sticky-header .sn-logo {
    max-width: 80px;
}

.sn-sticky-header .sn-nav-link {
    padding: 0;
}
.owl-carousel .owl-item img{
    height: 180px;
	object-fit: cover;
}
.sn-summary-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}
.sn-summary-list li{
    display: inline-flex;
    justify-content: start;
    line-height: 25px;
    /* flex by 4 in one row for desktop and 2 in mobile */
    flex: auto !important;
    margin:  0 !important;
    font-size: 14px;
    line-height: 20px;
}
.sn-summary-list li div span{
    font-size: 16px;
    font-weight: normal;
    color: var(--sn-secondary-color);
    display: block;
}
.sn-summary-list li div:not(.sn-icon-detail){
    padding-left: 10px;
    font-weight: 700;
    padding-top: 5px;
    padding-top: 5px;
}
.sn-summary-list li .sn-icon-detail{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background-color: #dadada;
    height: 30px;
    width: 30px;
    border-radius: 10px;
    overflow: hidden;
    color: var(--sn-primary-color);
}

/* General Tab Styling */
.sn-tab-btm .nav-tabs {
    margin-left: 0;
  width: 100%;
  justify-content: stretch;
  display: flex;
  flex-wrap: wrap;
  background-color: #f8f9fa;
  border-bottom: 2px solid #ddd;
}

.sn-tab-btm .nav-tabs .nav-item {
    margin-bottom: -1px;
}

.sn-tab-btm .nav-tabs .nav-link {
    color: #333;
    border: 2px solid transparent;
    border-radius: 5px 5px 0 0;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    background: #f8f9fa;
    border-bottom: 2px solid #ddd;
}

.sn-tab-btm .nav-tabs .nav-link:hover {
    color: var(--sn-primary-color);
    background: #e9ecef;
}

.sn-tab-btm .nav-tabs .nav-link.active {
    color: #fff;
    background: var(--sn-primary-color);
    border-color: var(--sn-primary-color) var(--sn-primary-color) #fff;
}

/* Tab Content */
.sn-tab-btm .tab-content {
    padding: 10px 13px;
    border: 2px solid #ddd;
    border-top: none;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.sn-slide-gallery-fix{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: white;
    padding: 22px;
    height: 100vh;
    overflow-y: scroll;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.sn-vehicle-gallery-left-side{
    position: relative;
    height: fit-content;
}
.sn-vehicle-gallery-right-side{
    display: none;
}
.sn-slide-gallery-fix .sn-vehicle-gallery-left-side{
    width:70%;
    padding: 10px;
    /* position: relative; */
    box-sizing: border-box;
}
.sn-slide-gallery-fix .sn-vehicle-gallery-right-side{
    display: block;
    width: 30%;
    padding: 10px;
    box-sizing: border-box;
}
.sn-close-gallery-close{
    border: solid 2px black;
  background: #d0d0d0;
  color: black;
  height: 40px;
  width: 40px;
  padding: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0.7;
  display: none;
}
.sn-slide-gallery-fix .sn-close-gallery-close{
    display: flex;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .sn-tab-btm .nav-tabs {
        flex-direction: column;
    }

    .sn-tab-btm .nav-tabs .nav-link {
        border-radius: 5px;
        margin-bottom: 5px;
    }

    .sn-tab-btm .tab-content {
        border-radius: 10px;
    }
    .sn-slide-gallery-fix .sn-vehicle-gallery-left-side{
        width:100%;
    }
    .sn-slide-gallery-fix .sn-vehicle-gallery-right-side{
        display: none;
    }
}

/* for mobiel view */
@media (max-width: 767.5px) {
    .sn-footer {
        padding: 10px 0;
    }
    .sn-contact-us{
        padding: 0px;
        margin-bottom: 15px;
    }
    .sn-contact-info {
        text-align: left;
        padding: 20px;
    }
    .sn-hero{
        padding: 10px;
    }
    .sn-hero-ct{
        padding: 40px 0;
    }
    .sn-about-hero-ct{
        text-align: left;
    }
    .sn-about-hero .sn-outline-btn{
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .sn-footer .sn-outline-btn{
        width: 100%;
    }
    .entry-content{
        text-align: left;
    }
    .sn-vehicle-single {
        text-align: left;
    }
    .sn-topbar__left{
        flex-wrap: wrap;
    }
    .sn-topbar__item{
        margin-right: 0;
    }
    .sn-blog-detail-feature{
        min-height: 50vh;
    }
    .sn-vehicle-title, .sn-vehicle-price h2{
        font-size: 20px;
    }
}

.sn-pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sn-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.sn-page-item {
    display: inline-block;
}

.sn-page-link {
    display: inline-block;
    padding: 8px 14px;
    color: var(--sn-link-color);
    background-color: var(--sn-light-color);
    border: 1px solid var(--sn-primary-color);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.sn-page-link:hover {
    background-color: var(--sn-secondary-color);
    color: #fff;
    border-color: var(--sn-secondary-color);
}

.sn-page-item.active .sn-page-link {
    background-color: var(--sn-primary-color);
    color: #fff;
    border-color: var(--sn-primary-color);
    pointer-events: none;
}

.sn-explore-all {
  background: var(--sn-primary-color);
  color: #fff;
  border: none;
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 5px;
  max-width: 160px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  border-left: 2px solid var(--sn-light-color);
  border-right: 2px solid var(--sn-light-color);
}
.sn-explore-all:hover{
    opacity: 1;
}
.sn-show-all-btn-container{
    position: relative;
}
.sn-show-all-btn-container::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--sn-primary-color);
    top:calc(100% / 2 - 2px);
    left: 0;
    transition: width 0.3s ease-in-out;

}