*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#050510;
}

.navbar{
    width:100%;
    padding:15px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(90deg,#050510,#0d1028,#11153a);
    box-shadow:0 0 20px rgba(0,255,255,0.2);
    border-bottom:1px solid #00e5ff;
}

.logo-section img{
    width:120px;
    height:160px;
    object-fit:contain;
}

.logo-section{
    height:60px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.logo-section h2{
    color:white;
    font-size:28px;
    font-weight:bold;
    text-transform:uppercase;
    background:linear-gradient(to right,#00e5ff,#a100ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:17px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#00e5ff;
}

.dashboard-icon{
    font-size:22px;
    background:linear-gradient(to right,#00e5ff,#a100ff);
    padding:8px 12px;
    border-radius:50%;
}
.hero-slider{
    width:100%;
    height:500px;
    overflow:hidden;
    position:relative;
    background:#000;
}

.slides{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    width:100%;
    height:100%;
    object-fit:contain;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition:1s ease-in-out;
    background:black;
}

.slide.active{
    opacity:1;
}

.prev,.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.5);
    color:white;
    border:none;
    padding:15px 20px;
    cursor:pointer;
    font-size:28px;
    border-radius:50%;
    z-index:10;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.prev:hover,.next:hover{
    background:#00e5ff;
}
.booking-section{
    width:100%;
    padding:70px 10%;
    background:#050510;
    color:white;
    text-align:center;
}

.booking-title{
    font-size:38px;
    margin-bottom:25px;
    background:linear-gradient(to right,#00e5ff,#a100ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.booking-tabs{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:30px;
}

.tab{
    padding:12px 30px;
    border:none;
    border-radius:30px;
    background:#11153a;
    color:white;
    cursor:pointer;
    font-size:16px;
}

.tab.active{
    background:linear-gradient(to right,#00e5ff,#a100ff);
}

.booking-box{
    background:#11153a;
    padding:60px;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,229,255,0.2);
}

.booking-box h3{
    font-size:30px;
    margin-bottom:10px;
}

.booking-box p{
    margin-bottom:30px;
    color:#ccc;
}

.booking-form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.booking-form select,
.booking-form input{
    padding:15px;
    width:250px;
    border:none;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

.booking-form button{
    padding:15px 35px;
    border:none;
    border-radius:10px;
    background:linear-gradient(to right,#00e5ff,#a100ff);
    color:white;
    font-size:16px;
    cursor:pointer;
    font-weight:bold;
}
.booking-form{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:end;
    margin-top:30px;
}

.booking-form select{
    padding:18px;
    width:280px;
    border:none;
    border-radius:12px;
    font-size:15px;
}

.time-box{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.time-box label{
    font-size:15px;
    font-weight:600;
}

.time-box input{
    padding:18px;
    width:280px;
    border:none;
    border-radius:12px;
    font-size:15px;
}

.booking-form button{
    padding:18px 40px;
    border:none;
    border-radius:12px;
    background:linear-gradient(to right,#00e5ff,#a100ff);
    color:white;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
}
.subscription-message{
    display:none;
    font-size:22px;
    font-weight:bold;
    color:white;
    line-height:1.8;
    text-align:center;
    padding:30px;
    animation:fadeSlide 0.8s ease;
}

@keyframes fadeSlide{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.cars-section{
    padding:80px 10%;
    background:#050510;
    color:white;
}

.cars-title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    color:#00e5ff;
}

.cars-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:25px;
}

.car-card{
    background:#11153a;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    transition:0.4s;
    box-shadow:0 0 20px rgba(0,229,255,0.15);
    position:relative;
}

.car-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 0 30px rgba(161,0,255,0.4);
}

.car-card img{
    width:100%;
    height:180px;
    object-fit:contain;
}

.car-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
}

.car-info span{
    cursor:pointer;
    color:#00e5ff;
    font-weight:bold;
}

.car-info button{
    padding:10px 18px;
    border:none;
    border-radius:10px;
    background:linear-gradient(to right,#00e5ff,#a100ff);
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.details-box{
    margin-top:15px;
    display:none;
    background:#1b2155;
    padding:15px;
    border-radius:12px;
    animation:fadeSlide .5s ease;
}

.details-box p{
    margin:6px 0;
}
.gallery-section{
    padding:80px 10%;
    background:#050510;
    color:white;
}

.gallery-title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    color:#00e5ff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
    gap:25px;
}

.gallery-card{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,229,255,0.15);
    transition:.4s;
}

.gallery-card:hover{
    transform:scale(1.05);
    box-shadow:0 0 30px rgba(161,0,255,0.4);
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}
.why-section{
    padding:80px 10%;
    background:#050510;
    color:white;
}

.why-title{
    text-align:center;
    font-size:40px;
    color:#00e5ff;
}

.why-tagline{
    text-align:center;
    margin:15px 0 50px;
    font-size:18px;
    color:#ccc;
}

.why-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.why-left{
    width:30%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.why-box{
    padding:20px;
    background:#11153a;
    border-radius:15px;
    cursor:pointer;
    font-weight:bold;
    transition:.4s;
    box-shadow:0 0 15px rgba(0,229,255,0.15);
}

.why-box:hover,
.why-box.active{
    background:linear-gradient(to right,#00e5ff,#a100ff);
    transform:translateX(10px);
}

.why-right{
    width:70%;
    background:#11153a;
    padding:30px;
    border-radius:20px;
    box-shadow:0 0 20px rgba(161,0,255,0.2);
}

.why-content{
    display:none;
    animation:fadeSlide .6s ease;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.why-content.active{
    display:flex;
}


.why-content img{
    width:280px;
    height:280px;
    object-fit:contain;
    flex:1;
}

.why-content p{
    flex:1;
    font-size:18px;
    line-height:1.8;
    color:#ddd;
    text-align:left;
}
.footer{
    background:#0a0d22;
    color:white;
    padding:60px 10% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
    color:#00e5ff;
}

.footer-box h4{
    margin-top:15px;
    color:#a100ff;
}

.footer-box p{
    line-height:1.8;
    color:#ccc;
    margin-bottom:12px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#00e5ff;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
    align-items:center;
}

.social-icons a img{
    width:40px;
    height:40px;
    object-fit:contain;
    border-radius:50%;
    transition:.3s;
}

.social-icons a img:hover{
    transform:scale(1.15);
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #333;
    color:#888;
}
.about-hero{
    width:100%;
    height:400px;
    background:url('images/about-banner.jpg') center/cover;
    position:relative;
    margin-top:20px;
}

.about-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-overlay h1{
    font-size:60px;
    color:white;
}

.about-company{
    padding:80px 10%;
    text-align:center;
    background:#050510;
    color:white;
}

.about-company h2{
    font-size:40px;
    color:#00e5ff;
    margin-bottom:25px;
}

.about-company p{
    font-size:18px;
    line-height:1.9;
    color:#ccc;
}

.help-cylinder{
    margin:60px auto;
    width:80%;
    padding:25px;
    background:linear-gradient(90deg,#00e5ff,#a100ff);
    border-radius:50px;
    text-align:center;
    color:white;
    font-size:22px;
    font-weight:bold;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.03);}
    100%{transform:scale(1);}
}
.terms-section{
    padding:80px 10%;
    background:#050510;
    color:white;
}

.terms-section h1{
    text-align:center;
    font-size:50px;
    margin-bottom:40px;
    color:#00e5ff;
}

.terms-box{
    background:#11153a;
    padding:40px;
    border-radius:20px;
    box-shadow:0 0 25px rgba(0,229,255,0.2);
}

.terms-box h3{
    color:#00e5ff;
    margin-top:30px;
    margin-bottom:15px;
    font-size:24px;
}

.terms-box p,
.terms-box li{
    color:#ddd;
    line-height:1.9;
    font-size:17px;
}

.terms-box ul{
    padding-left:25px;
}
.important-notice{
    background:linear-gradient(90deg,#ff9800,#ff3d00);
    padding:25px;
    border-radius:15px;
    margin-bottom:35px;
    box-shadow:0 0 25px rgba(255,87,34,0.4);
    animation:pulseNotice 2s infinite;
}

.important-notice h3{
    color:white !important;
    margin-bottom:10px;
    font-size:26px;
}

.important-notice p{
    color:white;
    font-size:17px;
    font-weight:bold;
}

@keyframes pulseNotice{
    0%{transform:scale(1);}
    50%{transform:scale(1.02);}
    100%{transform:scale(1);}
}
.dashboard-menu{
    position:relative;
}

.dashboard-dropdown{
    position:absolute;
    top:60px;
    right:0;
    width:280px;
    background:#11153a;
    padding:20px;
    border-radius:15px;
    box-shadow:0 0 25px rgba(0,229,255,0.2);
    display:none;
    flex-direction:column;
    gap:15px;
    z-index:999;
    animation:fadeSlide .4s ease;
}

.dashboard-dropdown p{
    padding:12px;
    cursor:pointer;
    border-radius:10px;
    transition:.3s;
    color:white;
}

.dashboard-dropdown p:hover{
    background:linear-gradient(to right,#00e5ff,#a100ff);
}
html{
    scroll-behavior:smooth;
}
.light-mode{
    background:#f5f5f5 !important;
    color:black !important;
}

.light-mode .navbar,
.light-mode .booking-box,
.light-mode .car-card,
.light-mode .why-right,
.light-mode .why-box,
.light-mode .footer,
.light-mode .dashboard-dropdown,
.light-mode .terms-box{
    background:white !important;
    color:black !important;
}

.light-mode p,
.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4,
.light-mode li,
.light-mode a{
    color:black !important;
}
.help-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:1000;
}

.help-box{
    background:#11153a;
    padding:30px;
    width:400px;
    border-radius:20px;
    text-align:center;
    position:relative;
    animation:fadeSlide .4s ease;
}

.help-box h2{
    margin-bottom:20px;
    color:#00e5ff;
}

.help-box p{
    margin:15px 0;
    font-size:18px;
    color:white;
}

#closeHelp{
    position:absolute;
    top:15px;
    right:20px;
    font-size:25px;
    cursor:pointer;
    color:white;
}
.faq-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:1000;
}

.faq-box{
    background:#11153a;
    padding:30px;
    width:500px;
    border-radius:20px;
    position:relative;
    animation:fadeSlide .4s ease;
}

.faq-box h2{
    text-align:center;
    color:#00e5ff;
    margin-bottom:20px;
}

.faq-item{
    margin-bottom:20px;
    padding:15px;
    background:#1b2155;
    border-radius:12px;
}

.faq-item h4{
    color:#00e5ff;
    margin-bottom:10px;
}

.faq-item p{
    color:white;
}

#closeFaq{
    position:absolute;
    top:15px;
    right:20px;
    font-size:25px;
    cursor:pointer;
    color:white;
}
.footer-logo-text{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-logo-text img{
    width: 100px;px;
    height:100px;
    object-fit:contain;
}
.footer-box a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.footer-box a:hover{
    color:#00e5ff;
}
/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px){

    /* NAVBAR */
    .navbar{
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }

    .logo-section img{
        width: 50px;
        height: 50px;
    }

    .nav-links{
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* HERO SLIDER */
    .hero-slider img{
        width: 100%;
        height: auto;
    }

    /* BOOKING SECTION */
    .booking-form{
        flex-direction: column;
        gap: 15px;
    }

    .booking-form select,
    .booking-form input,
    .booking-form button{
        width: 100%;
    }

    /* CAR SECTION */
    .cars-container{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* GALLERY */
    .gallery-container{
        grid-template-columns: 1fr;
    }

    /* WHY CHOOSE US */
    .why-container{
        flex-direction: column;
    }

    .why-left, .why-right{
        width: 100%;
    }

    /* FOOTER */
    .footer-container{
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    /* ABOUT PAGE */
    .about-company{
        flex-direction: column;
    }

}
