:root {
    --pribg-color: #e3000f;
    --secbg-color: #cecece;
    --pr-color: #e3000f;
    --tx-color: #fff;
}
/* =========================
font overwrite
========================= */

html,
body, h1, h2, h3, h4, h5, h6, p, a
{
    font-family: 'Poppins', sans-serif !important;
}
/* =========================
AUTHORIZED DEALER SECTION
========================= */

.dealer-section {

    background: #f5f5f5;

}

/* TITLE */

.dealer-title {

    font-size: 48px;

    font-weight: 600;

    color: #111;

    font-family: serif;

}

/* CARD */

.dealer-card {

    background: #fff;

    border-radius: 10px;

    height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

    transition: 0.4s;

    overflow: hidden;

}

/* HOVER EFFECT */

.dealer-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}

/* LOGO */

.dealer-card img {

    max-width: 100%;

    max-height: 90px;

    object-fit: contain;

    transition: 0.4s;

}

/* LOGO HOVER */

.dealer-card:hover img {

    transform: scale(1.05);

}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {

    .dealer-title {

        font-size: 32px;

    }

    .dealer-card {

        height: 130px;

        padding: 20px;

    }

}


/* SLIDER */

.dealer-slider{

    overflow:hidden;

    width:100%;

    position:relative;
}

/* TRACK */

.dealer-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:brandScroll 25s linear infinite;
}

/* PAUSE ON HOVER */

.dealer-slider:hover .dealer-track{

    animation-play-state:paused;
}

/* CARD */

.dealer-card{

    width:220px;

    min-height:140px;

    background:#fff;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    flex-shrink:0;

    transition:0.3s;
}

/* HOVER */

.dealer-card:hover{

    transform:translateY(-5px);
}

/* IMAGE */

.dealer-card img{

    max-height:80px;

    width:auto;

    object-fit:contain;
}

/* AUTO SCROLL */

@keyframes brandScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:768px){

    .dealer-card{

        width:160px;

        min-height:110px;

        padding:15px;
    }

    .dealer-card img{

        max-height:60px;
    }

}



/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    background: #fff;
    overflow-x: hidden;
}


h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins';
}

p{
    font-family: 'Poppins', sans-serif;
}



a {
    text-decoration: none;
}

/* =========================
   TOP BAR
========================= */
.top-header {
    background: #e3000f;
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact span {
    margin-right: 20px;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
}

.top-contact a:hover {
    color: #fff;
}

.top-contact i {
    margin-right: 6px;
}

.top-social a {
    color: #fff;
    margin-left: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.top-social a:hover {
    opacity: 0.8;
}

/* MOBILE VIEW */
@media(max-width:991px) {

    .top-header-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-contact {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .top-contact span {
        margin-right: 5px;
    }
.top-contact a {
    color: #fff;
    text-decoration: none;
}

.top-contact a:hover {
    color: #fff;
}
    .top-social {
        margin-top: 12px;
    }

    .top-social a {
        margin: 0 10px;
    }

}

.top-social a:hover {
    opacity: 0.8;
}

.top-bar {
    background: #000000;
    color: #fff;
    font-size: 14px;
}

/* =========================
   NAVBAR
========================= */

.main-navbar {
     font-family: 'Poppins';
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* LOGO */

.logo-img {
    width: 60px;
}
.logo-content{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-text{
    font-size:28px;
    font-weight:700;
    color:#e3000f;
}

.logo-subtext{
    font-size:17px;
    color:#000;
    letter-spacing:1px;
    font-weight:500;
    margin-top:2px;
}
/* =========================
MENU LINKS
========================= */

.navbar-nav .nav-link {

    color: #222 !important;
    font-size: 14px;
    font-weight: 600;
    margin: 0 14px;

    position: relative;

    transition: 0.4s ease;

    padding-bottom: 10px;

}

/* HOVER TEXT COLOR */

.navbar-nav .nav-link:hover {
    color: #e3000f !important;
}

/* HOVER UNDERLINE EFFECT */

.navbar-nav .nav-link::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0%;

    height: 3px;

    background: #e3000f;

    transition: 0.4s ease;

}

/* HOVER ANIMATION */

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* SLIGHT MOVE EFFECT */

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

/* =========================
ACTIVE CURRENT TAB
========================= */

.navbar-nav .active-menu {

    color: #e3000f !important;

}

/* ACTIVE UNDERLINE */

.navbar-nav .active-menu::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;

    height: 3px;

    background: #e3000f;

}

/* =========================
ENQUIRY BUTTON
========================= */

.enquiry-btn {

    background: #e3000f;

    color: #fff;

    padding: 12px 24px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.4s;

    border-radius: 2px;

}

/* BUTTON HOVER */

.enquiry-btn:hover {

    background: #e3000f;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(227, 0, 15, 0.3);

}

/* =========================
DROPDOWN
========================= */

.dropdown-menu {

    border: none;

    border-radius: 0;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    padding: 10px 0;

}

/* DROPDOWN ITEMS */

.dropdown-item {

    padding: 12px 20px;

    transition: 0.3s;

    font-size: 14px;

    font-weight: 500;

}

/* DROPDOWN HOVER */

.dropdown-item:hover {

    background: #e3000f;

    color: #fff;

    padding-left: 25px;

}

/* =========================
MOBILE
========================= */

@media(max-width:991px) {
    
    .logo-text{
         display: none;
    } 
    
    .logo-subtext {
         display: none;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .enquiry-btn {
        display: inline-block;
        margin-top: 15px;
    }

}

/* =========================
   HERO SECTION
========================= */

.hero-section {
     font-family: 'Poppins';
    height: 92vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(196, 0, 0, 0.6)),
        url('../images/banner.jpg');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-section h1 {
     font-family: 'Poppins';
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 22px;
    margin-top: 20px;
}

/* =========================
   strip
========================= */

/* =========================
FEATURE STRIP
========================= */

.feature-strip {

    background: linear-gradient(90deg, #e3000f, #e3000f);
 font-family: 'Poppins';
    overflow: hidden;

}

/* BOX */

.strip-box {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 28px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.2);

    transition: 0.4s;

}

/* HOVER */

.strip-box:hover {

    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-2px);

}

/* ICON */

.strip-icon i {

    color: #fff;

    font-size: 48px;

}

/* TEXT */

.strip-text h4 {

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 0;

    line-height: 1.1;

}

.strip-text p {

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 0;

    line-height: 1.1;

}

/* =========================
CALL STRIP
========================= */

.call-strip {

    background: #cecece;

    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding: 25px 20px;

}

/* CALL ICON */

.call-icon i {

    color: #e3000f;

    font-size: 55px;

}

/* CALL TEXT */

.call-text h5 {

    color: #e3000f;

    font-size: 22px;

    margin-bottom: 5px;

    font-weight: 700;

}

.call-text h2 {

    color: #fff;

    font-size: 52px;

    font-weight: 800;

    margin: 0;

}

/* =========================
MOBILE
========================= */

@media(max-width:991px) {

    .strip-box {

        justify-content: flex-start;

        padding: 20px;

    }

    .call-strip {

        clip-path: none;

        padding: 25px;

    }

    .call-text h2 {

        font-size: 32px;

    }

}

@media(max-width:576px) {

    .strip-icon i {

        font-size: 34px;

    }

    .strip-text h4,
    .strip-text p {

        font-size: 14px;

    }

    .call-text h2 {

        font-size: 24px;

    }

    .call-text h5 {

        font-size: 16px;

    }

}

/* =========================
   BUTTONS
========================= */

.btn-red {
    background: #e3000f;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    transition: 0.4s;
    font-weight: 600;
}

.btn-red:hover {
    background: #e3000f;
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
     font-family: 'Poppins';
    font-size: 42px;
    font-weight: 700;
    color: #e3000f;
    margin-bottom: 20px;
}

/* =========================
   PRODUCT CARDS
========================= */

.products-slider{

    overflow:hidden;

    width:100%;

    position:relative;
}

/* SLIDER TRACK */

.products-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:scrollProducts 25s linear infinite;
}

/* PAUSE ON HOVER */

.products-slider:hover .products-track{

    animation-play-state:paused;
}

/* KEEP ORIGINAL CARD SIZE */

.products-track .col-md-4{

    flex:0 0 auto;

    width:350px;
}

/* AUTO SCROLL */

@keyframes scrollProducts{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:768px){

    .products-track .col-md-4{

        width:280px;
    }

}

.product-card {
     font-family: 'Poppins';
    background: #e3000f;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    color: #fff;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-card h4 {
     font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
}

.product-card p {
     font-family: 'Poppins';
    color: #ccc;
}

/* =========================
   FEATURES SECTION
========================= */

.feature-box {
     font-family: 'Poppins';
    text-align: center;
    padding: 30px;
    transition: 0.4s;
}

.feature-box i {
    font-size: 50px;
    color: #c4#e3000f0;
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-8px);
}

/* =========================
   PAGE BANNER
========================= */

.page-banner {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(196, 0, 0, 0.7)),
        url('../images/banner.jpg');
 font-family: 'Poppins';
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.page-banner h1 {
     font-family: 'Poppins';
    font-size: 55px;
    font-weight: 700;
}

/* =========================
   FORM
========================= */

.form-control {
     font-family: 'Poppins';
    border-radius: 0;
    padding: 14px;
    border: 1px solid #ccc;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e3000f;
}

/* =========================
   FOOTER
========================= */

.footer {
     font-family: 'Poppins';
    background: var(--secbg-color);
    color: #000;
}

.footer h4 {
     font-family: 'Poppins';
    margin-bottom: 20px;
    font-weight: 700;
}

.footer ul {
     font-family: 'Poppins';
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #000;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #e3000f;
    padding-left: 5px;
}

.copyright {
     font-family: 'Poppins';
    background: #e3000f;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

/* =========================
   IMAGE HOVER
========================= */

img {
    transition: 0.5s;
}

img:hover {
    transform: scale(1.03);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px) {

    .hero-section {
        text-align: center;
        height: auto;
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 42px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .navbar-brand {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .hero-section h1 {
        font-size: 34px;
    }

    .page-banner h1 {
        font-size: 36px;
    }

}