:root{
--primary-color:#003366;
--secondary-color:#ffcc00;
--accent-color:#e6f2ff;
}
body{
font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
line-height:1.6;
color:#333;
}
h1,
h2,
h3,
h4,
h5,
h6{
color:var(--primary-color);
font-weight:700;
line-height:1.3;
}
p{
margin-bottom:1rem;
}
#mainNav{
background-color:white;
transition:background-color 0.4s ease-in-out;
}
#mainNav.scrolled{
background-color:#f8f8f8 !important;
color:#000 !important;
}
.navbar-brand{
font-weight:700;
font-size:1.5rem;
width:200px;
height:auto;
}
.navbar-brand span{
color:var(--secondary-color);
}
.nav-link{
font-weight:500;
margin:0 5px;
color:#003366;
}
.nav-link:hover,
.nav-link.active{
color:var(--secondary-color) !important;
}
.hero-section{
background:linear-gradient(rgba(0,40,85,0.85),rgba(0,60,120,0.1)),
url('../img/hero2.webp');
background-size:cover;
background-position:center;
color:white;
padding:120px 0;
position:relative;
}
.logo-full-form{
font-size:0.9rem;
letter-spacing:1.5px;
color:#aad2ff;
margin-bottom:20px;
}
.location-badge{
background:var(--secondary-color);
color:var(--primary-color);
padding:10px 20px;
border-radius:50px;
font-weight:700;
display:inline-flex;
align-items:center;
margin:5px;
}
.section-title{
color:var(--primary-color);
position:relative;
padding-bottom:15px;
margin-bottom:30px;
}
.section-title:after{
content:'';
position:absolute;
bottom:0;
left:0;
width:80px;
height:4px;
background:var(--secondary-color);
}
.section-title.text-center:after{
left:50%;
transform:translateX(-50%);
}
.card{
border:none;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:transform 0.3s;
height:100%;
}
.card:hover{
transform:translateY(-10px);
}
.card-icon{
font-size:2.5rem;
color:var(--secondary-color);
margin-bottom:15px;
}
.vehicle-card .capacity-badge{
background:var(--primary-color);
color:white;
padding:5px 15px;
border-radius:20px;
font-size:0.9rem;
}
.contact-info-box{
background:var(--accent-color);
padding:25px;
border-radius:10px;
height:100%;
border-left:5px solid var(--secondary-color);
}
.contact-icon{
font-size:2rem;
color:var(--primary-color);
margin-bottom:15px;
}
.about-img{
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.footer{
background:var(--primary-color);
color:white;
padding:20px 0 10px;
}
.footer a{
color:#aad2ff;
text-decoration:none;
}
.footer a:hover{
color:var(--secondary-color);
}
.social-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
background:rgba(255,255,255,0.1);
border-radius:50%;
margin-right:10px;
transition:all 0.3s;
}
.social-icon:hover{
background:black;
color:white;
}
.btn-primary-custom{
background-color:var(--secondary-color);
border-color:var(--secondary-color);
color:var(--primary-color);
font-weight:600;
padding:10px 25px;
}
.btn-primary-custom:hover{
background-color:#e6b800;
border-color:#e6b800;
color:var(--primary-color);
}
.page-header{
background:linear-gradient(rgba(0,40,85,0.2),rgba(0,60,120,0.1)),
url('../img/hero.webp');
background-size:cover;
background-position:center;
color:white;
padding:80px 0 40px;
margin-bottom:60px;
}
.vehicle-detail-container{
background:white;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
overflow:hidden;
margin-bottom:50px;
}
.vehicle-gallery{
padding:30px;
background:#f8f9fa;
}
.main-image{
width:100%;
height:400px;
overflow:hidden;
border-radius:10px;
margin-bottom:20px;
position:relative;
}
.main-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.5s;
}
.main-image:hover img{
transform:scale(1.02);
}
.image-thumbnails{
display:flex;
gap:15px;
overflow-x:auto;
padding-bottom:10px;
}
.thumbnail{
width:100px;
height:80px;
border-radius:8px;
overflow:hidden;
cursor:pointer;
flex-shrink:0;
border:3px solid transparent;
transition:all 0.3s;
}
.thumbnail:hover,
.thumbnail.active{
border-color:var(--secondary-color);
}
.thumbnail img{
width:100%;
height:100%;
object-fit:cover;
}
.vehicle-info{
padding:40px;
}
.vehicle-title{
color:var(--primary-color);
font-size:2.2rem;
font-weight:700;
margin-bottom:10px;
}
.vehicle-price{
font-size:1.8rem;
font-weight:700;
color:var(--secondary-color);
margin-bottom:20px;
}
.vehicle-price span{
font-size:1rem;
color:#666;
font-weight:normal;
}
.vehicle-specs{
margin:30px 0;
}
.spec-item{
display:flex;
justify-content:space-between;
padding:12px 0;
border-bottom:1px solid #eee;
}
.spec-label{
font-weight:600;
color:var(--primary-color);
}
.spec-value{
font-weight:500;
}
.booking-options{
margin-top:40px;
padding:25px;
background:var(--accent-color);
border-radius:10px;
}
.booking-option{
margin-bottom:20px;
}
.booking-option label{
font-weight:600;
color:var(--primary-color);
}
.features-list{
list-style:none;
padding:0;
margin:25px 0;
}
.features-list li{
padding:10px 0;
border-bottom:1px solid #eee;
display:flex;
align-items:center;
}
.features-list li i{
color:var(--secondary-color);
margin-right:10px;
font-size:1.2rem;
}
.quantity-selector{
display:flex;
align-items:center;
margin:20px 0;
}
.quantity-btn{
width:40px;
height:40px;
background:var(--primary-color);
color:white;
border:none;
border-radius:5px;
font-size:1.2rem;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
}
.quantity-input{
width:60px;
height:40px;
text-align:center;
border:1px solid #ddd;
border-radius:5px;
margin:0 10px;
font-weight:600;
}
.action-buttons{
display:flex;
gap:15px;
margin-top:30px;
}
.btn-book-now{
background:var(--secondary-color);
color:var(--primary-color);
border:none;
padding:15px 30px;
font-weight:700;
border-radius:8px;
flex:1;
transition:all 0.3s;
}
.btn-book-now:hover{
background:#e6b800;
transform:translateY(-3px);
box-shadow:0 5px 15px rgba(255,204,0,0.3);
}
.btn-enquiry{
background:var(--primary-color);
color:white;
border:none;
padding:15px 30px;
font-weight:700;
border-radius:8px;
flex:1;
transition:all 0.3s;
}
.btn-enquiry:hover{
background:#004488;
transform:translateY(-3px);
box-shadow:0 5px 15px rgba(0,51,102,0.3);
}
.vehicle-tabs{
margin-top:50px;
}
.nav-tabs .nav-link{
color:var(--primary-color);
font-weight:600;
padding:15px 25px;
}
.nav-tabs .nav-link.active{
color:var(--secondary-color);
background-color:var(--accent-color);
border-color:var(--accent-color) var(--accent-color) #fff;
}
.tab-content{
padding:30px;
background:white;
border:1px solid #dee2e6;
border-top:none;
border-radius:0 0 10px 10px;
}
.vehicle-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:35px;
margin-bottom:60px;
}
.vehicle-grid-item{
border-radius:20px;
overflow:hidden;
box-shadow:0 8px 30px rgba(0,0,0,0.05);
transition:all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
background:white;
position:relative;
border:1px solid rgba(0,0,0,0.03);
}
.vehicle-grid-item:hover{
transform:translateY(-15px) scale(1.02);
box-shadow:0 20px 40px rgba(0,51,102,0.15);
}
.vehicle-grid-img{
height:240px;
overflow:hidden;
position:relative;
}
.vehicle-grid-img img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.8s ease;
}
.vehicle-grid-item:hover .vehicle-grid-img img{
transform:scale(1.1);
}
.vehicle-grid-badge{
position:absolute;
top:20px;
right:20px;
background:var(--secondary-color);
color:var(--primary-color);
padding:6px 18px;
border-radius:50px;
font-weight:800;
font-size:0.85rem;
box-shadow:0 4px 10px rgba(255,204,0,0.4);
z-index:2;
}
.trending-badge{
position:absolute;
top:20px;
left:20px;
background:#ff4d4d;
color:white;
padding:6px 15px;
border-radius:50px;
font-weight:800;
font-size:0.75rem;
text-transform:uppercase;
letter-spacing:1px;
z-index:2;
animation:pulsate 2s infinite;
}
@keyframes pulsate{
0%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(255,77,77,0.7);
}
70%{
transform:scale(1.05);
box-shadow:0 0 0 10px rgba(255,77,77,0);
}
100%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(255,77,77,0);
}
}
.vehicle-grid-content{
padding:25px;
background:rgba(255,255,255,0.8);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
border-top:1px solid rgba(255,255,255,0.3);
}
.vehicle-grid-title{
color:var(--primary-color);
font-size:1.4rem;
font-weight:800;
margin-bottom:12px;
}
.trending-desc{
font-size:0.95rem;
color:#555;
margin-bottom:20px;
display:-webkit-box;
-webkit-line-clamp:2;
line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}
.breadcrumb-nav{
background:#f8f9fa;
padding:15px 0;
margin-bottom:30px;
}
.breadcrumb{
margin-bottom:0;
}
.breadcrumb-item a{
color:var(--primary-color);
text-decoration:none;
}
.breadcrumb-item.active{
color:#666;
}
.back-to-top{
position:fixed;
bottom:30px;
right:30px;
width:50px;
height:50px;
background:var(--secondary-color);
color:var(--primary-color);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:1.5rem;
text-decoration:none;
z-index:1000;
opacity:0;
transition:opacity 0.3s;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
}
.back-to-top.show{
opacity:1;
}
.whatsapp{
position:fixed;
bottom:90px;
right:30px;
width:50px;
height:50px;
background:#25d366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:1.5rem;
text-decoration:none;
z-index:1000;
opacity:1;
transition:opacity 0.3s;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
}
/* .whatsapp.show{
opacity:1;
}*/
@media (max-width:768px){
.hero-section{
padding:80px 0;
}
.hero-section h1{
font-size:2.2rem;
}
.vehicle-title{
font-size:1.8rem;
}
.main-image{
height:300px;
}
.action-buttons{
flex-direction:column;
}
.vehicle-grid{
grid-template-columns:1fr;
}
}
@media (max-width:576px){
.hero-section{
padding:60px 0;
}
.hero-section h1{
font-size:1.8rem;
}
.vehicle-info{
padding:20px;
}
.vehicle-gallery{
padding:20px;
}
}
.gallery-item{
overflow:hidden;
border-radius:10px;
margin-bottom:20px;
height:250px;
}
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.5s;
}
.gallery-item:hover img{
transform:scale(1.05);
}
.cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:rgba(0,51,102,0.98);
color:white;
padding:1.5rem 0;
z-index:10000;
box-shadow:0 -5px 25px rgba(0,0,0,0.4);
transform:translateY(100%);
transition:transform 0.6s cubic-bezier(0.16,1,0.3,1);
border-top:2px solid var(--secondary-color,#ffcc00);
}
.cookie-banner.show{
transform:translateY(0);
}
.cookie-banner p{
font-size:0.95rem;
line-height:1.6;
margin:0;
}
@media (max-width:768px){
.cookie-banner{
padding:1.25rem 0;
}
.cookie-banner .btn{
width:100%;
margin-bottom:0.5rem;
}
.cookie-banner .btn:last-child{
margin-bottom:0;
}
}
