/* ==========================================================
   NEXORA MOBILITY FLEET
   Premium Black & Silver Theme
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --primary:#0d6efd;
    --secondary:#bfc5cc;
    --dark:#abc2e4;
    --dark2:#d7aae8;
    --light:#ffffff;
    --text:#d6d6d6;
    --border:#2c2c2c;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--dark);
    color:var(--text);
    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/* ================= PRELOADER ================= */

#preloader{

    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;

}

#preloader img{

    width:120px;
    margin-bottom:20px;

}

#preloader h2{

    color:#fff;
    font-size:34px;

}

#preloader p{

    color:#aaa;
    margin-top:10px;

}

/* ================= HEADER ================= */

header{

    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(15px);
    border-bottom:1px solid #222;

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;

}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:65px;
    height:65px;

}

.logo-text h2{

    color:#588aee;
    font-size:58px;

}

.logo-text span{

    color:silver;
    font-size:14px;

}

.nav-links{

    display:flex;
    gap:35px;

}

.nav-links a{

    color:#fff;
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.book-btn{

    background:var(--primary);
    color:#fff;
    padding:14px 32px;
    border-radius:40px;
    transition:.3s;

}

.book-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,.4);

}

/* ================= HERO ================= */

.hero{

    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.75)),
    url("images/hero.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

}

.hero-content{

    max-width:900px;

}

.hero-logo{

    width:130px;
    margin:auto auto 25px;

}

.hero h4{

    color:silver;
    letter-spacing:3px;
    margin-bottom:10px;

}

.hero h1{

    font-size:68px;
    color:#fff;
    margin-bottom:20px;

}

.hero h2{

    color:var(--primary);
    font-size:34px;
    margin-bottom:25px;

}

.hero p{

    color:#ddd;
    line-height:1.9;
    font-size:19px;
    margin-bottom:45px;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.primary-btn{

    background:var(--primary);
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-5px);

}

.secondary-btn{

    border:2px solid silver;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    transition:.3s;

}

.secondary-btn:hover{

    background:silver;
    color:#000;

}

.hero-features{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.hero-features div{

    background:rgba(255,255,255,.05);

    padding:22px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

}

.hero-features i{

    color:var(--primary);

    font-size:30px;

    margin-bottom:12px;

}

.hero-features span{

    display:block;

    color:#fff;

}/* ==========================================
   ABOUT SECTION
========================================== */

.about{

    padding:120px 0;
    background:#111;

}

.about .container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.5);

}

.about-content h5{

    color:silver;
    letter-spacing:3px;
    margin-bottom:15px;

}

.about-content h2{

    color:#fff;
    font-size:48px;
    margin-bottom:25px;

}

.about-content p{

    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:20px;

}

.about-buttons{

    margin-top:35px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* ==========================================
   MISSION SECTION
========================================== */

.mission{

    background:#0b0b0b;
    padding:90px 0;

}

.mission .container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.mission-box{

    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:18px;
    padding:40px;
    text-align:center;
    transition:.4s;

}

.mission-box:hover{

    transform:translateY(-10px);
    border-color:#0d6efd;

}

.mission-box i{

    font-size:55px;
    color:#0d6efd;
    margin-bottom:20px;

}

.mission-box h3{

    color:#fff;
    margin-bottom:15px;

}

.mission-box p{

    color:#bdbdbd;
    line-height:1.8;

}

/* ==========================================
   SECTION HEADING
========================================== */

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading h5{

    color:silver;
    letter-spacing:3px;
    margin-bottom:10px;

}

.section-heading h2{

    color:#fff;
    font-size:45px;
    margin-bottom:20px;

}

.section-heading p{

    color:#cfcfcf;
    max-width:700px;
    margin:auto;
    line-height:1.8;

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{

    padding:120px 0;
    background:#111;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.why-card{

    background:#181818;
    border:1px solid #2c2c2c;
    padding:40px;
    border-radius:18px;
    transition:.4s;
    text-align:center;

}

.why-card:hover{

    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 15px 35px rgba(13,110,253,.2);

}

.why-card i{

    font-size:50px;
    color:#0d6efd;
    margin-bottom:20px;

}

.why-card h3{

    color:#fff;
    margin-bottom:15px;

}

.why-card p{

    color:#bbb;
    line-height:1.8;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    padding:120px 0;
    background:#0b0b0b;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}

.service-card{

    background:#181818;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    border:1px solid #2d2d2d;
    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);
    border-color:#0d6efd;

}

.service-card i{

    font-size:55px;
    color:#0d6efd;
    margin-bottom:20px;

}

.service-card h3{

    color:#fff;
    margin-bottom:15px;

}

.service-card p{

    color:#c9c9c9;
    line-height:1.8;

}

/* ==========================================
   FLEET
========================================== */

.fleet{

    padding:120px 0;
    background:#111;

}

.fleet-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.fleet-card{

    background:#181818;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;

}

.fleet-card:hover{

    transform:translateY(-12px);

}

.fleet-card img{

    width:100%;
    height:280px;
    object-fit:cover;

}

.fleet-content{

    padding:30px;

}

.fleet-content h3{

    color:#fff;
    margin-bottom:10px;

}

.fleet-content p{

    color:#bbb;
    line-height:1.8;

}/* ==========================================
   STATISTICS
========================================== */

.statistics{
    background:#0d6efd;
    padding:90px 0;
}

.statistics .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-card{
    color:#fff;
}

.stat-card i{
    font-size:50px;
    margin-bottom:20px;
}

.stat-card h2{
    font-size:55px;
    margin-bottom:10px;
}

.stat-card p{
    font-size:18px;
}

/* ==========================================
   BOOKING
========================================== */

.booking{
    padding:120px 0;
    background:#111;
}

.booking form{
    background:#181818;
    padding:50px;
    border-radius:20px;
}

.booking-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:#fff;
    margin-bottom:10px;
}

.form-group input,
.form-group select,
.form-group textarea{
    background:#222;
    color:#fff;
    border:1px solid #333;
    border-radius:10px;
    padding:16px;
    font-size:16px;
}

.form-group textarea{
    resize:none;
}

.full-width{
    grid-column:1/3;
}

.booking button{
    margin-top:35px;
    border:none;
    cursor:pointer;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    background:#0b0b0b;
    padding:120px 0;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#181818;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    object-fit:cover;
}

.testimonial-card h3{
    color:#fff;
}

.stars{
    color:gold;
    margin:15px 0;
}

.testimonial-card p{
    color:#cfcfcf;
    line-height:1.8;
}

/* ==========================================
   GALLERY
========================================== */

.gallery{
    background:#111;
    padding:120px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ==========================================
   CTA
========================================== */

.cta{
    background:#0d6efd;
    padding:90px 0;
    text-align:center;
}

.cta h2{
    color:#fff;
    font-size:45px;
    margin-bottom:20px;
}

.cta p{
    color:#fff;
    margin-bottom:35px;
}

/* ==========================================
   CONTACT
========================================== */

.contact{
    background:#111;
    padding:120px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.contact-box i{
    color:#0d6efd;
    font-size:30px;
}

.contact-box h3{
    color:#fff;
    margin-bottom:8px;
}

.contact-box p{
    color:#cfcfcf;
}

.contact-map iframe{
    width:100%;
    height:420px;
    border:0;
    border-radius:20px;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#000;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-logo{
    width:90px;
    margin-bottom:20px;
}

footer h3,
footer h4{
    color:#fff;
    margin-bottom:20px;
}

footer p,
footer li{
    color:#aaa;
    margin-bottom:10px;
}

footer a{
    color:#aaa;
    transition:.3s;
}

footer a:hover{
    color:#0d6efd;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#181818;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
}

.social-icons a:hover{
    background:#0d6efd;
}

footer hr{
    margin:40px 0 25px;
    border:1px solid #222;
}

.copyright{
    text-align:center;
}

/* ==========================================
   FLOATING BUTTONS
========================================== */

.whatsapp-float,
.scroll-top{
    position:fixed;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#f5f5f6;
    font-size:24px;
    z-index:999;
}

.whatsapp-float{
    right:25px;
    bottom:25px;
    background:#25D366;
}

.scroll-top{
    left:25px;
    bottom:25px;
    background:#0d6efd;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.about .container,
.contact-wrapper,
.booking-grid,
.statistics .container,
.footer-grid,
.mission .container,
.why-grid,
.fleet-grid,
.testimonial-grid{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero h1{
    font-size:48px;
}

.hero-features{
    grid-template-columns:repeat(2,1fr);
}

.nav-links{
    display:none;
}

.full-width{
    grid-column:auto;
}

}

@media(max-width:768px){

.hero h1{
    font-size:38px;
}

.hero h2{
    font-size:26px;
}

.section-heading h2{
    font-size:34px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.hero-features{
    grid-template-columns:1fr;
}

.booking form{
    padding:30px;
}

}/* Animation */

.hidden{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

/* Active menu */

.nav-links a.active{

color:#0d6efd;

}

/* Scroll button hidden initially */

.scroll-top{

display:none;

}