.fluid-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.fluid-section .faq-content {
    background: rgba(1, 7, 106, 0.1);
    padding: 40px;
    border-radius: 10px;
}

.fluid-section .accordion-box {
    max-width: 900px;
    margin: 0 auto;
}

.funfact-block-one .inner-box .count-outer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    line-height: 60px;
    font-family: var(--title-font);
    color: #fff;
    font-weight: 600;
    overflow: hidden;
}


/* Section Background */
.Global.trust-section {
    background-color: #f8faff;
}


/* Service Card */
.service-card1 {
    background-color: #fff;
    border: 1px solid #e0e6f5;
    border-radius: 16px;
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Top Border Animation */
.service-card1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: #CE1810;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: width 0.3s ease;
}

.service-card1:hover::before {
    width: 100%;
}

/* Hover Elevation */
.service-card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Icons */
.service-card1 .icon {
    font-size: 2.5rem;
    color: #CE1810;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card1:hover .icon {
    transform: scale(1.2);
}

/* Headings */
.service-card1 h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e2a38;
}

/* Paragraph */
.service-card1 p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Quote */
.quote {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    color: #CE1810;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.6rem;
    }

    .service-card1 {
        padding: 1.5rem 1rem;
    }
}




body {
    background-color: #f5f9ff;
    /* Light faint blue */
    color: #333;
}

.faq-section {
    padding: 60px 20px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.faq-section p.sub-text {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* Two Column Layout */
.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #222;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f4ff;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #1e90ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8faff;
    padding: 0 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px 20px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ Remove horizontal scrollbar globally */
html, body {
  overflow-x: hidden;
}
