.elementor-948 .elementor-element.elementor-element-9c4cf2d{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-948 .elementor-element.elementor-element-2fb68c5 img{width:230px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-948 .elementor-element.elementor-element-f15638b{text-align:center;}body.elementor-page-948:not(.elementor-motion-effects-element-type-background), body.elementor-page-948 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-accent ) 0%, var( --e-global-color-primary ) 71%);}:root{--page-title-display:none;}@media(max-width:767px){body.elementor-page-948:not(.elementor-motion-effects-element-type-background), body.elementor-page-948 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-accent ) 0%, var( --e-global-color-primary ) 100%);}}/* Start custom CSS *//* Coming Soon Main Section */
.coming-soon-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 25px;

    isolation: isolate;
}

/* Decorative blurred circles */
.coming-soon-section::before,
.coming-soon-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    z-index: -1;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

.coming-soon-section::before {
    width: 320px;
    height: 320px;
    background: rgba(32, 184, 181, 0.45);
    top: -90px;
    right: -90px;
}

.coming-soon-section::after {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.18);
    bottom: -80px;
    left: -80px;
    animation-delay: 1.5s;
}

/* Inner glass effect for Elementor container content */
.coming-soon-section > .e-con-inner,
.coming-soon-section > .elementor-container,
.coming-soon-section > .elementor-widget-wrap {
    position: relative;
    z-index: 2;
}

/* Image Style */
.coming-soon-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 28px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(32, 184, 181, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: imageFloat 5s ease-in-out infinite;
    transition: all 0.4s ease;
}

.coming-soon-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.45),
        0 0 65px rgba(32, 184, 181, 0.35);
}

/* Text Box */
.coming-soon-content {
    max-width: 620px;
    padding: 38px 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

/* Shine line */
.coming-soon-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.16),
        transparent
    );
    animation: shineMove 5s ease-in-out infinite;
}

/* Text Typography */
.coming-soon-content h1,
.coming-soon-content h2,
.coming-soon-content h3 {
    color: #ffffff;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.coming-soon-content h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.coming-soon-content h2 {
    font-size: clamp(28px, 4vw, 46px);
}

.coming-soon-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 2;
    margin-bottom: 0;
}

/* Highlight Words */
.coming-soon-content strong,
.coming-soon-content b {
    color: white;
    font-weight: 800;
}

/* Optional Button Style */
.coming-soon-content a,
.coming-soon-section .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #20b8b5, #42dcd8);
    color: #183047 !important;
    font-weight: 800;
    text-decoration: none;
    border: none;
    box-shadow: 0 16px 35px rgba(32, 184, 181, 0.35);
    transition: all 0.35s ease;
}

.coming-soon-content a:hover,
.coming-soon-section .elementor-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(32, 184, 181, 0.48);
    background: linear-gradient(135deg, #42dcd8, #ffffff);
}

/* Small Badge Style if you use span */
.coming-soon-content span {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(32, 184, 181, 0.15);
    border: 1px solid rgba(32, 184, 181, 0.35);
    color: #20b8b5;
    font-size: 14px;
    font-weight: 700;
}

/* Animations */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes floatGlow {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(30px) scale(1.08);
    }
}

@keyframes shineMove {
    0% {
        right: -100%;
    }
    45%, 100% {
        right: 130%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .coming-soon-section {
        padding: 50px 22px;
        text-align: center;
    }

    .coming-soon-content {
        margin: 0 auto;
    }

    .coming-soon-image img {
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .coming-soon-section {
        min-height: 100vh;
        padding: 40px 18px;
    }

    .coming-soon-content {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .coming-soon-content h1 {
        font-size: 34px;
    }

    .coming-soon-content p {
        font-size: 15.5px;
        line-height: 1.9;
    }

    .coming-soon-image img {
        max-width: 280px;
        border-radius: 22px;
    }
}/* End custom CSS */