html{
scroll-behavior:smooth;
}
body{
margin:0;
font-family:Arial;
scroll-behavior:smooth;
}

/* HEADER */

header{
position:fixed;
width:100%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
}

.logo{
display:flex;
align-items:center;
font-size:20px;
font-weight:bold;
color:#e31e24;
}

.logo img{
height:35px;
margin-right:10px;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#e31e24;
}

.menu-toggle{
display:none;
font-size:26px;
}

/* HERO */

.hero{
height:100vh;
background:url("https://images.unsplash.com/photo-1503376780353-7e6692767b70") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero-content{
background:rgba(0,0,0,0.6);
padding:60px;
border-radius:10px;
max-width:700px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.6;
}

.hero-buttons{
margin-top:30px;
}

.btn1{
background:#e31e24;
padding:14px 30px;
color:white;
text-decoration:none;
margin-right:15px;
border-radius:5px;
}

.btn2{
border:2px solid white;
padding:12px 28px;
color:white;
text-decoration:none;
border-radius:5px;
}

/* MOBILE */

@media(max-width:768px){

nav{
display:none;
}

.menu-toggle{
display:block;
}

.hero h1{
font-size:32px;
}

.hero-content{
padding:30px;
}

}
*/-------------------------------------------------------------*/
.products{

padding:100px 20px;

background:#f6f8fb;

text-align:center;

}

/* HEADER */

.section-header{

max-width:700px;

margin:auto;

margin-bottom:60px;

}

.section-header h2{

font-size:38px;

margin-bottom:15px;

position:relative;

display:inline-block;

}

.section-header h2::after{

content:"";

width:60px;

height:4px;

background:#e31e24;

display:block;

margin:10px auto;

border-radius:2px;

}

.section-header p{

color:#555;

font-size:16px;

line-height:1.6;

}

/* GRID */

.product-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

max-width:1200px;

margin:auto;

}

/* CARD */

.product-card{

background:white;

padding:35px;

border-radius:14px;

box-shadow:0 8px 25px rgba(0,0,0,0.08);

transition:all 0.4s ease;

position:relative;

overflow:hidden;

}

/* HOVER */

.product-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 40px rgba(0,0,0,0.15);

}

/* IMAGE */

.product-img{

width:80px;

height:80px;

background:#f1f4f9;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:20px;

transition:0.3s;

}

.product-img img{

width:40px;

}

/* IMAGE HOVER */

.product-card:hover .product-img{

background:#e31e24;

}

.product-card:hover .product-img img{

filter:brightness(0) invert(1);

}

/* TITLE */

.product-card h3{

margin-bottom:15px;

font-size:20px;

}

/* BULLET LIST */

.product-card ul{

list-style:none;

padding:0;

margin-bottom:20px;

}

.product-card ul li{

margin-bottom:8px;

font-size:14px;

color:#444;

position:relative;

padding-left:22px;

}

/* CUSTOM BULLET */

.product-card ul li::before{

content:"✔";

position:absolute;

left:0;

color:#e31e24;

font-size:14px;

}

/* BUTTON */

.product-btn{

display:inline-block;

background:#e31e24;

color:white;

padding:10px 24px;

border-radius:6px;

text-decoration:none;

font-size:14px;

transition:0.3s;

}

.product-btn:hover{

background:#c91a1f;

}

/* MOBILE */

@media(max-width:768px){

.section-header h2{

font-size:28px;

}

.section-header p{

font-size:14px;

}

}
.product-card{
opacity:0;
transform:translateY(40px);
transition:0.6s;
}

.product-card.show{
opacity:1;
transform:translateY(0);
}


/*---------------------------------------------------------*/

.features{

padding:100px 20px;

background:white;

text-align:center;

}

.features-header{

max-width:700px;

margin:auto;

margin-bottom:60px;

}

.features-header h2{

font-size:36px;

margin-bottom:15px;

position:relative;

display:inline-block;

}

.features-header h2::after{

content:"";

width:60px;

height:4px;

background:#e31e24;

display:block;

margin:10px auto;

border-radius:2px;

}

.features-header p{

color:#555;

line-height:1.6;

}

/* GRID */

.features-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

max-width:1200px;

margin:auto;

}

/* CARD */

.feature-card{

background:#f7f9fc;

padding:35px;

border-radius:14px;

box-shadow:0 8px 20px rgba(0,0,0,0.08);

transition:all 0.4s ease;

position:relative;

}

/* ICON */

.feature-icon{

font-size:40px;

margin-bottom:20px;

transition:0.3s;

}

/* HOVER EFFECT */

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,0.15);

background:#e31e24;

color:white;

}

.feature-card:hover p{

color:#fff;

}

.feature-card:hover .feature-icon{

transform:scale(1.2);

}

/* TEXT */

.feature-card h3{

margin-bottom:10px;

}

.feature-card p{

font-size:14px;

color:#666;

}

/* MOBILE */

@media(max-width:768px){

.features-header h2{

font-size:28px;

}

}
.feature-card{

opacity:0;

transform:translateY(40px);

transition:0.6s;

}

.feature-card.show{

opacity:1;

transform:translateY(0);

}


/*-----------------------------------------------*/
.why-section{

padding:100px 20px;

background:#f7f9fc;

}

.why-container{

max-width:1200px;

margin:auto;

display:flex;

align-items:center;

gap:60px;

flex-wrap:wrap;

}

/* LEFT CONTENT */

.why-text{

flex:1;

}

.why-text h2{

font-size:36px;

margin-bottom:15px;

}

.why-intro{

color:#555;

margin-bottom:30px;

line-height:1.6;

}

/* POINTS */

.why-points{

display:grid;

grid-template-columns:1fr;

gap:15px;

}

.why-item{

display:flex;

align-items:center;

font-size:16px;

background:white;

padding:12px 18px;

border-radius:8px;

box-shadow:0 5px 15px rgba(0,0,0,0.08);

transition:0.3s;

}

.why-item span{

color:#e31e24;

font-size:18px;

margin-right:10px;

}

.why-item:hover{

transform:translateX(8px);

}

/* IMAGE SIDE */

.why-images{

flex:1;

position:relative;

min-height:400px;

}

.why-images img{

position:absolute;

border-radius:12px;

box-shadow:0 15px 30px rgba(0,0,0,0.15);

transition:0.4s;

}

/* IMAGE POSITIONS */

.img1{

width:280px;

top:0;

left:0;

}

.img2{

width:300px;

top:120px;

right:0;

}

.img3{

width:260px;

bottom:0;

left:80px;

}

/* IMAGE HOVER */

.why-images img:hover{

transform:scale(1.05);

}

/* MOBILE */

@media(max-width:768px){

.why-container{

flex-direction:column;

}

.why-images{

height:350px;

margin-top:40px;

}

.img1{

width:200px;

}

.img2{

width:210px;

}

.img3{

width:180px;

}

}
.why-item{
opacity:0;
transform:translateX(-30px);
transition:0.6s;
}

/*-----------------------------------------------------------*/
.gps-demo{

padding:100px 0;

background:#0f172a;

color:white;

text-align:center;

}

/* HEADER */

.demo-header{

margin-bottom:40px;

}

.demo-header h2{

font-size:36px;

margin-bottom:10px;

}

.demo-header p{

color:#cbd5e1;

}

/* MAP */

.map-container{

position:relative;

width:90%;

margin:auto;

border-radius:12px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,0.3);

}

#map{

height:500px;

width:100%;

}

/* INFO PANEL */

.vehicle-info{

position:absolute;

top:20px;

left:20px;

background:white;

color:#333;

padding:20px;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,0.2);

text-align:left;

width:200px;

}

.vehicle-info h3{

margin-bottom:10px;

color:#e31e24;

}

/* MOBILE */

@media(max-width:768px){

#map{

height:350px;

}

.vehicle-info{

position:relative;

width:90%;

margin:20px auto;

}

}
.gps-demo{

padding:100px 0;

background:#0f172a;

color:white;

text-align:center;

}

/* HEADER */

.demo-header{

margin-bottom:40px;

}

.demo-header h2{

font-size:36px;

margin-bottom:10px;

}

.demo-header p{

color:#cbd5e1;

}

/* MAP */

.map-container{

position:relative;

width:90%;

margin:auto;

border-radius:12px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,0.3);

}

#map{

height:500px;

width:100%;

}

/* INFO PANEL */

.vehicle-info{

position:absolute;

top:20px;

left:20px;

background:white;

color:#333;

padding:20px;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,0.2);

text-align:left;

width:200px;

}

.vehicle-info h3{

margin-bottom:10px;

color:#e31e24;

}

/* MOBILE */

@media(max-width:768px){

#map{

height:350px;

}

.vehicle-info{

position:relative;

width:90%;

margin:20px auto;

}

}
/*------------------------------*/

#contact{
scroll-margin-top:100px;
}
.contact-section{

padding:80px 20px;



background:#020617;

color:white;

}

.contact-header h2{

font-size:36px;
text-align:center;
margin-bottom:10px;

}

.contact-header p{

color:#cbd5e1;
text-align:center;

}


/* FOOTER */

.footer{

background:#020617;

color:#cbd5e1;

padding:60px 20px 20px;

}

.footer-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

align-items:start;

}

.footer h3,
.footer h4{

color:white;

margin-bottom:15px;

}

.footer-col p{

font-size:14px;

line-height:1.6;

margin-bottom:8px;

}

/* social icons */

.social-icons a{

display:inline-block;

margin-right:10px;

font-size:18px;

background:#1e293b;

padding:8px 10px;

border-radius:6px;

transition:.3s;

}

.social-icons a:hover{

background:#e31e24;

color:white;

}

/* bottom */

.footer-bottom{

border-top:1px solid #1e293b;

margin-top:40px;

padding-top:15px;

text-align:center;

font-size:14px;

color:#94a3b8;

}
/*------------------------------------*/
.whatsapp-float{

position:fixed;

bottom:25px;

right:25px;

background:#25D366;

color:white;

font-size:24px;

padding:15px;

border-radius:50%;

text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,0.3);

}
