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

/* ====================================
   RESET
==================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#fffaf5;
color:#333;
overflow-x:hidden;
line-height:1.6;
}

/* ====================================
   LINKS
==================================== */

a{
text-decoration:none;
color:inherit;
}

img{
max-width:100%;
display:block;
}

/* ====================================
   HEADER
==================================== */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:999;
transition:.4s;
}

header.sticky{
    padding:12px 8%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

header.sticky .logo{
    color:#ff6b00;
}

header.sticky nav a{
    color:#333;
}

header.sticky .menu-btn,
header.sticky .menu-btn i{
    color:#333 !important;
}

.logo{
font-size:32px;
font-weight:700;
color:#ff6b00;
}

nav{
display:flex;
gap:30px;
}

nav a{
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ff6b00;
}

.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#ff6b00;
    transition:.3s;
}

/* ====================================
   HERO SECTION
==================================== */

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url("images/slider1.jpg") center/cover;
color:white;
padding:20px;
}

.hero h1{
font-size:70px;
font-weight:800;
margin-bottom:20px;
}

.hero p{
font-size:22px;
max-width:800px;
margin:auto;
}

.hero .btn{
display:inline-block;
margin-top:35px;
padding:15px 45px;
background:#ff6b00;
color:white;
border-radius:40px;
transition:.4s;
font-size:18px;
font-weight:600;
}

.hero .btn:hover{
background:white;
color:#ff6b00;
}

/* ====================================
   SECTION TITLE
==================================== */

section{
padding:90px 8%;
}

.title{
text-align:center;
font-size:42px;
color:#ff6b00;
margin-bottom:20px;
}

.subtitle{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
color:#666;
font-size:18px;
}
/* ====================================
   ABOUT SECTION
==================================== */

.about{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:50px;
align-items:center;
}

.about img{
width:100%;
border-radius:20px;
box-shadow:0 15px 30px rgba(0,0,0,.12);
transition:.4s;
}

.about img:hover{
transform:scale(1.03);
}

.about-content h2{
font-size:40px;
color:#ff6b00;
margin-bottom:20px;
}

.about-content p{
font-size:18px;
line-height:1.9;
color:#555;
}

/* ====================================
   BUTTONS
==================================== */

.btn{
display:inline-block;
padding:15px 35px;
background:#ff6b00;
color:#fff;
font-weight:600;
border-radius:40px;
transition:.3s;
margin-top:20px;
}

.btn:hover{
background:#222;
transform:translateY(-4px);
}

/* ====================================
   CARD SECTION
==================================== */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
overflow:hidden;
position:relative;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 35px rgba(255,107,0,.2);
}

.card span{
font-size:60px;
display:block;
margin-bottom:20px;
}

.card h3{
font-size:24px;
color:#ff6b00;
margin-bottom:15px;
}

.card p{
color:#666;
line-height:1.8;
}

/* ====================================
   WHY CHOOSE US
==================================== */

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.feature{
background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.feature:hover{
background:#ff6b00;
color:#fff;
transform:translateY(-8px);
}

.feature h3{
margin:15px 0;
font-size:24px;
}

.feature p{
line-height:1.7;
}

/* ====================================
   SERVICES
==================================== */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.service-box{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 12px 25px rgba(0,0,0,.08);
transition:.4s;
}

.service-box:hover{
transform:translateY(-12px);
}

.service-box img{
width:100%;
height:230px;
object-fit:cover;
transition:.5s;
}

.service-box:hover img{
transform:scale(1.08);
}

.service-content{
padding:25px;
}

.service-content h2{
color:#ff6b00;
margin-bottom:15px;
}

.service-content p{
line-height:1.8;
color:#555;
}

/* ====================================
   STORY SECTION
==================================== */

.story{
background:linear-gradient(135deg,#ff6b00,#ff9d2f);
padding:70px;
border-radius:25px;
text-align:center;
color:#fff;
}

.story h2{
font-size:42px;
margin-bottom:20px;
}

.story p{
font-size:18px;
line-height:1.9;
max-width:900px;
margin:auto;
}

/* ====================================
   CTA SECTION
==================================== */

.cta{
background:#222;
padding:70px;
border-radius:25px;
text-align:center;
color:#fff;
margin-top:70px;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

.cta p{
max-width:800px;
margin:auto;
line-height:1.8;
margin-bottom:30px;
}
/* ====================================
   IMAGE SLIDER
==================================== */

.slider{
width:90%;
margin:60px auto;
overflow:hidden;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.slides{
display:flex;
width:500%;
animation:slider 20s infinite;
}

.slides img{
width:100%;
height:500px;
object-fit:cover;
}

@keyframes slider{

0%,18%{
transform:translateX(0%);
}

20%,38%{
transform:translateX(-100%);
}

40%,58%{
transform:translateX(-200%);
}

60%,78%{
transform:translateX(-300%);
}

80%,100%{
transform:translateX(-400%);
}

}

/* ====================================
   GALLERY
==================================== */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.gallery .card{
position:relative;
overflow:hidden;
border-radius:18px;
cursor:pointer;
padding:0;
}

.gallery .card img{
width:100%;
height:280px;
object-fit:cover;
transition:.5s;
}

.gallery .card:hover img{
transform:scale(1.12);
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,107,0,.85);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
transition:.4s;
color:white;
font-size:24px;
font-weight:600;
}

.gallery .card:hover .overlay{
opacity:1;
}

/* ====================================
   BLOG SECTION
==================================== */

.blog{
background:#fff3e6;
}

.blog-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.blog-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 12px 25px rgba(0,0,0,.08);
transition:.4s;
}

.blog-card:hover{
transform:translateY(-10px);
}

.blog-card h3{
font-size:26px;
color:#ff6b00;
margin-bottom:15px;
}

.blog-card p{
color:#666;
line-height:1.8;
margin-bottom:25px;
}

.blog-card a{
display:inline-block;
padding:12px 28px;
background:#ff6b00;
color:white;
border-radius:30px;
transition:.3s;
}

.blog-card a:hover{
background:#222;
}

/* ====================================
   LIGHTBOX
==================================== */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.92);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:15px;
box-shadow:0 15px 35px rgba(255,255,255,.15);
}

/* ====================================
   GALLERY TITLE
==================================== */

.gallery-title{
text-align:center;
font-size:46px;
color:#ff6b00;
margin-bottom:50px;
font-weight:700;
}

/* ====================================
   IMAGE HOVER SHADOW
==================================== */

.gallery img,
.service-box img,
.about img{

transition:.5s;

}

.gallery img:hover,
.service-box img:hover,
.about img:hover{

box-shadow:0 20px 40px rgba(255,107,0,.25);

}

/* ====================================
   CONTACT PAGE
==================================== */

.contact-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:40px;
align-items:start;
}

.contact-info{
background:linear-gradient(135deg,#ff6b00,#ff9d2f);
color:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.contact-info h2{
margin-bottom:20px;
font-size:35px;
}

.contact-info p{
margin:18px 0;
line-height:1.8;
}

.contact-form{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
width:100%;
padding:15px;
margin:12px 0;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
outline:none;
transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
border-color:#ff6b00;
box-shadow:0 0 10px rgba(255,107,0,.2);
}

.contact-form textarea{
height:150px;
resize:none;
}

.contact-form button{
width:100%;
padding:15px;
border:none;
background:#ff6b00;
color:white;
font-size:18px;
border-radius:10px;
cursor:pointer;
transition:.3s;
}

.contact-form button:hover{
background:#222;
}

/* ====================================
   DEALERSHIP FORM
==================================== */

.dealer-form{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
max-width:900px;
margin:auto;
}

.form-row{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

/* ====================================
   COUNTER SECTION
==================================== */

.counter-section{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
text-align:center;
margin:60px 0;
}

.counter-box{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.counter{
font-size:50px;
font-weight:700;
color:#ff6b00;
}

.counter-box h3{
margin-top:10px;
}

/* ====================================
   FOLLOW US
==================================== */

.social-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-top:30px;
}

.social-links a{
width:55px;
height:55px;
background:#ff6b00;
color:white;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:22px;
transition:.3s;
}

.social-links a:hover{
background:#222;
transform:translateY(-6px);
}

/* ====================================
   FOOTER
==================================== */

footer{
background:#111;
color:white;
text-align:center;
padding:50px 20px;
margin-top:70px;
}

footer h2{
color:#ff6b00;
margin-bottom:15px;
}

footer p{
color:#bbb;
margin:8px 0;
}

/* ====================================
   BACK TO TOP
==================================== */

#topBtn{
position:fixed;
right:20px;
bottom:20px;
width:50px;
height:50px;
background:#ff6b00;
color:white;
border:none;
border-radius:50%;
cursor:pointer;
font-size:22px;
display:none;
transition:.3s;
z-index:999;
}

#topBtn:hover{
background:#222;
}

/* ====================================
   SCROLLBAR
==================================== */

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

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

::-webkit-scrollbar-thumb{
background:#ff6b00;
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:#d95700;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:991px){

.hero h1{
font-size:50px;
}

.about{
grid-template-columns:1fr;
}

.form-row{
grid-template-columns:1fr;
}

.contact-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

header{
padding:15px 20px;
}

nav{
display:none;
}

nav.active{
display:flex;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
padding:20px;
box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.menu-btn{
display:block;
}

.hero{
height:80vh;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:17px;
}

.title{
font-size:34px;
}

.story{
padding:40px 25px;
}

.slider img{
height:250px;
}

}

@media(max-width:500px){

.btn{
padding:12px 25px;
}

.card,
.feature,
.blog-card{
padding:25px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

}
/* ===========================
   PREMIUM SOCIAL SECTION
=========================== */

.social-section{

    padding:100px 8%;
    text-align:center;

    background:linear-gradient(180deg,#fffaf3,#fff);
}

.social-heading span{

    color:#ff6b00;
    letter-spacing:3px;
    font-weight:600;
    font-size:14px;
}

.social-heading h2{

    font-size:52px;
    margin:15px 0;
    color:#222;
}

.social-heading p{

    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

.social-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;

    margin-top:60px;
}

.social-card{

    background:white;

    border-radius:25px;

    padding:40px 25px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;
}

.social-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#ff6b00;
}

.social-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(255,107,0,.25);
}

.social-card i{

    font-size:52px;

    margin-bottom:20px;
}

.social-card h3{

    color:#222;

    margin-bottom:10px;
}

.social-card p{

    color:#777;

    font-size:15px;
}

/* Brand Colors */

.instagram i{

    color:#E1306C;
}

.facebook i{

    color:#1877F2;
}

.youtube i{

    color:#FF0000;
}

.whatsapp i{

    color:#25D366;
}

/* Hover Effect */

.instagram:hover{

    background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);

    color:white;
}

.facebook:hover{

    background:#1877F2;

    color:white;
}

.youtube:hover{

    background:#FF0000;

    color:white;
}

.whatsapp:hover{

    background:#25D366;

    color:white;
}

.social-card:hover i,

.social-card:hover h3,

.social-card:hover p{

    color:white;
}

/* Mobile */

@media(max-width:768px){

.social-section{

padding:70px 6%;

}

.social-heading h2{

font-size:38px;

}

.social-grid{

gap:20px;

}

.social-card{

padding:30px 20px;

}

.social-card i{

font-size:45px;

}
}
.blog-info span{
    background: rgba(255,107,0,0.12);
    border:1px solid rgba(255,107,0,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding:12px 24px;
    border-radius:50px;
    box-shadow:0 8px 20px rgba(255,107,0,0.15);
}
html, body{
    overflow-x: hidden;
    width: 100%;
}
}