* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    color: #fff;
}

/* Gradient Background Animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header and Navigation */
header {
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #a78bfa;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #a78bfa;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #a78bfa;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #a78bfa;
}

.contact-number a {
    background-color: #a78bfa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-number a:hover {
    background-color: #8b5cf6;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 100px;
    min-height: 80vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-button {
    background-color: #a78bfa;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: #8b5cf6;
    transform: scale(1.05);
}

.cta-button:active {
    transform: scale(0.95);
}

.company-info {
    margin-top: 40px;
    font-size: 1rem;
    color: #ccc;
}

.company-info p {
    margin-bottom: 10px;
}

.company-info a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

.hero-image {
    max-width: 45%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 80px 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-choose-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-choose-content h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    background: rgba(44, 44, 44, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(5deg);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #a78bfa, #8b5cf6) 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(167, 139, 250, 0.3);
}

.why-choose-item[data-direction="left"] {
    transform: translateX(-100px) rotate(5deg);
}

.why-choose-item[data-direction="right"] {
    transform: translateX(100px) rotate(-5deg);
}

.why-choose-item[data-direction="top"] {
    transform: translateY(-100px) rotate(3deg);
}

.why-choose-item.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(5deg);
}

.why-choose-item h3,
.why-choose-item p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

/* Coast-to-Coast Shipping Section */
.shipping {
    padding: 80px 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shipping-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.shipping-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shipping-content .subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 40px;
}

.shipping-services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.shipping-card {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #a78bfa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 48%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shipping-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.shipping-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Drive Your Future Section */
.drivers {
    padding: 80px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content since there's no image section */
}

.drivers-content {
    max-width: 100%; /* Take up full width since there's no image section */
    text-align: center;
}

.drivers-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.drivers-content .subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 20px;
}

.drivers-content .description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    font-style: italic;
}

.drivers-services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.driver-card {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #a78bfa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 48%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.driver-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.driver-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.driver-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.driver-card ul li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.driver-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.95);
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .contact-number {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .why-choose-us {
        padding: 50px 30px;
    }

    .why-choose-content h2 {
        font-size: 2rem;
    }

    .why-choose-item {
        width: 100%;
        max-width: 300px;
        height: 150px;
    }

    .shipping {
        padding: 50px 30px;
    }

    .shipping-content h2 {
        font-size: 2rem;
    }

    .shipping-content .subtitle {
        font-size: 1.2rem;
    }

    .shipping-services {
        flex-direction: column;
        gap: 20px;
    }

    .shipping-card {
        width: 100%;
        min-height: auto;
    }

    .drivers {
        flex-direction: column;
        padding: 50px 30px;
    }

    .drivers-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .drivers-content h2 {
        font-size: 2rem;
    }

    .drivers-content .subtitle {
        font-size: 1.2rem;
    }

    .drivers-content .description {
        font-size: 1rem;
    }

    .drivers-services {
        flex-direction: column;
        gap: 20px;
    }

    .driver-card {
        width: 100%;
        min-height: auto;
    }

    .drivers-image {
        max-width: 100%;
    }
}
/* Footer Section */
.footer {
    background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
    padding: 50px 100px 20px;
    border-top: 1px solid #a78bfa;
    color: #ccc;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section.company-info .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.footer-section.company-info p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section.quick-links ul {
    list-style: none;
    padding: 0;
}

.footer-section.quick-links ul li {
    margin-bottom: 10px;
}

.footer-section.quick-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-section.quick-links ul li a:hover {
    color: #a78bfa;
}

.footer-section.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section.contact-info a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.contact-info a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

.footer-section.social-media .social-icons {
    display: flex;
    gap: 15px;
}

.footer-section.social-media .social-icon {
    color: #a78bfa;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-section.social-media .social-icon:hover {
    color: #8b5cf6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 20px 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section.social-media .social-icons {
        justify-content: center;
    }
}
