    .custom_button_accordian {
        background-color: #1d1d1dff !important;
    }

    .para_text {
        text-align: justify;
        color: #9a9a9a;
    }

    .hero {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        min-height: 60vh;
        padding: 40px;
        color: #fff;
        border-radius: 12px;
        margin: 10px 0px 0px;
        background: #0b427d;
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
        overflow: hidden;
    }

    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .content {
        flex: 1 1 320px;
        max-width: 600px;
    }

    .content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .actions {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    .actions .call,
    .actions .chat {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1rem;
    }

    .actions i {
        font-size: 2rem;
    }

    .actions strong {
        font-size: 1.2rem;
    }

    .robot {
        flex: 1 1 280px;
        text-align: center;
    }

    .robot img {
        max-width: 100%;
        height: auto;
    }

    @media (max-width: 768px) {
        .hero {
            flex-direction: column;
            text-align: center;
        }

        .actions {
            justify-content: center;
        }

        .actions .call,
        .actions .chat {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }



    .why-choose-us {
        max-width: 800px;
        padding: 20px 0px;
    }

    .why-choose-us h2 {
        font-size: 32px;
        margin-bottom: 20px;
        font-family: 'Jost-Medium';
    }

    .features-list {
        list-style: none;
        padding-left: 0;
    }

    .features-list li {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.6;
        display: flex;
        align-items: flex-start;
        color: #9a9a9a;
    }

    .dot {
        width: 7px;
        height: 7px;
        background-color: #00aaff;
        border-radius: 50%;
        margin-right: 12px;
        margin-top: 10px;
        flex-shrink: 0;
    }


    .popular-categories {
        background-color: #1e1e1e;
        color: #ffffff;
        border-radius: 12px;
        padding: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .popular-categories h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .popular-categories ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .popular-categories li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #444;
        color: #bdb6b6;
        font-size: 18px;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .popular-categories li:last-child {
        border-bottom: none;
    }

    .popular-categories li:hover {
        color: #ffffff;
    }

    .icon-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #007BFF;
        color: #1e1e1e;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        font-size: 12px;
        font-weight: bold;
        flex-shrink: 0;
        transition: background-color 0.3s ease;
    }

    .popular-categories li:hover .icon-circle {
        background-color: #0165cfff;
    }

    .icon-circle i {
        font-size: 10px;
    }

    .category-link {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #bdb6b6;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .category-link:hover {
        color: #ffffff;
    }

    .text_class_title_head {
        font-size: 25px;
        font-family: 'Jost-Regular';
        color: #c4c4c4 !important;
    }

    .text_class_title_sub {
        font-size: 19px;
        font-family: 'Jost-Regular';
        color: #c4c4c4 !important;
    }

    .para_promo ul li {
        color: #9a9a9a;
    }


    .newsletter-box {
        background-color: #007BFF;
        padding: 30px 25px;
        border-radius: 15px;
        color: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .newsletter-text {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px;
        margin-bottom: 12px;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        color: #000;
    }

    .newsletter-form input::placeholder {
        color: #aaa;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transition: background 0.3s ease;
    }

    .newsletter-form button:hover {
        background-color: #222;
    }


    .category-link.active {
        color: #fff;
    }

    .category-link.active .fas {
        color: #fff;
    }

    .small_icon i {
        font-size: 24px;
    }

    .mission-img {
        border-radius: 10px;
    }