/* ===============================
   GOOGLE FONT & RESET
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#F5F7FB;

    color:#111;

    line-height:1.6;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

.menu-toggle{
    display: none;
}


/* ===============================
          COLORS
================================= */

:root{

--navy:#071B36;

--gold:#D4AF37;

--white:#fff;

--light:#F8F9FC;

--shadow:0 15px 40px rgba(0,0,0,.08);

}


/* ===============================
           HEADER
================================= */

.header{

position:sticky;

top:0;

z-index:999;

background:rgba(7,27,54,.96);

backdrop-filter:blur(12px);

box-shadow:0 5px 20px rgba(0,0,0,.1);

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:85px;

}

.logo img{

height:65px;

width:auto;

}

nav ul{

display:flex;

gap:40px;

margin-right: -400px; 

}

nav a{

color:#fff;

font-weight:600;

transition:.3s;

}

nav a:hover{

color:var(--gold);

}

.call-btn{

padding:14px 30px;

background:var(--gold);

color:#111;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.call-btn:hover{

transform:translateY(-4px);

}


/* ===============================
             HERO
================================= */

.hero{

height:90vh;

background:url("imgs/banner.jpg") center center/cover;

position:relative;

display:flex;

align-items:center;

}

.overlay{

position:absolute;

inset:0;

background:rgba(6,20,40,.70);

}

.hero-content{

position:relative;

color:#fff;

z-index:10;

max-width:650px;

}

.top-text{

display:inline-block;

padding:10px 22px;

background:rgba(212,175,55,.15);

border:1px solid var(--gold);

border-radius:40px;

color:var(--gold);

margin-bottom:25px;

font-weight:600;

}

.hero h1{

font-size:64px;

line-height:1.1;

margin-bottom:25px;

font-weight:800;

}

.hero p{

font-size:18px;

opacity:.9;

margin-bottom:35px;

}


.seo-content{
    padding:80px 0;
    background:#fff;
    text-align: justify;
}

.seo-content h2{
    font-size:38px;
    color:#0A3D91;
    margin-bottom:20px;
}

.seo-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}


/* ===============================
          HERO BUTTONS
================================= */

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn{

padding:16px 36px;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.gold{

background:var(--gold);

color:#111;

}

.gold:hover{

transform:translateY(-5px);

box-shadow:0 10px 30px rgba(212,175,55,.45);

}

.outline{

border:2px solid #fff;

color:#fff;

}

.outline:hover{

background:#fff;

color:#111;

}


/* ===============================
       SECTION TITLE
================================= */

.section-heading{

text-align:center;

margin-bottom:70px;

}

.section-heading span{

color:var(--gold);

font-weight:700;

letter-spacing:2px;

}

.section-heading h2{

font-size:42px;

margin-top:15px;

color:var(--navy);

}

.section-heading p{

margin-top:15px;

color:#777;

}


/* ===============================
        FEATURES
================================= */

.features{

padding:90px 0;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.feature-card{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

transition:.4s;

}

.feature-card:hover{

transform:translateY(-12px);

}

.feature-card i{

font-size:40px;

color:var(--gold);

margin-bottom:20px;

}

.feature-card h3{

margin-bottom:15px;

color:var(--navy);

}


/* ===============================
        SERVICE SECTION
================================= */

.service-section{
    padding:90px 0;
}

.car-category{
    font-size:30px;
    color:var(--navy);
    margin:60px 0 30px;
    border-left:6px solid var(--gold);
    padding-left:18px;
    font-weight:700;
}


/* ===============================
        PREMIUM GRID
================================= */

.premium-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}


/* ===============================
        PREMIUM CARD
================================= */

.premium-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.4s;

    position:relative;

}

.premium-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}


/* ===============================
        IMAGE
================================= */

.car-image{

    position:relative;

    overflow:hidden;

}

.car-image img{

    height:230px;

    object-fit:cover;

    transition:.5s;

}

.premium-card:hover .car-image img{

    transform:scale(1.08);

}


/* ===============================
            BADGE
================================= */

.badge{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--gold);

    color:#111;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}

.badge.luxury{

    background:#071B36;

    color:#fff;

}


/* ===============================
        CARD CONTENT
================================= */

.card-content{

    padding:28px;

}

.card-content h3{

    font-size:28px;

    color:var(--navy);

    margin-bottom:18px;

}


/* ===============================
            SPECS
================================= */

.specs{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;

}

.specs span{

    background:#EEF3FA;

    padding:8px 14px;

    border-radius:30px;

    font-size:14px;

}


/* ===============================
         PRICE BOX
================================= */

.price-box{

    background:linear-gradient(135deg,#071B36,#0C2E5A);

    color:#fff;

    text-align:center;

    padding:25px;

    border-radius:16px;

    margin-bottom:25px;

}

.price-box small{

    color:#D4AF37;

    font-size:15px;

}

.price-box h2{

    font-size:42px;

    margin:10px 0;

    color:#fff;

}

.price-box p{

    color:#ddd;

}


/* ===============================
        CARD POINTS
================================= */

.card-points{

    margin-bottom:25px;

}

.card-points li{

    padding:10px 0;

    border-bottom:1px solid #eee;

    color:#555;

}


/* ===============================
         BOOK BUTTON
================================= */

.book-btn{

    width:100%;

    display:block;

    text-align:center;

    padding:16px;

    background:linear-gradient(135deg,#D4AF37,#F5D76E);

    color:#111;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.book-btn:hover{

    background:#071B36;

    color:#fff;

}


/* ===============================
         TERMS CARD
================================= */

.terms-card{

    margin-top:60px;

    background:#fff;

    padding:40px;

    border-radius:20px;

    border-left:8px solid var(--gold);

    box-shadow:var(--shadow);

}

.terms-card h2{

    color:var(--navy);

    margin-bottom:20px;

}

.terms-card ul{

    list-style:none;

}

.terms-card li{

    padding:12px 0;

    border-bottom:1px solid #ececec;

    color:#555;

}


/* ===============================
        OUTSTATION
================================= */

.outstation{

    background:#F4F7FB;

}

.outstation .section-heading h2{

    color:var(--navy);

}

.outstation .premium-card{

    border:1px solid #E8ECF5;

}



/* ===================================
        REVIEWS SECTION
=================================== */

.reviews{

    padding:100px 0;

    background:#fff;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.review-card{

    background:#F8F9FC;

    padding:35px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    text-align:center;

}

.review-card:hover{

    transform:translateY(-10px);

}

.review-card p{

    color:#555;

    margin:20px 0;

    line-height:1.8;

}

.review-card h4{

    color:var(--navy);

}

.review-card:first-child::before,
.review-card:nth-child(2)::before,
.review-card:nth-child(3)::before{

    content:"★★★★★";

    color:#D4AF37;

    font-size:22px;

}



/* ===================================
            CTA
=================================== */

.cta{

    padding:100px 0;

    background:linear-gradient(rgba(7,27,54,.92),rgba(7,27,54,.92)),
    url("imgs/banner.jpg") center/cover;

    text-align:center;

}

.cta h2{

    color:#fff;

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    color:#ddd;

    font-size:20px;

    margin-bottom:35px;

}

.cta .call-btn{

    display:inline-block;

}



/* ===================================
            FOOTER
=================================== */

footer{

    background:#071B36;

    color:#fff;

    padding-top:70px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    padding-bottom:50px;

}

.footer-grid h3{

    color:#D4AF37;

    margin-bottom:20px;

}

.footer-grid h4{

    color:#D4AF37;

    margin-bottom:20px;

}

.footer-grid p{

    color:#ddd;

    line-height:1.8;

}

.footer-grid ul{

    list-style:none;

}

.footer-grid ul li{

    margin-bottom:15px;

}

.footer-grid ul li a{

    color:#ddd;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#D4AF37;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:25px 0;

    color:#bbb;

}



/* ===================================
        SCROLLBAR
=================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#D4AF37;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#eee;

}



/* ===================================
        ANIMATION
=================================== */

.premium-card,
.feature-card,
.review-card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/* ===================================
        RESPONSIVE
=================================== */

@media(max-width:1100px){

.hero h1{

font-size:48px;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

}



@media(max-width:768px){

.header .container{

height:75px;

}

nav{

display:none;

}

.hero{

height:80vh;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.feature-grid{

grid-template-columns:1fr;

}

.premium-grid{

grid-template-columns:1fr;

}

.review-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.section-heading h2{

font-size:32px;

}

.car-category{

font-size:24px;

}

.price-box h2{

font-size:34px;

}

.cta h2{

font-size:34px;

}

}



@media(max-width:480px){

.container{

width:94%;

}

.hero{

padding:80px 0;

}

.hero h1{

font-size:30px;

}

.top-text{

font-size:13px;

}

.btn{

width:100%;

text-align:center;

}

.card-content{

padding:20px;

}

.price-box{

padding:20px;

}

.price-box h2{

font-size:30px;

}

.review-card{

padding:25px;

}

.terms-card{

padding:25px;

}

}



/* Reveal Animation */

.premium-card,
.feature-card,
.review-card,
.terms-card{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.show{

opacity:1;

transform:translateY(0);

}



/* Floating WhatsApp */

.floating-whatsapp{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

text-decoration:none;

color:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.3);

z-index:9999;

animation:float 2s infinite;

}



@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}



/* Hero Animation */

.hero-content{

opacity:0;

transform:translateY(50px);

transition:1.3s;

}








/* ===============================
        COUNTER
================================ */

.counter-section{

    background:#071B36;

    padding:80px 0;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.counter-box{

    text-align:center;

    color:#fff;

}

.counter-box h2{

    color:#D4AF37;

    font-size:55px;

    margin-bottom:15px;

}

.counter-box p{

    font-size:18px;

    letter-spacing:1px;

}



/* ===============================
       MOBILE NAV
================================ */
@media (max-width:768px){

    .header .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 15px;
        height:70px;
    }

    /* Logo */
    .logo{
        order:1;
    }

    .logo img{
        height:42px;
        width:auto;
    }

    /* Call Button */
    .call-btn{
    order:2;
    margin-left:-70px;
    margin-right:-130px;   /* value वाढवली तर अजून left ला जाईल */
    padding:10px 18px;
    font-size:15px;
    border-radius:30px;
}

    /* Toggle */
    .menu-toggle{
        order:3;
        display:block;
        font-size:34px;
        color:#fff;
        cursor:pointer;
        margin-right:-10px;
        
    }

    /* Hide Desktop Menu */
    nav{
        display:none;
    }

    nav.active{
        display:block;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#071B36;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        padding:20px;
        gap:20px;
    }
}