/* ====================================================
   [ReachOut Infra - Minimalist Coming Soon Stylesheet]
   Based on sample template in E:\New folder
==================================================== */

/* PRIMARY STYLES */
html {
    font-size: 100%;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    overflow-x: hidden;
    color: #333;
    background: #fff;
}

h1, h2, h3, h4, h5, h6, p, a, ul, span, li, button, input {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    font-weight: inherit;
    font-family: 'Poppins', sans-serif;
}

p {
    line-height: 1.6;
    font-size: 1.05em;
    font-weight: 400;
    color: #555;
}

h1 {
    font-size: 3.4em;
    line-height: 1.08;
    color: #222;
}

b {
    font-weight: 700;
}

a, button {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    line-height: 1;
}

li {
    list-style: none;
    display: inline-block;
}

button {
    outline: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

/* COMMONS FOR PAGE DESIGN */
.center-text {
    text-align: center;
}

.display-table {
    display: table;
    height: 100%;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.full-height {
    height: 100%;
}

/* FULL-BLEED HERO CONTAINER WITH VIBRANT TELECOM PHOTO BACKGROUND */
.main-area {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-image: url('assets/vibrant_telecom_hero.jpg');
    background-size: cover;
    background-position: center right;
    filter: saturate(1.45) contrast(1.18) brightness(1.06);
}

/* WHITE GRADIENT OVERLAY FADING IN FROM LEFT TO RIGHT ACROSS THE PHOTO (30/70 GRADIENT) */
.main-area::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to right, 
        #ffffff 0%, 
        #ffffff 16%, 
        rgba(255, 255, 255, 0.95) 28%, 
        rgba(255, 255, 255, 0.65) 45%, 
        rgba(255, 255, 255, 0.2) 65%, 
        transparent 85%
    );
    pointer-events: none;
}

.container {
    width: 100%;
    height: 100%;
}

/* LEFT SECTION (30% Width Column - Text & Contact) */
.left-section {
    float: left;
    width: 32%;
    height: 100%;
    position: relative;
    background: transparent; /* Text sits directly over white gradient */
    padding: 0 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.left-section .logo {
    position: absolute;
    top: 40px;
    left: 12%;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    color: #111;
    letter-spacing: -0.5px;
}

.logo-text b {
    color: #F84982;
}

.left-section .main-content {
    padding: 40px 0;
    max-width: 410px;
}

.main-content .title {
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.main-content .email-input-area {
    margin: 35px 0 15px;
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 48px;
}

.main-content .email-input-area .email-input {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    outline: 0;
    padding: 0 140px 0 25px;
    transition: all .2s;
    background: rgba(241, 242, 243, 0.92);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 2px rgba(0,0,0,.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95em;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.main-content .email-input-area .email-input:focus {
    border-color: #F84982;
    background: #fff;
}

.main-content .email-input-area .submit-btn {
    width: 130px;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: .88em;
    border-radius: 40px;
    transition: all .3s;
    background: #F84982;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.main-content .email-input-area .submit-btn:hover {
    background: #e40b52;
    box-shadow: 0 4px 15px rgba(248, 73, 130, 0.4);
}

.main-content .post-desc {
    color: #666;
    font-size: 0.9em;
}

/* Footer & Email Section */
.footer-area {
    position: absolute;
    bottom: 40px;
    left: 12%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-email {
    font-size: 0.92em;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.company-email i {
    color: #F84982;
}

.company-email a {
    color: #222;
    transition: all .2s;
}

.company-email a:hover {
    color: #F84982;
}

.left-section .footer-icons {
    font-size: 0.9em;
    color: #555;
}

.left-section .footer-icons > li {
    margin-right: 8px;
    vertical-align: middle;
}

.left-section .footer-icons > li > a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 34px;
    border-radius: 50%;
    text-align: center;
    color: #444;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.12);
    transition: all .2s;
}

.left-section .footer-icons > li > a:hover {
    color: #F84982;
    border-color: #F84982;
    background: #ffffff;
    transform: translateY(-2px);
}

/* RIGHT SECTION (70% Width Photo Area) */
.right-section {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.split-fade-transition {
    display: none;
}

.right-section .display-table {
    position: relative;
    z-index: 3;
}

/* Circular Countdown Clock Container */
#rounded-countdown {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px 0 40px;
}

.circular-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
}

.circle-item {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 6;
}

.ring-progress {
    fill: none;
    stroke: #F84982;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 80;
    transition: stroke-dashoffset 1s linear;
}

.circle-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.circle-val span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.circle-val small {
    font-size: 0.65em;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    text-transform: uppercase;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .left-section, .right-section {
        width: 100%;
        float: none;
        position: relative;
    }
    
    .left-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 8% 120px;
    }
    
    .right-section {
        height: 400px;
    }
    
    .main-area::before {
        background: linear-gradient(to bottom, 
            #ffffff 0%, 
            #ffffff 45%, 
            rgba(255, 255, 255, 0.85) 70%, 
            transparent 100%
        );
    }
    
    #rounded-countdown {
        padding: 0 20px;
    }
    
    .left-section .logo {
        left: 8%;
    }
    
    .footer-area {
        left: 8%;
        bottom: 30px;
    }
    
    h1 {
        font-size: 2.8em;
    }
}

@media (max-width: 576px) {
    .main-content .email-input-area {
        height: 95px;
    }
    
    .main-content .email-input-area .email-input {
        padding: 0 20px;
        height: 46px;
    }
    
    .main-content .email-input-area .submit-btn {
        width: 100%;
        height: 44px;
        top: 52px;
        border-radius: 40px;
    }
    
    .circular-countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .circle-item {
        width: 80px;
        height: 80px;
    }
    
    .circle-val span {
        font-size: 1.2em;
    }
    
    .circle-val small {
        font-size: 0.5em;
    }
}
