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

:root {
    --bs-primary-rgb: 137, 137, 137;
    --bs-secondary-rgb: 251, 189, 35;
    --bs-success-rgb: 108, 108, 108;
    --bs-dark-rgb: 30, 130, 76;
}

/* ==================== Start Birthday Wishes Web ==================== */
.birthday_banner {
    position: relative;
    transform: translateY(-60%);
}

@keyframes banner {
    from {
        transform: translateY(-60%);
    }
    to {
        transform: translateY(0%);
    }
}

.banner_logo img {
    position: relative;
}

.birthday_bg {
    background: #FCFDF1;
    font-family: "Poppins", sans-serif;
}

.birthday_banner h1 {
    font-family: "Righteous", sans-serif;
    color: #713E79;
    font-size: 50px;
}

.birthday_banner p {
    font-family: "Poppins", sans-serif;
    color: #713E79;
    font-size: 20px;
}

.banner_logo {
    background: #713E79;
}

.birthday_title h4, .problem_title h4,
.solution_title h4, .features_section h2 {
    font-size: 64px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    background: linear-gradient(
        0deg,
        rgba(255, 222, 230, 0.6) 24.04%,
        #713E79 75.49%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.birthday_title h4 {
    transform: translatey(80%);
    opacity: 0;
}

@keyframes birthday_title {
    from {
        transform: translatey(80%);
        opacity: 0;
    }
    to {
        transform: translatey(0%);
        opacity: 1;
    }
}

.birthday_about {
    background: #FFE0DB;
    border-radius: 71px;
    padding: 50px 70px;
    color: #713E79;
    font-size: 20px;
}

.about_text {
    position: relative;
    transform: translateY(50%);
    opacity: 0;
}

@keyframes about_text {
    from {
        transform: translateY(50%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

.extra_special h4 {
    font-size: 48px;
    text-align: center;
    color: #713E79;
    margin-bottom: 23px;
    font-family: "Righteous", sans-serif;
}

.birthday_msg img {
    transform: translateY(-50%);
    opacity: 0;
    animation-delay: 0.10s;
}

@keyframes birthday_msg {
    from {
        transform: translatey(-50%);
        opacity: 0;
    }
    to {
        transform: translatey(0%);
        opacity: 1;
    }
}

.create_card {
    transform: translateY(-50%);
    opacity: 0;
    animation-delay: 0.10s;
}

@keyframes create_card {
    from {
        transform: translatey(50%);
        opacity: 0;
    }
    to {
        transform: translatey(0%);
        opacity: 1;
    }
}

.typo_box {
    border-radius: 20px;
    overflow: hidden;
}

.birthday_typo_left {
    background: #FFDEE6;
    padding: 40px !important;
}

.birthday_font_weights {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.birthday_font_weights span {
    font-size: 14px;
    font-weight: 500;
}

.birthday_typo_left h1 {
    font-size: 95px;
    font-weight: 500;
    margin: 40px 0;
    text-align: center;
}

.bd_alphabets p {
    font-size: 16px;
    font-weight: 400;
}

.birthday_typo_right {
    background: #713E79;
    padding: 40px !important;
    color: #fff;
    min-height: 350px;
}

.birthday_typo_right .desc {
    font-size: 20px;
}

.big_text {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 400px;
    font-weight: 700;
    color: #000;
}

.birthday_color_box {
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
}

.bg-purple {
    background: #713E79;
    color: #FFFFFF;
}

.bg-gray {
    background: #6D6D78;
}

.bg-pink {
    background: #FFDEE6;
}

.sub_title {
    color: #713E79;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}

.birthday_skills {
    background: #FCFDF1;
}

.birthday_card {
    text-align: center;
}

.birthday_grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin: auto;
    max-width: 1200px;
}

@keyframes card_anim {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.birthday_card:hover {
    transform: translateY(-10px);
    transition: 0.3s;
}

.birthday_card p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.bd_problem_bg {
    position: relative;
}

.problem_bg .bg_img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay_content {
    position: absolute;
    top: 10px;
    left: 275px;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem_section,
.solution_section {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 3;
}

.solution_title h4, .problem_title h4 {
    transform: scale(0);
}

@keyframes section {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.problem_statement,
.solution_statement {
    position: relative;
    padding: 30px 50px;
    color: #713E79;
    font-size: 20px;
    border-radius: 15px;
    transform: scale(0);
}

.problem_img,
.solution_img {
    position: relative;
}

.problem_img img,
.solution_img img {
    width: 100%;
    transform: scale(0);
}

@keyframes statement {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.problem_img::after,
.solution_img::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(
        to bottom,
        rgba(255, 224, 219, 0),
        rgba(255, 224, 219, 1)
    );
}

.features_section {
    background: #fffdf2;
    text-align: center;
    align-items: center;
    margin: 0;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.features_grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 25px;
    width: 95%;
    margin-left: 2%;
    margin-top: 40px;
}

.feature {
    background: #7b4a92;
    color: #fff;
    border-radius: 36px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: -8px 8px 0 0 rgba(255, 222, 230, 1),
    -9px 10px 7px 0 rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    padding: 27px 16px;
}

.feature:hover {
    transform: translateY(-5px);
    background: #6a3b82;
}

.balloon {
    position: absolute;
    z-index: 1;
}

.balloon.left {
    position: absolute;
    left: 60px;
    top: 35%;
    animation: balloonBounce 7s ease-in-out infinite;
}

@keyframes balloonBounce {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-70px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-70px);
    }
    100% {
        transform: translateY(0);
    }
}

.balloon.right {
    top: 67%;
    right: 2px;
    position: absolute;
    animation: balloon_right 9s ease-in-out infinite;
}

@keyframes balloon_right {
    0% {
        transform: translateY(-320px);
    }
    25% {
        transform: translateY(-395px);
    }
    50% {
        transform: translateY(-320px);
    }
    75% {
        transform: translateY(-395px);
    }
    100% {
        transform: translateY(-320px);
    }
}

.visit_card {
    position: relative;
}

.visit_img {
    position: relative;
}

.visit_left {
    position: absolute;
    width: 7%;
    top: -133px;
    left: 29%;
    transform: translateY(-50%);
    animation: ping 1.5s infinite;
}

.visit_right {
    position: absolute;
    width: 7%;
    top: -133px;
    right: 29%;
    transform: translateY(-50%);
    animation: ping 1.5s infinite;
}

.visit_section {
    border: 7px solid rgba(113, 62, 121, 1);
    padding: 20px 0;
    margin: 0 326px;
}

@keyframes ping {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

.section_text {
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes section_text {
    from {
        transform: translatey(-100%);
        opacity: 0;
    }
    to {
        transform: translatey(0%);
        opacity: 1;
    }
}

.visit_text {
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #713E79;
}

.visit_btn a {
    text-decoration: none;
    border: 1px solid #713E79;
    background-color: #713E79;
    color: #FFFFFF;
    padding: 14px 16px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    border-radius: 16px;
    transition: 0.3s;
}

.visit_btn a:hover {
    transform: translateY(-5px);
}

.visit_text h2 {
    font-size: 128px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #713E79 0%, #ffffff 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins", sans-serif;
    position: relative;
    display: inline-block;
    transform: scale(0);
}

@keyframes title_text {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

/* ==================== End Birthday Wishes Web ==================== */
