/* ============================================
           RESET & BASE STYLES
        ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ============================================
           NAVIGATION (Matching Main Website)
        ============================================ */
        .sazs-header {
            background: rgb(255, 255, 255);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease-in-out;
        }

        .sazs-header-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .sazs-header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sazs-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .sazs-brand-image {
            width: 150px;
            height: 70px;
            object-fit: contain;
        }

        .sazs-menu-list {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .sazs-menu-link {
            color: rgba(0, 0, 0, 0.8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .sazs-menu-link:hover {
            color: #3E89EC;
        }

        .sazs-cta-group {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sazs-button {
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .sazs-button-outline {
            background: transparent;
            color: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.2);
        }

        .sazs-button-outline:hover {
            background: #3E89EC;
            color: white;
            border-color: #3E89EC;
        }

        .sazs-button-primary {
            background: #3E89EC;
            color: white;
        }

        .sazs-button-primary:hover {
            background: #2C6FCE;
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .sazs-hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 0.5rem;
        }

        .sazs-hamburger span {
            width: 24px;
            height: 2px;
            background: #000000;
            transition: all 0.3s;
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero-section {
            margin-top: 100px;
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(62,137,236,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(62, 137, 236, 0.1);
            color: #3E89EC;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #1f253d;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-highlight {
            color: #3E89EC;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-cta-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3E89EC;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6b7280;
            margin-top: 5px;
        }

        /* ============================================
           FEATURES SECTION
        ============================================ */
        .features-section {
            padding: 80px 20px;
            background: white;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 0.9rem;
            font-weight: 600;
            color: #3E89EC;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f253d;
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 35px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #3E89EC;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(62, 137, 236, 0.15);
            border-color: #3E89EC;
        }

        .feature-card:hover::before {
            transform: scaleY(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(62, 137, 236, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon img {
            width: 35px;
            height: 35px;
            object-fit: contain;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1f253d;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            font-size: 0.95rem;
            color: #4b5563;
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #3E89EC;
            font-weight: 700;
        }

        /* ============================================
           HOW IT WORKS SECTION - UPDATED WITH IMAGES
        ============================================ */
        .how-it-works {
            padding: 80px 20px;
            /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
                padding: 6rem 5%;
            /* background: linear-gradient(180deg, transparent, rgba(62, 137, 236, 0.03)); */

    /* background: url("/src/assets/contentImages/bg22.webp") center / cover no-repeat; */
    /* min-height: 100vh; */
        background-size: cover; /* change here */
        }

        .process-timeline {
            max-width: 1200px;
            margin: 60px auto 0;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #3E89EC;
            transform: translateX(-50%);
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
            gap: 30px;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: #3E89EC;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 4px 15px rgba(62, 137, 236, 0.3);
        }

        .process-image {
            width: 40%;
            border-radius: 16px;
            overflow: hidden;
            /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
            transition: all 0.3s ease;
            /* background: white; */
            padding: 10px;
        }

        .process-image:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 40px rgba(62, 137, 236, 0.2);
        }

        .process-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 12px;
        }

        .process-content {
            width: 40%;
            background: white;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .process-content:hover {
            box-shadow: 0 8px 30px rgba(62, 137, 236, 0.15);
        }

        .process-step:nth-child(odd) .process-image {
            margin-right: auto;
        }

        .process-step:nth-child(odd) .process-content {
            margin-left: auto;
        }

        .process-step:nth-child(even) .process-image {
            margin-left: auto;
        }

        .process-step:nth-child(even) .process-content {
            margin-right: auto;
        }

        .process-content h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1f253d;
            margin-bottom: 12px;
        }

        .process-content p {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.7;
        }

        /* ============================================
           BENEFITS SECTION
        ============================================ */
        .benefits-section {
            padding: 80px 20px;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 60px auto 0;
        }

        .benefit-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: #3E89EC;
            box-shadow: 0 8px 25px rgba(62, 137, 236, 0.15);
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .benefit-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1f253d;
            margin-bottom: 10px;
        }

        .benefit-card p {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #3E89EC 0%, #2C6FCE 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
            opacity: 0.3;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid white;
        }

        .cta-button-primary {
            background: white;
            color: #3E89EC;
        }

        .cta-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-button-outline {
            background: transparent;
            color: white;
        }

        .cta-button-outline:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: #0b0d1f;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 120px;
            height: auto;
        }

        .footer-text {
            font-size: 0.9rem;
            color: #9ca3af;
            margin-bottom: 25px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: #3E89EC;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: #6b7280;
        }

        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-in-delay-1 { animation-delay: 0.2s; }
        .fade-in-delay-2 { animation-delay: 0.4s; }
        .fade-in-delay-3 { animation-delay: 0.6s; }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .sazs-menu-list,
            .sazs-cta-group {
                display: none;
            }

            .sazs-hamburger {
                display: flex;
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-number {
                left: 30px;
            }

            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .process-image,
            .process-content {
                width: calc(100% - 100px);
                margin-left: 100px !important;
                margin-right: 0 !important;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 30px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-description {
                font-size: 1rem;
            }

            .process-step {
                margin-bottom: 50px;
            }

            .process-image,
            .process-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }
        }

        @media (max-width: 480px) {
            .sazs-brand-image {
                width: 120px;
                height: 50px;
            }

            .hero-section {
                padding: 60px 15px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .process-timeline::before {
                left: 15px;
            }

            .process-number {
                left: 15px;
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .process-image,
            .process-content {
                width: calc(100% - 65px);
                margin-left: 65px !important;
                padding: 20px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Print styles */
        @media print {
            .sazs-header,
            .footer,
            .cta-section {
                display: none;
            }
        }


.hero-main-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    margin-top: 90px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) ),
        url("/src/assets/images/Weighbridgeintegrationf.avif") center/cover no-repeat;

}

.hero-main-container {
    /* max-width: 1200px; */
    width: 100%;
    padding: 00px 0px 40px 0px;
    z-index: 2;
}

.hero-main-content {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-content-left > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.hero-content-left > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content-left > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content-left > *:nth-child(3) { animation-delay: 0.7s; }
.hero-content-left > *:nth-child(4) { animation-delay: 0.9s; }
.hero-content-left > *:nth-child(5) { animation-delay: 1.1s; }

/* ============================================
   TEXT STYLES
============================================ */

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 60px;
}

.hero-text-highlight {
    color: #3E89EC;
    text-shadow: 0 3px 6px rgba(62,137,236,0.5);
}

/* SUB HEADING */
.hero-subheadline {
    font-size: 1.45rem;
    font-weight: 600;
    color: #EAF2FF;
    max-width: 920px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
}

.hero-subheadline::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #3E89EC;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* INTRO TEXT */
.hero-main-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #fff !important;
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: center;
}

/* DOT */
.hero-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3E89EC;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: -2px;
}

/* HIGHLIGHT WORDS */
.hero-highlight {
    color: #ffffff;
    font-weight: 800;
    /* background: rgba(62,137,236,0.18); */
    padding: 2px 6px;
    border-radius: 4px;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 991px) {
    .hero-main-title { font-size: 2.6rem; }
    .hero-subheadline { font-size: 1.15rem; }
}

@media (max-width: 768px) {
    .hero-main-title { font-size: 2rem; }
    .hero-subheadline { font-size: 1rem; }
    .hero-main-description { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .hero-main-title { font-size: 1.6rem; }
    .hero-subheadline { font-size: 0.9rem; }
}

/* Container adjustment for centered content */
.hero-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
}

/* Feature Grid Design */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-circle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-feature-item p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

/* Action Buttons */
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #3E89EC;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(62, 137, 236, 0.4);
    transition: 0.3s;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #fff;
    transition: 0.3s;
}

.btn-primary:hover { background: #2c6ec7; }
.btn-secondary:hover { background: #fff; color: #333; }

/* Responsive Grid */
@media (max-width: 768px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
}


/* ============================================
   EXTRA RESPONSIVE FIXES (APPEND ONLY)
============================================ */

/* Ultra-wide screens (2K / 4K) */
@media (min-width: 1600px) {
    .hero-main-title {
        font-size: 4.2rem;
    }

    .hero-subheadline {
        font-size: 1.6rem;
    }

    .hero-main-description {
        font-size: 1.2rem;
    }

    .hero-main-content {
        max-width: 1400px;
    }
}

/* Large laptops */
@media (max-width: 1200px) {
    .hero-main-content {
        padding: 0 20px;
    }

    .hero-features-grid {
        gap: 16px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-main-section {
        padding-top: 80px;
    }

    .hero-main-title {
        margin-bottom: 40px;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
    .hero-main-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-main-title {
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-subheadline::after {
        width: 60px;
    }

    .hero-feature-item p {
        font-size: 1.05rem;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .hero-main-content {
        padding: 0 16px;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-main-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-feature-item {
        padding: 16px;
    }
}

/* Very small devices */
@media (max-width: 400px) {
    .hero-main-title {
        font-size: 1.35rem;
    }

    .hero-subheadline {
        font-size: 0.85rem;
    }

    .hero-feature-item p {
        font-size: 0.95rem;
    }
}