:root {
    --primary-color: #C32026;
    --secondary-color: #000000;
    --third-color: #FFFFFF;
}

@font-face {
    font-family: 'SATOSHI-REGULAR';
    src: url('../fonts/satoshi/SATOSHI-REGULAR.OTF');
}

* {
    font-family: 'SATOSHI-REGULAR';
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* -------------------------- Component Break ---------------------------- */
/* -------------------------- Component Break ---------------------------- */
/* -------------------------- Component Break ---------------------------- */
/* Start Commons */
.transition-super-fast {
    transition: all 0.1s ease-in-out;
}

.transition-super-fast-2 {
    transition: all 0.2s ease-in-out;
}

.transition-super-fast-move {
    transition: all 0.5s ease-in-out;
}

.primary-bg {
    background-color: var(--primary-color);
}

.primary-border-color {
    border-color: var(--primary-color);
}

.primary-text {
    color: #C32026;
}

/* Font Weights */
.font-200 {
    font-weight: 200 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-600 {
    font-weight: 600 !important;
}

/*  End Commons */
/* -------------------------- Component Break ---------------------------- */
.main-header {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    background-color: white;
    border-bottom: 1px solid #f1f1f1;
    z-index: 100;
}

.navigation-links {
    display: flex;
    align-items: center;
    height: 100%;
}

.navigation-links-list {
    display: flex;
    height: 100%;
}

.navigation-links-list li {
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.navigation-links-list li a {
    text-decoration: none;
    width: 100%;
    display: inline-flex;
    align-items: center;
    color: black;
    height: calc(100% - 3px);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
}

.navigation-links-list li .active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 3px solid var(--primary-color);
}

.navigation-links-list li a:hover {
    color: var(--primary-color);
}

/* Appointment Button */
.book-appointment-button {
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    margin-left: 4em;
    display: inline-block;
    padding: 0.8em 1.5em;
    background-color: var(--primary-color);
    color: var(--third-color);
}

/* Our Services Drop-Down */
.our-services-renderer {
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    display: flex;
}

.our-services-renderer .servicing-jobs {
    width: 25%;
}

.our-services-renderer .servicing-specialists {
    width: 50%;
    color: white;
    background-color: var(--secondary-color);
}

.our-services-renderer .servicing-jobs-link {
    padding: 10px !important;
    border-radius: 10px;
}

.our-services-renderer .drop-down-link-navigator {
    width: 25%;
}

/* -------------------------- Hero Section ------------------------------- */
.hero-section--home {
    /* height: 80vh; */
}

.home-hero-header-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 36% 100%);
}

.home-hero-header-image img {
    height: 100%;
}


/* -------------------------- Component Break ---------------------------- */
/* -------------------------- Component Break ---------------------------- */
/* -------------------------- Component Break ---------------------------- */

/* -------------------------- Indivisual With Special Effects ------------ */
.about-text-rotated,
.our-service-bordered-text,
.about-head-border-text {
    display: inline-block;
    padding: 0 !important;
    font-size: 8.5em;
    font-weight: 800;
    color: white;
    text-shadow: 0px 0px 1px black;
    position: absolute;
    ;
    right: 100%;
    top: 31.2%;
    line-height: 1em;
    transform: rotate(-90deg) translateY(80%);
}

.our-service-bordered-text {
    rotate: none;
    transform: none;
    position: static;
}

.our-steps--step-parent:hover .our-steps--step-button {
    background-color: var(--primary-color);
    color: white;
}

.about-head-border-text {
    transform: none;
    color: var(--primary-color);
    text-shadow: 0px 0px 1px white;
}

.shadow-box-bottom {
    position: absolute;
    top: 96px;
    filter: blur(200px);
    background-color: red;
}

.center-box-shadow {
    box-shadow: 0px 0px 10px;
    filter: blur(200px);
    background-color: var(--primary-color);
}


/* -------------------------- Component Break ---------------------------- */
/* -------------------------- Component Break ---------------------------- */
/* -------------------------- Component Break ---------------------------- */

/* -------------------------- Dynamic Components ------------------------- */
.cart-grid-renderer {
    width: 100%;
    padding: 1rem;
    color: black;
}

.cart-indivisual-cart {
    padding: 1rem;
    color: black;
}

.car-container {
    margin: 0 50px;
}

.product-title .title {
    font-size: 30px;
    font-weight: 600;
}

.product-title .para {
    color: #555555
}

.bg-edge::after {
    content: '';
    width: 300px;
    background-size: 100% 100%;
    height: 100%;
    background-image: url("../images/others/edge.png");
    background-position: center;
    position: absolute;
    top: 0;
    right: -95px;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Main navigation */
.link-items--navigation {
    position: relative;
}

/* Dropdown initial state */
.drop-down-ul {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden; /* 🔴 was visible */
    transform: translateY(10px);
    background-color: #fff;
    list-style: none;
    padding: 4px;
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-trigger:hover + .drop-down-ul,
.drop-down-ul:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Show dropdown with animation */
.link-items--navigation:hover>.drop-down-ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

/* Arrow default */
.menu-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease, color 0.25s ease;
    color: #000;
}

/* Rotate arrow + change color */
.link-items--navigation:hover .menu-arrow {
    transform: rotate(180deg);
    color: #C32026;
}

/* Hover effect for links */
.drop-down-ul a {
    display: block;
    padding: 10px 14px;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease;
}

.drop-down-ul a:hover {
    background: #FFF2EE;
    color: #C32026;
    font-weight: 600;
}

/* .drop-down-ul li ul .submenu-ul a {
    color: #fff;
    border: 0;
    font-size: 15px;
    padding: 2px;
    margin-bottom: 5px;
}

.submenu-ul a:hover {
    background: none !important;
} */

.tab-content {
    display: block;
}

.tab-content.active {
    display: block;
    border-bottom: 0px;
}

.submenu-ul a {
    color: #fff !important;
    border-bottom: 0 !important
}

.tab-link.active {
    border-bottom: 0 !important;
}

.tab-links.active {
    border-bottom: 0 !important;
    color: #C32026;
    font-weight: 600;
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
}

.offcanvas-start {
    top: 0px;
    right: 0;
    width: 80%;
    transform: translateX(100%);
}

.offcanvas.show {
    transform: translateX(0);
}

/* .mobile-menu ul {
    list-style-type: none;
}

.mobile-menu ul li {
    position: relative;
}

.mobile-menu ul li ul {
    display: none;
}
 
.mobile-menu ul li ul li {
    position: relative;
}

.mobile-menu ul li ul li ul {
    display: none;
}

.mobile-menu ul li ul li:hover ul {
    display: block;
} */

.login-css {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error {}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

.slide-in {
    animation: slideIn 0.5s ease-in-out;
    animation-fill-mode: forwards;
}

.bg-g {
    background: #bea8a8;
    cursor: not-allowed;
}

.user-btn-primary {
    background-color: rgb(197, 19, 19) !important;
    cursor: pointer;
}

.bg-red-600 {
    background-color: rgb(195 32 38) !important;
}

.gridContainer .kjgjkgjk .engine-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 18px;
    margin: 0;
}

.gridContainer .kjgjkgjk .engine-image {
    border: 1px solid #c9c4c4;
    border-radius: 10px;
}

.gridContainer .kjgjkgjk {
    height: 100px;
    padding: 0 2px 0 13px;
}

.gridContainer .kjgjkgjk .engine-image img {
    width: 55px;
    height: 55px;
}

.gridContainer .kjgjkgjk .engine-content .justify-between.mt-4 {
    gap: 24px;
    margin-top: 5px;
}
.gridContainer .engine-content .stock-badge {
    top: -20px;
    left: -75px;
    border-radius: 20px 0px 20px 0px;
    padding: 0px 20px;
    font-size: 10px;
}
.hero-section {
    background-image: url(https://ik.imagekit.io/glyliunv3s/hands-mechanic-servicing-car%201.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::after {
    content: '';
    background-color: #000;
    opacity: .7;
    width: 100%;
    top: 0;
    height: 100%;
    position: absolute;
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 260px;
    max-width: 360px;
    margin-bottom: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.toast .close {
    float: right;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}





/* Card base */
.engine-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: fadeUp 0.5s ease forwards;
}

/* Hover lift */
.engine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
}

/* Image zoom */
.engine-img {
    transition: transform 0.5s ease;
}

.engine-card:hover .engine-img {
    transform: scale(1.08);
}

/* Button animation */
.engine-btn {
    transition: all 0.3s ease;
}

.engine-card:hover .engine-btn {
    transform: translateX(6px);
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.4);
}

/* Fade-in on load */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-margin {
    margin: 22px auto !important;
}

.select2-container .select2-search--inline .select2-search__field{
    height: 30px !important
}

  .error-text {
        color: #dc2626;
        font-size: 13px;
        margin-top: 4px;
    }

    .input-error {
        border-color: #dc2626 !important;
    }

    .input-success {
        border-color: #16a34a !important;
    }