/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            #f5f7fa 0%,
            #ffffff 50%,
            #eef1f6 100%
        );

    color: #222;

    overflow-x: hidden;
}



/* =========================================
   BACKGROUND EFFECT
========================================= */

.background {

    position: fixed;

    inset: 0;

    overflow: hidden;

    z-index: 0;

    pointer-events: none;
}


.circle {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.15;
}


.circle-one {

    width: 500px;

    height: 500px;

    background: #5369a6;

    top: -250px;

    left: -200px;
}


.circle-two {

    width: 450px;

    height: 450px;

    background: #8d96aa;

    right: -200px;

    bottom: -200px;
}


.circle-three {

    width: 300px;

    height: 300px;

    background: #5267a1;

    left: 45%;

    top: 40%;
}



/* =========================================
   MAIN CONTAINER
========================================= */

.landing-page {

    position: relative;

    z-index: 1;

    width: 100%;

    max-width: 1250px;

    min-height: 100vh;

    margin: auto;

    padding:
        30px 50px 20px;

    display: flex;

    flex-direction: column;
}



/* =========================================
   HEADER
========================================= */

.header {

    display: flex;

    align-items: center;
}


.logo-area {

    display: flex;

    align-items: center;

    gap: 15px;
}



/* PRAS LOGO */

.pras-logo {

    width: 72px;

    height: 72px;

    object-fit: contain;

    display: block;
}



/* COMPANY NAME */

.company-name h2 {

    font-size: 20px;

    letter-spacing: 2px;

    color: #5369a6;
}


.company-name span {

    display: block;

    margin-top: 5px;

    font-size: 10px;

    letter-spacing: 1.5px;

    color: #777f8f;
}



/* =========================================
   HERO
========================================= */

.hero {

    flex: 1;

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 50px;

    padding:
        60px 0;
}



/* LEFT CONTENT */

.hero-content {

    max-width: 650px;
}



/* BADGE */

.badge {

    display: inline-flex;

    align-items: center;

    padding:
        9px 15px;

    border:
        1px solid
        rgba(83, 105, 166, 0.35);

    border-radius: 50px;

    color: #5369a6;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.5px;

    background:
        rgba(83, 105, 166, 0.05);
}


.status-dot {

    width: 8px;

    height: 8px;

    margin-right: 9px;

    border-radius: 50%;

    background: #5369a6;

    box-shadow:
        0 0 10px
        rgba(83, 105, 166, 0.8);

    animation:
        pulse 1.5s infinite;
}


@keyframes pulse {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}



/* =========================================
   MAIN HEADING
========================================= */

.hero h1 {

    margin-top: 28px;

    font-size:
        clamp(45px, 6vw, 75px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -2px;

    color: #252a33;
}


.hero h1 span {

    color: #5369a6;
}



/* =========================================
   DESCRIPTION
========================================= */

.description {

    max-width: 560px;

    margin-top: 25px;

    color: #687181;

    font-size: 17px;

    line-height: 1.8;
}



/* =========================================
   COUNTDOWN
========================================= */

.countdown {

    display: flex;

    align-items: center;

    margin-top: 38px;
}


.time-box {

    min-width: 75px;

    text-align: center;
}


.time-box span {

    display: block;

    font-size: 32px;

    font-weight: bold;

    color: #303641;
}


.time-box small {

    display: block;

    margin-top: 5px;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #89909d;
}


.separator {

    margin: 0 8px;

    color: #5369a6;

    font-size: 25px;
}



/* =========================================
   CONTACT BUTTON
========================================= */

.action-area {

    margin-top: 35px;
}


.contact-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding:
        14px 25px;

    text-decoration: none;

    color: #ffffff;

    background: #5369a6;

    border-radius: 5px;

    font-size: 13px;

    font-weight: bold;

    transition:
        all 0.3s ease;
}


.contact-btn span {

    font-size: 20px;

    transition:
        transform 0.3s ease;
}


.contact-btn:hover {

    background: #43588e;

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(83, 105, 166, 0.25);
}


.contact-btn:hover span {

    transform:
        translateX(5px);
}



/* =========================================
   RIGHT SIDE LOGO
========================================= */

.hero-graphic {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 400px;
}


.logo-display {

    width: 390px;

    height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.65);

    box-shadow:
        0 30px 70px
        rgba(40, 48, 70, 0.12);

    animation:
        floating 5s ease-in-out infinite;
}


.logo-display img {

    width: 340px;

    height: 340px;

    object-fit: contain;

    display: block;
}


@keyframes floating {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}



/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-section {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    padding:
        25px 0;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.08);
}


.contact-item {

    display: flex;

    align-items: center;

    gap: 13px;
}


.contact-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #5369a6;

    background:
        rgba(83, 105, 166, 0.08);

    font-size: 16px;
}


.contact-item small {

    display: block;

    margin-bottom: 5px;

    color: #8a919d;

    font-size: 10px;

    letter-spacing: 1px;
}


.contact-item a,
.contact-item span {

    color: #4d5563;

    text-decoration: none;

    font-size: 13px;
}


.contact-item a:hover {

    color: #5369a6;
}



/* =========================================
   FOOTER
========================================= */

footer {

    padding-top: 18px;

    text-align: center;

    color: #8b929d;

    font-size: 11px;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .landing-page {

        padding:
            30px;

    }


    .hero {

        grid-template-columns: 1fr;

        text-align: center;

        padding:
            50px 0 30px;

    }


    .hero-content {

        margin:
            auto;

    }


    .description {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .countdown {

        justify-content:
            center;

    }


    .action-area {

        display:
            flex;

        justify-content:
            center;

    }


    .hero-graphic {

        min-height:
            350px;

    }


    .logo-display {

        width:
            320px;

        height:
            320px;

    }


    .logo-display img {

        width:
            285px;

        height:
            285px;

    }


    .contact-section {

        grid-template-columns:
            1fr;

        max-width:
            450px;

        margin:
            auto;

        width:
            100%;

    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .landing-page {

        padding:
            20px;

    }


    .pras-logo {

        width:
            58px;

        height:
            58px;

    }


    .company-name h2 {

        font-size:
            16px;

    }


    .company-name span {

        font-size:
            8px;

    }


    .hero {

        padding-top:
            45px;

    }


    .hero h1 {

        font-size:
            43px;

        letter-spacing:
            -1px;

    }


    .description {

        font-size:
            15px;

    }


    .countdown {

        justify-content:
            center;

    }


    .time-box {

        min-width:
            58px;

    }


    .time-box span {

        font-size:
            25px;

    }


    .separator {

        margin:
            0 2px;

        font-size:
            20px;

    }


    .hero-graphic {

        min-height:
            270px;

    }


    .logo-display {

        width:
            250px;

        height:
            250px;

    }


    .logo-display img {

        width:
            220px;

        height:
            220px;

    }


    .contact-section {

        padding-top:
            20px;

    }

}