:root {

    --primary: #46e29b;

    --secondary: #12a6fe;

    --dark: #0a0f16;

    --dark-overlay: rgba(10, 15, 22, 0.75);

    --light: #f8f9fa;

    --glass: rgba(255, 255, 255, 0.1);

    --glass-border: rgba(255, 255, 255, 0.2);

    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

    --font-main: 'Open Sans', sans-serif;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: var(--font-main);

    color: #444;

    overflow-x: hidden;

    background-color: #000;

}



h1, h2, h3, h4, h5, h6 {

    font-weight: 700;

    color: #fff;

}



a { text-decoration: none; }



/* Scroll Reveal Animation Classes */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition: all 0.8s ease-out;

}

.reveal.active {

    opacity: 1;

    transform: translateY(0);

}



/* Gradient Text */

.text-gradient {

    background: var(--gradient);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



/* Custom Button */

.btn-gradient {

    background: var(--gradient);

    color: #fff;

    padding: 12px 35px;

    border-radius: 50px;

    border: none;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    position: relative;

    z-index: 1;

    overflow: hidden;

    transition: all 0.4s ease;

    box-shadow: 0 10px 20px rgba(18, 166, 254, 0.3);

}



.btn-gradient::before {

    content: '';

    position: absolute;

    top: 0; left: 0; width: 0%; height: 100%;

    background: #fff;

    z-index: -1;

    transition: all 0.4s ease;

    opacity: 0.2;

}



.btn-gradient:hover::before { width: 100%; }

.btn-gradient:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 15px 30px rgba(18, 166, 254, 0.4); }



.btn-outline-light-custom {

    border: 2px solid rgba(255,255,255,0.8);

    color: #fff;

    padding: 10px 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: all 0.3s;

}

.btn-outline-light-custom:hover {

    background: #fff;

    color: var(--dark);

}



/* Section Spacing */

section { padding: 100px 0; position: relative; }



/* Section Heading */

.section-title {

    text-align: center;

    margin-bottom: 60px;

    position: relative;

}

.section-title span {

    display: block;

    color: var(--secondary);

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 10px;

    font-size: 0.9rem;

}

.section-title h2 {

    font-size: 2.5rem;

    font-weight: 800;

    color: #fff;

}

.section-title::after {

    content: '';

    display: block;

    width: 60px;

    height: 4px;

    background: var(--gradient);

    margin: 20px auto 0;

    border-radius: 2px;

}



/* =========================================

    1. NAVBAR

    ========================================= */

.navbar {

    transition: all 0.4s ease;

    padding: 20px 0;

    background: transparent;

}



.navbar.scrolled {

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    padding: 10px 0;

    box-shadow: 0 5px 30px rgba(0,0,0,0.05);

}



.navbar-brand {

    font-size: 1.8rem;

    font-weight: 800;

    color: #fff;

    letter-spacing: -1px;

}

.navbar.scrolled .navbar-brand { color: var(--dark); }



.nav-link {

    color: rgba(255,255,255,0.9) !important;

    font-weight: 600;

    margin: 0 15px;

    position: relative;

}

.navbar.scrolled .nav-link { color: var(--dark) !important; }



.nav-link::after {

    content: '';

    position: absolute;

    width: 0; height: 2px;

    bottom: 5px; left: 0;

    background: var(--primary);

    transition: width 0.3s;

}

.nav-link:hover::after { width: 100%; }



.navbar-toggler { border: none; color: #fff; font-size: 1.5rem; }

.navbar.scrolled .navbar-toggler { color: var(--dark); }



/* =========================================

    2. HERO SECTION

    ========================================= */

#home { padding: 0; height: 100vh; position: relative; overflow: hidden; }



.hero-slider .item {

    height: 100vh;

    background-size: cover;

    background-position: center;

    position: relative;

}



.hero-overlay {

    position: absolute;

    top: 0; left: 0; width: 100%; height: 100%;

    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);

    display: flex;

    align-items: center;

}



/* Ken Burns Effect */

@keyframes kenBurns {

    0% { transform: scale(1); }

    100% { transform: scale(1.1); }

}

.owl-item.active .item-bg {

    animation: kenBurns 10s linear forwards;

}



.hero-content {

    z-index: 2;

    color: #fff;

}



.hero-title {

    font-size: 4rem;

    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 20px;

    opacity: 0;

    transform: translateY(30px);

    animation: fadeInUp 0.8s 0.3s forwards;

    color: #fff;

}



.hero-subtitle {

    font-size: 1.2rem;

    margin-bottom: 40px;

    opacity: 0;

    animation: fadeInUp 0.8s 0.6s forwards;

    font-weight: 300;

    color: rgba(255,255,255,0.8);

}



.hero-btns {

    opacity: 0;

    animation: fadeInUp 0.8s 0.9s forwards;

}



/* Scroll Mouse */

.scroll-down {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    width: 30px; height: 50px;

    border: 2px solid var(--secondary);

    border-radius: 50px;

    z-index: 13;

}

.scroll-down::before {

    content: '';

    position: absolute;

    top: 8px; left: 50%;

    width: 6px; height: 6px;

    background: var(--secondary);

    margin-left: -3px;

    border-radius: 100%;

    animation: scrollWheel 2s infinite;

}



@keyframes scrollWheel {

    0% { top: 8px; opacity: 1; }

    100% { top: 30px; opacity: 0; }

}

@keyframes fadeInUp {

    to { opacity: 1; transform: translateY(0); }

}



/* =========================================

    3. FLOATING INFO CARDS

    ========================================= */

#info-cards {

    padding: 0;

    margin-top: -80px;

    position: relative;

    z-index: 10;

}

.glass-card {

    background: rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.1);

    display: flex;

    align-items: center;

    gap: 20px;

    transition: transform 0.3s;

    border: 1px solid rgba(255,255,255,0.5);

    height: 100%;

}

.glass-card:hover { transform: translateY(-10px); }

.glass-card i {

    font-size: 2.5rem;

    background: var(--gradient);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.glass-card h5 { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--dark);}

.glass-card p { margin: 0; font-size: 0.9rem; color: #666; }



/* =========================================

    4. SERVICES

    ========================================= */

.service-card {

    position: relative;

    height: 350px;

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 30px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.1);

}

.service-bg {

    position: absolute;

    top: 0; left: 0; width: 100%; height: 100%;

    background-size: cover;

    background-position: center;

    transition: transform 0.6s ease;

}

.service-overlay {

    position: absolute;

    top: 0; left: 0; width: 100%; height: 100%;

    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1));

    transition: background 0.6s ease;

}

.service-content {

    position: absolute;

    bottom: 0; left: 0; width: 100%;

    padding: 30px;

    color: #fff;

    transform: translateY(20px);

    transition: transform 0.4s ease;

}

.service-icon {

    font-size: 2.5rem;

    margin-bottom: 15px;

    color: var(--primary);

}

.service-card:hover .service-bg { transform: scale(1.1); }

.service-card:hover .service-overlay { background: linear-gradient(to top, var(--secondary), rgba(70, 226, 155, 0.4)); opacity: 0.9; }

.service-card:hover .service-content { transform: translateY(0); }

.service-title { font-size: 1.5rem; margin-bottom: 10px;color: #fff; }

.service-desc { font-size: 0.9rem; opacity: 0.9; }



/* =========================================

    5. ABOUT

    ========================================= */

.about-img-wrapper {

    position: relative;

    padding-right: 30px;

    padding-bottom: 30px;

}

.about-img {

    border-radius: 20px;

    width: 100%;

    box-shadow: 0 20px 40px rgba(0,0,0,0.2);

}

.exp-badge {

    position: absolute;

    bottom: 0;

    right: 0;

    background: var(--dark);

    color: #fff;

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow: -10px -10px 0 #fff;

}

.exp-badge h3 { color: var(--primary); font-size: 2.5rem; margin: 0; }

.check-list li {

    list-style: none;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    font-size: 1.1rem;

}

.check-list i {

    color: var(--primary);

    margin-right: 15px;

    font-size: 1.2rem;

    background: rgba(70, 226, 155, 0.1);

    padding: 8px;

    border-radius: 50%;

}



/* Stats */

.stat-box {

    text-align: center;

    padding: 20px;

    border-right: 1px solid #eee;

}

.stat-box:last-child { border: none; }

.stat-number { font-size: 2.5rem; font-weight: 800; color: #fff; display: block; }

.stat-label { color: #888; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }



/* =========================================

    6. TESTIMONIALS

    ========================================= */

.testimonial-card {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    text-align: center;

    margin: 20px;

}

.client-img {

    width: 80px !important;

    height: 80px;

    border-radius: 50%;

    margin: 0 auto 20px;

    object-fit: cover;

    border: 3px solid var(--primary);

}

.stars { color: #ffc107; margin-bottom: 15px; }

.quote { font-style: italic; color: #555; margin-bottom: 20px; display: block; height: 140px; overflow: auto; }
.quote::-webkit-scrollbar {
    width: 1px
}
.quote::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 20px
}

.client-name { font-weight: 700; color: var(--dark); margin: 0; }

.client-role { font-size: 0.85rem; color: var(--secondary); }



/* =========================================

    7. GALLERY

    ========================================= */

.gallery-item {

    display: block;

    position: relative;

    border-radius: 15px;

    overflow: hidden;

    margin-bottom: 24px;

    cursor: pointer;

}

.gallery-item img {

    width: 100%;

    transition: transform 0.5s ease;

}

.gallery-overlay {

    position: absolute;

    top: 0; left: 0; width: 100%; height: 100%;

    background: rgba(0,0,0,0.5);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.3s ease;

}

.gallery-overlay i { font-size: 2rem; color: #fff; transform: scale(0); transition: transform 0.3s; }



.gallery-item:hover img { transform: scale(1.08); }

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item:hover .gallery-overlay i { transform: scale(1); }



/* =========================================

    8. PRICING

    ========================================= */

.pricing-card {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.3s;

    position: relative;

    overflow: hidden;

    border-top: 5px solid transparent;

}

.pricing-card.popular {

    transform: scale(1.05);

    box-shadow: 0 20px 50px rgba(18, 166, 254, 0.15);

    z-index: 2;

    border-top: 5px solid var(--primary);

}

.pricing-card:hover { transform: translateY(-10px); }



.pricing-header h3 { font-size: 1.5rem; margin-bottom: 10px; }

.price { font-size: 3rem; font-weight: 800; color: var(--dark); }

.price span { font-size: 1rem; color: #888; font-weight: 400; }



.pricing-features { margin: 30px 0; padding: 0; }

.pricing-features li {

    list-style: none;

    margin-bottom: 12px;

    color: #666;

    display: flex;

    align-items: center;

}

.pricing-features li i {

    color: var(--primary);

    margin-right: 10px;

}

.pricing-features li.disabled { color: #ccc; }

.pricing-features li.disabled i { color: #ccc; }



/* =========================================

    9. FAQ

    ========================================= */

.accordion-item {

    border: none;

    margin-bottom: 15px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.03);

    border-radius: 10px !important;

    overflow: hidden;

}

.accordion-button {

    background: #fff;

    font-weight: 700;

    color: var(--dark);

    box-shadow: none !important;

    padding: 20px;

}

.accordion-button:not(.collapsed) {

    background: rgba(70, 226, 155, 0.1);

    color: var(--dark);

}

.accordion-button::after {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2312a6fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}

.accordion-body { color: #666; line-height: 1.6; }



/* =========================================

    10. FINAL CTA

    ========================================= */

#cta {

    background: linear-gradient(135deg, #0a0f16 0%, #162436 100%);

    color: #fff;

    position: relative;

    overflow: hidden;

}

#cta::before {

    content: '';

    position: absolute;

    top: -50%; right: -20%;

    width: 800px; height: 800px;

    background: radial-gradient(circle, rgba(18, 166, 254, 0.15) 0%, rgba(0,0,0,0) 70%);

    border-radius: 50%;

}



/* =========================================

    11. FOOTER

    ========================================= */

footer {

    background: var(--dark);

    color: #aaa;

    padding: 80px 0 30px;

    font-size: 0.9rem;

}

footer h5 { color: #fff; margin-bottom: 25px; font-weight: 700; }

footer ul { padding: 0; list-style: none; }

footer ul li { margin-bottom: 12px; }

footer a { color: #aaa; transition: 0.3s; }

footer a:hover { color: var(--primary); padding-left: 5px; }



.social-links a {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    width: 40px; height: 40px;

    background: rgba(255,255,255,0.1);

    border-radius: 50%;

    margin-right: 10px;

    color: #fff;

    transition: 0.3s;

}

.social-links a:hover { background: var(--gradient); transform: translateY(-3px); }

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    padding-top: 30px;

    margin-top: 50px;

    text-align: center;

}



/* Floating WhatsApp */

.floating-wa {

    position: fixed;

    bottom: 30px; right: 30px;

    width: 60px; height: 60px;

    background: #25d366;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 2rem;

    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);

    z-index: 1000;

    transition: 0.3s;

}

.floating-wa:hover { transform: scale(1.1); color: #fff; }



/* Media Queries */

@media (max-width: 991px) {

    .hero-title { font-size: 2.5rem; }

    #info-cards { margin-top: 50px; }

    .pricing-card.popular { transform: scale(1); }

    .about-img-wrapper { margin-bottom: 40px; padding: 0; }

    .exp-badge { position: relative; display: inline-block; margin-top: -30px; right: auto; left: 20px; }

}

.hero-slider .item-bg{

    width: 100%;

    background-size: cover;

    background-repeat: no-repeat;

    height: 100%;

}



.error-page {

    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('../images/hero-1.webp');

    background-position: center;

    background-size: cover;

}

.inner-hero.service-hero {

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/service-bg.webp');

    background-position: center;

    background-size: cover;

}

.inner-hero.contact-hero {

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.png');

    background-position: center;

    background-size: cover;

}

.inner-hero.about-hero {

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/about-bg-new.webp');

    background-size: cover;

}

.inner-hero {

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/Fleet-Maintenance.png');

    background-size: cover;

    background-repeat: no-repeat;

    height: 350px;

    display: flex;

    text-align: center;

    align-items: center;

    padding-top: 80px;

}

.navbar-brand img, .footer-logo img{

    max-width: 70px;

}





/* CONTACT SECTION */

.contact-info-box {

    background: linear-gradient(135deg, #0a0f16, #162436);

    padding: 40px;

    border-radius: 20px;

    color: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

}



.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;

}



.contact-item i {

    font-size: 1.5rem;

    color: var(--primary);

    margin-top: 5px;

}



.contact-item h5 {

    margin: 0;

    font-size: 1rem;

    color: #fff;

}



.contact-item p, .contact-item a {

    margin: 0;

    font-size: 0.9rem;

    color: rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important;

}



/* FORM */

.contact-form-box {

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(10px);

    padding: 40px;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.1);

}



.contact-form-box .form-control {

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    color: #fff;

    padding: 12px 15px;

    border-radius: 10px;

}



.contact-form-box .form-control::placeholder {

    color: rgba(255,255,255,0.6);

}



.contact-form-box .form-control:focus {

    border-color: var(--primary);

    box-shadow: none;

    background: rgba(255,255,255,0.08);

    color: #fff;

}



/* Dropdown Fix (match dark theme) */

.contact-form-box select.form-control {

    background: rgba(255,255,255,0.05);

    color: #fff;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 10px;

}



.contact-form-box select option {

    background: #0a0f16;

    color: #fff;

}



/* Better input spacing & UI */

.contact-form-box .form-control,

.contact-form-box .form-select {

    height: 50px;

}



/* Textarea height override */

.contact-form-box textarea.form-control {

    height: auto;

}



/* Focus effect upgrade */

.contact-form-box .form-control:focus,

.contact-form-box .form-select:focus {

    border-color: var(--secondary);

    box-shadow: 0 0 10px rgba(18, 166, 254, 0.3);

}



.error-page{

    min-height: 80vh;

}

form .wpcf7-spinner{

    display: none !important;

}



@media (max-width: 991px){

    .navbar.nav-open{

        background-color: #fff;

    }

    .navbar.nav-open .nav-link {

        color: var(--dark) !important;

    }

    .navbar.nav-open .navbar-toggler { border: none; color: #fff; font-size: 1.5rem; }

    .navbar.nav-open .navbar-toggler  { color: var(--dark); }

}



@media (max-width: 767px) {

    .navbar-brand img, .footer-logo img{

        max-width: 60px;

    }

    .contact-info-box, .contact-form-box {

        padding: 25px;

    }

    .hero-overlay, .hero-slider .item, #home {

        height: 80vh;

    }

}



@media (max-width: 575px){

    .hero-btns a{

        margin-top: 20px;

    }

}

@media (max-width: 379px){

    .hero-overlay, .hero-slider .item, #home {

        height: 100vh;

    }

}



