/* Transport & Logistics CSS */

:root {
    --primary-red: #e62e2e;
    --primary-red-dark: #c41e1e;
    --primary-red-light: #ff4d4d;
    --primary-red-glow: rgba(230, 46, 46, 0.25);
    --primary-black: #0c0c0c;
    --secondary-black: #141414;
    --dark-gray: #222222;
    --medium-gray: #3a3a3a;
    --light-gray: #6a6a6a;
    --text-white: #ffffff;
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
    --accent-blue: #3b82f6;
    --accent-green: #34d399;
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-red: 0 8px 30px rgba(230, 46, 46, 0.3);
    --card-bg: rgba(26, 26, 26, 0.95);
    --card-border: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(230, 46, 46, 0.1);
    --card-hover-border: rgba(230, 46, 46, 0.4);
    --gradient-red: linear-gradient(145deg, #e62e2e, #c41e1e);
    --gradient-dark: linear-gradient(145deg, #0f0f0f, #1e1e1e);
    --frost-effect: rgba(255, 255, 255, 0.05);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-red);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Grid Pattern Background */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

/* Glow Effects */
.glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.orb-red {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: rgba(230, 46, 46, 0.15);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-blue {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: rgba(59, 130, 246, 0.1);
    animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--text-white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 46, 46, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {

    transform: translateY(-3px);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-image-container {
        max-width: 450px;
        margin: 2rem auto 0;
    }
    .row {
        flex-direction: column;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    .section-title {
        font-size: 2rem;
    }
    section {
        padding: 4rem 0;
    }
    .hero-image-container {
        max-width: 100%;
        transform: perspective(1000px) rotateY(0);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .btn {
        padding: 0.7rem 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-black);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(230, 46, 46, 0.1);
    border: 1px solid rgba(230, 46, 46, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInLeft 1s ease 0.2s both;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.0rem;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInLeft 1s ease 0.4s both;
}

/* Hero Buttons Styling */
.hero-buttons.aos-init {
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInLeft 1s ease 0.6s both;
}

.hero-buttons.aos-init.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}

.hero-buttons .btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: var(--gradient-red);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-red);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 46, 46, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--primary-red);
    
    transform: translateY(-3px);
}

.hero-buttons .btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(3px);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    max-width: 550px;
    margin-left: auto;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.7));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
    box-shadow: var(--shadow-red);
}

.hero-image {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    height: auto;
    object-fit: cover;
    object-position: center;
}

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

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(230, 46, 46, 0.15), transparent 70%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-container:hover .image-glow {
    opacity: 1;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 3;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.hero-image-container:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary-red);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(230, 46, 46, 0.3);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circuit-line {
    position: absolute;
    background: rgba(230, 46, 46, 0.15);
}

.line-h {
    height: 2px;
    width: 30%;
    top: 25%;
    left: 0;
}

.line-v {
    width: 2px;
    height: 30%;
    top: 25%;
    left: 30%;
}

.circuit-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red-glow);
    z-index: 2;
}

.node-1 {
    top: 25%;
    left: 30%;
    animation: pulse 2s infinite;
}

.node-2 {
    top: 60%;
    left: 65%;
    animation: pulse 2s infinite 1s;
}

/* Challenges Section */
.challenges-section {
    background-color: var(--secondary-black);
    position: relative;
    padding: 4rem 0;
}

.challenges-header {
    margin-bottom: 2.5rem;
}

.challenges-header .section-title {
    font-size: 2rem;
}

.challenges-header .title-underline {
    width: 60px;
    height: 3px;
    margin: 0.75rem auto;
}

.challenge-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .challenge-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .challenge-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .challenge-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.challenge-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-red);
    transition: height 0.5s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-dark);
}

.challenge-card:hover::before {
    height: 100%;
}

.challenge-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 46, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.challenge-card:hover .challenge-icon {
    transform: scale(1.1);
    background: rgba(230, 46, 46, 0.2);
}

.challenge-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.challenge-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--primary-black);
    position: relative;
}

.solutions-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.solutions-content {
    flex: 1;
}

.solutions-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.solutions-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

.solutions-text {
    font-size: 1.0rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.solutions-visual {
    flex: 1;
    position: relative;
}
/* 
.solutions-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.solutions-image {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.solutions-image-wrapper:hover .solutions-image {
    transform: scale(1.05);
} */

/* .solutions-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.8));
    z-index: 1;
} */

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

/* Features Section */
.features-section {
    background-color: var(--secondary-black);
    position: relative;
    padding: 4rem 0;
}

.features-header {
    margin-bottom: 2.5rem;
}

.features-header .section-title {
    font-size: 2rem;
}

.features-header .title-underline {
    width: 60px;
    height: 3px;
    margin: 0.75rem auto;
}

.features-header .section-subtitle {
    font-size: 0.95rem;
    max-width: 700px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--card-hover), transparent);
    transition: height 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-dark);
}

.feature-card:hover::after {
    height: 100%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 46, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
    background: rgba(230, 46, 46, 0.2);
    box-shadow: 0 5px 15px rgba(230, 46, 46, 0.2);
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
}

.feature-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.85rem;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.feature-link i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.feature-link:hover {
    color: var(--primary-red-light);
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--primary-black);
    position: relative;
    padding: 4rem 0;
}

.why-choose-header-small {
    margin-bottom: 2.5rem;
    text-align: center;
}

.why-choose-header-small .section-title {
    font-size: 2rem;
}

.why-choose-header-small .title-underline {
    width: 60px;
    height: 3px;
    margin: 0.75rem auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: linear-gradient(145deg, var(--dark-gray), var(--secondary-black));
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(230, 46, 46, 0.1) 50%);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
}

.why-choose-card:hover::before {
    transform: scale(1.2);
}

.why-choose-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 46, 46, 0.1);
    color: var(--primary-red);
    font-size: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-choose-card:hover .why-choose-icon {
    background: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(230, 46, 46, 0.2);
    transform: translateY(-3px);
}

.why-choose-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
}

.why-choose-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary-black);
    position: relative;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    /* background: linear-gradient(45deg, 
        var(--primary-red),
        transparent,
        var(--primary-red),
        transparent,
        var(--primary-red) */
    /* ); */
    border-radius: 18px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        filter: blur(5px);
        opacity: 0.5;
    }
    50% {
        filter: blur(10px);
        opacity: 0.8;
    }
    100% {
        filter: blur(5px);
        opacity: 0.5;
    }
}

/* Animations for Elements */
.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animated-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Truck Animation */
.truck-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
    opacity: 0.2;
}

.moving-truck {
    position: absolute;
    width: 80px;
    bottom: 0;
    left: -80px;
    animation: truckDrive 20s linear infinite;
}

@keyframes truckDrive {
    from {
        left: -80px;
    }
    to {
        left: 100%;
    }
}

/* Road Animation */
.road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--light-gray);
}

.road-marking {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--text-white),
        var(--text-white) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadMove 10s linear infinite;
}

@keyframes roadMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-40px);
    }
}

/* Parallax Effect */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(230, 46, 46, 0.08), transparent 70%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.7;
    transform: translateZ(-1px) scale(2);
    z-index: 0;
}

/* Data Stream Animation */
.data-stream {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, rgba(230, 46, 46, 0.5), transparent);
    animation: dataFlow 3s infinite;
    opacity: 0;
    z-index: 0;
}

.stream-1 {
    height: 150px;
    left: 10%;
    animation-delay: 0s;
}

.stream-2 {
    height: 100px;
    left: 30%;
    animation-delay: 0.5s;
}

.stream-3 {
    height: 120px;
    left: 50%;
    animation-delay: 1s;
}

.stream-4 {
    height: 80px;
    left: 70%;
    animation-delay: 1.5s;
}

.stream-5 {
    height: 130px;
    left: 90%;
    animation-delay: 2s;
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* SVG Animations */
.network-svg {
    position: absolute;
    top: 5%;
    right: 5%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.network-node {
    filter: drop-shadow(0 0 5px var(--primary-red));
}

.data-packet {
    filter: drop-shadow(0 0 3px white);
}

.logistics-flow-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--primary-black);
    margin-top: -50px;
    margin-bottom: -50px;
    z-index: 5;
}

.logistics-flow-svg {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.warehouse {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.moving-logistics-truck {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.location-pin {
    filter: drop-shadow(0 3px 5px rgba(230, 46, 46, 0.5));
    transform-origin: center bottom;
}

.analytics-svg {
    position: absolute;
    bottom: 10%;
    right: 10%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.chart-bar {
    transform-origin: bottom;
    transition: height 1s ease-out;
}

.chart-line {
    filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.5));
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 4s ease-out forwards;
}

.world-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.world-grid {
    animation: pulseGrid 10s infinite alternate ease-in-out;
}

.connection-point {
    filter: drop-shadow(0 0 5px rgba(230, 46, 46, 0.5));
}

.data-signal {
    filter: drop-shadow(0 0 2px white);
}

@keyframes pulseGrid {
    0% {
        stroke-width: 1px;
        stroke: rgba(255, 255, 255, 0.03);
    }
    50% {
        stroke-width: 1.5px;
        stroke: rgba(255, 255, 255, 0.07);
    }
    100% {
        stroke-width: 1px;
        stroke: rgba(255, 255, 255, 0.03);
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Make SVGs responsive */
@media (max-width: 992px) {
    .network-svg {
        width: 300px;
        height: 300px;
    }
    
    .analytics-svg {
        width: 200px;
        height: 150px;
    }
    
    .world-svg {
        width: 600px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .network-svg {
        width: 200px;
        height: 200px;
        top: 10%;
        right: 2%;
    }
    
    .analytics-svg {
        width: 150px;
        height: 100px;
    }
    
    .world-svg {
        width: 400px;
        height: 200px;
    }
    
    .logistics-flow-wrapper {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .network-svg {
        width: 150px;
        height: 150px;
    }
    
    .analytics-svg {
        display: none;
    }
    
    .world-svg {
        width: 300px;
        height: 150px;
    }
}

/* Add styles for the row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

@media (min-width: 992px) {
    .row {
        flex-wrap: nowrap;
    }
    
    .hero-content {
        flex: 1;
        padding-right: 2rem;
    }
    
    .hero-visual {
        flex: 1;
    }
}

.hero-buttons .btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

/* CTA Buttons Animation and Styling */
.cta-buttons.aos-init {
    opacity: 0;
    transform: translateY(20px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInLeft 1s ease 0.6s both;
}

.cta-buttons.aos-init.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}

.cta-buttons .btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-primary {
    background: var(--gradient-red);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-red);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 46, 46, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-buttons .btn-secondary:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.cta-buttons .btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
    transform: translateX(3px);
}