/* === GOOGLE FONT === */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* === GLOBAL === */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}
.custom-container {
    max-width: 1655px;
}

/* === TOPBAR === */

.topbar{
    background:#5a0000;
    padding:9px 0;
}

.topbar-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:18px;
}

.topbar-right a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:6px;
    transition:0.3s;
}

.topbar-right a:hover{
    color:#ff6a00;
}

.topbar-right i{
    font-size:12px;
}


/* === SOCIAL ICONS === */

.social-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.social-icons a{
    font-size:14px;
}


/* === NAVBAR === */

.navbar{
    width:100%;
    background:#fff;
    height:95px;
    border-bottom:1px solid #f1f1f1;
    position:relative;
    z-index:999;
}

.navbar-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100%;
}


/* === LOGO === */

.logo img{
    width:150px;
    display:block;
}


/* === NAV MENU === */

.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    text-decoration:none;
    color:#111;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    transition:0.3s;
    letter-spacing:0.3px;
}


/* ACTIVE MENU */

.nav-links li a.active{
    color:#ff6600;
}

.nav-links li a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-33px;
    width:100%;
    height:2px;
    background:#ff6600;
}


/* HOVER EFFECT */

.nav-links li a:hover{
    color:#ff6600;
}


/* DROPDOWN ICON */

.dropdown i{
    font-size:10px;
    margin-left:5px;
}


/* === CTA BUTTON === */

.dealership-btn{
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    height:52px;
    padding:0 34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:3px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    transition:0.3s;
    white-space:nowrap;
}

.dealership-btn:hover{
    background:#e85d00;
}


/* === MOBILE TOGGLE === */

.menu-toggle{
    width:42px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
}

.menu-toggle span{
    width:100%;
    height:3px;
    background:#111;
    border-radius:10px;
    transition:0.3s;
}


/* === RESPONSIVE === */

@media(max-width:991px){

    .topbar{
        display:none;
    }

    .navbar{
        height:80px;
    }

    .logo img{
        width:120px;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:25px;
        gap:25px;
        border-top:1px solid #eee;
        display:none;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-links{
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
        width:100%;
    }

    .nav-links li a{
        font-size:15px;
    }

    .nav-links li a.active::after{
        display:none;
    }

    .dealership-btn{
        width:100%;
    }

}


@media(max-width:576px){

    .navbar{
        height:75px;
    }

    .logo img{
        width:110px;
    }

}
/* === HERO SECTION === */
section.hero-section {
     position: relative;
     width: 100%;
     /* min-height: 800px; */
     overflow: hidden;
     background: url("../images/hero-product.png");
     background-size: cover;
     background-position: center;
}
/*.hero-section{
    width:100%;
    background:#f8f8f8;
    padding:70px 0 60px;
    overflow:hidden;
}*/

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding: 120px 0;
}


/* === LEFT CONTENT === */

.hero-content{
    width:48%;
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size: 72px;
    line-height:1.02;
    font-weight:800;
    color:#4f0505;
    margin-bottom:28px;
    letter-spacing:-2px;
    text-transform: uppercase;
}

.hero-content h1 span{
    color:#ff6600;
}

.hero-content p{
    font-size:23px;
    line-height:1.7;
    color:#333;
    max-width:620px;
    margin-bottom:42px;
    font-weight:400;
}


/* === FEATURES === */

.hero-features{
    display:flex;
    align-items:flex-start;
    gap:42px;
    margin-bottom:48px;
}

.feature-item{
    text-align:center;
}

.feature-icon{
    width:72px;
    height:72px;
    clip-path:polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0 50%
    );
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 18px;
}

.feature-icon.dark{
    background:#4d0000;
}

.feature-icon.orange{
    background:#ff6600;
}

.feature-icon i{
    color:#fff;
    font-size:28px;
}

.feature-item h5{
    font-size:18px;
    line-height:1.5;
    color:#111;
    font-weight:500;
}


/* === BUTTONS === */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
}

.btn-primary-custom{
    height:66px;
    padding:0 36px;
    background:#ff6600;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    border-radius:3px;
    transition:0.3s;
}

.btn-primary-custom:hover{
    background:#e75d00;
}

.btn-outline-custom{
    height:66px;
    padding:0 34px;
    border:2px solid #c9a8a8;
    color:#4f0505;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    border-radius:3px;
    transition:0.3s;
    background:#fff;
}

.btn-outline-custom:hover{
    background:#4f0505;
    color:#fff;
    border-color:#4f0505;
}


/* === HERO IMAGE === */

.hero-image{
    width:52%;
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.hero-bg-circle{
    position:absolute;
    width:900px;
    height:900px;
    background:#efe8e5;
    border-radius:50%;
    right:-250px;
    top:50%;
    transform:translateY(-50%);
}

.hero-image img{
    width:100%;
    max-width:820px;
    position:relative;
    z-index:2;
}


/* === RESPONSIVE === */

@media(max-width:1200px){

    .hero-content h1{
        font-size:62px;
    }

    .hero-content p{
        font-size:20px;
    }

}


@media(max-width:991px){

    .hero-section{
        padding:70px 0;
    }

    .hero-wrapper{
        flex-direction:column;
    }

    .hero-content,
    .hero-image{
        width:100%;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content p{
        margin:auto auto 40px;
    }

    .hero-features{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-bg-circle{
        width:700px;
        height:700px;
        right:-150px;
    }

}


@media(max-width:767px){

    .hero-section{
        padding:50px 0;
    }

    .hero-content h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-features{
        gap:24px;
    }

    .feature-icon{
        width:60px;
        height:60px;
    }

    .feature-icon i{
        font-size:22px;
    }

    .feature-item h5{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
        font-size:15px;
    }

    .hero-bg-circle{
        width:450px;
        height:450px;
        right:-120px;
    }

}

/* === PRODUCTS SECTION === */

.products-section{
    width:100%;
    padding:95px 0 90px;
    background:#ffffff;
    overflow:hidden;
}


/* === CONTAINER === */

.custom-container{
    width:100%;
    max-width:1655px;
    margin:auto;
    padding:0 25px;
}


/* === SECTION TITLE === */

.section-title{
    text-align:center;
    margin-bottom:58px;
}

.section-title h2{
    font-size:64px;
    line-height:1;
    font-weight:800;
    color:#4d0505;
    letter-spacing:-1px;
    text-transform:uppercase;
}


/* === PRODUCTS GRID === */

.products-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:26px;
}


/* === PRODUCT CARD === */

.product-card{
    background:#fff;
    border:1px solid #e7dfdf;
    border-radius:8px;
    padding:34px 28px 30px;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}


/* === PRODUCT IMAGE === */

.product-image{
    width:100%;
    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}

.product-image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    transition:0.4s;
}

.product-card:hover .product-image img{
    transform:scale(1.04);
}


/* === PRODUCT CONTENT === */

.product-content{
    text-align:center;
}

.product-content h3{
    font-size:31px;
    line-height:1.3;
    font-weight:700;
    color:#3f0505;
    margin-bottom:18px;
    letter-spacing:-0.3px;
}

.product-content p{
    font-size:22px;
    line-height:1.75;
    color:#333;
    margin-bottom:34px;
    font-weight:400;
}


/* === BUTTON === */

.product-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    color:#ff6600;
    transition:0.3s;
    letter-spacing:0.3px;
}

.product-btn i{
    font-size:16px;
    transition:0.3s;
}

.product-btn:hover{
    color:#d95300;
}

.product-btn:hover i{
    transform:translateX(5px);
}


/* === RESPONSIVE === */

@media(max-width:1400px){

    .products-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .section-title h2{
        font-size:54px;
    }

}


@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .product-content h3{
        font-size:26px;
    }

    .product-content p{
        font-size:18px;
    }

}


@media(max-width:991px){

    .products-section{
        padding:75px 0;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2{
        font-size:44px;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:767px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .products-section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .product-card{
        padding:28px 22px;
    }

    .product-image{
        height:210px;
    }

    .product-content h3{
        font-size:22px;
    }

    .product-content p{
        font-size:16px;
        line-height:1.7;
    }

    .product-btn{
        font-size:16px;
    }

}
/* === WHY CHOOSE SECTION === */

.why-choose-section{
    width:100%;
    background:#f8f6f5;
    overflow:hidden;
    position:relative;
    padding:0;
}


/* === CONTAINER === */

.custom-container{
    width:100%;
    max-width:1655px;
    margin:auto;
    padding:0 25px;
}


/* === WRAPPER === */

.why-choose-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:520px;
}


/* === LEFT SIDE === */

.why-left{
    width:42%;
    padding:70px 0;
    position:relative;
    z-index:2;
}

.section-heading h2{
    font-size: 60px;
    line-height:1.15;
    font-weight:800;
    color:#4c0505;
    letter-spacing:-1px;
    margin-bottom:28px;
    text-transform:uppercase;
}

.section-heading h2 span{
    color:#ff6600;
}

.section-heading p{
    font-size:23px;
    line-height:1.8;
    color:#2f2f2f;
    max-width:640px;
    margin-bottom:42px;
}


/* === FEATURES === */

.why-features{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.why-feature-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.why-feature-item span{
    min-width:32px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#ff6600;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-feature-item span i{
    color:#fff;
    font-size:14px;
}

.why-feature-item h5{
    font-size:21px;
    line-height:1.6;
    font-weight:500;
    color:#222;
}
.why-choose-section .custom-container {
    width:100%;
    max-width: 96%;
    padding:0 25px;
    margin-left: 5%;
    overflow: hidden;
}

/* === RIGHT SIDE === */

.why-right{
    width:58%;
    height:520px;
    position:relative;
    display:flex;
    align-items:stretch;
    justify-content:flex-end;
    overflow:hidden;
}


/* === IMAGE STYLE === */

.why-image{
    position:relative;
    overflow:hidden;
    transform:skewX(-18deg);
    border-radius:6px;
    background:#ddd;
    transition: 0.3s;
}

.why-image img{
    height:100%;
    object-fit:cover;
    transform:skewX(18deg) scale(1.08);
    background-size: cover;
    left: -135%;
    position: absolute;
}
.why-image:hover{
    width: 100%;
    cursor:pointer
}
.why-image:hover img{
    height:100%;
    object-fit:cover;
    transform:skewX(18deg) scale(1.08);
    background-size: cover;
    left: 0%;
    position: absolute;
}

/* === INDIVIDUAL IMAGES === */

.image-one{
    width:31%;
    margin-right:20px;
}

.image-two{
    width:28%;
    margin-right:20px;
}

.image-three{
    width:28%;
}


/* === ORANGE LINE === */

.orange-line{
    position:absolute;
    width:10px;
    height:320px;
    background:#ff6600;
    right: 0;
    top:100px;
    border-radius:30px;
    transform:skewX(-18deg);
}


/* === DOT PATTERN === */

.dot-pattern{
    position:absolute;
    width:120px;
    height:90px;
    top:25px;
    left: 25px;
    background-image:radial-gradient(#ff6600 1.8px, transparent 1.8px);
    background-size:12px 12px;
    opacity:0.5;
}


/* === RESPONSIVE === */

@media(max-width:1400px){

    .section-heading h2{
        font-size:54px;
    }

    .section-heading p{
        font-size:20px;
    }

    .why-feature-item h5{
        font-size:18px;
    }

}


@media(max-width:1200px){

    .why-choose-wrapper{
        gap:40px;
    }

    .why-left{
        width:45%;
    }

    .why-right{
        width:55%;
    }

    .section-heading h2{
        font-size:46px;
    }

}


@media(max-width:991px){

    .why-choose-wrapper{
        flex-direction:column;
        padding:70px 0;
    }

    .why-left{
        width:100%;
        padding:0;
    }

    .why-right{
        width:100%;
        height:420px;
    }

    .section-heading{
        text-align:center;
    }

    .section-heading p{
        margin:auto auto 35px;
    }

    .why-features{
        align-items:center;
    }

}


@media(max-width:767px){

    .why-choose-section{
        padding:60px 0;
    }

    .why-choose-wrapper{
        padding:0;
        gap:45px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:16px;
        line-height:1.7;
    }

    .why-feature-item{
        align-items:flex-start;
    }

    .why-feature-item h5{
        font-size:15px;
        line-height:1.6;
    }

    .why-right{
        height:260px;
    }

    .image-one{
        width:33%;
        margin-right:10px;
    }

    .image-two{
        width:30%;
        margin-right:10px;
    }

    .image-three{
        width:30%;
    }

    .orange-line{
        width:6px;
        height:170px;
        right:5px;
        top:45px;
    }

    .dot-pattern{
        width:70px;
        height:60px;
        left:0;
        top:0;
    }

}
/* === STATS SECTION === */

.stats-section{
    width:100%;
    padding:34px 0;
    background:
    linear-gradient(
        90deg,
        #530000 0%,
        #730000 25%,
        #5d0000 50%,
        #730000 75%,
        #530000 100%
    );
    position:relative;
    overflow:hidden;
}


/* === BACKGROUND OVERLAY === */

.stats-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top left,
    rgba(255,120,0,0.18),
    transparent 35%),
    radial-gradient(circle at bottom right,
    rgba(255,80,0,0.14),
    transparent 40%);
    pointer-events:none;
}


/* === CONTAINER === */

.custom-container{
    width:100%;
    max-width:1655px;
    margin:auto;
    padding:0 25px;
    position:relative;
    z-index:2;
}


/* === WRAPPER === */

.stats-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}


/* === ITEM === */

.stats-item{
    display:flex;
    align-items:center;
    gap:22px;
    position:relative;
}


/* === ICON === */

.stats-icon{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.stats-icon i{
    font-size:48px;
    color:#ff7a00;
}


/* === CONTENT === */

.stats-content h3{
    font-size:54px;
    line-height:1;
    color:#ffffff;
    font-weight:800;
    margin-bottom:10px;
    letter-spacing:-1px;
}

.stats-content p{
    font-size:22px;
    color:#ffffff;
    font-weight:500;
    opacity:0.95;
    line-height:1.2;
}


/* === RESPONSIVE === */

@media(max-width:1400px){

    .stats-content h3{
        font-size:44px;
    }

    .stats-content p{
        font-size:18px;
    }

    .stats-icon i{
        font-size:42px;
    }

}


@media(max-width:1200px){

    .stats-wrapper{
        gap:25px;
    }

    .stats-content h3{
        font-size:38px;
    }

}


@media(max-width:991px){

    .stats-section{
        padding:45px 0;
    }

    .stats-wrapper{
        flex-wrap:wrap;
        justify-content:center;
        row-gap:40px;
    }

    .stats-item{
        width:45%;
        justify-content:center;
    }

}


@media(max-width:767px){

    .stats-section{
        padding:40px 0;
    }

    .stats-wrapper{
        flex-direction:column;
        gap:30px;
    }

    .stats-item{
        width:100%;
        justify-content:flex-start;
    }

    .stats-icon{
        width:50px;
        height:50px;
    }

    .stats-icon i{
        font-size:34px;
    }

    .stats-content h3{
        font-size:32px;
    }

    .stats-content p{
        font-size:16px;
    }

}
/* === ABOUT SECTION === */

.about-section{
    width:100%;
    background:#ffffff;
    padding:90px 0;
    overflow:hidden;
    position:relative;
}


/* === CONTAINER === */

.custom-container{
    width:100%;
    max-width:1655px;
    margin:auto;
    padding:0 25px;
}


/* === WRAPPER === */

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:65px;
}


/* === LEFT SIDE === */

.about-image-area{
    width:48%;
}

.about-image{
    position:relative;
    border-radius:10px;
    overflow:hidden;
    background:#f4f4f4;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:10px;
}


/* === EXPERIENCE BOX === */

.experience-box{
    position:absolute;
    right:0;
    bottom:0;
    width:245px;
    height:245px;
    background:#ff6600;
    border-top-left-radius:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.experience-box h3{
    font-size:78px;
    line-height:1;
    font-weight:800;
    color:#fff;
    margin-bottom:12px;
    letter-spacing:-2px;
}

.experience-box span{
    font-size:34px;
    line-height:1.3;
    color:#fff;
    font-weight:700;
    text-transform:uppercase;
}


/* === RIGHT SIDE === */

.about-content{
    width:52%;
}


/* === SECTION HEADING === */

.section-heading h2{
    font-size:64px;
    line-height:1;
    font-weight:800;
    color:#4c0505;
    margin-bottom:28px;
    text-transform:uppercase;
    letter-spacing:-1px;
}

.section-heading h2 span{
    color:#ff6600;
}

.section-heading p{
    font-size:23px;
    line-height:1.8;
    color:#2d2d2d;
    margin-bottom:42px;
    max-width:850px;
}


/* === FEATURES === */

.about-features{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    border:1px solid #e5dcdc;
    border-radius:8px;
    padding:34px 36px;
    margin-bottom:38px;
}


/* === FEATURE ITEM === */

.about-feature-item{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1;
}

.feature-icon{
    min-width:60px;
    width: 80px;
    height: 80px;
    border-radius:50%;
    background:#fff5ef;
    display:flex;
    align-items:center;
    justify-content:center;
}
.feature-icon img {
    width: 55%;
}
.feature-icon i{
    font-size:28px;
    color:#ff6600;
}

.feature-text h5{
    font-size:21px;
    line-height:1.5;
    color:#222;
    font-weight:600;
}


/* === BUTTON === */

.about-btn-wrap{
    display:flex;
    align-items:center;
}

.about-btn{
    height:68px;
    padding:0 34px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    font-size:18px;
    font-weight:700;
    border-radius:4px;
    transition:0.3s;
    letter-spacing:0.2px;
}

.about-btn:hover{
    background:#e85d00;
}

.about-btn i{
    transition:0.3s;
}

.about-btn:hover i{
    transform:translateX(5px);
}


/* === RESPONSIVE === */

@media(max-width:1400px){

    .section-heading h2{
        font-size:54px;
    }

    .section-heading p{
        font-size:20px;
    }

    .experience-box{
        width:210px;
        height:210px;
    }

    .experience-box h3{
        font-size:64px;
    }

    .experience-box span{
        font-size:28px;
    }

}


@media(max-width:1200px){

    .about-wrapper{
        gap:45px;
    }

    .section-heading h2{
        font-size:46px;
    }

    .feature-text h5{
        font-size:18px;
    }

}


@media(max-width:991px){

    .about-section{
        padding:70px 0;
    }

    .about-wrapper{
        flex-direction:column;
    }

    .about-image-area,
    .about-content{
        width:100%;
    }

    .section-heading{
        text-align:center;
    }

    .section-heading p{
        margin:auto auto 35px;
    }

}


@media(max-width:767px){

    .about-section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:16px;
        line-height:1.7;
    }

    .about-features{
        flex-direction:column;
        align-items:flex-start;
        padding:25px;
    }

    .feature-text h5{
        font-size:16px;
    }

    .experience-box{
        width:145px;
        height:145px;
        padding:10px;
    }

    .experience-box h3{
        font-size:42px;
        margin-bottom:8px;
    }

    .experience-box span{
        font-size:18px;
    }

    .about-btn{
        width:100%;
        font-size:15px;
    }

}
/* === DEALER SECTION === */

.dealer-section{
    width:100%;
    padding:38px 0;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(35, 8, 3, 0.78),
        rgba(35, 8, 3, 0.78)
    ),
    url("images/dealer-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


/* === CONTAINER === */

.custom-container{
    width:100%;
    max-width:1655px;
    margin:auto;
    padding:0 25px;
}


/* === WRAPPER === */

.dealer-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}


/* === LEFT CONTENT === */

.dealer-content{
    width:36%;
}

.dealer-content h2{
    font-size:52px;
    line-height:1.05;
    color:#ffffff;
    font-weight:800;
    margin-bottom:22px;
    text-transform:uppercase;
    letter-spacing:-1px;
}

.dealer-content h2 span{
    color:#ff6600;
}

.dealer-content p{
    font-size:23px;
    line-height:1.8;
    color:#ffffff;
    opacity:0.95;
    max-width:520px;
    margin-bottom:38px;
}


/* === BUTTON === */

.dealer-btn{
    height:74px;
    padding:0 38px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    font-size:18px;
    font-weight:700;
    border-radius:4px;
    transition:0.3s;
    letter-spacing:0.3px;
}

.dealer-btn:hover{
    background:#e65c00;
}

.dealer-btn i{
    transition:0.3s;
}

.dealer-btn:hover i{
    transform:translateX(5px);
}


/* === FORM BOX === */

.dealer-form-box{
    width:100%;
    background:#ffffff;
    border-radius:18px;
    padding:38px;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
}


/* === FORM GRID === */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:22px;
    margin-bottom:22px;
}


/* === FORM GROUP === */

.form-group{
    width:100%;
}

.form-group input,
.form-group select{
    width:100%;
    height:72px;
    border:1px solid #dddddd;
    border-radius:4px;
    padding:0 24px;
    font-size:18px;
    color:#222;
    background:#fff;
    outline:none;
    transition:0.3s;
    font-family:inherit;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#ff6600;
    box-shadow:0 0 0 3px rgba(255,102,0,0.12);
}

.form-group input::placeholder{
    color:#8a8a8a;
}


/* === SELECT === */

.form-group select{
    appearance:none;
    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 22px center;
    background-size:15px;
}


/* === SUBMIT BUTTON === */

.submit-btn{
    width:100%;
    height:72px;
    border:none;
    background:#ff6600;
    color:#fff;
    font-size:19px;
    font-weight:700;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    cursor:pointer;
    transition:0.3s;
    letter-spacing:0.3px;
}

.submit-btn:hover{
    background:#e65c00;
}

.submit-btn i{
    transition:0.3s;
}

.submit-btn:hover i{
    transform:translateX(4px);
}


/* === RESPONSIVE === */

@media(max-width:1400px){

    .dealer-content h2{
        font-size:56px;
    }

    .dealer-content p{
        font-size:20px;
    }

}


@media(max-width:1200px){

    .dealer-wrapper{
        gap:35px;
    }

    .dealer-content{
        width:40%;
    }

    .dealer-form-box{
        width:60%;
    }

}


@media(max-width:991px){

    .dealer-section{
        padding:70px 0;
    }

    .dealer-wrapper{
        flex-direction:column;
    }

    .dealer-content,
    .dealer-form-box{
        width:100%;
    }

    .dealer-content{
        text-align:center;
    }

    .dealer-content p{
        margin:auto auto 30px;
    }

}


@media(max-width:767px){

    .dealer-section{
        padding:60px 0;
    }

    .dealer-content h2{
        font-size:38px;
    }

    .dealer-content p{
        font-size:16px;
        line-height:1.7;
    }

    .dealer-form-box{
        padding:25px;
        border-radius:12px;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .form-group input,
    .form-group select,
    .submit-btn{
        height:58px;
        font-size:15px;
    }

    .dealer-btn{
        width:100%;
        font-size:15px;
        height:60px;
    }

}

/* === FOOTER === */

.footer-section{
    width:100%;
    overflow:hidden;
    background:#120806;
    position:relative;
}


/* === FOOTER TOP === */

.footer-top{
    position:relative;
    padding:70px 0 50px;

    background:
    linear-gradient(
        90deg,
        rgba(45,12,8,0.96),
        rgba(18,8,6,0.96)
    ),
    url("images/footer-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


/* === CONTAINER === */

.custom-container{
    width:100%;
    max-width:1655px;
    margin:auto;
    padding:0 25px;
}


/* === WRAPPER === */

.footer-wrapper{
    display:grid;
    grid-template-columns:
    1.2fr
    1fr
    1.2fr
    1.2fr;

    gap:60px;
}


/* === LOGO === */

.footer-logo{
    display:inline-block;
    margin-bottom:25px;
}

.footer-logo img{
    max-width:230px;
    width:100%;
}


/* === ABOUT TEXT === */

.footer-about p{
    color:#d7d7d7;
    font-size:18px;
    line-height:1.8;
    max-width:320px;
    margin-bottom:32px;
}


/* === SOCIAL ICONS === */

.footer-socials{
    display:flex;
    align-items:center;
    gap:16px;
}

.footer-socials a{
    width:52px;
    height:52px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.18);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
    font-size:18px;
    text-decoration:none;

    transition:0.3s;
}

.footer-socials a:hover{
    background:#ff6600;
    border-color:#ff6600;
    transform:translateY(-4px);
}


/* === HEADINGS === */

.footer-column h3{
    color:#ffffff;
    font-size:28px;
    font-weight:700;
    margin-bottom:28px;
    text-transform:uppercase;
    letter-spacing:0.4px;
}


/* === LINKS === */

.footer-column ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-column ul li{
    margin-bottom:18px;
    position:relative;
}


/* === QUICK LINKS === */

.footer-column ul li a{
    color:#e8e8e8;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.footer-column ul li a:hover{
    color:#ff6600;
    padding-left:5px;
}


/* === PRODUCT BULLETS === */

.footer-products ul li{
    padding-left:18px;
}

.footer-products ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:11px;

    width:7px;
    height:7px;
    border-radius:50%;

    background:#ff6600;
}


/* === CONTACT === */

.footer-contact{
    padding-left:35px;
    border-left:1px solid rgba(255,255,255,0.15);
}

.footer-contact ul li{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
}

.footer-icon{
    min-width:22px;
    color:#ffffff;
    font-size:18px;
    margin-top:4px;
}

.footer-contact span{
    color:#e5e5e5;
    font-size:17px;
    line-height:1.8;
}


/* === FOOTER BOTTOM === */

.footer-bottom{
    background:#ff6600;
    padding:18px 0;
}


/* === BOTTOM WRAPPER === */

.footer-bottom-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}


/* === COPYRIGHT === */

.footer-copy{
    color:#ffffff;
    font-size:16px;
    font-weight:500;
}


/* === BOTTOM LINKS === */

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-bottom-links span{
    color:#ffffff;
}

.footer-bottom-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.footer-bottom-links a:hover{
    opacity:0.8;
}


/* === RESPONSIVE === */

@media(max-width:1200px){

    .footer-wrapper{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }

    .footer-contact{
        padding-left:0;
        border-left:none;
    }

}


@media(max-width:767px){

    .footer-top{
        padding:60px 0 40px;
    }

    .footer-wrapper{
        grid-template-columns:1fr;
        gap:45px;
    }

    .footer-column h3{
        font-size:24px;
        margin-bottom:22px;
    }

    .footer-about p,
    .footer-column ul li a,
    .footer-contact span{
        font-size:15px;
    }

    .footer-bottom-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
        flex-wrap:wrap;
    }

    .footer-socials a{
        width:45px;
        height:45px;
        font-size:16px;
    }

}

.about-page-section{
    margin-top: 60px;
    border-top: 4px solid #f9f4f2;
    padding-top: 60px;
}

/* ====================================
   OUR MISSION & VALUES
==================================== */

.mission-values-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    border-top: 4px solid #f9f4f2;
}

.custom-container {
    max-width: 1655px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Heading */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    margin: 0;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3c0d0d;
    font-family: 'Oswald', sans-serif;
}

.section-title h2 span {
    color: #ff6200;
}

/* Grid */

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
}

/* Cards */

.mission-card {
    text-align: center;
    padding: 0 70px;
    position: relative;
}

.mission-border {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

/* Icon */

.icon-box {
    width: 78px;
    height: 78px;
    background: #ff6200;
    margin: 0 auto 30px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: rotate(0deg);

    box-shadow: 0 12px 25px rgba(255, 98, 0, 0.15);
}

.icon-box i {
    color: #fff;
    font-size: 30px;
}

/* Heading */

.mission-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #4a1414;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

/* Text */

.mission-card p {
    font-size: 19px;
    line-height: 1.9;
    color: #333333;
    margin: 0;
    font-weight: 400;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1199px) {

    .section-title h2 {
        font-size: 48px;
    }

    .mission-card {
        padding: 0 40px;
    }

    .mission-card p {
        font-size: 17px;
    }
}

@media (max-width: 991px) {

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-border {
        border: none;
    }

    .mission-card {
        padding: 0;
        max-width: 650px;
        margin: auto;
    }
}

@media (max-width: 767px) {

    .mission-values-section {
        padding: 70px 0;
    }

    .custom-container {
        padding: 0 20px;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .icon-box {
        width: 68px;
        height: 68px;
        border-radius: 16px;
    }

    .icon-box i {
        font-size: 24px;
    }

    .mission-card h3 {
        font-size: 22px;
    }

    .mission-card p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* ===================================
   WHY BRICK MANUFACTURERS TRUST US
=================================== */

.trust-section{
    padding:100px 0;
    background:#f9f4f2;
    overflow:hidden;
}

.trust-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
}

/* Left Image */

.trust-image{
    flex:0 0 48%;
}

.trust-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

/* Right Content */

.trust-content{
    flex:0 0 calc(52% - 70px);
}

.trust-content h2{
    font-size:64px;
    line-height:1.05;
    font-weight:800;
    color:#4a0e0e;
    text-transform:uppercase;
    margin-bottom:28px;
    font-family:'Oswald',sans-serif;
}

.trust-content h2 span{
    color:#ff6200;
}

.trust-content p{
    font-size:22px;
    line-height:1.9;
    color:#444;
    margin-bottom:40px;
    max-width:850px;
}

/* Features */

.trust-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px 40px;
    margin-bottom:40px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.feature-item i{
    color:#ff6200;
    font-size:22px;
    flex-shrink:0;
}

.feature-item span{
    font-size:21px;
    color:#2f2f2f;
    font-weight:500;
}

/* Button */

.trust-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    height:68px;
    padding:0 40px;

    background:#ff6200;
    color:#fff;
    text-decoration:none;

    font-size:17px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;

    border-radius:4px;
    transition:.3s ease;
}

.trust-btn:hover{
    background:#e55600;
    color:#fff;
}

.trust-btn i{
    font-size:15px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1400px){

    .trust-content h2{
        font-size:54px;
    }

    .trust-content p{
        font-size:19px;
    }

    .feature-item span{
        font-size:18px;
    }
}

@media(max-width:1199px){

    .trust-wrapper{
        gap:50px;
    }

    .trust-content h2{
        font-size:46px;
    }

    .trust-image img{
        height:450px;
    }

    .trust-content p{
        font-size:18px;
        line-height:1.8;
    }

    .feature-item span{
        font-size:17px;
    }
}

@media(max-width:991px){

    .trust-wrapper{
        flex-direction:column;
        gap:50px;
    }

    .trust-image,
    .trust-content{
        flex:100%;
        width:100%;
    }

    .trust-content h2{
        font-size:42px;
    }

    .trust-image img{
        height:auto;
    }
}

@media(max-width:767px){

    .trust-section{
        padding:70px 0;
    }

    .trust-content h2{
        font-size:32px;
        line-height:1.2;
    }

    .trust-content p{
        font-size:16px;
        margin-bottom:30px;
    }

    .trust-features{
        grid-template-columns:1fr;
        gap:18px;
    }

    .feature-item span{
        font-size:16px;
    }

    .trust-btn{
        width:100%;
        height:58px;
        font-size:15px;
    }
}

/*======================================
CONTACT SECTION
======================================*/

.contact-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
    margin-top: 60px;
    border-top: 4px solid #f9f4f2;
    padding-top: 60px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap:60px;
    align-items:flex-start;
}

/*============================
LEFT FORM BOX
============================*/

.contact-form-box{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:14px;
    padding:38px;
}

/*============================
FORM
============================*/

.contact-form{
    width:100%;
}

.row-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group textarea{
    width:100%;
    height:58px;
    border:1px solid #e4e4e4;
    border-radius:4px;
    padding:0 18px;
    font-size:15px;
    color:#222;
    outline:none;
    transition:.3s;
    background:#fff;
}

.form-group textarea{
    height:160px;
    padding:18px;
    resize:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#ff5b0a;
    box-shadow:0 0 0 3px rgba(255,91,10,.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#8a8a8a;
}

.submit-btn{
    width:100%;
    height:60px;
    border:none;
    cursor:pointer;
    border-radius:3px;
    background:linear-gradient(90deg,#ff5b0a,#ff6f0f);
    color:#fff;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.submit-btn:hover{
    transform:translateY(-2px);
}

.submit-btn i{
    font-size:18px;
}

/*============================
RIGHT INFO
============================*/

.contact-info-box{
    padding-top:8px;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:26px 0;
    border-bottom:1px dashed #e4e4e4;
}

.border-none{
    border-bottom:none;
}

.info-icon{
    width:82px;
    height:82px;
    min-width:82px;
    border:1px solid #ffb38c;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.info-icon i{
    color:#ff5b0a;
    font-size:34px;
}

.info-content h4{
    margin:0 0 12px;
    font-size:24px;
    font-weight:800;
    color:#222;
}

.info-content p{
    margin:0 0 8px;
    font-size:22px;
    color:#444;
    line-height:1.8;
}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1199px){

    .contact-wrapper{
        gap:40px;
    }

    .section-title h2{
        font-size:46px;
    }

    .info-content h4{
        font-size:20px;
    }

    .info-content p{
        font-size:18px;
    }

}

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-info-box{
        padding-top:0;
    }

}

@media(max-width:767px){

    .contact-section{
        padding:70px 0;
    }

    .contact-form-box{
        padding:25px;
    }

    .row-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .section-title h2{
        font-size:34px;
        line-height:1.2;
    }

    .info-item{
        gap:16px;
    }

    .info-icon{
        width:65px;
        height:65px;
        min-width:65px;
    }

    .info-icon i{
        font-size:26px;
    }

    .info-content h4{
        font-size:18px;
    }

    .info-content p{
        font-size:16px;
        line-height:1.6;
    }

    .submit-btn{
        font-size:16px;
        height:55px;
    }

}

/*=========================================
WHY PARTNER WITH CLAY SOFT
=========================================*/

.partner-benefits-section{
    padding:90px 0 85px;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}
.partner-benefits-section h2{
    text-align:center;
}
/*=========================================
HEADING
=========================================*/

.section-heading{
    margin-bottom:65px;
}


.section-heading h2 span{
    color:#ff5b0a;
}

/*=========================================
GRID
=========================================*/

.partner-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    align-items:start;
}

.partner-item{
    text-align:center;
    padding:0 28px;
    position:relative;
    border-right:1px solid #ece6e2;
}

.partner-item.border-none{
    border-right:none;
}

/*=========================================
ICON
=========================================*/

.partner-icon{
    width:68px;
    height:68px;
    margin:0 auto 22px;
    background:#ff5b0a;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    clip-path:polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0% 50%
    );
}

.partner-icon i{
    color:#fff;
    font-size:26px;
}

/*=========================================
TEXT
=========================================*/

.partner-item h4{
    font-size:19px;
    font-weight:800;
    color:#4a0a0a;
    margin-bottom:14px;
    text-transform:uppercase;
    line-height:1.3;
}

.partner-item p{
    color:#333;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

/*=========================================
LAPTOP
=========================================*/

@media(max-width:1400px){

    .partner-grid{
        grid-template-columns:repeat(3,1fr);
        gap:50px 0;
    }

    .partner-item:nth-child(3){
        border-right:none;
    }

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px){

    .partner-benefits-section{
        padding:75px 0;
    }

    .section-heading h2{
        font-size:42px;
        line-height:1.2;
    }

    .partner-grid{
        grid-template-columns:repeat(2,1fr);
        gap:50px 0;
    }

    .partner-item{
        border-right:none;
        padding:0 20px;
    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

    .partner-benefits-section{
        padding:65px 0;
    }

    .section-heading{
        margin-bottom:45px;
    }

    .section-heading h2{
        font-size:30px;
        line-height:1.3;
    }

    .partner-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .partner-item{
        padding:0;
    }

    .partner-icon{
        width:60px;
        height:60px;
        margin-bottom:18px;
    }

    .partner-icon i{
        font-size:22px;
    }

    .partner-item h4{
        font-size:17px;
    }

    .partner-item p{
        font-size:15px;
        line-height:1.7;
    }

}


/*=========================================
DEALERSHIP FORM SECTION
=========================================*/

.dealership-form-section{
    padding:100px 0;
    background:#ffffff;
}

.dealership-wrapper{
    display:grid;
    grid-template-columns: 46% 54%;
    border:1px solid #e8e2de;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

/*=========================================
LEFT SIDE
=========================================*/

.eligibility-box{
    padding:45px 40px 0;
    border-right:1px solid #e8e2de;
}

.section-title-left h2{
    font-size:56px;
    line-height:1;
    text-transform:uppercase;
    color:#4d0909;
    font-weight:800;
    letter-spacing:.5px;
}
.section-title-left h2 span{
    color:#ff5a0a;
}

.eligibility-list{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.eligibility-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    font-size:20px;
    color:#333;
    line-height:1.6;
    font-weight:500;
}

.eligibility-list li i{
    color:#ff5b0a;
    margin-top:5px;
    font-size:18px;
}

.eligibility-image{
    overflow:hidden;
    border-radius:6px;
}

.eligibility-image img{
    width:100%;
    height:370px;
    object-fit:cover;
    display:block;
}

/*=========================================
RIGHT FORM
=========================================*/

.dealer-form-box{
    padding:45px 40px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-group{
    margin-bottom:18px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #e7e3df;
    background:#fff;
    height:58px;
    border-radius:4px;
    padding:0 18px;
    font-size:16px;
    color:#444;
    outline:none;
    transition:.3s;
}

.form-group textarea{
    height:120px;
    padding-top:18px;
    resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ff5b0a;
}

.form-group select{
    cursor:pointer;
}

.dealer-submit-btn{
    width:100%;
    height:62px;
    border:none;
    border-radius:4px;
    background:linear-gradient(90deg,#ff5b0a,#ff650d);
    color:#fff;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
    transition:.3s;
}

.dealer-submit-btn i{
    margin-left:10px;
}

.dealer-submit-btn:hover{
    transform:translateY(-2px);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1400px){

    .section-title-left h2{
        font-size:42px;
    }

    .eligibility-list li{
        font-size:17px;
    }

}

@media(max-width:991px){

    .dealership-wrapper{
        grid-template-columns:1fr;
    }

    .eligibility-box{
        border-right:none;
        border-bottom:1px solid #e8e2de;
        padding-bottom:40px;
    }

}

@media(max-width:767px){

    .dealership-form-section{
        padding:70px 0;
    }

    .eligibility-box,
    .dealer-form-box{
        padding:30px 25px;
    }

    .section-title-left h2{
        font-size:30px;
        line-height:1.2;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .eligibility-list li{
        font-size:15px;
    }

    .eligibility-image img{
        height:250px;
    }

    .dealer-submit-btn{
        height:56px;
        font-size:16px;
    }

}

/*=========================================
  DEALER SUPPORT SECTION
=========================================*/

.dealer-support-section{
    padding:80px 0;
    background:#f8f8f8;
}

.dealer-support-wrapper{
    background:linear-gradient(
        90deg,
        #650000 0%,
        #7b0505 30%,
        #600000 100%
    );
    border-radius:12px;
    padding:22px 20px 26px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* Heading */

.dealer-support-heading{
    text-align:center;
    margin-bottom:22px;
}

.dealer-support-heading h2{
    margin:0;
    color:#fff;
    font-size:52px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.dealer-support-heading h2 span{
    color:#ff5a0a;
}

/* Grid */

.dealer-support-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

/* Card */

.support-card{
    border:1px solid rgba(255,255,255,.12);
    border-radius:8px;
    min-height:120px;
    padding:22px 20px;
    display:flex;
    align-items:center;
    transition:.3s;
}

.support-card:hover{
    transform:translateY(-5px);
    border-color:#ff5a0a;
}

.support-icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:50%;
    background:#ff5a0a;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
}

.support-icon i{
    color:#fff;
    font-size:28px;
}

.support-content h4{
    margin:0 0 8px;
    color:#fff;
    font-size:17px;
    font-weight:800;
    line-height:1.3;
}

.support-content p{
    margin:0;
    color:#f1f1f1;
    font-size:14px;
    line-height:1.7;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media(max-width:1199px){

    .dealer-support-heading h2{
        font-size:42px;
    }

    .dealer-support-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .dealer-support-section{
        padding:60px 0;
    }

    .dealer-support-wrapper{
        padding:20px 15px;
    }

    .dealer-support-heading{
        margin-bottom:18px;
    }

    .dealer-support-heading h2{
        font-size:30px;
        line-height:1.3;
    }

    .dealer-support-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .support-card{
        padding:18px;
    }

    .support-icon{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .support-icon i{
        font-size:22px;
    }

    .support-content h4{
        font-size:15px;
    }

    .support-content p{
        font-size:13px;
    }
}

/* ==========================
   OUR PRESENCE SECTION
========================== */

.dealer-presence-section{
    padding:70px 0;
    background:#fff;
    overflow:hidden;
}

.section-heading{
    margin-bottom:55px;
}

.section-heading h2{
    font-size:58px;
    font-weight:800;
    line-height:1;
    text-transform:uppercase;
    color:#4b0808;
    margin-bottom:25px;
    font-family:'Bebas Neue', sans-serif;
    letter-spacing:1px;
}



/* Layout */

.presence-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* Left Stats */

.presence-stats{
    width:48%;
    display:flex;
    justify-content:space-between;
}

.presence-item{
    flex:1;
    text-align:center;
    position:relative;
}

.presence-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:90px;
    background:#e3e3e3;
}

.presence-item h3{
    font-size:44px;
    font-weight:800;
    color:#ff5a00;
    line-height:1;
    margin-bottom:12px;
    font-family:'Bebas Neue', sans-serif;
}

.presence-item p{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#2f2f2f;
}

/* Right Map */

.presence-map{
    width:48%;
    position:relative;
}

.presence-map img{
    width:100%;
    display:block;
}

/* Location Pins */

.pin{
    width:18px;
    height:18px;
    background:#ff5a00;
    border:3px solid #fff;
    border-radius:50%;
    position:absolute;
    box-shadow:0 0 0 3px rgba(255,90,0,.15);
}

.pin::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-7px;
    width:0;
    height:0;
    border-left:4px solid transparent;
    border-right:4px solid transparent;
    border-top:8px solid #ff5a00;
}

/* India Cluster */

.pin1{top:26%; left:58%;}
.pin2{top:32%; left:60%;}
.pin3{top:38%; left:56%;}
.pin4{top:42%; left:62%;}
.pin5{top:48%; left:58%;}
.pin6{top:55%; left:54%;}
.pin7{top:58%; left:60%;}
.pin8{top:64%; left:57%;}
.pin9{top:70%; left:53%;}
.pin10{top:47%; left:66%;}
.pin11{top:35%; left:65%;}
.pin12{top:60%; left:65%;}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

    .section-heading h2{
        font-size:48px;
    }

    .presence-item h3{
        font-size:48px;
    }

    .presence-item p{
        font-size:18px;
    }

}

@media(max-width:991px){

    .presence-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .presence-stats,
    .presence-map{
        width:100%;
    }

}

@media(max-width:767px){

    .dealer-presence-section{
        padding:55px 0;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:38px;
    }

    .presence-stats{
        flex-wrap:wrap;
        row-gap:35px;
    }

    .presence-item{
        width:50%;
        flex:0 0 50%;
    }

    .presence-item:nth-child(2)::after{
        display:none;
    }

    .presence-item h3{
        font-size:40px;
    }

    .presence-item p{
        font-size:16px;
    }

}

@media(max-width:575px){

    .presence-item{
        width:100%;
        flex:0 0 100%;
    }

    .presence-item::after{
        display:none !important;
    }

    .presence-item h3{
        font-size:36px;
    }

}

/* ===
   GALLERY SECTION START
==== */

.gallery-section{
    width: 100%;
    padding: 0px 0px 70px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.gallery-section .container{
    width: 92%;
    max-width: 1320px;
    margin: auto;
}

/* TITLE */

.gallery-title{
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title h2{
    font-size: 42px;
    font-weight: 700;
    color: #066b3b;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.gallery-title p{
    font-size: 18px;
    color: #444;
    max-width: 760px;
    margin: auto;
    line-height: 1.7;
}

/* FILTER */

.gallery-filter{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

/* BUTTON */

.filter-btn{
    height: 52px;
    padding: 0 28px;
    border-radius: 14px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover{
    border-color: #4f0505;
    color: #4f0505;
}

.filter-btn.active{
    background: linear-gradient(90deg, #4f0505, #4f0505);
    color: #ffffff;
    border-color: transparent;
}

/* GRID */

.gallery-grid{
      display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));
    gap:16px;
}

/* ITEM */

.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #f8f8f8;
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/* FIXED HEIGHTS */

.gallery-item{
    width:100%;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
    background:#f8f8f8;
    height:255px;
    width:100%;
}

.gallery-item:hover img{
    transform: scale(1.08);
}

/* OVERLAY */

.gallery-item::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover::after{
    opacity: 1;
}

/* ===
   LIGHTBOX
==== */

.gallery-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.gallery-lightbox.active{
    visibility: visible;
    opacity: 1;
}

/* IMAGE */

.lightbox-image{
    max-width: 80%;
    max-height: 82vh;
    border-radius: 10px;
    box-shadow: 0 0 35px rgba(0,0,0,0.4);
}

/* CLOSE */

.lightbox-close{
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 48px;
    cursor: pointer;
    line-height: 1;
}

/* NAV BUTTON */

.lightbox-prev,
.lightbox-next{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    position: absolute;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover{
    background: #4f0505;
}

/* POSITION */

.lightbox-prev{
    left: 40px;
}

.lightbox-next{
    right: 40px;
}

/* HIDE */

.gallery-item.hide{
    display: none;
}

/* ===
   RESPONSIVE
==== */

@media(max-width: 1200px){

    .gallery-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width: 768px){

    .gallery-section{
        padding: 50px 0;
    }

    .gallery-title h2{
        font-size: 32px;
    }

    .gallery-title p{
        font-size: 15px;
    }

    .gallery-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .gallery-item{
        height: 200px;
    }

    .filter-btn{
        padding: 0 20px;
        height: 46px;
        font-size: 14px;
    }

    .lightbox-image{
        max-width: 92%;
    }

    .lightbox-prev,
    .lightbox-next{
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev{
        left: 10px;
    }

    .lightbox-next{
        right: 10px;
    }

}

@media(max-width: 480px){

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-item{
        height: 240px;
    }

}

/* === GALLERY END ==== */