@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #EFEFED;
    --secondary-color: #F8F8F8;
    --black-color: #2f2f2f;
    --text-color: #666666;
    --high-light-color: #FF6F16;
    --white-color: #fff;
    --primary-font-family: "DM Sans", sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--primary-font-family);
}

a {
    text-decoration: inherit;
    color: inherit;
}

body {
         background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249, 115, 22, 0.25), transparent 70%), var(--white-color);
}




.hero_section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_section .hero_container {
    width: 90%;
    height: 100%;
    min-height: 100vh;
}

.hero_section .hero_container .hero_top {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}

.hero_section .hero_container .hero_top .hero_col {
    flex: 1;
}

.hero_section .hero_container .hero_top .hero_col:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: end;
}

.email_container a {
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease-in;
}

.email_container a:hover {
    text-decoration: underline;
}

.social_container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.social_container button {
    background: transparent;
    font-size: 18px;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease-in;
    border-radius: 5px;

}

.social_container button:hover {
    background: var(--white-color);
}

.hero_bottom {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero_bottom .hero_profile {
    width: fit-content;
    height: auto;
    position: relative;
}

.hero_img_container {
    width: 100%;
    height: 100%;
    max-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    border: 3px solid var(--high-light-color);
}

.hero_img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_name_container {
    background: var(--white-color);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -15px;
    right: -20px;
    rotate: -20deg;
    border: 1px solid var(--black-color);
}

.hero_name_container p {
    font-size: 14px;
    font-weight: 600;
}

.hand {
    animation: wave-animation 2.5s infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}

@keyframes wave-animation {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.hero_text_container {
    padding-top: 40px;
    text-transform: uppercase;
}

.hero_text_container h2 {
    text-align: center;
    font-size: clamp(1.2em, 3vw, 3em);
    /* 1,side , 2, start color, 3, end color */
    background: -webkit-linear-gradient(left, var(--black-color), var(--text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chat_now_container {
    padding: 30px 0;
}

.chat_now_btn {
    background: var(--black-color);
    border-radius: 30px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    border: 1px solid var(--black-color);
    transition: all 0.3s linear;
    font-weight: 500;
}

.chat_now_btn:hover {
    background: var(--secondary-color);
    color: var(--black-color);
}
.countdown_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.countdown_box {
    width: 120px;              /* same width for all */
    height: 120px;             /* same height for all */
    background: rgba(255, 255, 255, 0.1); /* transparent shade */
    border: 2px solid var(--high-light-color); /* highlight border */
    border-radius: 50%;      /* rounded corners */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.countdown_box:hover {
    transform: translateY(-5px); /* subtle hover animation */
}

.countdown_box span {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--high-light-color);
}

.countdown_box p {
    margin: 0;
    font-size: 16px;
    color: var(--black-color);
}