        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --black: #000000;
            --dark: #1a1a1a;
            --gray: #333333;
            --light-gray: #666666;
            --border: #e5e5e5;
            --white: #ffffff;
            --off-white: #f8f8f8;
            --blue: #3E89EC;
            --blue-light: #6BA6F3;
            --blue-dark: #3E89EC;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
        }

        /* Header */
        .header {
            background: var(--black);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid var(--blue);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--blue);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--blue);
        }

        .btn-header {
            background: var(--blue);
            color: var(--white);
            padding: 0.75rem 2rem;
            border-radius: 0;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: 2px solid var(--blue);
        }

        .btn-header:hover {
            background: var(--blue-dark);
            border-color: var(--blue-dark);
        }

        /* Hero Section - Black Background with Blue Accents */
        .hero {
            background: var(--black);
            color: var(--white);
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: var(--blue);
            opacity: 0.1;
            border-radius: 50%;
            top: -200px;
            right: -100px;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--blue);
            opacity: 0.08;
            border-radius: 50%;
            bottom: -150px;
            left: -100px;
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .hero h1 span {
            color: var(--blue);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--blue);
            color: var(--white);
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: 3px solid var(--blue);
        }

        .btn-primary:hover {
            background: var(--blue-dark);
            border-color: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            text-decoration: none;
            font-weight: 700;
            border: 3px solid var(--white);
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--black);
        }

        /* Section */
        .section {
            padding: 6rem 2rem;
        }

        .section-white {
            background: var(--white);
        }

        .section-black {
            background: var(--black);
            color: var(--white);
        }

        .section-gray {
            /* background: var(--off-white); */
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-block;
            background: var(--blue);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.3rem;
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 600;
            color: #000;
        }

        /* WORKFLOW CARDS - Numbered with Blue Borders */
        .workflow-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .workflow-card {
            background: var(--white);
            border: 3px solid var(--blue);
            padding: 3rem 2rem;
            transition: all 0.3s;
            position: relative;
        }

        .workflow-card:hover {
            background: var(--blue);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

        .workflow-number {
            position: absolute;
            top: -20px;
            left: 2rem;
            width: 60px;
            height: 60px;
            background: var(--blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
        }

        .workflow-card:hover .workflow-number {
            background: var(--white);
            color: var(--blue);
        }

        .workflow-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .workflow-card p {
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.8;
        }

        /* FEATURE CARDS - Minimal with Blue Icons on Side */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 0;
            margin-top: 4rem;
            border: 1px solid var(--border);
        }

        .feature-card {
            background: #ffffff43;
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 3rem;
            display: flex;
            gap: 2rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            background: var(--off-white);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .feature-card:hover .feature-icon {
            background: var(--blue-dark);
            transform: scale(1.1);
        }

        .feature-content h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }

        .feature-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #000000f;
        }

        /* ACCESS METHOD CARDS - Circular Blue Icons */
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .method-card {
            background: var(--black);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s;
            border: 3px solid var(--black);
        }

        /* .method-card:hover {
            background: var(--blue);
            border-color: var(--blue);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        } */

        .method-icon {
            width: 100px;
            height: 100px;
            background: var(--blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }

        .method-card:hover .method-icon {
            background: var(--white);
            color: var(--blue);
            transform: scale(1.1);
        }

        .method-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* APPLICATION CARDS - List Style with Blue Left Border */
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 0;
            margin-top: 4rem;
        }

        .app-card {
            background: var(--white);
            /* border-left: 8px solid var(--blue); */
            border-bottom: 1px solid var(--border);
            padding: 2.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            transition: all 0.3s;
        }

        /* .app-card:hover {
            padding-left: 3rem;
            background: var(--off-white);
            border-left-color: var(--blue-dark);
        } */

        .app-icon {
            width: 60px;
            height: 60px;
            background: var(--blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        /* .app-card:hover .app-icon {
            background: var(--blue-dark);
            transform: rotate(5deg) scale(1.05);
        } */

        .app-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
        }

        /* REPORT CARDS - White Cards with Blue Shadow */
        .reports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .report-card {
            background: #ffffff57;
            padding: 3rem;
            /* box-shadow: 15px 15px 0 var(--blue); */
            transition: all 0.3s;
            border: 2px solid var(--border);
        }

        .report-card:hover {
            transform: translate(5px, 5px);
            box-shadow: 10px 10px 0 var(--blue-dark);
            border-color: var(--blue);
        }

        .report-card i {
            font-size: 3rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
        }

        .report-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .report-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: #000000;
        }

        /* BENEFIT CARDS - Blue Diagonal Triangle */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit-card {
            background: var(--white);
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            border: 2px solid var(--border);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 100px 100px 0;
            border-color: transparent var(--blue) transparent transparent;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            background: var(--blue);
            color: var(--white);
            border-color: var(--blue);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

        .benefit-card:hover::before {
            border-width: 0 150px 150px 0;
            border-color: transparent var(--blue-dark) transparent transparent;
        }

        .benefit-card i {
            font-size: 3rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
            display: block;
            transition: all 0.3s;
        }

        .benefit-card:hover i {
            color: var(--white);
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .benefit-card p {
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.8;
        }

        /* Stats Bar */
        .stats-bar {
            background: var(--blue);
            color: var(--white);
            padding: 1rem 0rem;
        }

        .stats-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* CTA Section */
        .cta-section {
            background: var(--black);
            color: var(--white);
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--blue);
            opacity: 0.1;
            border-radius: 50%;
            top: -300px;
            left: -200px;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .cta-content h2 span {
            color: var(--blue);
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: var(--white);
            border-top: 4px solid var(--blue);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--blue);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--blue);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: var(--blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--blue-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--light-gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .features-grid,
            .apps-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeIn 0.6s ease-out;
        }
    
.hero-main-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    padding-top: 100px !important;
    /* 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/contentImages/boombarrierf.png") 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: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -2px;
            color: #ffffff;
}

.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;
    }
}

