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

html,body {
    min-height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
    auto
contain
touch-action: none;
    scroll-behavior: auto;
    height: 100%;
}

header .top_base::before {
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgb(113,129,125,0.5) 10px,
        rgb(113,129,125,0.5) 11px
    );
    left: 0;
    position: absolute;
    opacity: 0.1;
    width: 100%;
    content: "";
    animation: slidePattern 25s linear infinite;
    top: 0;
}

header .head_teach::before {
    border: 2px dashed rgb(147,163,159,0.5);
    opacity: 0;
    content: "";
    bottom: -5px;
    border-radius: 10px;
    right: -5px;
    top: -5px;
    transition: all 0.3s ease;
    position: absolute;
    left: -5px;
}

header .top_train {
    flex-wrap: wrap;
    padding: 0;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    display: flex;
    position: relative;
    align-items: center;
}

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

header .nav_learning a {
    display: block;
    color: #000000;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 0 10px 0 10px;
    overflow: hidden;
    padding: 8px 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    border-left: 3px solid transparent;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

header .nav_learning a:hover::before {
    transform: scaleY(1);
}

.teaching_experience {
    padding: 80px 0;
    position: relative;
    perspective: 1000px;
    overflow: hidden;
    background-color: rgb(181,196,194);
}

.teaching_experience .success_testimonials:hover {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.07),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    transform: perspective(1000px) rotateY(0deg) translateZ(10px);
}

.teaching_experience .success_testimonials:hover > div:first-child {
    transform: translateZ(40px) translateY(-5px);
}

.teaching_experience .success_testimonials .img_list {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
    width: 100%;
}

.teaching_experience .success_testimonials > div:nth-child(2)::before {
    position: absolute;
    top: 0;
    width: 3px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    content: "";
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgb(147,163,159) 0%,
        rgb(113,129,125) 100%
    );
    transform-origin: top;
    transform: scaleY(0);
    left: 0;
}

.teaching_experience .success_testimonials:hover > div:nth-child(3) {
    transform: translateZ(15px);
}

.teaching_experience .career_explore {
    border-radius: 10px;
    margin: 0;
    box-shadow: 
        inset 0 0 0 1px rgba(rgb(147,163,159,0.5), 0.1),
        0 10px 30px rgba(0, 0, 0, 0.03);
    line-height: 1.8;
    font-size: 18px;
    padding: 20px 10px 20px 25px;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.plan_shelf .discount_price {
    perspective: 1000px;
}

.plan_shelf .value_pricing {
    margin: 0;
    gap: 30px;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
    display: grid;
}

.plan_shelf .value_pricing li {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.plan_shelf .study_packages {
    transform: translateZ(10px);
    padding: 35px 30px;
}

.plan_shelf .study_packages h4 {
    transform: translateZ(5px);
    margin: 0 0 20px;
    display: inline-block;
    color: #ffffff;
    position: relative;
    font-weight: 700;
    font-size: calc(23px * 1.1);
}

.plan_shelf .learn_pricing {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: right;
    display: block;
    transform: translateZ(15px);
    font-size: calc(23px * 1.2);
    margin-top: 20px;
}

.plan_shelf .value_pricing li:hover .cost_card {
    transform: translateZ(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3),
                0 10px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.welcome_section .img_list::after {
    content: "";
    height: 100%;
    left: 0;
    background: linear-gradient(
    145deg,
    rgb(113,129,125,0.5),
    rgba(20, 30, 48, 0.85) 70%
  );
    backdrop-filter: blur(3px);
    width: 100%;
    top: 0;
    position: absolute;
}

.welcome_section h1::after {
    width: 10rem;
    position: absolute;
    transform: scaleX(0.8);
    height: 0.35rem;
    bottom: -0.75rem;
    content: "";
    background: linear-gradient(90deg, rgb(147,163,159), transparent);
    animation: line-grow 2s ease-out forwards;
    border-radius: 10px;
    left: 0;
    transform-origin: left;
}

.welcome_section .start_learn {
    display: flex;
    justify-content: center;
    margin: 1rem 0 2.5rem;
    position: relative;
}

.welcome_section svg {
    height: 120px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    width: 120px;
    transform: scale(1);
}

.welcome_section svg:hover path {
    fill: rgb(147,163,159);
}

.welcome_section h6 {
    margin-top: 1rem;
    position: relative;
    align-self: flex-start;
}

.welcome_section .inquiry_widget:hover {
    transform: translateY(-2px);
    box-shadow: 
    0 12px 30px rgba(94, 170, 168, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

.welcome_section .inquiry_widget:hover::before {
    opacity: 1;
}

.welcome_section .inquiry_widget:active {
    transform: translateY(1px);
    box-shadow: 
    0 5px 15px rgba(94, 170, 168, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.who_we_are::after {
    width: 300px;
    filter: blur(30px);
    animation: float 15s infinite ease-in-out;
    opacity: 0.1;
    height: 300px;
    background: rgb(147,163,159);
    z-index: -1;
    right: -50px;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    bottom: -50px;
}

.who_we_are h2:hover::after {
    transform: scaleX(1.5);
}

.who_we_are .text_bubble {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 50px;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-left: auto;
    transform: translateY(0);
    position: relative;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.92);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.who_we_are .text_bubble div > div::first-letter {
    font-weight: 700;
    float: left;
    line-height: 1;
    font-size: 1.8em;
    padding: 5px 10px 0 0;
    color: rgb(147,163,159);
}

.thanks_box::before {
    height: 100%;
    content: "";
    left: 0;
    width: 100%;
    z-index: 1;
    top: 0;
    background-size: 60px 60px;
    opacity: 0.1;
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(113,129,125,0.5) 49.5%, rgb(113,129,125,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(113,129,125,0.5) 49.5%, rgb(113,129,125,0.5) 50.5%, transparent 50.5%);
    pointer-events: none;
}

.thanks_box .path_edu {
    position: relative;
    padding: 50px 40px;
    transform: translateZ(10px) perspective(1000px) rotateX(2deg);
    animation: fadeScale 0.8s forwards 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #ffffff;
    box-shadow: 0 15px 50px -20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-radius: 10px;
    opacity: 0;
}

.thanks_box ul {
    padding: 0;
    position: relative;
    list-style: none;
    z-index: 2;
    margin: 0;
}

.thanks_box li::before {
    height: 10px;
    border-radius: 50%;
    animation: popIn 0.5s forwards 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    content: "";
    left: 0;
    width: 10px;
    background: linear-gradient(135deg, rgb(147,163,159) 0%, rgb(113,129,125) 100%);
    top: 12px;
    position: absolute;
    transform: scale(0);
}

.secure_safehold h2 {
    font-weight: 700;
    color: #000000;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 19px;
}

.secure_safehold li {
    color: #000000;
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.give_it_a_try::after {
    z-index: 1;
    transform: rotate(15deg);
    background: rgb(113,129,125,0.5);
    height: 150%;
    width: 60%;
    position: absolute;
    opacity: 0.1;
    bottom: -30%;
    left: -10%;
    content: '';
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

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

.give_it_a_try .inquiry_widget:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course_highlights {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(181,196,194) 0%, rgba(240, 242, 245, 0.9) 100%);
    overflow: hidden;
}

.course_highlights::before {
    background: linear-gradient(45deg, rgb(147,163,159,0.5) 0%, rgb(113,129,125,0.5) 100%);
    opacity: 0.3;
    border-radius: 50%;
    animation: float 15s infinite alternate ease-in-out;
    filter: blur(40px);
    top: -100px;
    position: absolute;
    transform: translateZ(0);
    width: 300px;
    right: -100px;
    content: "";
    height: 300px;
}

.course_highlights .img_list {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-2deg) translateZ(0);
    height: 350px;
    overflow: hidden;
    position: relative;
}

.course_highlights .text_bubble::before {
    content: "";
    left: 0;
    background: linear-gradient(to bottom, rgb(147,163,159), rgb(113,129,125));
    position: absolute;
    top: 0;
    transition: transform 0.4s ease;
    transform: scaleY(0.7);
    transform-origin: center;
    width: 4px;
    height: 100%;
}

.course_highlights .text_bubble:hover h3 {
    transform: translateX(10px);
}

.course_highlights .text_bubble:hover h3::after {
    left: -5px;
    opacity: 1;
}

.course_highlights .description {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
}

.exam_prep::before {
    width: 100%;
    content: "";
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(147,163,159), rgb(113,129,125));
    position: absolute;
}

footer .info_item svg {
    height: 18px;
    top: 3px;
    width: 18px;
    position: relative;
    margin-right: 10px;
    fill: rgb(147,163,159);
}

footer .nav_section {
    margin-bottom: 15px;
}

footer .referral_prog {
    max-width: 350px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

footer .nav_expert {
    margin-bottom: 30px;
}

footer .nav_expert a:hover {
    color: rgb(147,163,159);
    transform: translateX(5px);
}

footer .subscribe_holder {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

footer .input_holder {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

footer .input_holder input[type="email"]:focus {
    border-color: rgb(147,163,159);
    outline: none;
}

footer .online_training:hover {
    background-color: rgb(113,129,125);
}

footer .law_res {
    margin-top: 50px;
}

.customer_opinions {
    padding: 120px 0;
    background: linear-gradient(180deg, rgb(181,196,194) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.customer_opinions h4 {
    text-align: center;
    font-size: 36px;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 80px;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
}

.customer_opinions .learn_ratings {
    perspective: 1000px;
    display: grid;
    transform-style: preserve-3d;
    gap: 50px 30px;
    grid-template-columns: repeat(3, 1fr);
}

.customer_opinions .success_testimonials:hover::before {
    opacity: 0.7;
}

.customer_opinions .success_testimonials::after {
    border: 1px solid #ffffff;
    transition: all 0.5s ease;
    bottom: 5px;
    border-radius: calc(14px - 5px);
    top: 5px;
    transform: scale(0.9) translateZ(10px);
    z-index: -1;
    right: 5px;
    content: "";
    left: 5px;
    opacity: 0;
    position: absolute;
}

.customer_opinions .success_testimonials:hover .img_list {
    border-color: rgb(147,163,159,0.5);
    border-radius: 50%;
    transform: translateZ(40px);
}

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

.customer_opinions .success_testimonials p::before {
    background: rgb(147,163,159,0.5);
    top: 0;
    height: 2px;
    position: absolute;
    width: 30px;
    left: 50%;
    content: "";
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

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

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

.course_methodology .text_bubble h2 {
    color: #ffffff;
    background: rgb(147,163,159,0.5);
    order: 1;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    font-weight: 700;
    box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.1);
    width: 40%;
    font-size: 29px;
    transform: translateY(-30px) rotate(-2deg);
    padding: 35px 45px;
    margin-bottom: 0;
    z-index: 4;
}

.course_methodology .text_bubble::after {
    opacity: 0.2;
    bottom: -20px;
    position: absolute;
    left: 10%;
    background: linear-gradient(90deg, transparent, rgb(147,163,159), transparent);
    z-index: 2;
    content: '';
    height: 3px;
    width: 80%;
}

.course_methodology .text_bubble p::after {
    background: rgb(113,129,125);
    z-index: 5;
    opacity: 0.2;
    position: absolute;
    height: 30px;
    content: '';
    top: -15px;
    right: 40px;
    width: 30px;
    animation: pulse-fade 4s infinite ease-in-out;
    border-radius: 50%;
}

.course_methodology .path_edu::after {
    width: 80px;
    height: 80px;
    animation: float-rotate 15s infinite ease-in-out alternate;
    border-radius: 20px;
    top: 20%;
    content: '';
    background: rgb(113,129,125);
    position: absolute;
    filter: blur(20px);
    opacity: 0.05;
    transform: rotate(15deg);
    left: -40px;
}

.reach_out .inquiry_form {
    position: relative;
    background: rgb(181,196,194);
    padding: 50px;
}

.reach_out .inquiry_form h3 {
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    font-size: 30px;
    margin-bottom: 40px;
    color: #000000;
}

.reach_out .inquiry_form div::before {
    width: 5px;
    left: 0;
    border-radius: 10px;
    background: rgb(147,163,159);
    position: absolute;
    transform: translateY(-50%);
    opacity: 0.5;
    content: '';
    height: 100%;
    top: 50%;
}

.reach_out .inquiry_form div span a:hover {
    color: rgb(147,163,159);
}

.reach_out .request_card h3 {
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 19px;
}

.reach_out form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.reach_out .query_inquiry {
    margin: 10px 0 25px;
    align-items: flex-start;
    display: flex;
}

.reach_out .query_inquiry label::before {
    height: 18px;
    left: 0;
    background-color: transparent;
    width: 18px;
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    top: 2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reach_out .query_inquiry label a:hover {
    text-decoration: underline;
}

.reach_out form .inquiry_widget::before {
    position: absolute;
    top: 0;
    background: rgb(147,163,159);
    left: 0;
    z-index: -1;
    content: '';
    width: 0;
    transition: width 0.3s ease;
    height: 100%;
}

.plan_shelf .study_packages p::-webkit-scrollbar {
    width: 4px;
}

.plan_shelf .study_packages p::-webkit-scrollbar-thumb {
    background: rgb(147,163,159,0.5);
    border-radius: 10px;
}

.course_highlights p.description::-webkit-scrollbar {
    width: 5px;
}

.course_highlights p.description::-webkit-scrollbar-track {
    background: rgb(181,196,194);
    border-radius: 10px;
}

.course_highlights p.description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(147,163,159,0.5);
}



@media screen and (min-width: 768px) {.teaching_experience {
    padding: 100px 0;
}.teaching_experience .success_testimonials {
    grid-template-rows: auto 1fr;
    padding: 50px;
    grid-template-columns: 300px 1fr;
}.teaching_experience .success_testimonials > div:first-child {
    grid-row: 1 / span 2;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    height: 100%;
}.teaching_experience .success_testimonials > div:nth-child(2) {
    grid-row: 1;
    align-self: start;
    padding-left: 40px;
    grid-column: 2;
}.teaching_experience .success_testimonials > div:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
    padding-left: 40px;
}.teaching_experience .career_explore {
    padding: 25px 20px 25px 35px;
    font-size: calc(18px + 1px);
}
}



@media (max-width: 767px) {.plan_shelf {
    padding: 60px 0;
}.plan_shelf h2 {
    font-size: calc(29px * 0.8);
    margin-bottom: 15px;
}.plan_shelf .training_fees {
    font-size: calc(15px * 0.95);
    margin-bottom: 40px;
}.plan_shelf .value_pricing {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
}.plan_shelf .study_packages {
    padding: 25px 20px;
}.plan_shelf .study_packages h4 {
    font-size: 23px;
}.plan_shelf .learn_pricing {
    font-size: calc(23px * 1.1);
}
}



@media (max-width: 576px) {.welcome_section .path_edu {
    padding: 2.5rem 1.25rem;
}.welcome_section h1 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}.welcome_section h1::after {
    width: 7rem;
    height: 0.25rem;
}.welcome_section .text_bubble {
    padding: 1.5rem;
}.welcome_section .text_bubble p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}.welcome_section svg {
    height: 80px;
    width: 80px;
}.welcome_section .inquiry_widget {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
}}



@media (hover: hover) {.who_we_are .text_bubble:hover p {
    color: rgb(113,129,125);
}.who_we_are .text_bubble:hover p::after {
    width: 60px;
    background: rgb(113,129,125);
}
}




@media screen and (max-width: 1200px) {.thanks_box {
    padding: 100px 0 80px;
}.thanks_box h2 {
    font-size: calc(37px - 2px);
}
}



@media screen and (max-width: 768px) {.thanks_box {
    padding: 60px 0 50px;
}.thanks_box h2 {
    font-size: calc(37px - 6px);
    margin-bottom: 30px;
}.thanks_box .path_edu {
    transform: translateZ(0) perspective(1000px) rotateX(0);
    padding: 30px 25px;
}.thanks_box h2::after {
    height: 3px;
    width: 60px;
}.thanks_box li {
    padding-left: 25px;
}.thanks_box li::before {
    height: 8px;
    width: 8px;
}
}



@media (max-width: 767px) {.give_it_a_try {
    padding: 70px 0;
}.give_it_a_try .container p {
    font-size: 21px;
    padding: 30px 40px;
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    margin-bottom: 40px;
}.give_it_a_try .inquiry_widget {
    padding: 15px 35px;
}.give_it_a_try .container p::before {
    animation: none;
}
}



@media (min-width: 992px) {.course_highlights {
    padding: 150px 0;
}.course_highlights .skill_route {
    gap: 70px;
}.course_highlights .img_list {
    height: 550px;
}.course_highlights .text_bubble {
    padding: 40px 50px;
}.course_highlights p.description {
    max-height: 350px;
}
}



@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
}footer .online_training {
    white-space: nowrap;
}
}



@media (max-width: 1024px) {.customer_opinions {
    padding: 90px 0;
}.customer_opinions .learn_ratings {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}.customer_opinions h4 {
    font-size: calc(36px * 0.9);
    margin-bottom: 60px;
}.customer_opinions .success_testimonials {
    padding: 25px;
}.customer_opinions .img_list {
    height: 80px;
    width: 80px;
}
}



@media screen and (max-width: 992px) {.course_methodology {
    padding: 140px 0 120px;
}.course_methodology .text_bubble h2 {
    padding: 30px 35px;
    transform: translateY(-20px) rotate(-1deg);
}.course_methodology .text_bubble p {
    padding: 30px 35px;
    transform: translateY(20px) rotate(1deg);
}.course_methodology .text_bubble::before {
    top: -30px;
    width: 150px;
    height: 150px;
}.course_methodology .path_edu::before {
    height: 120px;
    width: 120px;
    bottom: -60px;
}
}



@media screen and (max-width: 480px) {.course_methodology {
    padding: 100px 0 80px;
}.course_methodology .text_bubble h2 {
    padding: 25px;
    font-size: calc(29px * 0.8);
    width: 100%;
}.course_methodology .text_bubble p {
    padding: 25px;
    font-size: calc(15px * 0.9);
    width: 100%;
}}



@keyframes subtle-zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.12);
  }
}



@keyframes line-grow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(0.8);
  }
}




@keyframes cursorRadial {
    0% { transform: scale(0); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0; }
}



@keyframes fadeScale {
    0% { opacity: 0; transform: translateZ(10px) perspective(1000px) rotateX(5deg) scale(0.95); }
    100% { opacity: 1; transform: translateZ(10px) perspective(1000px) rotateX(2deg) scale(1); }
}



@keyframes shine {
    0% {
        left: -100px;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}



@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



@keyframes float-rotate {
    0% {
        transform: rotate(-15deg) translateY(0);
    }
    100% {
        transform: rotate(15deg) translateY(-30px);
    }
}



@keyframes pulse-subtle {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.08;
        transform: scale(1.1);
    }
}

