   :root {
            --primary: #d5242b;
            --accent: #d5242b;
            --light: #ffffff;
            --dark: #000000;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        /* Header Styles */
        header {

                        
            background: linear-gradient(rgb(21 21 21 / 41%), rgba(255, 255, 255, 0.98)), url(https://daggabooking.com/assets/truck.jpg) no-repeat center center / cover;            
            color: var(--dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent);
            animation: colorChange 5s infinite alternate;
        }

        @keyframes colorChange {
            0% { color: var(--accent); }
            50% { color: var(--primary); }
            100% { color: #ff9800; }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        .side-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background-color: var(--light);
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: var(--transition);
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .side-nav.active {
            left: 0;
        }

        .side-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .side-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .side-nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--light-gray);
            transition: var(--transition);
        }

        .side-nav-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }

        .close-side-nav {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 5%;
            margin-top: 5rem;
        }

        .hero-content {
            max-width: 600px;
            animation: fadeIn 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #2a2b2b;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
        }

        .btn:hover {
            background-color: #e64a19;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        /* Animated Truck Icon */
        .truck-animation {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 200px;
            overflow: hidden;
        }

        .truck-icon {
            font-size: 10rem;
            color: var(--primary);
            position: relative;
            animation: drive 8s infinite linear;
        }

        @keyframes drive {
            0% { left: -100px; }
            50% { left: 100px; }
            100% { left: 400px; }
        }

        /* Section Styles */
        section {
            padding: 5rem 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Features Section */
        .features {
            background-color: var(--light-gray);
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(49, 131, 145, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 1.8rem;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* How It Works */
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 3rem;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: var(--primary);
            z-index: 1;
        }

        .step {
            text-align: center;
            flex: 1;
            min-width: 200px;
            margin: 0 1rem;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 15px rgba(49, 131, 145, 0.3);
        }

        .step h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Truck Types */
        .trucks {
            background-color: var(--light);
        }

        .truck-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .truck-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            background-color: var(--light);
        }

        .truck-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .truck-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }

        .truck-content {
            padding: 1.5rem;
        }

        .truck-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .truck-content p {
            margin-bottom: 1rem;
            color: var(--gray);
        }

        .truck-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .truck-feature {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--gray);
        }

        /* Stats Section */
        .stats {
            background-color: var(--primary);
            color: white;
            text-align: center;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light-gray);
        }

        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background-color: var(--light);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            display: none;
            animation: fadeIn 1s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial.active {
            display: block;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }

        .author-info h4 {
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        .author-info p {
            opacity: 0.8;
            color: var(--gray);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active {
            background-color: var(--accent);
        }

        /* CTA Section */
        .cta {
            text-align: center;
            background-color: var(--light);
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--gray);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-col h3 {
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 0;
        }

        .footer-col p {
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .truck-animation {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .steps::before {
                display: none;
            }
            
            .step {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 25px;
                font-size: 1rem;
            }
            
            section {
                padding: 3rem 5%;
            }
        }
        
        
        /* Founder Message Section Styles */
.founder-message {
    background-color: var(--light-gray);
    padding: 5rem 5%;
}

.founder-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.founder-image {
    text-align: center;
    position: sticky;
    top: 100px;
}

.founder-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.founder-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.founder-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.founder-social a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.founder-content {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.message-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(213, 36, 43, 0.1);
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
    position: relative;
    z-index: 1;
}

.founder-signature {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.founder-signature img {
    height: 50px;
    margin-bottom: 0.5rem;
}

.founder-signature p {
    font-weight: 600;
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .founder-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .founder-content {
        padding: 1.5rem;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    .founder-img {
        width: 200px;
        height: 200px;
    }
}


.developer-credit {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.developer-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.developer-link:hover {
    color: #e64a19;
    text-decoration: underline;
}