﻿/*==================================================
    GOOGLE FONT
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #fff7f7;
    color: #222;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/*==================================================
    COLOR VARIABLES
==================================================*/

:root {
    --primary: #E4313A;
    --primary-dark: #B5172D;
    --primary-light: #FF646D;
    --white: #ffffff;
    --light: #fff5f5;
    --text: #222;
    --gray: #666;
}

/*==================================================
    LOADER
==================================================*/

#loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s;
}

    #loader.hide {
        opacity: 0;
        visibility: hidden;
    }

/*==================================================
    BACKGROUND
==================================================*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #fff7f7 0%, #ffe5e7 50%, #ffffff 100%);
}

/*==================================================
    ANIMATED SHAPES
==================================================*/

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .18;
    animation: float 10s infinite ease-in-out;
}

.shape1 {
    width: 250px;
    height: 250px;
    background: #E4313A;
    left: -60px;
    top: -70px;
}

.shape2 {
    width: 320px;
    height: 320px;
    background: #ff7b86;
    right: -100px;
    top: 120px;
    animation-delay: 2s;
}

.shape3 {
    width: 180px;
    height: 180px;
    background: #f4b1b7;
    bottom: -40px;
    left: 20%;
    animation-delay: 4s;
}

.shape4 {
    width: 250px;
    height: 250px;
    background: #ff5864;
    bottom: -100px;
    right: 15%;
    animation-delay: 6s;
}

@keyframes float {

    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-35px) scale(1.05);
    }

    100% {
        transform: translateY(0px);
    }
}

/*==================================================
    GLASS CARD
==================================================*/

.glass-card {
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 30px 60px rgba(0,0,0,.08), 0 8px 25px rgba(228,49,58,.08);
    animation: fadeUp 1.2s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
    LOGO
==================================================*/

.company-logo {
    max-width: 240px;
    transition: .4s;
}

    .company-logo:hover {
        transform: scale(1.05);
    }

/*==================================================
    BADGE
==================================================*/

.badge {
    font-size: .9rem;
    letter-spacing: 2px;
    border-radius: 50px;
}

/*==================================================
    HEADING
==================================================*/

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h3 {
    font-size: 4rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

    .hero h1 span {
        color: var(--primary);
    }

.hero .lead {
    max-width: 720px;
    margin: auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/*==================================================
    COUNTDOWN
==================================================*/

.countdown {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-box {
    width: 135px;
    background: white;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .4s;
    border: 1px solid rgba(228,49,58,.12);
}

    .time-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(228,49,58,.18);
    }

    .time-box h2 {
        font-size: 2.6rem;
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 5px;
    }

    .time-box small {
        color: #666;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/*==================================================
    PROGRESS
==================================================*/

.progress {
    height: 12px;
    border-radius: 30px;
    background: #f3f3f3;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient( 90deg, var(--primary), var(--primary-light));
}

/*==================================================
    SOCIAL ICONS
==================================================*/

.social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

    .social a {
        width: 55px;
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: white;
        color: var(--primary);
        font-size: 22px;
        text-decoration: none;
        transition: .4s;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

        .social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-8px) rotate(8deg);
        }


/*==================================================
    INFO CARDS
==================================================*/

.info-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
    border: 1px solid rgba(228,49,58,.08);
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
}

    .info-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, var(--primary), var(--primary-light) );
        transition: .5s;
    }

    .info-card:hover::before {
        left: 0;
    }

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(228,49,58,.18);
    }

    .info-card i {
        font-size: 58px;
        color: var(--primary);
        margin-bottom: 20px;
        display: block;
    }

    .info-card h3 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 18px;
        color: #222;
    }

    .info-card p {
        color: #666;
        line-height: 1.9;
        font-size: 16px;
        margin-bottom: 0;
    }

/*==================================================
    COMPANY CARD
==================================================*/

.company-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    border: 1px solid rgba(228,49,58,.08);
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    transition: .35s;
}

    .company-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(228,49,58,.18);
    }

    .company-card h3 {
        color: var(--primary);
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 25px;
    }

        .company-card h3 i {
            margin-right: 12px;
        }

    .company-card p {
        color: #666;
        line-height: 1.9;
        font-size: 16px;
    }

    .company-card strong {
        color: var(--primary);
    }

    .company-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .company-card ul li {
            position: relative;
            padding-left: 34px;
            margin-bottom: 18px;
            color: #555;
            font-size: 16px;
        }

            .company-card ul li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                background: var(--primary);
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 13px;
                font-weight: bold;
            }

/*==================================================
    SECTION SPACING
==================================================*/

section {
    position: relative;
    z-index: 2;
}

/*==================================================
    FOOTER
==================================================*/

footer {
    background: linear-gradient( 135deg, var(--primary-dark), var(--primary) );
    color: #fff;
    padding: 70px 0 35px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -180px;
        right: -150px;
    }

    footer::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        left: -80px;
        bottom: -80px;
    }

    footer h4 {
        font-weight: 700;
        font-size: 30px;
    }

    footer p {
        color: rgba(255,255,255,.85);
        font-size: 15px;
    }

    footer .social a {
        background: rgba(255,255,255,.18);
        color: #fff;
        box-shadow: none;
    }

        footer .social a:hover {
            background: #fff;
            color: var(--primary);
        }

/*==================================================
    CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 50px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

/*==================================================
    TEXT SELECTION
==================================================*/

::selection {
    background: var(--primary);
    color: #fff;
}

/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width:1200px) {

    .hero h1 {
        font-size: 56px;
    }

    .glass-card {
        padding: 50px;
    }
}

@media (max-width:992px) {

    .hero {
        padding: 70px 0;
    }

        .hero h1 {
            font-size: 46px;
        }

        .hero .lead {
            font-size: 17px;
        }

    .glass-card {
        padding: 40px;
    }

    .time-box {
        width: 120px;
    }

    .company-card,
    .info-card {
        margin-bottom: 10px;
    }
}

@media (max-width:768px) {

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .company-logo {
        max-width: 180px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .lead {
        font-size: 16px;
        line-height: 1.8;
    }

    .glass-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .countdown {
        gap: 15px;
    }

    .time-box {
        width: 100px;
        padding: 18px;
    }

        .time-box h2 {
            font-size: 34px;
        }

    .info-card {
        padding: 30px;
    }

    .company-card {
        padding: 30px;
    }

        .info-card h3,
        .company-card h3 {
            font-size: 26px;
        }

    footer {
        padding: 60px 0 30px;
    }

        footer h4 {
            font-size: 26px;
        }

    .social {
        gap: 12px;
    }

        .social a {
            width: 48px;
            height: 48px;
            font-size: 20px;
        }
}

@media (max-width:576px) {

    .hero h1 {
        font-size: 30px;
    }

    .badge {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .time-box {
        width: 78px;
        padding: 15px 10px;
    }

        .time-box h2 {
            font-size: 28px;
        }

        .time-box small {
            font-size: 11px;
        }

    .info-card {
        padding: 25px;
    }

    .company-card {
        padding: 25px;
    }

        .company-card ul li {
            font-size: 15px;
            padding-left: 30px;
        }

    footer h4 {
        font-size: 24px;
    }

    footer p {
        font-size: 14px;
    }
}

/*==================================================
    END OF STYLE.CSS
==================================================*/