
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0f0f0f;
color:white;
overflow-x:hidden;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
position:fixed;
top:0;
width:100%;
z-index:1000;
border-bottom:2px solid #ffd000;
box-shadow:0 2px 10px rgba(255,208,0,0.5);
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:80px;
height:auto;
}

nav a{
margin:0 10px;
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ffd000;
}

nav{
display:flex;
align-items:center;
gap:25px;
}

/* CONTACT DROPDOWN */

.contact-menu{
position:relative;
}

.contact-btn{
background:none;
border:none;
color:white;
font-size:16px;
font-weight:500;
cursor:pointer;
}

/* DROPDOWN */

.contact-dropdown{

position:absolute;
top:35px;
right:0;

width:220px;

padding:15px;

border-radius:15px;

background:rgba(255,255,255,0.08);

backdrop-filter:blur(15px);

box-shadow:0 10px 30px rgba(0,0,0,0.5);

display:none;
flex-direction:column;
gap:12px;

}
/* BUTTONS */

.contact-item{

display:flex;
align-items:center;
gap:12px;

text-decoration:none;
color:white;

padding:10px;

border-radius:10px;

transition:.3s;

}
.contact-dropdown.show{
display:flex;
}

.contact-item img{
width:26px;
}

.whatsapp:hover{

background:#25D366;

}

.call:hover{

background:#ff9900;

}


/* DRIVER SECTION */

.driver-section{
padding:100px 20px 80px;
background:#0f0f0f;
text-align:center;
color:white;
}

.driver-section h2{
font-size:38px;
margin-bottom:40px;
}

/* DRIVER CARD */

.driver-card{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1100px;
margin:auto;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(20px);
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,0.5);
overflow:hidden;
gap:20px;
padding:20px;
}

/* DRIVER INFO */

.driver-info{
display:flex;
align-items:center;
gap:20px;
flex:1;
}

/* DRIVER PHOTO */

.driver-photo{
width:100px;
height:150px;
border-radius:20px;
overflow:hidden;
flex-shrink:0;
}

.driver-photo img{
width:100%;
height:100%;
object-fit:cover;
}

/* DRIVER DETAILS */

.driver-details{
text-align:left;
}

.driver-details h3{
font-size:22px;
margin-bottom:10px;
}

.driver-details p{
font-size:15px;
margin-bottom:6px;
}

/* TAXI SLIDER */

.taxi-slider{
width:420px;
height:250px;
border-radius:20px;
overflow:hidden;
position:relative;
flex-shrink:0;
}

.taxi-track{
display:flex;
width:100%;
height:100%;
transition:transform .5s ease;
}

.taxi-slide{
min-width:100%;
height:100%;
}

.taxi-slide img{
width:100%;
height:100%;
object-fit:cover;
}

/* DOTS */

.slider-dots{
position:absolute;
bottom:12px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:8px;
}

.dot{
width:10px;
height:10px;
background:rgba(255,255,255,0.5);
border-radius:50%;
cursor:pointer;
}

.dot.active{
background:#ffd000;
}


/* MOBILE RESPONSIVE */

@media screen and (max-width:900px){

.driver-card{
flex-direction:column;
align-items:center;
text-align:center;
}

.driver-info{
flex-direction:column;
}

.driver-section h2{
font-size:26px;
margin-bottom:25px;
}

.driver-details{
text-align:center;
}

.taxi-slider{
width:100%;
max-width:400px;
height:220px;
}

}











@media screen and (max-width:768px){

header{
display:flex;
flex-direction:row;
justify-content:space-between;
align-items:center;
padding:10px 12px;
}

.logo{
display:flex;
align-items:center;
gap:6px;
}

.logo img{
width:70px;
}

.logo h1{
font-size:16px;
white-space:nowrap;
}

nav{
display:flex;
align-items:center;
gap:10px;
}

nav a{
font-size:13px;
margin:0;
white-space:nowrap;
}

.contact-btn{
font-size:13px;
}

}

/* MENU ICON */

.menu-icon{
font-size:28px;
cursor:pointer;
display:none;
}

/* MOBILE MENU */

@media screen and (max-width:768px){

.menu-icon{
display:block;
}

nav{
position:fixed;
top:70px;
right:-100%;
width:220px;
height:100vh;
background:#111;
flex-direction:column;
align-items:flex-start;
padding:20px;
gap:20px;
transition:0.3s;
}

nav.active{
right:0;
}

nav a{
font-size:16px;
}

}

/* FLOATING BUTTONS */

.floating-btn{
position:fixed;
right:15px;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 15px rgba(0,0,0,0.4);
z-index:999;
}

.floating-btn img{
width:28px;
height:28px;
}

/* WhatsApp position */
.whatsapp-float{
bottom:80px;
background:#25D366;
}

/* Call position */
.call-float{
bottom:20px;
background:#ff9900;
}