/* ===========================
   CAR INTEL MECHANIC SHOP
   PREMIUM AUTOMOTIVE THEME
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#ffd500;
    --primary-dark:#ffd500;
    --black:#050505;
    --dark:#121212;
    --card:#1b1b1b;
    --silver:#d9d9d9;
    --white:#ffffff;
    --gray:#bdbdbd;

    --shadow:0 15px 40px rgba(0,0,0,.35);
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= NAVBAR ================= */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(10,10,10,.45);

backdrop-filter:blur(20px);

border-bottom:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:85px;
}

.logo img{
    height:120px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.nav-buttons{
    display:flex;
    gap:15px;
}

.call-btn,
.book-btn,
.btn-primary,
.btn-outline{
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.call-btn{
    border:2px solid white;
    color:white;
}

.call-btn:hover{
    background:white;
    color:black;
}

.book-btn,
.btn-primary{
    background:var(--primary);
    color:rgb(25, 23, 23);
}

.book-btn:hover,
.btn-primary:hover{
    background:white;
    color:var(--primary);
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(214,0,0,.35);
}

.btn-outline{
    border:2px solid white;
    color:white;
    margin-left:15px;
}

.btn-outline:hover{
    background:white;
    color:black;
}

.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

/* ================= HERO ================= */

/* HERO */

.hero{

position:relative;

height:100vh;

overflow:hidden;

display:flex;

align-items:center;

justify-content:center;

}

.hero-video{

position:absolute;

top:50%;

left:50%;

width:100%;

height:100%;

object-fit:cover;

transform:translate(-50%,-50%);

z-index:-2;

}

.overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:linear-gradient(
rgba(0,0,0,.70),
rgba(0,0,0,.75)
);

z-index:-1;

}

.hero-content{

position:relative;

z-index:2;

color:#fff;

}

.hero h1{

font-size:70px;

font-weight:800;

line-height:1.15;

margin:20px 0;

}

.hero h1 span{

color:#ffd500;

}

.hero p{

font-size:20px;

color:#ddd;

max-width:650px;

margin-bottom:40px;

}

@media(max-width:991px){

.hero h1{

font-size:50px;

}

}

@media(max-width:768px){

.hero{

height:90vh;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:17px;

}

}

/* ================= COUNTERS ================= */

.counter-section{

padding:90px 0;

background:#111111;

}

.counter-section .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.counter-box{

background:#1a1a1a;

padding:40px;

border-radius:20px;

text-align:center;

transition:.4s;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.counter-box:hover{

transform:translateY(-10px);

border-color:#ffd500;

box-shadow:0 20px 50px rgba(214,0,0,.25);

}

.counter-box i{

font-size:48px;

color:#ffd500;

margin-bottom:20px;

}

.counter{

font-size:58px;

font-weight:700;

color:#ffffff;

margin-bottom:10px;

}

.counter-box p{

color:#d6d6d6;

font-size:18px;

}

@media(max-width:992px){

.counter-section .container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.counter-section .container{

grid-template-columns:1fr;

}

}

.scroll-indicator{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

width:30px;

height:50px;

border:2px solid #fff;

border-radius:30px;

display:flex;

justify-content:center;

padding-top:8px;

}

.scroll-indicator span{

width:6px;

height:10px;

background:#ffd500;

border-radius:10px;

animation:scroll 1.8s infinite;

}

@keyframes scroll{

0%{

transform:translateY(0);

opacity:1;

}

100%{

transform:translateY(18px);

opacity:0;

}

}



/* ================= ABOUT ================= */

.about{
    padding:120px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.section-title{
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
}

.about h2{
    font-size:42px;
    margin:20px 0;
}

.about p{
    color:#d5d5d5;
    margin-bottom:20px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:12px;
}

.about-list i{
    color:var(--primary);
}

/* ================= CTA ================= */

.cta{
    padding:100px 0;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("images/works.jpeg") center/cover;
    text-align:center;
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    color:#ddd;
    max-width:700px;
    margin:0 auto 35px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

.hero-content,
.about-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero{
height:auto;
padding:170px 0 120px;
}

.hero p{
margin:auto;
margin-bottom:35px;
}

.hero-features{
justify-content:center;
}

.about-list{
grid-template-columns:1fr;
text-align:left;
}

.stats .container{
grid-template-columns:repeat(2,1fr);
}

.nav-links,
.nav-buttons{
display:none;
}

.menu-toggle{
display:block;
}

.hero h1{
font-size:48px;
}

}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.about h2{
font-size:34px;
}

.cta h2{
font-size:34px;
}

.stats .container{
grid-template-columns:1fr;
}

.logo img{
height:55px;
}

}

@media(max-width:480px){

.hero{
padding-top:150px;
}

.hero h1{
font-size:30px;
}

.hero-buttons{
display:flex;
flex-direction:column;
gap:15px;
}

.btn-outline{
margin-left:0;
}

.call-btn,
.book-btn,
.btn-primary,
.btn-outline{
width:100%;
text-align:center;
}

}


.nav-links.active{
display:flex;
flex-direction:column;
position:absolute;
top:85px;
left:0;
width:100%;
background:#111;
padding:30px;
text-align:center;
}

.nav-buttons.active{
display:flex;
flex-direction:column;
position:absolute;
top:330px;
left:0;
width:100%;
background:#111;
padding:20px;
}

.stat-box,
.about,
.service-card,
.testimonial,
.cta{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.show{

opacity:1;

transform:translateY(0);

}

#topBtn{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#ffd500;

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

z-index:999;

transition:.3s;

}

#topBtn:hover{

transform:translateY(-5px);

background:#fff;

color:#ffd500;

}

.btn-primary,
.book-btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.4);

transform:scale(0);

animation:ripple .6s linear;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}
/*==========================
 WHY CHOOSE US
==========================*/

.why-choose{

padding:120px 0;

background:
linear-gradient(180deg,#070707,#101010);

position:relative;

overflow:hidden;

}

.section-title{

text-align:center;

max-width:750px;

margin:auto auto 70px;

}

.section-title span{

color:#ffd500;

font-weight:700;

letter-spacing:3px;

font-size:15px;

}

.section-title h2{

font-size:48px;

margin:18px 0;

color:#fff;

}

.section-title p{

color:#bfbfbf;

font-size:18px;

line-height:1.8;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.why-card{

position:relative;

padding:40px 30px;

border-radius:24px;

background:rgba(255,255,255,.06);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

transition:.4s;

overflow:hidden;

}

.why-card::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:rgba(214,0,0,.18);

border-radius:50%;

top:-80px;

right:-80px;

filter:blur(40px);

transition:.5s;

}

.why-card:hover{

transform:translateY(-12px);

border-color:#ffd500;

box-shadow:0 20px 45px rgba(214,0,0,.18);

}

.why-card:hover::before{

transform:scale(1.3);

}

.icon{

width:80px;

height:80px;



border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

margin-bottom:25px;


}

.why-card h3{

font-size:24px;

margin-bottom:15px;

color:#fff;

}

.why-card p{

color:#cfcfcf;

line-height:1.8;

}

@media(max-width:991px){

.section-title h2{

font-size:38px;

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

.why-card{

padding:35px 25px;

}

}
/*=========================================
 PROCESS SECTION
==========================================*/

.process-section{

padding:120px 0;

background:#080808;

position:relative;

overflow:hidden;

}

.process-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

position:relative;

}

/* Connecting Line */

.process-grid::before{

content:"";

position:absolute;

top:75px;

left:10%;

width:80%;

height:3px;

background:linear-gradient(90deg,#ffd500,#ffffff,#ffd500);

z-index:0;

opacity:.25;

}

.process-card{

position:relative;

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:45px 30px;

text-align:center;

transition:.4s;

z-index:2;

overflow:hidden;

}

.process-card:hover{

transform:translateY(-12px);

border-color:#ffd500;

box-shadow:0 20px 45px rgba(214,0,0,.25);

}

.process-card::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:rgba(214,0,0,.18);

border-radius:50%;

top:-90px;

right:-90px;

filter:blur(35px);

transition:.4s;

}

.process-card:hover::before{

transform:scale(1.4);

}

.step-number{

position:absolute;

top:18px;

right:20px;

font-size:18px;

font-weight:700;

color:#777;

}

.process-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#ffd500,#ffd500);

color:#fff;

font-size:38px;F

box-shadow:0 12px 35px rgba(214,0,0,.35);

transition:.4s;

}

.process-card:hover .process-icon{

transform:rotate(8deg) scale(1.08);

}

.process-card h3{

font-size:24px;

margin-bottom:15px;

color:#fff;

}

.process-card p{

color:#cfcfcf;

line-height:1.8;

font-size:16px;

}

/* Responsive */

@media(max-width:1200px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid::before{

display:none;

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}


}
.process-card{
 padding:35px 25px;

opacity:0;

transform:translateY(60px);

transition:.8s;

}

.show-process{

opacity:1;

transform:translateY(0);

}

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading span{
color:#ffd500;
font-weight:700;
letter-spacing:2px;
}

.section-heading h2{
font-size:42px;
margin-top:15px;
}

.services,
.why-us,
.testimonials,
.contact{
padding:100px 0;
}

.service-grid,
.why-grid,
.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card,
.why-card,
.testimonial{
background:#181818;
padding:35px;
border-radius:18px;
transition:.35s;
border:1px solid rgba(255,255,255,.06);
text-align:center;
}

.service-card:hover,
.why-card:hover,
.testimonial:hover{
transform:translateY(-10px);
border-color:#ffd500;
box-shadow:0 15px 40px rgba(214,0,0,.2);
}

.service-card i,
.why-card i{
font-size:45px;
color:#ffd500;
margin-bottom:20px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact input,
.contact textarea{
width:100%;
padding:15px;
margin-bottom:20px;
background:#111;
border:1px solid #333;
color:#fff;
border-radius:8px;
}

.contact textarea{
height:160px;
resize:none;
}


@media(max-width:768px){
.contact-grid{
grid-template-columns:1fr;
}
}
/*==========================
CONTACT
===========================*/

/*==============================
CONTACT SECTION
==============================*/

.contact-section{

padding:120px 0;

background:linear-gradient(180deg,#070707,#101010);

}

.contact-wrapper{

display:grid;

grid-template-columns:400px 1fr;

gap:40px;

margin-top:60px;

}

/* Left Panel */

.contact-info{

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

padding:40px;

border-radius:25px;

}

.contact-info h3{

font-size:30px;

margin-bottom:35px;

}

.info-item{

display:flex;

gap:18px;

margin-bottom:28px;

}

.info-item i{

width:60px;

height:60px;
F

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

color:#fff;

font-size:24px;

flex-shrink:0;

}

.info-item h4{

margin-bottom:5px;

color:#fff;

}

.info-item p{

color:#ccc;

}

/* Glass Form */

.glass-form{

background:rgba(255,255,255,.06);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:45px;

box-shadow:0 20px 60px rgba(0,0,0,.35);

}

/* Inputs */

.input-group{

position:relative;

margin-bottom:22px;

}

.input-group i{

position:absolute;

left:18px;

top:18px;

color:#ffd500;

font-size:18px;

}

.input-group input,
.input-group select{

width:100%;

height:58px;

padding-left:55px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:14px;

color:#fff;

font-size:16px;

transition:.35s;

}

.input-group textarea{

width:100%;

height:160px;

padding:18px 18px 18px 55px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:14px;

color:#fff;

resize:none;

font-size:16px;

transition:.35s;

}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus{

outline:none;

border-color:#ffd500;

box-shadow:0 0 18px rgba(214,0,0,.25);

}

.submit-btn{

width:100%;

height:60px;

border:none;

border-radius:50px;

background:linear-gradient(135deg,#ffd500#ffd500,#ffd500);

color:#fff;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.submit-btn:hover{

transform:translateY(-4px);

box-shadow:0 18px 35px rgba(214,0,0,.35);

}

/* Responsive */

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-info{

order:2;

}

}

@media(max-width:768px){

.glass-form{

padding:30px;

}

.contact-info{

padding:30px;

}

}
