 /* Add these styles to your existing CSS */
 .overlay-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.overlay.active {
    display: flex;
    opacity: 1;
}

.loader {
    width: 16px;
    height: 16px;
    box-shadow: 0 30px, 0 -30px;
    border-radius: 4px;
    background: currentColor;
    display: block;
    margin: -50px auto 0;
    position: relative;
    color: #FFF;
    transform: translateY(30px);
    box-sizing: border-box;
    animation: animloader 2s ease infinite;
}

.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    box-shadow: 0 30px, 0 -30px;
    border-radius: 4px;
    background: currentColor;
    color: #FFF;
    position: absolute;
    left: 30px;
    top: 0;
    animation: animloader 2s 0.2s ease infinite;
}

.loader::before {
    animation-delay: 0.4s;
    left: 60px;
}

@keyframes animloader {
    0% {
        top: 0;
        color: white;
    }

    50% {
        top: 30px;
        color: rgba(255, 255, 255, 0.2);
    }

    100% {
        top: 0;
        color: white;
    }
}

/* =========================================================
   Homepage Section Headings
   ========================================================= */
.fp__section_heading {
    position: relative;
    margin: 0 auto 50px;
    padding: 35px 40px 45px;
    border-radius: 32px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 240, 0.95));
    box-shadow: 0 20px 60px rgba(9, 20, 93, 0.08);
    overflow: hidden;
}

.fp__section_heading::before,
.fp__section_heading::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 111, 97, 0.25), transparent 60%);
    z-index: 0;
}

.fp__section_heading::before {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -40px;
    filter: blur(0.5px);
}

.fp__section_heading::after {
    width: 160px;
    height: 160px;
    bottom: -60px;
    left: -30px;
    background: radial-gradient(circle at 70% 70%, rgba(255, 186, 8, 0.35), transparent 70%);
}

.fp__section_heading > * {
    position: relative;
    z-index: 1;
}

.fp__section_heading h4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: 0.28rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--colorPrimary);
    background: rgba(255, 111, 97, 0.12);
    border-radius: 999px;
    border: 1px solid rgba(255, 111, 97, 0.3);
}

.fp__section_heading h4::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 12px 0 0 currentColor, -12px 0 0 currentColor;
}

.fp__section_heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ff512f 0%, #f09819 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.fp__section_heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 8px;
    position: relative;
}

.fp__section_heading span::before,
.fp__section_heading span::after {
    content: "";
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, rgba(255, 111, 97, 0), rgba(255, 111, 97, 0.6));
    display: inline-block;
    margin: 0 12px;
}

.fp__section_heading span::after {
    background: linear-gradient(270deg, rgba(255, 111, 97, 0), rgba(255, 111, 97, 0.6));
}

.fp__section_heading span img {
    width: 110px;
    filter: drop-shadow(0 6px 15px rgba(255, 111, 97, 0.25));
    opacity: 0.9;
}

.fp__section_heading p {
    max-width: 640px;
    margin: 18px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #575757;
}

@media (max-width: 767.98px) {
    .fp__section_heading {
        padding: 28px 24px 32px;
        border-radius: 24px;
    }

    .fp__section_heading h4 {
        letter-spacing: 0.18rem;
        font-size: 13px;
    }

    .fp__section_heading span::before,
    .fp__section_heading span::after {
        width: 36px;
    }

    .fp__section_heading p {
        font-size: 15px;
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp__section_heading::before,
    .fp__section_heading::after {
        animation: none;
    }
}
