/*=========================================
Google Font
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/*=========================================
Variables
=========================================*/

:root{

    --primary:#e40521;
    --primary-dark:#c6001d;
    --secondary:#111827;
    --light:#f8f9fa;
    --white:#ffffff;
    --gray:#6b7280;
    --border:#ececec;

    --radius:18px;

    --shadow-sm:0 5px 20px rgba(0,0,0,.08);
    --shadow-md:0 10px 35px rgba(0,0,0,.12);
    --shadow-lg:0 20px 60px rgba(0,0,0,.18);

    --transition:.35s ease;

}

/*=========================================
Reset
=========================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

section{

    position:relative;
    padding:90px 0;

}

/*=========================================
Typography
=========================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:700;
    color:#111;

}

.display-4{

    font-weight:900;
    line-height:1.1;

}

.display-6{

    font-weight:800;

}

.text-danger{

    color:var(--primary)!important;

}

.text-muted{

    color:var(--gray)!important;

}

.badge{

    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    letter-spacing:.5px;

}

/*=========================================
Buttons
=========================================*/

.btn{

    border-radius:50px;
    font-weight:600;
    transition:.35s;

}

.btn-danger{

    background:var(--primary);
    border:none;

}

.btn-danger:hover{

    background:var(--primary-dark);
    transform:translateY(-3px);
    box-shadow:var(--shadow-md);

}

.btn-outline-light:hover{

    color:#111;

}

/*=========================================
Navbar
=========================================*/

.navbar{

    transition:.4s;
    background:#fff;

}

.navbar-brand{

    font-size:30px;
    font-weight:900;

}

.navbar-nav .nav-link{

    color:#222;
    font-weight:600;
    margin:0 10px;
    position:relative;

}

.navbar-nav .nav-link::after{

    content:'';
    position:absolute;

    left:0;
    bottom:-5px;

    width:0;
    height:3px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:100%;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

/*=========================================
Hero
=========================================*/

.hero{

    background:
    linear-gradient(rgba(255,255,255,.94),
    rgba(255,255,255,.95)),
    url("../images/pattern.png");

    background-size:cover;

    min-height:90vh;

    display:flex;
    align-items:center;

}

.hero h1{

    font-size:64px;

}

.hero p{

    font-size:18px;
    max-width:550px;

}

.hero img{

    border-radius:25px;
    box-shadow:var(--shadow-lg);

    transition:.5s;

}

.hero img:hover{

    transform:scale(1.02);

}

.hero .btn{

    padding:16px 42px;
    font-size:17px;

}

/*=========================================
Section Heading
=========================================*/

.section-title{

    margin-bottom:50px;
    text-align:center;

}

.section-title h2{

    font-size:42px;
    margin-bottom:15px;

}

.section-title p{

    max-width:650px;
    margin:auto;
    color:var(--gray);

}

/*=========================================
General Cards
=========================================*/

.card{

    border:none;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

/*=========================================
Image Radius
=========================================*/

.rounded-4{

    border-radius:22px!important;

}

/*=========================================
Small Utilities
=========================================*/

.bg-light{

    background:#f7f8fa!important;

}

.shadow{

    box-shadow:var(--shadow-sm)!important;

}

.shadow-lg{

    box-shadow:var(--shadow-lg)!important;

}

.fw-black{

    font-weight:900;

}

.py-6{

    padding:100px 0;

}

.mb-6{

    margin-bottom:70px;
}
/*=========================================
Offer Cards
=========================================*/

.offer-card{

    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

    height:100%;

    border:1px solid rgba(0,0,0,.05);

}

.offer-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.offer-card:hover::before{

    transform:scaleX(1);

}

.offer-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.offer-card i{

    width:80px;
    height:80px;

    border-radius:50%;

    background:#fff3f4;

    color:var(--primary);

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    font-size:34px;

    transition:.4s;

}

.offer-card:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotateY(180deg);

}

.offer-card small{

    display:block;

    color:#888;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.offer-card h2{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;

}

.offer-card p{

    margin:0;

    color:var(--gray);

}

.offer-card.active{

    background:linear-gradient(135deg,#e40521,#ff304f);

    color:#fff;

}

.offer-card.active h2,
.offer-card.active p,
.offer-card.active small{

    color:#fff;

}

.offer-card.active i{

    background:#fff;

    color:var(--primary);

}

/*=========================================
Why Naksha Honda
=========================================*/

.feature-card{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.feature-card h5{

    margin-top:20px;

    margin-bottom:15px;

    font-weight:700;

}

.feature-card p{

    color:var(--gray);

    margin-bottom:0;

    font-size:15px;

}

/*=========================================
Icon Box
=========================================*/

.icon-box{

    width:90px;
    height:90px;

    border-radius:50%;

    background:linear-gradient(135deg,#fff3f4,#ffe7ea);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:36px;

    transition:.4s;

    box-shadow:0 12px 30px rgba(228,5,33,.15);

}

.feature-card:hover .icon-box{

    transform:rotate(360deg) scale(1.08);

    background:var(--primary);

    color:#fff;

}

/*=========================================
Service Section
=========================================*/

#service img{

    border-radius:24px;

    transition:.45s;

}

#service img:hover{

    transform:scale(1.03);

}

#service h2{

    font-size:46px;

    margin-bottom:25px;

}

#service p{

    color:var(--gray);

}

#service .d-flex{

    align-items:flex-start;

    margin-bottom:25px;

}

#service i{

    flex-shrink:0;

}

#service h6{

    margin-bottom:8px;

    font-weight:700;

}

#service .btn{

    margin-top:20px;

    padding:14px 38px;

}

/*=========================================
Offer Box
=========================================*/

.offer-box{

    background:#fff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

    height:100%;

}

.offer-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.offer-box h5{

    margin-top:12px;

    color:var(--primary);

    font-size:28px;

    font-weight:800;

}

.offer-box{

    font-weight:600;

    color:#555;

}

/*=========================================
Image Hover
=========================================*/

img{

    transition:.4s;

}

img:hover{

    transform:scale(1.01);

}

/*=========================================
Glass Effect
=========================================*/

.glass{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.4);

}

/*=========================================
Background Decorations
=========================================*/

.bg-light{

    position:relative;

}

.bg-light::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(228,5,33,.04);

    top:-120px;

    right:-100px;

}

.bg-light::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(228,5,33,.04);

    left:-120px;

    bottom:-80px;

}

/*=========================================
Animation
=========================================*/

.offer-card,
.feature-card,
.offer-box{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*=========================================
Featured Offer Section
=========================================*/

.offer-highlight{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

    position:relative;

    overflow:hidden;

}

.offer-highlight::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(228,5,33,.06);

    border-radius:50%;

    right:-70px;
    top:-70px;

}

.offer-highlight h3{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

}

.offer-highlight p{

    color:var(--gray);

    margin:20px 0;

}

.offer-highlight .btn{

    margin-top:15px;

    padding:15px 40px;

}


/*=========================================
Safety Section
=========================================*/

.bg-dark{

    background:#111827!important;

}

.bg-dark h2{

    color:#fff;

    font-size:46px;

}

.bg-dark p{

    color:#d1d5db!important;

}

.bg-dark ul li{

    font-size:17px;

    margin-bottom:18px;

}

.bg-dark img{

    border-radius:22px;

    box-shadow:var(--shadow-lg);

}

.bg-dark .btn{

    border-radius:50px;

    padding:14px 36px;

}


/*=========================================
Exchange Section
=========================================*/

.exchange-section{

    background:linear-gradient(180deg,#ffffff,#f8f9fa);

}

.exchange-section img{

    border-radius:24px;

}

.exchange-section .offer-highlight{

    background:linear-gradient(135deg,#ffffff,#fff8f8);

}


/*=========================================
Testimonials
=========================================*/

.testimonial-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.testimonial-card::before{

    content:"★★★★★";

    color:#ffc107;

    display:block;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card h5{

    margin:15px 0 10px;

    font-weight:700;

}

.testimonial-card p{

    color:var(--gray);

    font-size:15px;

    margin:0;

}


/*=========================================
FAQ
=========================================*/

.accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:18px!important;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.accordion-button{

    background:#fff;

    font-weight:700;

    padding:22px;

    box-shadow:none!important;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:25px;

    color:var(--gray);

}


/*=========================================
Footer
=========================================*/

footer{

    background:#111827!important;

}

footer h3{

    color:#fff;

    font-weight:800;

}

footer h5{

    color:#fff;

    margin-bottom:15px;

}

footer p{

    color:#d1d5db;

    margin-bottom:8px;

}

footer hr{

    border-color:rgba(255,255,255,.12);

    margin:35px 0;

}

footer a{

    color:#d1d5db;

}

footer a:hover{

    color:#fff;

}

footer .text-center{

    color:#9ca3af;

    font-size:15px;

}


/*=========================================
CTA Hover
=========================================*/

.offer-highlight,
.testimonial-card,
.accordion-item{

    transition:.35s;

}

.offer-highlight:hover{

    transform:translateY(-8px);

}
/*=========================================
Bootstrap Modal
=========================================*/

.modal-content{
    border:none;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 80px rgba(0,0,0,.25);
}

.modal-header{
    background:linear-gradient(135deg,var(--primary),#ff3b58);
    color:#fff;
    border:none;
    padding:22px 28px;
}

.modal-header h4{
    color:#fff;
    font-weight:700;
    margin:0;
}

.modal-header .btn-close{
    filter:invert(1);
    opacity:1;
}

.modal-body{
    padding:35px;
    background:#fff;
}

.modal .form-control,
.modal .form-select{

    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
    transition:.3s;
}

.modal .form-control:focus,
.modal .form-select:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(228,5,33,.15);

}

.modal .btn{
    height:55px;
    font-size:17px;
    font-weight:700;
}

/*=========================================
Floating Buttons
=========================================*/

.floating-call,
.floating-whatsapp{

    position:fixed;

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;

    box-shadow:var(--shadow-lg);

    z-index:999;

    transition:.35s;

}

.floating-call{

    right:25px;
    bottom:100px;

    background:#0d6efd;

}

.floating-whatsapp{

    right:25px;
    bottom:25px;

    background:#25D366;

}

.floating-call:hover,
.floating-whatsapp:hover{

    color:#fff;

    transform:translateY(-6px) scale(1.08);

}

/*=========================================
Back To Top
=========================================*/

#backToTop{

    position:fixed;

    left:25px;
    bottom:25px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

/*=========================================
Hover Effects
=========================================*/

.btn,
.offer-card,
.feature-card,
.offer-box,
.offer-highlight,
.testimonial-card,
img{

    transition:all .35s ease;

}

.btn:hover{

    letter-spacing:.4px;

}

/*=========================================
Scrollbar
=========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-dark);
}

/*=========================================
Selection
=========================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*=========================================
Animations
=========================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero img{

    animation:float 5s ease-in-out infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(228,5,33,.5);

    }

    70%{

        box-shadow:0 0 0 18px rgba(228,5,33,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(228,5,33,0);

    }

}

.floating-call,
.floating-whatsapp{

    animation:pulse 2.5s infinite;

}

/*=========================================
Responsive
=========================================*/

@media (max-width:991px){

.hero{

    min-height:auto;
    text-align:center;
    padding:80px 0;

}

.hero h1{

    font-size:46px;

}

.hero p{

    margin:auto auto 25px;

}

.section-title h2{

    font-size:34px;

}

#service h2,
.bg-dark h2{

    font-size:36px;

}

.offer-highlight{

    padding:35px;

}

.modal-body{

    padding:25px;

}

}

@media (max-width:768px){

section{

    padding:70px 0;

}

.hero h1{

    font-size:38px;

}

.display-6{

    font-size:32px;

}

.offer-card{

    padding:28px;

}

.feature-card{

    padding:30px 22px;

}

.offer-highlight h3{

    font-size:32px;

}

.offer-box h5{

    font-size:24px;

}

.modal-content{

    margin:15px;

}

.floating-call{

    width:55px;
    height:55px;
    right:18px;
    bottom:88px;

}

.floating-whatsapp{

    width:55px;
    height:55px;
    right:18px;
    bottom:18px;

}

}

@media (max-width:576px){

.hero{

    padding-top:60px;

}

.hero h1{

    font-size:32px;

}

.hero p{

    font-size:15px;

}

.btn-lg{

    width:100%;

}

.offer-card h2{

    font-size:34px;

}

.section-title h2{

    font-size:28px;

}

#service h2,
.bg-dark h2{

    font-size:30px;

}

.offer-highlight{

    padding:25px;

}

.offer-highlight h3{

    font-size:28px;

}

.modal-body{

    padding:20px;

}

footer{

    text-align:center;

}

footer .row>div{

    margin-bottom:20px;

}

}

/*=========================================
Extra Utilities
=========================================*/

.object-fit-cover{
    object-fit:cover;
}

.rounded-xl{
    border-radius:24px;
}

.shadow-hover:hover{
    box-shadow:var(--shadow-lg)!important;
}

.transition{
    transition:all .35s ease;
}

.text-primary-red{
    color:var(--primary);
}

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

.border-radius{
    border-radius:20px;
}
/* Ripple */

.btn{
    position:relative;
    overflow:hidden;
}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    animation:ripple .6s linear;

    background:rgba(255,255,255,.5);

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}
/*=========================================
Scroll Progress
=========================================*/

#progressBar{

    position:fixed;

    top:0;
    left:0;

    width:0;

    height:4px;

    background:#e40521;

    z-index:99999;

    transition:.15s;

}

/*=========================================
Reveal Animation
=========================================*/

.offer-card,
.feature-card,
.testimonial-card{

    opacity:0;

    transform:translateY(40px);

}

.offer-card.show,
.feature-card.show,
.testimonial-card.show{

    opacity:1;

    transform:translateY(0);

    transition:.7s;

}