/* ============ Base Reset ============ */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        height: 100%;
    }

    body {
        overflow-x: hidden !important;
        font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial,
            sans-serif;
        color: #fff;
        background-image: url('/images/img-webp/jeremiah.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    /* ============ Hero ============ */
    .hero {
        text-align: center;
        color: #ffffff;
        padding: 120px 2px 80px;
        /* background: rgba(5, 5, 23, 0.5); */
    }

    .hero-h1 {
        transform: translateX(-100%);
        transition: transform 1s ease-out, opacity 1s ease-out;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 100px;
    }

    .hero-h1 {
        position: static;
        transform: translateX(-100%);
        transition: transform 1s ease-out, opacity 1s ease-out;
        opacity: 0;
    }

    .hero-p {
        position: static;color: #ffffff;
        margin: 0;
        text-align: center;
        transform: translateX(100%);
        transition: transform 1s ease-out, opacity 1s ease-out;
        opacity: 0;
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1.6;
    }

    .animate-h1 {
        transform: translateX(0);
        opacity: 1;
    }

    .animate-p {
        transform: translateX(0);
        opacity: 1;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0 50px 0;
        align-items: center;
    }

    /* ============ Layout Backgrounds ============ */
    main {
        min-height: 100vh;
        background: rgba(5, 5, 23, 0.8);
        text-align: left;
        padding-top: 96px;
        padding-bottom: 50px
    }

    /* ============ Content Sections ============ */
    .content-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .content-section {
        background: rgba(2, 10, 34, 0.9);
        border-radius: 20px;
        margin-bottom: 40px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(70, 87, 237, 0.2);
        padding: 40px;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #4657ed, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 30px;
        text-align: center;
    }

    .section-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #e5e7eb;
        margin-bottom: 30px;
    }

    .section-content p {
        margin-bottom: 20px;
    }

    .section-content strong {
        color: #fff;
        font-weight: 600;
    }

    /* ============ Analogy Box ============ */
    .analogy-box {
        background: linear-gradient(135deg, rgba(70, 87, 237, 0.2), rgba(6, 182, 212, 0.2));
        border: 1px solid rgba(70, 87, 237, 0.4);
        border-radius: 15px;
        padding: 30px;
        margin: 30px 0;
        text-align: center;
    }

    .analogy-box h3 {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 20px;
    }

    .analogy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .analogy-item {
        background: rgba(70, 87, 237, 0.1);
        padding: 20px;
        border-radius: 10px;
        border-left: 4px solid #4657ed;
    }

    .analogy-item h4 {
        color: #4657ed;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .analogy-item p {
        color: #e5e7eb;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ============ Service Cards ============ */
    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 40px 0;
    }

    .service-card {
        background: rgba(70, 87, 237, 0.1);
        padding: 30px;
        border-radius: 15px;
        border: 1px solid rgba(70, 87, 237, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(70, 87, 237, 0.2);
    }

    .service-icon {
        font-size: 2.5rem;
        color: #4657ed;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 15px;
    }

    .service-description {
        color: #e5e7eb;
        line-height: 1.6;
    }

    .service-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    /* ============ Content Images ============ */
    .image-container {
        margin: 40px 0;
    }

    .content-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        margin: 20px auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* ============ Comparison Table ============ */
    .comparison-table {
        background: rgba(70, 87, 237, 0.05);
        border-radius: 15px;
        overflow: hidden;
        margin: 30px 0;
    }

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 20px;
        text-align: left;
        border-bottom: 1px solid rgba(70, 87, 237, 0.2);
    }

    .comparison-table th {
        background: rgba(70, 87, 237, 0.2);
        color: #fff;
        font-weight: 600;
    }

    .comparison-table td {
        color: #e5e7eb;
    }

    .comparison-table tr:last-child td {
        border-bottom: none;
    }

    /* ============ Feature Lists ============ */
    .backend-features {
        list-style: none;
        margin: 20px 0;
    }

    .backend-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        padding: 15px;
        background: rgba(70, 87, 237, 0.1);
        border-radius: 10px;
        border-left: 4px solid #4657ed;
        transition: transform 0.3s ease;
    }

    .backend-features li:hover {
        transform: translateX(5px);
    }

    .backend-features li::before {
        content: '⚙️';
        font-size: 1.2rem;
        margin-right: 15px;
        flex-shrink: 0;
    }

    /* ============ Examples Section ============ */
    .examples-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .example-item {
        background: rgba(6, 182, 212, 0.1);
        padding: 20px;
        border-radius: 10px;
        border-left: 4px solid #06b6d4;
        text-align: center;
    }

    .example-item h4 {
        color: #06b6d4;
        margin-bottom: 10px;
    }

    .example-item p {
        color: #e5e7eb;
        font-size: 0.95rem;
    }

    /* ============ Why Choose Us ============ */
    .why-choose-list {
        list-style: none;
        margin: 20px 0;
    }

    .why-choose-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        padding: 15px;
        background: rgba(6, 182, 212, 0.1);
        border-radius: 10px;
        border-left: 4px solid #06b6d4;
    }

    .why-choose-list li::before {
        content: '✓';
        color: #06b6d4;
        font-weight: bold;
        font-size: 1.2rem;
        margin-right: 15px;
        flex-shrink: 0;
    }

    /* ============ CTA Section ============ */
    .cta-section {
        background: linear-gradient(135deg, rgba(70, 87, 237, 0.3), rgba(6, 182, 212, 0.3));
        border: 1px solid rgba(70, 87, 237, 0.5);
        text-align: center;
        padding: 50px 40px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #e5e7eb;
    }

    /* ======== Mobile / Tablet Styles (<= 1024px) ======== */
    @media (max-width: 1024px) {

        #navMenu.active {
            display: block;
        }

        h2 {
            font-size: 30px;
        }

        .hero-text {
            padding: 20px;
        }

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

        .content-section {
            padding: 30px 20px;
            margin: 20px 10px;
        }

        .service-grid,
        .analogy-grid,
        .examples-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .hero-cta {
            flex-direction: column;
            gap: 15px;
        }

        .btn {
            width: 100%;
            max-width: 280px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 10px;
            font-size: 0.9rem;
        }
    }

/* Inline style replacements */
.inline-style-1 { width: 100%; margin: 20px 0; border-radius: 8px; }
