body {
        font-family: "Almarai", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-variation-settings: "slnt" 0;
        direction: rtl;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .hero-section {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 960px;
        display: flex;
        align-items: center;
        padding: 80px 0;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.35);
        z-index: 1;
    }
    
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
    
    .hero-section h1 {
        color: white;
        font-weight: 700;
        font-size: 46px;
        line-height: 1.4;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        margin-bottom: 20px;
    }
    
    .hero-section p {
        color: white;
        font-size: 24px;
        line-height: 1.6;
        font-weight: 400;
        margin-bottom: 35px;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section .btn {
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        font-size: 18px;
        min-width: 170px;
        transition: all 0.3s ease;
        margin: 0 5px;
    }
    
    .hero-section .btn-primary {
        background-color: #30368F;
        border: none;
    }
    
    .hero-section .btn-primary:hover {
        background-color: #252a78;
    }
    
    .hero-section .btn-light {
        background-color: white;
        color: #30368F;
        border: none;
    }
    
    .hero-section .btn-light:hover {
        background-color: #f8f9fa;
    }

    .navbar-nav .nav-link.active {
        color: #30368F !important;
        font-weight: bold;
    }

    .row {
        margin-right: 0;
        margin-left: 0;
    }

    .col-sm-5, .col-sm-2 {
        padding-right: 0;
        padding-left: 0;
    }

    .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }

    .section-title{
        color: #30368F;
        font-weight: bold;
        font-size: 35px;
        margin-top: 90px;
        margin-bottom: 50px !important;
    }

    .section-title::after{
        content: '';
    display: block;
    margin-top: -18px !important;
    width: 130px;
    height: 22px;
    background-color: #ecf3ff;
    margin: auto;
    }

    .btn-custom-active {
    background-color: #30368F !important;
    color: white !important;
    border: none;
    box-shadow: none;
    padding: 15px 20px;

}

.btn-custom-inactive {
    background-color: #f4f6fb !important;
    color: #a1b6d8 !important;
    padding: 15px 20px;
}

.icon{
    color: white;
    background: linear-gradient(to right, #424698, #30368F);
    border-radius: 100%;
    width: 70px;
    height: 70px;
    display: block;
    text-align: center;
    margin:auto;
    padding-top: 20px;
    font-size: 35px;
}

.how-img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    margin: auto;
    display: block;
}

.circle{
    width: 50px;
    border-radius: 100%;
    background-color: #30368F;
    text-align: center;
    color: white;
    font-size: 25px;
}

.faqs-container {
    background-color: #f6f6f8;
    padding: 20px;
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    background-color: white;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #2b3f61;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    color: #30368F;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: #2b3f61;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* "+" to "x" */
    color: #ff4a4a;
}

.customers-reviews {
    border-radius: 10px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin-top: 80px;
}

.slider {
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
    gap: 15px;
}

.review-card {
    flex: 0 0 29%; /* 30% width for 3 cards in the slider */
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(220, 233, 255, 1);
}

.customer-img {
    position: absolute;
    top: -30px;
    right: 15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-name {
    margin-top: 35px; /* Space for the image */
    font-size: 18px;
    font-weight: bold;
    color: #30368F;
}

.customer-review {
    margin-top: 10px;
    font-size: 16px;
    color: #242d8b;
    line-height: 1.6;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #30368F;
    background-color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    width: 45px;
}

.slider-btn:hover {
    color: #252a78;
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

@media (max-width: 768px) {
    .prev-btn, .next-btn {
        left: 10px;
        right: 10px;
    }
}

.social-icon{
    color: #000;
    font-size: 25px;
    cursor: pointer;
    background-color: white;
    border-radius: 100%;
    width:45px;
    height: 45px;
    display: block;
    text-align: center;
    margin:auto;
    padding-top: 3px;
}


.survey-type {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 32px;
    margin-top: -10px;
}

.survey-type input[type="radio"] {
    display: none;
}

.survey-type label {
    padding: 10px 56px;
    border: 1px solid #30368F;
    color: #30368F;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease-in;
}

.survey-type input[type="radio"]:checked + label {
    background-color: #30368F;
    color: white;
}