/* ================= WHY CHOOSE – IMAGE ================= */
.why-choose-image {
    padding: 120px 0;
    background: #f9fafc;
}

.why-image-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #111;
}

/* TOP GRID */
.why-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* IMAGE */
.why-image-visual img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

/* CONTENT */
.why-image-content p {
    font-size: 17px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 22px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-image-grid {
        grid-template-columns: 1fr;
    }

    .why-image-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-image-title {
        font-size: 30px;
    }

}

/* ================= FAQ SECTION ================= */
.service-faq {
    padding: 120px 0;
    background: #ffffff;
}

.faq-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.faq-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.faq-heading p {
    font-size: 16px;
    color: #555;
}

/* FAQ LIST */
.faq-list {
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.faq-item {
    border-radius: 14px;
    border: 1px solid #eee;
    margin-bottom: 18px;
    overflow: hidden;
    transition: .3s ease;
}

.faq-item.active {
    border-color: #30427F;
    box-shadow: 0 15px 40px rgba(48, 66, 127, .12);
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 22px 24px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 14px;
    transition: .3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height .45s ease, padding .35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 22px;
}

.faq-answer p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* ICON ROTATION */
.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #30427F;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* ================= CORE SERVICES ================= */
.core-services-section {
    padding: 130px 0;
    background: linear-gradient(180deg, #f7f9ff, #ffffff);
}

/* HEADING */
.core-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.core-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(48, 66, 127, .12);
    color: #30427F;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.core-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
}

/* GRID */
.core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.core-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: .45s ease;
    position: relative;
    overflow: hidden;
}

.core-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(48, 66, 127, .08), transparent);
    opacity: 0;
    transition: .4s;
}

.core-card:hover::before {
    opacity: 1;
}

.core-card:hover {
    transform: translateY(-14px);
}

/* ICON */
.core-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(48, 66, 127, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

/* TEXT */
.core-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.core-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .core-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .core-grid {
        grid-template-columns: 1fr;
    }

    .core-heading h2 {
        font-size: 32px;
    }
}

/* ================= PROCESS ALT ================= */
.service-process-alt {
    padding: 130px 0;
    background: radial-gradient(circle at top, #eef1ff, #ffffff);
    position: relative;
}

/* HEADING */
.process-alt-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.process-alt-heading span {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(48, 66, 127, .12);
    color: #30427F;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-alt-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
}

/* TIMELINE */
.process-timeline {
    max-width: 820px;
    margin: auto;
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#30427F, transparent);
}

/* ITEM */
.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
    position: relative;
}

/* DOT */
.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #30427F;
    box-shadow: 0 0 0 6px rgba(48, 66, 127, .15);
    animation: glow 2.5s infinite;
    margin-top: 10px;
}

/* CARD */
.timeline-card {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(14px);
    padding: 30px 35px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: transform .35s ease;
    width: 100%;
}

.timeline-card:hover {
    transform: translateX(10px);
}

.timeline-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.timeline-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* DOT GLOW */
@keyframes glow {
    0% {
        box-shadow: 0 0 0 6px rgba(48, 66, 127, .15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(48, 66, 127, .08);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(48, 66, 127, .15);
    }
}

/* MOBILE */
@media(max-width:768px) {
    .process-alt-heading h2 {
        font-size: 32px;
    }

    .process-timeline {
        padding-left: 0;
    }

    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .timeline-card:hover {
        transform: translateY(-6px);
    }
}