.elementor-450 .elementor-element.elementor-element-bdd0664{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c610f93 *//* Font Imports: Lora for Heading (Serif), Inter for body (Sans-serif) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lora:wght@500;600&display=swap');
/* FontAwesome for Social Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

#uc-coming-soon {
    position: relative;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    width: 100%;
    background-color: #fdfdfd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Abstract Background Shapes mimicking the image vibe */
.bg-shape-top-right {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138,180,179,0.4) 0%, rgba(200,173,126,0.3) 50%, rgba(253,253,253,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.bg-shape-bottom-left {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(19,60,94,0.3) 0%, rgba(83,145,166,0.3) 40%, rgba(253,253,253,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Header / Logo */
.uc-header {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.uc-header img {
    max-height: 50px; /* Aapki actual logo height */
}

/* Main Content Container */
.uc-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin-top: 40px;
}

.uc-heading {
    font-family: 'Lora', serif;
    color: #133c5e; /* Deep Blue from image */
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.uc-subtext {
    color: #333333;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Opt-in Box */
.uc-optin-box {
    background-color: #f6f3eb; /* Light warm tan color */
    border: 1px solid #e8e0cc;
    border-radius: 12px;
    padding: 35px 40px;
    max-width: 650px;
    margin: 0 auto 40px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.uc-optin-title {
    font-size: 0.95rem;
    color: #133c5e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: left;
}

.uc-form {
    display: flex;
    gap: 15px;
}

.uc-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.uc-form input:focus {
    border-color: #c8ad7e;
}

.uc-form button {
    background-color: #cdb283; /* Gold/Tan color from button */
    color: #133c5e;
    border: none;
    border-radius: 6px;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.uc-form button:hover {
    background-color: #bfa373;
}

/* Footer / Socials */
.uc-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.uc-social-icons a {
    color: #133c5e;
    font-size: 1.5rem;
    margin: 0 5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.uc-social-icons a:hover {
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .uc-heading {
        font-size: 2.8rem;
    }
    .uc-header {
        top: 20px;
        left: 20px;
        position: relative;
        justify-content: center;
        margin-bottom: 30px;
    }
    .uc-form {
        flex-direction: column;
    }
    .uc-optin-title {
        text-align: center;
    }
}/* End custom CSS */