
/* ======================================================
   FAQ SECTION – CANONICAL (DO NOT OVERRIDE)
====================================================== */


.faq-item {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(0, 84, 147, 0.08);
    box-shadow: 0 18px 40px rgba(0, 84, 147, 0.08);
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Hover gradient overlay */
.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,208,251,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

/* Make content above overlay */
.faq-item * {
    position: relative;
    z-index: 2;
}

/* Hover effect */
.faq-item:hover::before {
    opacity: 1;
}

/* FAQ question styling */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    font-size: 16.5px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.faq-question .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,208,251,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* technology and service page FAQ toggle dot  */
.faq-section .faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,208,251,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    transition: background-color 0.3s ease;
}
.faq-section .faq-toggle::before {
    content: "+";
}

/* Technology and Service FAQ
match the hover shadow */
.faq-item:hover {
    box-shadow: 0 18px 40px rgba(0, 84, 147, 0.08);
}


.faq-question:not(.collapsed) .icon,
.faq-question:not(.collapsed) .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(21deg,#005493 0%,#00d0fb 100%);
    color: #ffffff;
}

/* FAQ answer */
.faq-answer {
    padding: 0 30px 26px;
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.75;
    text-align: justify;
}

/* Focus fixes */
.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* title not overwrite  */
.faq-title {
    padding-right: 40px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 575.98px) {

    /* FAQ ITEM */
    .faq-item {
        border-radius: 14px;
        margin-bottom: 16px;
        box-shadow: 0 14px 32px rgba(0, 84, 147, 0.08);
    }

    /* QUESTION */
    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
        line-height: 1.45;
    }

    /* TOGGLE / ICON */
    .faq-question .icon,
    .faq-section .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .faq-section .faq-toggle {
        top: 16px;
        right: 16px;
    }

    /* ANSWER */
    .faq-answer {
        padding: 0 20px 20px;
        font-size: 14.5px;
        line-height: 1.6;
    }

    /* TITLE SAFE SPACE */
    .faq-title {
        padding-right: 32px;
    }

    /* Disable hover illusion on touch */
    .faq-item:hover::before {
        opacity: 0;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {

    .faq-item {
        border-radius: 16px;
        margin-bottom: 18px;
        box-shadow: 0 16px 36px rgba(0, 84, 147, 0.08);
    }

    .faq-question {
        padding: 22px 26px;
        font-size: 16px;
    }

    .faq-question .icon,
    .faq-section .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .faq-section .faq-toggle {
        top: 18px;
        right: 18px;
    }

    .faq-answer {
        padding: 0 26px 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-title {
        padding-right: 36px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .faq-question {
        font-size: 16.2px;
    }

    .faq-answer {
        font-size: 15.4px;
    }
}
