* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

body {

    /* Background Image aur Dark Overlay */

    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/news-bg.jpg');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    background-repeat: no-repeat;

    

    color: #333;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

    text-align: center;

    padding: 20px;

}

.maintenance-container {

    /* Halka transparent white background (Glass effect) */

    background: rgba(255, 255, 255, 0.95); 

    max-width: 700px;

    padding: 50px;

    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.5);

    border-top: 6px solid #d32f2f; /* News Red Accent */

}

/* Logo Setup */

.logo-img {

    max-width: 250px; /* Aap logo ka size yahan se kam/zyada kar sakte hain */

    height: auto;

    margin-bottom: 20px;

}

h2 {

    font-size: 1.8rem;

    margin-bottom: 15px;

    color: #1a1a1a;

}

p {

    color: #555;

    margin-bottom: 30px;

    line-height: 1.6;

    font-size: 1.05rem;

}

.countdown {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-bottom: 40px;

}

.time-box {

    background: #1a1a1a;

    color: #ffffff;

    padding: 15px 20px;

    border-radius: 8px;

    min-width: 85px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

}

.time-box span {

    font-size: 2.2rem;

    font-weight: bold;

    display: block;

    color: #d32f2f; /* Timer numbers in red */

}

.time-box p {

    margin: 0;

    font-size: 0.8rem;

    color: #dddddd;

    text-transform: uppercase;

    margin-top: 5px;

    letter-spacing: 1px;

}

.subscribe form {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-bottom: 40px;

}

.subscribe input {

    padding: 12px 15px;

    border: 1px solid #cccccc;

    border-radius: 4px;

    width: 65%;

    font-size: 1rem;

    outline: none;

}

.subscribe input:focus {

    border-color: #d32f2f;

}

.subscribe button {

    padding: 12px 20px;

    background: #d32f2f;

    color: #ffffff;

    border: none;

    border-radius: 4px;

    font-size: 1rem;

    font-weight: bold;

    cursor: pointer;

    transition: background 0.3s ease;

}

.subscribe button:hover {

    background: #b71c1c;

}

.social-links a {

    display: inline-block;

    margin: 0 12px;

    color: #1a1a1a;

    text-decoration: none;

    font-weight: bold;

    transition: color 0.3s ease;

}

.social-links a:hover {

    color: #d32f2f;

}

/* Mobile Responsiveness */

@media (max-width: 600px) {

    .countdown {

        flex-wrap: wrap;

    }

    .subscribe form {

        flex-direction: column;

    }

    .subscribe input {

        width: 100%;

    }

    .maintenance-container {

        padding: 30px 20px;

    }

}
/* CEO Info Styling */

.ceo-info {

    margin-top: 25px;

    padding-top: 15px;

    border-top: 1px solid #e0e0e0; /* Patli grey line separator ke liye */

    font-size: 0.9rem;

    color: #666;

    line-height: 1.5;

}

.ceo-info strong {

    color: #1a1a1a; /* CEO tag ko dark karne ke liye */

}