.container {
    width: 1105px;
    max-width: 100%;
    margin: auto;
}

.wrapper-section {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}


header .top_base {
    z-index: 100;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(120deg, rgb(181,196,194) 0%, rgb(147,163,159,0.5) 100%);
}

header .container {
    position: relative;
    padding: 1.5rem 2rem;
}

header .nav_master {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
}

header .head_teach {
    position: relative;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 5px 5px 0 rgb(147,163,159,0.5);
    border-radius: 10px;
    display: block;
    padding: 15px;
    transform: rotate(-3deg);
}

header .head_teach svg {
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.5));
    height: 45px;
    width: auto;
}

header .top_train:hover::before {
    width: 100%;
}

header .nav_learning {
    position: relative;
    margin: 5px 3px;
}

header .nav_learning:nth-child(even) {
    transform: translateY(3px);
}

header .nav_learning a::before {
    position: absolute;
    transition: transform 0.3s ease;
    right: 0;
    transform-origin: top;
    background: rgb(147,163,159);
    transform: scaleY(0);
    width: 5px;
    top: 0;
    content: "";
    height: 100%;
}

header .nav_learning a:hover {
    color: rgb(147,163,159);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    border-left-color: rgb(147,163,159);
    transform: translateX(5px);
}

.teaching_experience .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.teaching_experience .success_testimonials {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    gap: 30px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    grid-template-columns: 1fr;
    border-left: 4px solid rgb(147,163,159);
    transform: perspective(1000px) rotateY(-2deg);
    display: grid;
    transform-style: preserve-3d;
}

.teaching_experience .success_testimonials > div:nth-child(2) {
    padding-left: 15px;
    position: relative;
    transform: translateZ(10px);
}

.teaching_experience .name {
    display: inline-block;
    position: relative;
    color: #000000;
    font-weight: 700;
    margin: 0 0 10px;
    font-size: 19px;
}

.teaching_experience .success_testimonials:hover .name::after {
    width: 100%;
}

.teaching_experience .success_testimonials > div:nth-child(3) {
    transform: translateZ(5px);
    position: relative;
    transition: transform 0.4s ease-out;
}

.teaching_experience .career_explore::before {
    color: rgb(147,163,159,0.5);
    line-height: 1;
    left: 5px;
    font-size: calc(38px * 1.5);
    opacity: 0.4;
    top: 10px;
    position: absolute;
    content: "";
}

.plan_shelf .container {
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.plan_shelf h2 {
    transform: translateZ(30px);
    text-align: center;
    font-size: 29px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.plan_shelf .cost_plan {
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
    display: block;
    transform-style: preserve-3d;
    height: 100%;
}

.plan_shelf .cost_card::after {
    opacity: 0.7;
    position: absolute;
    bottom: -2px;
    right: 10px;
    content: "";
    height: 2px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(90deg, 
        rgb(113,129,125,0.5) 0%,
        rgb(147,163,159,0.5) 100%);
    transform-origin: bottom;
    left: 10px;
}

.plan_shelf .study_packages h4::after {
    height: 3px;
    background: rgb(147,163,159);
    position: absolute;
    bottom: -8px;
    content: "";
    transform-origin: left;
    width: 40px;
    left: 0;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan_shelf .learn_pricing::before {
    border-radius: 50%;
    box-shadow: 0 0 15px rgb(147,163,159);
    margin-right: 8px;
    background: rgb(147,163,159);
    content: "";
    transform: translateY(-2px);
    height: 10px;
    width: 10px;
    display: inline-block;
}

.plan_shelf .value_pricing li:hover .study_packages h4::after {
    width: 100%;
}

.welcome_section {
    min-height: 100vh;
    position: relative;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.95), rgba(36, 59, 85, 0.9));
    display: flex;
    overflow: hidden;
}

.welcome_section .path_edu {
    position: relative;
    width: 100%;
    z-index: 2;
    flex-direction: column;
    max-width: 1400px;
    padding: 6rem 2rem;
    justify-content: center;
    margin: 0 auto;
    display: flex;
    height: 100%;
}

.welcome_section .text_bubble {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset;
    border-radius: 30px;
    backdrop-filter: blur(12px);
    transform: translateY(0);
    border-left: 3px solid rgb(113,129,125);
    max-width: 650px;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.welcome_section svg text {
    font-weight: 700;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.welcome_section .inquiry_widget::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(113,129,125), rgb(147,163,159));
    opacity: 0;
    z-index: -1;
    position: absolute;
    transition: opacity 0.5s ease;
    left: 0;
    content: "";
    top: 0;
}

.who_we_are {
    padding: 120px 0 100px;
    overflow: hidden;
    isolation: isolate;
    position: relative;
}

.who_we_are::before {
    background: linear-gradient(135deg, rgb(113,129,125,0.5), rgba(0, 0, 0, 0.5) 70%);
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
}

.who_we_are h2::after {
    height: 4px;
    transform-origin: left;
    position: absolute;
    content: "";
    width: 80px;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scaleX(1);
    background: rgb(147,163,159);
    bottom: 0;
    left: 0;
}

.who_we_are .text_bubble > div {
    position: relative;
}

.who_we_are .text_bubble p {
    font-weight: 600;
    font-size: calc(21px * 1.1);
    display: inline-block;
    color: rgb(147,163,159);
    padding-right: 50px;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.who_we_are .text_bubble div > div {
    color: #000000;
    line-height: 1.8;
    text-align: justify;
    column-count: 1;
    font-size: 12px;
    opacity: 0.9;
    hyphens: auto;
    column-gap: 40px;
    position: relative;
}

.thanks_box::after {
    right: -10%;
    content: "";
    position: absolute;
    top: 20%;
    z-index: 0;
    height: 70%;
    opacity: 0.03;
    background: rgb(147,163,159);
    transform: rotate(-15deg) skewX(-15deg);
    width: 50%;
}

.thanks_box h2 {
    margin-bottom: 40px;
    animation: slideTitle 0.8s forwards 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    color: #000000;
    transform: translateZ(30px);
    font-weight: 700;
    font-size: 37px;
    position: relative;
    text-align: left;
    opacity: 0;
}

.thanks_box .path_edu::before {
    top: 0;
    position: absolute;
    background: linear-gradient(135deg, rgb(147,163,159,0.5) 0%, transparent 80%);
    z-index: 0;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 0.07;
    left: 0;
}

.thanks_box .path_edu:hover::after {
    transform: scale(1);
    opacity: 0.05;
}

.thanks_box li {
    padding-left: 30px;
    position: relative;
    z-index: 2;
}

.thanks_box li span {
    transform: translateY(20px);
    font-size: 16px;
    line-height: 1.8;
    display: block;
    opacity: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    animation: fadeUp 0.8s forwards 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.secure_safehold {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.secure_safehold h3, .secure_safehold h4, .secure_safehold h5, .secure_safehold h6 {
    margin: 1em 0;
    font-size: 19px;
    color: #000000;
}

.give_it_a_try::before {
    top: -50%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    background: rgb(147,163,159,0.5);
    right: -20%;
    width: 80%;
    content: '';
    z-index: 1;
    position: absolute;
    height: 200%;
    transform: rotate(-15deg);
}

.give_it_a_try .inquiry_widget {
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 50px;
    font-size: 15px;
    background: linear-gradient(90deg, rgb(147,163,159), rgb(113,129,125));
    overflow: hidden;
    font-weight: 600;
    transition: all 0.4s ease;
    z-index: 5;
    position: relative;
    text-decoration: none;
    color: #ffffff;
}

.give_it_a_try .container p::before {
    content: '';
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    position: absolute;
    left: -20%;
    background: #ffffff;
    top: -10%;
    opacity: 0.4;
    animation: morph 8s ease-in-out infinite;
    width: 140%;
    height: 120%;
    z-index: -1;
}

.course_highlights::after {
    width: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    content: "";
    position: absolute;
    transform: translateZ(0);
    height: 200px;
    opacity: 0.2;
    left: -50px;
    background: linear-gradient(-45deg, rgb(113,129,125,0.5) 0%, rgb(147,163,159,0.5) 100%);
    bottom: -50px;
    animation: morph 20s infinite alternate ease-in-out;
    filter: blur(30px);
}

.course_highlights .img_list::after {
    height: 200%;
    transform: rotate(25deg);
    position: absolute;
    content: "";
    pointer-events: none;
    width: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    top: -50%;
    animation: shimmer 5s infinite linear;
    left: -50%;
}

.course_highlights h3 {
    font-family: Arial, sans-serif;
    z-index: 1;
    color: #000000;
    font-size: calc(21px + 0.2rem);
    position: relative;
    font-weight: 700;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
    transform: translateX(0);
}

.course_highlights p.description {
    max-height: 300px;
    padding-right: 15px;
    overflow-y: auto;
    scrollbar-width: thin;
    display: block;
    scrollbar-color: rgb(147,163,159,0.5) rgb(181,196,194);
}

footer .reach_section {
    padding-bottom: 40px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

footer .info_item p,
footer .info_item a {
    color: #000000;
    font-size: 17px;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
}

footer .top_train h5 {
    color: #000000;
    margin-bottom: 25px;
    font-size: 19px;
    position: relative;
    font-weight: 600;
}

footer .nav_expert a {
    text-decoration: none;
    font-size: 17px;
    color: #000000;
    margin-bottom: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
    display: block;
}

footer .subscribe_holder p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #000000;
    font-size: 17px;
}

footer .online_training {
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    font-size: 19px;
    background-color: rgb(147,163,159);
    text-align: center;
    padding: 14px 20px;
    color: #ffffff;
}

.customer_opinions .path_edu {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

.customer_opinions h4::after {
    position: absolute;
    height: 3px;
    transform: translateX(-50%);
    bottom: -15px;
    left: 50%;
    background: linear-gradient(90deg, rgb(147,163,159), rgb(113,129,125));
    border-radius: 10px;
    width: 100px;
    content: "";
}

.customer_opinions .success_testimonials {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    transform: rotateX(10deg) rotateY(-10deg);
}

.customer_opinions .success_testimonials:hover {
    transform: rotateX(0) rotateY(0) translateZ(30px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.customer_opinions .success_testimonials span {
    display: block;
    text-align: center;
    transform: translateZ(15px);
    font-size: 19px;
    transition: all 0.5s ease;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.customer_opinions .success_testimonials:hover p {
    transform: translateZ(20px);
    color: #ffffff;
}

.customer_opinions .success_testimonials:hover p::before {
    width: 50px;
    background: #ffffff;
}

.customer_opinions .success_testimonials:nth-child(3n+2) {
    animation: floatIn 0.7s ease-out both;
    animation-delay: 0.3s;
}

.course_methodology::before {
    opacity: 0.2;
    content: '';
    height: 100%;
    z-index: 1;
    left: 0;
    position: absolute;
    width: 100%;
    background: radial-gradient(ellipse at 70% 20%, rgb(113,129,125,0.5) 0%, transparent 70%);
    top: 0;
}

.course_methodology .text_bubble p {
    order: 2;
    position: relative;
    box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
    color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    font-size: 15px;
    line-height: 1.8;
    transform: translateY(30px) rotate(2deg);
    width: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.course_methodology .text_bubble h2::before {
    opacity: 0.2;
    left: -25px;
    transform: rotate(45deg);
    content: '';
    height: 50px;
    top: -25px;
    background: rgb(147,163,159);
    width: 50px;
    position: absolute;
}

.course_methodology::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgb(147,163,159,0.5), transparent, rgb(147,163,159,0.5));
    left: 0;
    z-index: 1;
    width: 100%;
    bottom: 50px;
    opacity: 0.2;
    height: 3px;
}

.reach_out {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.reach_out::before {
    opacity: 0.9;
    top: 0;
    width: 100%;
    z-index: 0;
    height: 100%;
    content: '';
    background: linear-gradient(135deg, rgb(113,129,125) 0%, rgb(147,163,159) 100%);
    left: 0;
    position: absolute;
}

.reach_out .request_block {
    overflow: hidden;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

.reach_out .inquiry_form h3::after {
    height: 4px;
    width: 80px;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(147,163,159);
}

.reach_out .inquiry_form div:hover::before {
    height: 120%;
    opacity: 1;
    transition: all 0.3s ease;
}

.reach_out .inquiry_form div svg path {
    fill: rgb(147,163,159);
}

.reach_out .inquiry_form div span a {
    color: #000000;
    transition: color 0.3s ease;
    text-decoration: none;
}

.reach_out form {
    display: flex;
    flex-direction: column;
}

.reach_out form input[type="text"]:focus,
.reach_out form input[type="email"]:focus {
    outline: none;
    border-bottom-color: rgb(113,129,125);
}

.reach_out .query_inquiry input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.reach_out .query_inquiry label {
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.5;
}

.reach_out .query_inquiry label a {
    text-decoration: none;
    color: rgb(113,129,125);
}

.reach_out form .inquiry_widget {
    z-index: 1;
    text-transform: uppercase;
    align-self: flex-start;
    background: rgb(113,129,125);
    padding: 15px 35px;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    font-size: 15px;
    color: #ffffff;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: none;
    font-weight: 600;
}


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media (max-width: 767px) {header .container {
    padding: 1.2rem 1rem;
}header .top_train {
    width: 100%;
    flex-direction: column;
}header .nav_learning {
    width: 100%;
    margin: 3px 0;
    transform: none !important;
}header .nav_learning a {
    border-radius: 10px;
    text-align: center;
    border-bottom: 3px solid transparent;
    border-left: none;
}header .nav_learning a:hover {
    border-bottom-color: rgb(147,163,159);
    border-left-color: transparent;
    transform: translateY(-3px);
}header .nav_learning a::before {
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    top: auto;
    transform: scaleX(0);
    height: 5px;
}header .nav_learning a:hover::before {
    transform: scaleX(1);
}
}



@media (hover: none) {.teaching_experience .success_testimonials {
    transform: none !important;
}.teaching_experience .success_testimonials > div:first-child,
    .teaching_experience .success_testimonials > div:nth-child(3) {
    transform: none !important;
}
}



@media (prefers-reduced-motion) {.teaching_experience .success_testimonials,
    .teaching_experience .success_testimonials > div,
    .teaching_experience .name::after,
    .teaching_experience .img_list {
    transition: none !important;
    transform: none !important;
}}



@media (max-width: 480px) {.plan_shelf {
    padding: 50px 0;
}.plan_shelf h2 {
    font-size: calc(29px * 0.7);
}.plan_shelf .training_fees {
    font-size: calc(15px * 0.9);
}.plan_shelf .study_packages {
    padding: 20px 15px;
}.plan_shelf .study_packages p {
    max-height: 200px;
    line-height: 1.5;
    font-size: calc(15px * 0.9);
}}



@media (min-width: 768px) {.who_we_are {
    padding: 150px 0 130px;
}.who_we_are .text_bubble {
    padding: 60px 70px;
}.who_we_are .text_bubble div > div {
    column-count: 2;
}.who_we_are h2 {
    margin-bottom: 80px;
    transform: translateX(-20px);
}
}



@media (max-width: 767px) {.who_we_are {
    padding: 80px 0 60px;
}.who_we_are .text_bubble {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    padding: 30px 25px;
}.who_we_are h2 {
    font-size: calc(28px * 0.9);
    margin-bottom: 40px;
}.who_we_are .text_bubble p {
    padding-right: 30px;
    font-size: calc(21px * 0.9);
}.who_we_are .text_bubble p::after {
    width: 25px;
}
}



@media screen and (max-width: 992px) {.thanks_box {
    padding: 80px 0 60px;
}.thanks_box h2 {
    font-size: calc(37px - 4px);
}.thanks_box .path_edu {
    padding: 40px 30px;
}
}



@media (hover: none) {.thanks_box .path_edu:hover {
    transform: translateZ(10px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 15px 50px -20px rgba(0, 0, 0, 0.15);
}.thanks_box .path_edu:hover::after {
    opacity: 0;
}}


@media only screen and (max-width: 800px) {.secure_safehold {
    padding: 20px;
}.secure_safehold h1 {
    font-size: 19px;
}.secure_safehold h2 {
    font-size: 18px;
}.secure_safehold li {
    font-size: 14px;
}}



@media (max-width: 480px) {.give_it_a_try {
    padding: 50px 0;
}.give_it_a_try .container p {
    padding: 25px 30px;
    margin-bottom: 30px;
    font-size: calc(18px * 1.2);
    border-radius: 30px;
}.give_it_a_try .inquiry_widget {
    font-size: calc(15px * 0.9);
    padding: 12px 30px;
}}



@media (max-width: 767px) {.course_highlights {
    padding: 80px 0;
}.course_highlights .container {
    padding: 0 15px;
}.course_highlights .img_list {
    height: 250px;
}.course_highlights .text_bubble {
    padding: 25px 20px;
}.course_highlights h3 {
    font-size: calc(21px - 0.1rem);
    margin-bottom: 15px;
}.course_highlights p.description {
    font-size: calc(14px - 0.1rem);
    max-height: 250px;
}}



@media (max-width: 576px) {footer .exam_prep {
    padding: 40px 0 20px;
}footer .fellow_prog {
    gap: 40px;
}footer .top_train h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
}}



@media (max-width: 768px) {.customer_opinions {
    padding: 70px 0;
}.customer_opinions::before {
    transform: perspective(500px) rotateX(20deg) scale(2);
}.customer_opinions h4 {
    margin-bottom: 50px;
    font-size: calc(36px * 0.8);
}.customer_opinions .learn_ratings {
    gap: 40px;
    grid-template-columns: 1fr;
}.customer_opinions .success_testimonials {
    margin: 0 auto;
    padding: 20px;
    transform: rotateX(5deg) rotateY(-5deg);
    max-width: 350px;
}.customer_opinions .success_testimonials:hover {
    transform: rotateX(0) rotateY(0) translateZ(20px);
}.customer_opinions .img_list {
    height: 70px;
    width: 70px;
}.customer_opinions .success_testimonials span {
    font-size: calc(19px * 0.9);
}.customer_opinions .success_testimonials p {
    font-size: calc(16px * 0.95);
}}



@media screen and (max-width: 992px) {.reach_out .request_block {
    grid-template-columns: 1fr;
}.reach_out .inquiry_form::after {
    display: none;
}.reach_out .inquiry_form,
    .reach_out .request_card {
    padding: 40px 30px;
}
}



@keyframes slidePattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px 500px;
    }
}



@keyframes float {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(45deg) translate(20px, -20px);
    }
}



@keyframes expandLine {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}



@keyframes popIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}



@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}



@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    }
    50% {
        border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
    }
    75% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

