/* =========================================
   SIGMACORE INDIA
   Coming Soon Website
   ========================================= */


/* ---------- Reset ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ---------- Body ---------- */

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #ffffff;

    color: #101828;

    min-height: 100vh;
}


/* ---------- Page ---------- */

.page {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px 20px;
}


/* ---------- Container ---------- */

.container {
    width: 100%;

    max-width: 1100px;

    text-align: center;
}


/* ---------- Header ---------- */

.header {
    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 70px;
}


/* ---------- Logo ---------- */

.logo {
    width: min(720px, 90%);

    height: auto;

    display: block;

    object-fit: contain;
}


/* ---------- Hero ---------- */

.hero {
    display: flex;

    flex-direction: column;

    align-items: center;
}


/* Blue small line */

.small-line {
    width: 65px;

    height: 3px;

    background: #0879e6;

    margin-bottom: 30px;
}


/* ---------- Heading ---------- */

.hero h1 {
    font-size: clamp(42px, 7vw, 76px);

    font-weight: 600;

    letter-spacing: 4px;

    line-height: 1.1;

    color: #101828;
}


.hero h1 span {
    color: #0879e6;
}


/* ---------- Description ---------- */

.description {
    max-width: 650px;

    margin-top: 25px;

    font-size: 18px;

    line-height: 1.7;

    color: #667085;
}


/* ---------- Contact ---------- */

.contact {
    margin-top: 80px;

    padding: 35px 20px;

    border-top: 1px solid #e4e7ec;

    border-bottom: 1px solid #e4e7ec;
}


.contact h2 {
    font-size: 20px;

    font-weight: 600;

    margin-bottom: 30px;

    color: #101828;
}


/* ---------- Contact Grid ---------- */

.contact-grid {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 70px;

    flex-wrap: wrap;
}


/* ---------- Contact Item ---------- */

.contact-item {
    display: flex;

    align-items: center;

    gap: 14px;

    text-align: left;

    min-width: 220px;
}


/* ---------- Icon ---------- */

.icon {
    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef6ff;

    color: #0879e6;

    font-size: 20px;

    flex-shrink: 0;
}


/* ---------- Label ---------- */

.label {
    display: block;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #98a2b3;

    margin-bottom: 5px;
}


/* ---------- Contact Links ---------- */

.contact-item a {
    color: #344054;

    text-decoration: none;

    font-size: 15px;

    transition: color 0.2s ease;
}


.contact-item a:hover {
    color: #0879e6;
}


/* ---------- Location ---------- */

.contact-item p {
    color: #344054;

    font-size: 15px;
}


/* ---------- Footer ---------- */

footer {
    margin-top: 30px;

    color: #98a2b3;

    font-size: 13px;
}


.footer-line {
    display: none;
}


/* =========================================
   Mobile Responsive
   ========================================= */

@media (max-width: 700px) {

    .page {
        padding: 35px 18px;
    }


    .header {
        margin-bottom: 55px;
    }


    .logo {
        width: 95%;
    }


    .small-line {
        margin-bottom: 25px;
    }


    .hero h1 {
        font-size: 40px;

        letter-spacing: 2px;
    }


    .description {
        font-size: 16px;

        line-height: 1.6;

        margin-top: 20px;
    }


    .contact {
        margin-top: 60px;

        padding: 30px 10px;
    }


    .contact-grid {
        flex-direction: column;

        gap: 25px;

        align-items: flex-start;

        max-width: 300px;

        margin: auto;
    }


    .contact-item {
        width: 100%;

        min-width: 0;
    }


    footer {
        font-size: 12px;
    }

}


/* =========================================
   Small Mobile
   ========================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 34px;
    }


    .description {
        font-size: 15px;
    }


    .contact {
        margin-top: 50px;
    }

}