

    .innerheadbg {
        background: linear-gradient(135deg, #fef4e8, #ffffff);
        padding: 100px 0;
    }

    .innerheadbg h1 {
        font-weight: 800;
        font-size: 42px;
        color: #1a365d;
    }

    .innerheadbg p {
        font-size: 18px;
        opacity: 0.85;
        color: #333;
    }

    .section-space {
        padding: 80px 0;
    }

    .light-bg {
        background: #f9fafc;
    }

    .value-card {
        background: #fff;
        border-radius: 14px;
        padding: 30px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        height: 100%;
        text-align: center;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .value-card img {
        width: 60px;
        margin-bottom: 20px;
    }

    .value-card h4 {
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 10px;
    }

    .value-card p {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
    }

    .tech-list {
        list-style: none;
        padding: 0;
        margin: 20px 0 0;
    }

    .tech-list li {
        padding-left: 25px;
        position: relative;
        margin-bottom: 10px;
        font-weight: 500;
        color: #333;
    }

    .tech-list li::before {
        content: "›";
        position: absolute;
        left: 0;
        color: #1a365d;
        font-weight: bold;
    }

    .cta-section {
        background: linear-gradient(135deg, #1a365d, #112b55);
        color: #fff;
        text-align: center;
        padding: 80px 0;
    }

    .cta-section h2 {
        font-weight: 700;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-section p {
        opacity: 0.9;
        font-size: 17px;
        margin-bottom: 25px;
    }

    .blue-button {
        
        
        border: none;
        padding: 12px 35px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .blue-button:hover {
        background: #113a55;
    }

    @media (max-width: 767px) {
        .innerheadbg {
            text-align: center;
            padding: 70px 0;
        }

        .innerheadbg h1 {
            font-size: 34px;
        }
    }