:root {
    --primary-color: #FFDF58;
    --secondary-color: #2c3e50;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --accent-color: #FFD700;
    --gradient: linear-gradient(135deg, #FFDF58 0%, #FFD700 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    font-weight: 400;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a202c;
}



.display-1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.display-2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.display-3 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color:#FFDF58 ;
}

.display-4 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.display-5 {
    /* font-size: clamp(1.5rem, 4vw, 3rem); */
    font-weight: 500;
    letter-spacing: -0.03em;
}

.display-6 {
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lead {
       font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    /* font-weight: 400; */
    line-height: 1.7;
    color: #4a5568;
    /* width: 268px;
    height: 109px;
    font-size: 20px; */
}

p {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

small {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    line-height: 1.5;
}

.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-extrabold { font-weight: 800; }
.fw-black { font-weight: 900; }

/* Navigation */
.navbar {
    background: transparent !important;
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    max-width: 100%;
    padding: 0;
}



.navbar-brand {
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    position: relative;
}

.nav-link:hover {
    color: white !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
    transform: scaleX(1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar {
        background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%) !important;
        padding: 1rem 0;
        position: fixed;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar .container {
        padding: 0 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .me-2{
      width: 79px;
        height: 19px;
    }
    .navbar-collapse {
        background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Adjust hero section for fixed navbar */
    .hero-section {
        padding-top: 80px;
    }
}

/* Footer Styling */
footer .text-muted {
    color: white !important;
}

footer h6 {
    color: white !important;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer a:hover {
    color: white !important;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('images/hero_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Black Overlay */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content */
.hero-section .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

/* Title */
.hero-section .hero-title {
    color: #FFDF58; 
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Paragraph */
.hero-section .hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

/* Buttons */
.hero-section .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section .hero-title {
        font-size: 1.6rem;
    }
    .hero-section .hero-text {
        font-size: 1rem;
    }
    .hero-section {
        padding: 0 10px;
    }
}



/* Mobile Hero Section */
/* @media (max-width: 768px) {
    .hero-section {
        background-position: center center !important;
        background-attachment: scroll !important;
        min-height: 100vh;
    }
}  */

/* ✅ Mobile Responsive Adjustments for Hero Buttons */
@media (max-width: 768px) {
    .hero-section .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-section .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin-bottom: 1rem;
       
    }
}

/* Service Boxes */
.service-box {
    background: white;
    border-radius: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 5.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    
}

.service-box:hover {
    transition: all 1.0s ease;
     border-radius: 10px;
    transform: translateY(-8px);
    box-shadow: 0 10px 50px rgba(0,0,0,0.12);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 223, 88, 0.3);
}

.service-box:hover .service-icon {
    transform: scale(1.1);
}

.service-box h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.25rem;
}

.service-box p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Feature Cards (Legacy) */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 223, 88, 0.4);
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 223, 88, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 223, 88, 0.6);
    background: linear-gradient(135deg, #FFD700 0%, #FFDF58 100%);
    color: #1a1a1a;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Contact Items */
.contact-item {
    /* text-align: center; */
    padding: 1rem;
}

.contact-item h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFDF58;
    box-shadow: 0 0 0 0.2rem rgba(255, 223, 88, 0.25);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-select option {
    background: #1a1a1a;
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #212529 !important;
}

.bg-black {
    background-color: #000 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .col-lg-6:first-child {
        order: 2;
    }
    
    .hero-section .col-lg-6:last-child {
        order: 1;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .feature-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
         margin-bottom: 23px;
    }
    
    .contact-form-modern {
        padding: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .display-3 {
        font-size: 2rem;
        margin-top: 111px;
    }
    
    .display-5 {
        font-size: 1.5rem;
        margin-top: 32px;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .feature-card,
    .testimonial-card,
    .contact-form-modern {
        padding: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}



/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Auto-scrolling Testimonials */
.testimonial-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 2rem;
    width: calc(400px * 6);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 350px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-372px * 3));
    }
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 280px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-302px * 3));
        }
    }
}



.stars i {
    font-size: 1.1rem;
    margin-right: 0.2rem;
}

/* Stats Section */
.stat-item {
    padding: 1.5rem;
}

.counter {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Benefits */
.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 223, 88, 0.3);
}

/* Contact Section */
.bg-gradient {
    background: var(--gradient);
    position: relative;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-modern .form-control,
.contact-form-modern .form-select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 223, 88, 0.25);
    background: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #b0b0b0;
}

::-webkit-scrollbar-thumb {
    background: #212529 !important;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* For Drivers Section Responsive Styling */

@media (max-width: 992px) {
    #drivers .row {
        text-align: center;
    }

    #drivers .col-lg-6 {
        margin-bottom: 2rem;
    }

    #drivers img {
        max-width: 90%;
        margin: 0 auto;
    }

    #drivers h2.display-5 {
        font-size: 2rem;
    }

    #drivers .lead {
        font-size: 1rem;
    }

    #drivers .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    #drivers .benefit-icon {
        margin-bottom: 0.75rem;
    }

    #drivers .btn {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    #drivers {
        padding: 60px 0;
    }

    #drivers h2.display-5 {
        font-size: 1.6rem;
    }

    #drivers .lead {
        font-size: 0.95rem;
    }

    #drivers img {
        width: 100%;
        border-radius: 15px;
    }

    #drivers .benefit-item {
        margin-bottom: 1.5rem;
    }
}


/* =============================
   Mobile Fix - Get In Touch 
============================= */
@media (max-width: 576px) {
    #contact .contact-info {
        text-align: left;
        padding: 20px;
        margin-left: 10px; 
    }

    #contact .contact-info h4 {
        margin-left: 0; 
    }

    #contact .contact-item {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 1.2rem;
        gap: 10px;
        padding-left: 0; 
    }

    #contact .contact-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #contact .contact-item h6 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    #contact .contact-item p {
        font-size: 0.95rem;
        margin: 0;
    }

    #contact .col-lg-6:first-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0; 
    }
}




