/* ===================================
   VEHICLE BOOKING PORTAL
   BLUE + YELLOW PREMIUM THEME
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

--primary:#0B4EA2;
--secondary:#FFC107;
--light:#F4F8FD;
--white:#ffffff;
--dark:#1B2B48;
--text:#555;
--shadow:0 15px 35px rgba(0,0,0,.08);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--light);
color:var(--dark);
overflow-x:hidden;

}

/* ================= TOP BAR ================= */

.top-bar{

background:linear-gradient(90deg,#0B4EA2,#1565C0);
color:#fff;
padding:12px 0;
font-size:14px;
font-weight:500;

}

/* ================= NAVBAR ================= */

.navbar{

padding:18px 0;
background:#fff!important;

}

.navbar-brand{

font-size:30px;
font-weight:700;
color:#0B4EA2!important;

}

.nav-link{

font-weight:600;
margin-left:18px;
color:#333!important;
transition:.3s;

}

.nav-link:hover{

color:#0B4EA2!important;

}

.btn-book{

background:#FFC107;
color:#222;
padding:13px 32px;
border-radius:40px;
font-weight:700;
border:none;
transition:.3s;

}

.btn-book:hover{

background:#ffca28;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(255,193,7,.4);

}

/* ================= HERO ================= */

.hero{

padding:90px 0;

background:
linear-gradient(
135deg,
#EAF4FF 0%,
#FFFFFF 100%
);

}

.hero-tag{

display:inline-block;

background:#E3F2FD;

color:#0B4EA2;

padding:10px 20px;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

color:#173E73;

}

.hero p{

font-size:18px;

color:#666;

max-width:520px;

margin-bottom:30px;

line-height:1.8;

}

.hero-image{

max-width:100%;

animation:float 5s infinite ease-in-out;

}

/* Floating Animation */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

/* ================= HERO FEATURES ================= */

.hero-features{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.feature{

background:white;

padding:14px 22px;

border-radius:40px;

box-shadow:var(--shadow);

font-weight:600;

}

/* ================= VEHICLE SECTION ================= */

.vehicle-section{

padding:90px 0;

}

.vehicle-section h2{

font-size:42px;

font-weight:700;

color:#173E73;

}

.vehicle-section p{

color:#666;

}

/* ================= VEHICLE CARD ================= */

.vehicle-card{

background:white;

border-radius:25px;

padding:35px;

text-align:center;

transition:.4s;

box-shadow:var(--shadow);

height:100%;

border:2px solid transparent;

}

.vehicle-card:hover{

transform:translateY(-10px);

border-color:#FFC107;

}

.vehicle-icon{

font-size:55px;

margin-bottom:20px;

}

.vehicle-card h4{

font-weight:700;

margin-bottom:10px;

color:#0B4EA2;

}

.vehicle-card p{

margin-bottom:20px;

}

/* ================= STEP BOX ================= */

.process-section{

padding:90px 0;

background:white;

}

.step-box{

background:#F8FBFF;

padding:30px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.3s;

height:100%;

}

.step-box:hover{

transform:translateY(-8px);

}

.step-number{

width:70px;

height:70px;

background:#FFC107;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

font-size:28px;

font-weight:700;

color:#173E73;

margin-bottom:20px;

}

/* ================= FOOTER ================= */

footer{

background:#0B4EA2;

padding:35px 0;

color:white;

margin-top:60px;

}

footer p{

margin:5px;

}

/* ================= MOBILE ================= */

@media(max-width:991px){

.hero{

text-align:center;

padding:60px 0;

}

.hero h1{

font-size:42px;

}

.hero p{

margin:auto;

margin-bottom:25px;

}

.hero-features{

justify-content:center;

}

.hero-image{

margin-top:40px;

}

}

@media(max-width:576px){

.hero h1{

font-size:32px;

}

.navbar-brand{

font-size:22px;

}

.btn-book{

width:100%;

}

.vehicle-card{

padding:25px;

}

.step-box{

margin-bottom:20px;

}

}
/* ==========================================
   PREMIUM EFFECTS
==========================================*/

/* Hero Background */

.hero{

position:relative;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(255,193,7,.15);

border-radius:50%;

top:-180px;

right:-120px;

filter:blur(10px);

}

.hero::after{

content:"";

position:absolute;

width:300px;

height:300px;

background:rgba(11,78,162,.12);

border-radius:50%;

left:-120px;

bottom:-120px;

}

/* Section Title */

.section-title{

font-size:42px;

font-weight:700;

color:#0B4EA2;

margin-bottom:15px;

}

.section-subtitle{

color:#666;

font-size:18px;

margin-bottom:50px;

}

/* Card Hover */

.vehicle-card{

position:relative;

overflow:hidden;

}

.vehicle-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:5px;

background:#FFC107;

transition:.4s;

}

.vehicle-card:hover::before{

left:0;

}

.vehicle-card:hover{

background:#ffffff;

box-shadow:0 25px 45px rgba(0,0,0,.12);

}

/* Vehicle Icon */

.vehicle-icon{

width:90px;

height:90px;

background:#EAF4FF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

font-size:45px;

transition:.3s;

}

.vehicle-card:hover .vehicle-icon{

background:#FFC107;

transform:rotate(8deg);

}

/* Process */

.process-section{

position:relative;

}

.step-box{

position:relative;

}

.step-box::after{

content:"";

position:absolute;

top:34px;

right:-55px;

width:70px;

height:4px;

background:#FFC107;

}

.step-box:last-child::after{

display:none;

}

/* Feature Box */

.info-box{

background:white;

padding:30px;

border-radius:20px;

box-shadow:0 15px 30px rgba(0,0,0,.08);

transition:.3s;

height:100%;

text-align:center;

}

.info-box:hover{

transform:translateY(-8px);

}

.info-box i{

font-size:50px;

color:#0B4EA2;

margin-bottom:20px;

}

.info-box h4{

font-weight:700;

margin-bottom:10px;

}

/* Counter */

.counter{

font-size:45px;

font-weight:700;

color:#FFC107;

}

.counter-title{

font-weight:600;

color:white;

}

/* CTA */

.cta{

background:linear-gradient(90deg,#0B4EA2,#1565C0);

padding:70px 0;

text-align:center;

color:white;

}

.cta h2{

font-size:42px;

font-weight:700;

margin-bottom:20px;

}

.cta p{

font-size:18px;

opacity:.9;

margin-bottom:30px;

}

/* Yellow Button */

.btn-yellow{

background:#FFC107;

color:#111;

padding:15px 35px;

border-radius:40px;

font-weight:700;

transition:.3s;

border:none;

}

.btn-yellow:hover{

background:#FFD54F;

transform:translateY(-3px);

}

/* Trust Bar */

.trust-bar{

background:#173E73;

padding:25px 0;

color:white;

}

.trust-item{

display:flex;

align-items:center;

justify-content:center;

gap:12px;

font-weight:600;

}

/* Footer */

footer{

background:#0B4EA2;

position:relative;

overflow:hidden;

}

footer::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(255,255,255,.06);

border-radius:50%;

top:-150px;

right:-150px;

}

/* Fade */

.fade-up{

opacity:0;

transform:translateY(30px);

transition:.8s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/* Scroll Button */

#scrollTop{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

background:#FFC107;

color:#173E73;

border:none;

border-radius:50%;

font-size:24px;

cursor:pointer;

display:none;

box-shadow:0 10px 30px rgba(0,0,0,.25);

z-index:999;

}

#scrollTop:hover{

background:#FFD54F;

}

/* Responsive */

@media(max-width:992px){

.step-box::after{

display:none;

}

.hero::before,
.hero::after{

display:none;

}

.section-title{

font-size:32px;

}

.cta h2{

font-size:30px;

}

}

@media(max-width:576px){

.vehicle-icon{

width:70px;

height:70px;

font-size:35px;

}

.counter{

font-size:32px;

}

}/* Ripple Effect */

.btn-book{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.6);

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}

/* Navbar */

.navbar{

transition:.3s;

}

/* Hero Image */

.hero-image{

transition:.4s;

}

.hero-image:hover{

transform:scale(1.03);

}/* ================= DISCLAIMER ================= */

.disclaimer-section{

padding:50px 0;

background:#FFF8E6;

}

.disclaimer-box{

background:#ffffff;

border-left:6px solid #FFC107;

padding:30px;

border-radius:15px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.disclaimer-box h3{

color:#0B4EA2;

font-weight:700;

margin-bottom:10px;

}

.disclaimer-box h5{

color:#D35400;

font-weight:600;

margin-bottom:20px;

}

.disclaimer-box p{

color:#555;

line-height:1.8;

margin-bottom:15px;

}