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

.main_page {
    flex: 1 0 auto;
}

html {
    scrollbar-color: #ffffff rgb(255, 255, 255, 0.5);
    scrollbar-width: none;
}

html,body {
    font-family: Arial, sans-serif;
    min-height: 100%;
    scroll-behavior: smooth;
    color: #000000;
    height: 100%;
}

svg {
    height: 30px;
    width: 30px;
}

.equity_info {
    flex: 0 0 auto;
}


.statistical_report {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(235,233,237) 0%, rgb(171,164,176,0.5) 100%);
    overflow: hidden;
}

.statistical_report::after {
    position: absolute;
    left: -5%;
    bottom: -10%;
    z-index: 1;
    content: "";
    transform: rotate(15deg) skew(-15deg);
    background: linear-gradient(45deg, rgb(171,164,176,0.5) 0%, transparent 70%);
    height: 60%;
    width: 30%;
}

.statistical_report .extra_statistics {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    transform: perspective(1000px) rotateX(2deg) translateZ(0);
    backdrop-filter: blur(5px);
}

.statistical_report .extra_statistics:hover {
    transform: perspective(1000px) rotateX(2deg) translateZ(10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgb(171,164,176,0.5);
}

.statistical_report .extra_statistics:hover::before {
    opacity: 1;
}

.statistical_report .extra_statistics div {
    transform: translateY(0);
    height: 100%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 2rem 1.5rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.statistical_report .extra_statistics:hover p {
    transform: scale(1.1);
}

.statistical_report .extra_statistics p::after {
    bottom: -0.5rem;
    content: "";
    transform: translateX(-50%);
    transition: width 0.3s ease;
    width: 0;
    left: 50%;
    background: rgb(207,202,210);
    position: absolute;
    height: 3px;
}

.statistical_report .extra_statistics:hover p::after {
    width: 50%;
}

.statistical_report .extra_statistics:hover span {
    letter-spacing: 0.04em;
}

.statistical_report h4 {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    color: #000000;
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    margin: 1rem 0 0;
}

.statistical_report:hover h4 {
    transform: translateY(5px);
}

.teaching_experience::before {
    background: rgb(207,202,210,0.5);
    position: absolute;
    width: 300px;
    right: -100px;
    content: "";
    border-radius: 50%;
    filter: blur(120px);
    top: -100px;
    height: 300px;
    z-index: 0;
}

.teaching_experience .review_lounge {
    background: #ffffff;
    gap: 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08), 
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    border-radius: 14px;
    position: relative;
    overflow: visible;
    grid-template-columns: 1fr 1.2fr;
    z-index: 2;
}

.teaching_experience .img_rounded::before {
    width: 100%;
    z-index: -1;
    background: rgb(207,202,210,0.5);
    top: 30px;
    border-radius: 14px;
    left: 30px;
    height: 100%;
    content: "";
    position: absolute;
}

.teaching_experience .work_details > div:nth-child(2) {
    margin-bottom: 2rem;
    display: inline-block;
    font-weight: 400;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 24px;
    color: rgb(207,202,210);
    position: relative;
}

.teaching_experience .past_career::before {
    content: "";
    left: -2rem;
    font-family: serif;
    color: rgb(171,164,176,0.5);
    z-index: -1;
    top: -2.5rem;
    font-size: 5rem;
    position: absolute;
}



.teaching_experience .review_lounge:hover .name {
    text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(207,202,210), rgb(171,164,176));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

.appContainer::after {
    width: 30%;
    position: absolute;
    bottom: -5%;
    transform: rotate(10deg) skewY(-5deg);
    z-index: 1;
    opacity: 0.4;
    content: "";
    height: 60%;
    left: -2%;
    background: linear-gradient(220deg, rgb(207,202,210,0.5) 0%, transparent 80%);
}

.appContainer h2 {
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 1;
    color: #000000;
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
    max-width: 90%;
}

.appContainer .learning_lab {
    background: #ffffff;
    position: relative;
    transform: perspective(1000px) rotateY(0deg);
    animation: fadeIn 1s ease-out 0.3s forwards;
    padding: 40px;
    opacity: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid rgb(207,202,210);
    z-index: 3;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.appContainer .learning_lab:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 10px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(2deg) translateY(-5px);
}

.appContainer span {
    transform: translateY(10px);
    line-height: 1.8;
    opacity: 0;
    font-family: Arial, sans-serif;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-size: calc(15px * 1.05);
    display: block;
    letter-spacing: 0.02em;
    color: #000000;
}


.visitor_privacy {
    display: flex;
    padding: 20px 5%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie_notice_overlay h5 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 21px;
}

.cookie_notice_overlay p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.user_tracker svg {
    height: 80px;
    fill: rgb(207,202,210);
    width: 80px;
    transition: transform 0.3s ease-in-out;
}

.cookie_edu {
    background: linear-gradient(90deg, rgb(207,202,210), rgb(171,164,176));
    min-width: 140px;
    white-space: nowrap;
    box-shadow: 0 0 15px rgb(207,202,210);
    color: #000000;
    line-height: 40px;
    margin-left: 10px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 19px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    text-align: center;
}


.contact_form_box {
    position: relative;
    padding: 100px 0;
}

.contact_form_box .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

.contact_form_box .inquiry_query {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr;
}

.contact_form_box .help_grid h3 {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    grid-column: 1 / -1;
}

.contact_form_box .help_grid div {
    display: flex;
    text-align: center;
    transition: all 0.3s ease;
    flex-direction: column;
    padding: 30px 20px;
    background: rgb(235,233,237);
    border-radius: 10px;
    align-items: center;
}

.contact_form_box .help_grid svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.contact_form_box .help_grid svg path {
    fill: rgb(207,202,210);
}

.contact_form_box .help_grid a {
    transition: color 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    color: rgb(207,202,210);
}

.contact_form_box form h3 {
    font-size: 38px;
    position: relative;
    text-align: center;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact_form_box form h3 {
    grid-column: 1 / -1;
}

.contact_form_box form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.contact_form_box form input[type="text"],
.contact_form_box form input[type="email"] {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 12px;
    color: #000000;
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
}

.contact_form_box .request_request {
    display: flex;
    grid-column: 1 / -1;
    align-items: flex-start;
    margin: 10px 0;
}

.contact_form_box .request_request input[type="checkbox"]:checked {
    border-color: rgb(207,202,210);
    background-color: rgb(207,202,210);
}

.contact_form_box .request_request input[type="checkbox"]:checked::before {
    transform: rotate(45deg);
    top: 4px;
    height: 10px;
    position: absolute;
    width: 6px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    left: 7px;
    content: "";
}

.contact_form_box .request_request a:hover {
    color: rgb(171,164,176);
}

.contact_form_box .message_feedback:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgb(171,164,176);
    transform: translateY(-3px);
}

.course_structure {
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(rgb(207,202,210,0.5), 0.05), rgba(rgb(171,164,176,0.5), 0.1));
    position: relative;
}

.course_structure::after {
    transform: rotate(-15deg) skew(15deg);
    top: -10%;
    background: linear-gradient(225deg, rgba(rgb(207,202,210,0.5), 0.08), transparent);
    width: 45%;
    z-index: 0;
    content: "";
    height: 45%;
    position: absolute;
    right: -5%;
}

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

.course_structure h2::after {
    left: 0;
    height: 3px;
    width: 80px;
    bottom: -15px;
    background: linear-gradient(90deg, rgb(207,202,210), rgb(171,164,176));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: "";
    transform-origin: left center;
    position: absolute;
    transform: scaleX(1);
}

.course_structure .img_rounded::before {
    top: 0;
    width: 100%;
    z-index: 1;
    content: "";
    height: 100%;
    left: 0;
    background: linear-gradient(
        135deg,
        rgba(rgb(207,202,210,0.5), 0.1),
        rgba(rgb(171,164,176,0.5), 0.15)
    );
    position: absolute;
    mix-blend-mode: overlay;
}

.course_structure .img_rounded:hover {
    box-shadow: 
        -20px 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.15),
        10px -10px 30px rgba(rgb(255, 255, 255, 0.5), 0.05);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.course_structure .img_rounded:hover::after {
    opacity: 1;
}

.course_structure .word_box {
    padding: 20px 0 0;
    position: relative;
}

.course_structure .description {
    max-height: 350px;
    transform: translateY(0);
    margin-bottom: 25px;
    line-height: 1.75;
    font-size: 17px;
    color: #000000;
    transition: transform 0.5s ease, opacity 0.5s ease;
    padding-right: 15px;
    position: relative;
    overflow-y: auto;
    opacity: 1;
}

.course_structure .description:last-of-type::before {
    top: 0;
    border-radius: 50%;
    content: "";
    left: -5px;
    height: 10px;
    width: 10px;
    background: rgb(207,202,210);
    position: absolute;
}

.course_benefits::before {
    right: -5%;
    opacity: 0.2;
    width: 25rem;
    animation: float 18s infinite ease-in-out;
    top: -10%;
    content: "";
    height: 25rem;
    z-index: 0;
    filter: blur(30px);
    border-radius: 40% 60% 70% 30%;
    position: absolute;
    background: linear-gradient(220deg, rgb(207,202,210,0.5) 10%, transparent 70%);
    transform: rotate(-15deg);
}

.course_benefits h5 {
    margin-bottom: 3.5rem;
    position: relative;
    font-weight: 600;
    font-size: 19px;
    color: #000000;
    text-align: center;
    z-index: 2;
    transform: perspective(1000px) translateZ(0);
}

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

.course_benefits .learning_lab {
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 
                0 1px 5px rgba(0, 0, 0, 0.03);
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    gap: 2.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    align-items: center;
    display: flex;
}

.course_benefits .learning_lab:hover .img_rounded {
    transform: perspective(1000px) rotateY(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.course_benefits li {
    transition: transform 0.3s ease, background 0.3s ease, border-left 0.3s ease;
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.03), transparent);
    padding: 0.8rem 1rem 0.8rem 3.2rem;
    transform: translateX(0);
    position: relative;
    border-left: 2px solid rgb(207,202,210,0.5);
}

.course_benefits li:nth-child(odd):hover {
    background: linear-gradient(to right, rgba(var(--secondary-color-rgb), 0.04), transparent);
    border-left: 2px solid rgb(171,164,176);
}

.course_benefits li svg {
    left: -2.3rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
    top: 0;
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
}

.course_benefits li:nth-child(odd) svg path {
    fill: rgb(171,164,176);
}

.course_benefits li:nth-child(2) {
    animation: fadeInUp 0.6s 0.2s both;
}

.course_benefits li:nth-child(4) {
    animation: fadeInUp 0.6s 0.4s both;
}

header::before {
    content: '';
    height: 100%;
    background: linear-gradient(to right, 
        rgb(207,202,210,0.5) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgb(171,164,176,0.5) 100%);
    left: 0;
    width: 100%;
    top: 0;
    opacity: 0.4;
    z-index: 0;
    position: absolute;
}

header .nav_pro {
    grid-area: logo;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    position: relative;
    display: flex;
}

header .nav_pro svg {
    height: auto;
    width: 160px;
    transition: all 0.3s ease;
}

header .nav_pro:hover svg {
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
    transform: translateY(-3px);
}

header .top_start {
    color: #000000;
    position: relative;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    font-size: 14px;
    font-family: Arial, sans-serif;
    background: #ffffff;
    border-radius: 10px;
    font-weight: 400;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
}

.privacy_hideout {
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 40px;
    background-color: rgb(235,233,237);
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.privacy_hideout h2 {
    margin-top: 30px;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgb(171,164,176);
}

.privacy_hideout ul {
    padding: 0;
    list-style: none;
    margin: 20px 0;
}

.privacy_hideout ul li {
    padding: 15px;
    border-left: 4px solid rgb(207,202,210);
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: #ffffff;
}

.privacy_hideout ol li:before {
    counter-increment: li;
    justify-content: center;
    transform: translateY(-50%);
    width: 25px;
    border-radius: 50%;
    align-items: center;
    background-color: rgb(207,202,210);
    position: absolute;
    height: 25px;
    top: 50%;
    display: flex;
    content: counter(li);
    left: 10px;
    color: #ffffff;
}

.primary_page {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(235,233,237) 0%, rgba(94,170,168,0.1) 100%);
    position: relative;
    padding: 4rem 2rem;
}



.primary_page h1 {
    z-index: 2;
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 1;
    color: rgb(171,164,176);
    font-size: 19px;
    text-align: center;
    letter-spacing: 1px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    transform: translateY(0);
}

.primary_page .word_box {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    transform: translateX(0);
    z-index: 3;
    padding: 2.5rem;
    opacity: 1;
    position: relative;
    backdrop-filter: blur(10px);
    flex: 1;
    border-left: 4px solid rgb(171,164,176);
    box-shadow: 0 10px 30px rgba(94,170,168,0.15);
}

.primary_page li:last-child {
    margin-bottom: 0;
}

.primary_page svg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 120px;
    transform: translateY(0) rotate(0);
    margin-bottom: 1.5rem;
    height: 120px;
    filter: drop-shadow(0 4px 6px rgba(94,170,168,0.2));
}

.primary_page .learning_lead p {
    line-height: 1.6;
    color: #000000;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: calc(13px * 1.1);
    max-width: 90%;
}

.primary_page .message_feedback::before {
    position: absolute;
    content: "";
    transition: left 0.7s ease;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    left: -100%;
    width: 100%;
}

.primary_page .message_feedback:hover {
    box-shadow: 0 8px 20px rgba(94,170,168,0.3);
    transform: translateY(-3px);
}

.primary_page .message_feedback:hover::before {
    left: 100%;
}

.primary_page .img_rounded::before {
    left: 0;
    content: "";
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 70%, rgba(94,170,168,0.4));
    right: 0;
    position: absolute;
    top: 0;
}

.primary_page .img_rounded:hover {
    transform: scale(1.02);
}

.primary_page .img_rounded:hover::after {
    opacity: 1;
}

footer {
    position: relative;
    width: 100%;
}

footer .equity_info {
    position: relative;
    color: #ffffff;
    padding: 100px 0 30px;
    font-family: Arial, sans-serif;
    background-color: #2c3e50;
}

footer .footer_benefit {
    z-index: 1;
    position: relative;
}

footer .team_contact {
    margin: -70px auto 60px;
    display: grid;
    gap: 15px;
    position: relative;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

footer .info_item {
    padding: 0 20px;
    display: flex;
    height: 100px;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

footer .info_item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

footer .info_item svg {
    margin-right: 15px;
    height: 22px;
    z-index: 1;
    fill: rgb(207,202,210);
    width: 22px;
    position: relative;
    flex-shrink: 0;
}

footer .info_item a:hover {
    color: rgb(207,202,210);
}

footer .main_core, footer .subscribe_holder {
    position: relative;
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.05);
}

footer .main_core svg {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    height: 45px;
    width: auto;
}

footer .site_header h5 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #ffffff;
    grid-column: 1 / -1;
    position: relative;
    font-weight: 600;
}

footer .top_master {
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding: 20px;
    border-radius: 22px;
}

footer .top_master a {
    display: block;
    padding: 8px 0;
    position: relative;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer .top_master a:hover {
    padding-left: 5px;
    color: #ffffff;
}

footer .subscribe_holder h5 {
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

footer .subscribe_holder p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

footer .input_holder input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

footer .join_list:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(171,164,176);
    transform: translateY(-3px);
}

footer .ssl_info {
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.user_testimonials {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(235,233,237) 0%, rgb(171,164,176,0.5) 100%);
}

.user_testimonials::before {
    top: 0;
    content: "";
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgb(207,202,210,0.5) 5%, transparent 60%);
    opacity: 0.4;
    left: 0;
    z-index: 0;
    width: 100%;
    position: absolute;
}

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

.user_testimonials h2::after {
    height: 0.3rem;
    bottom: -0.8rem;
    position: absolute;
    content: "";
    transform: translateX(-50%);
    width: 5rem;
    background: linear-gradient(90deg, rgb(207,202,210) 0%, rgb(171,164,176) 100%);
    left: 50%;
}

.user_testimonials .review_lounge {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    z-index: 1;
    transform-style: preserve-3d;
    position: relative;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.user_testimonials .review_lounge:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

.user_testimonials .review_lounge img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 60px;
    object-fit: cover;
    border: 3px solid #ffffff;
    transition: transform 0.3s ease;
    margin-right: 1rem;
    border-radius: 50%;
    width: 60px;
}

.user_testimonials .review_lounge h4::after {
    transform: scaleX(0);
    background: rgb(207,202,210);
    bottom: -0.5rem;
    width: 2rem;
    transform-origin: left;
    position: absolute;
    transition: transform 0.3s ease;
    content: "";
    height: 0.15rem;
    left: 0;
}

.user_testimonials a {
    position: relative;
    background: linear-gradient(90deg, rgb(207,202,210) 0%, rgb(171,164,176) 100%);
    z-index: 1;
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    overflow: hidden;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    margin-top: 3rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.user_testimonials a:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}



.user_testimonials .review_lounge:nth-child(1) {
    animation: fadeInUp 0.6s 0.1s both;
}

.user_testimonials .review_lounge:nth-child(2) {
    animation: fadeInUp 0.6s 0.2s both;
}

.user_testimonials .review_lounge:nth-child(4) {
    animation: fadeInUp 0.6s 0.4s both;
}

.user_testimonials .review_lounge:nth-child(6) {
    animation: fadeInUp 0.6s 0.6s both;
}

.course_suitability {
    padding: 6rem 0;
    background-color: rgb(235,233,237);
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.course_suitability::after {
    background: radial-gradient(
        ellipse at center,
        rgba(rgb(207,202,210,0.5), 0.2) 0%,
        transparent 70%
    );
    height: 80%;
    z-index: -1;
    bottom: -30%;
    left: -20%;
    width: 80%;
    content: "";
    position: absolute;
    animation: pulseGlow 12s infinite alternate-reverse ease-in-out;
}

.course_suitability h3 {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    border-radius: 21px;
    font-size: 36px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 4rem;
    padding: 1rem 3rem;
    text-align: center;
}

.course_suitability ul {
    display: flex;
    margin: 0;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 0;
    flex-direction: column;
    width: 100%;
    list-style: none;
}

.course_suitability li::before {
    position: absolute;
    right: 0;
    content: "";
    top: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(rgb(171,164,176,0.5), 0.5),
        transparent
    );
    height: 2px;
    left: 0;
}

.course_suitability li:hover {
    border-color: rgba(rgb(171,164,176,0.5), 0.3);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 12px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.course_suitability li svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    fill: rgb(171,164,176);
    width: 60px;
    margin-bottom: 1.5rem;
    height: 60px;
    transition: all 0.3s ease;
}

.course_suitability li:hover svg {
    fill: rgb(207,202,210);
    transform: scale(1.05);
}

.course_suitability li:nth-child(even) {
    transform: translateX(20px);
}

.course_suitability li:nth-child(even):hover {
    transform: translateX(20px) translateY(-10px);
}

.company_overview {
    background: rgb(207,202,210);
    padding: 100px 0;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.company_overview::after {
    z-index: -1;
    top: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    left: 0;
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
}

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

.company_overview .learning_lab {
    background: rgb(235,233,237);
    grid-template-areas: 
        "text photo"
        "logo photo";
    display: grid;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border-radius: 10px;
    gap: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    grid-template-columns: 1fr 1fr;
}

.company_overview .student_voice {
    display: flex;
    padding-left: 40px;
    justify-content: center;
    flex-direction: column;
    grid-area: photo;
    align-items: center;
}

.company_overview .study_growth {
    text-align: center;
    max-width: 280px;
    width: 100%;
    background: rgb(171,164,176);
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.company_overview .learn_guides {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.company_overview h2 {
    font-weight: 700;
    font-size: 37px;
    margin: 0 0 25px 0;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
}

.company_overview p {
    font-size: 18px;
    color: #000000;
    margin: 0;
    line-height: 1.8;
}

.company_overview .study_tracks svg {
    width: 60px;
    fill: rgb(207,202,210);
    margin-right: 20px;
    height: 60px;
}

.company_overview .study_tracks svg path {
    fill: rgb(207,202,210);
}

.sign_up_for_updates {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #000000 0%, rgb(207,202,210,0.5) 100%);
}

.sign_up_for_updates::after {
    content: "";
    filter: blur(2px);
    position: absolute;
    right: 0;
    height: 5px;
    width: 60%;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(171,164,176), transparent);
    animation: scanline 3s linear infinite;
}

.sign_up_for_updates .inquiry_query {
    transform: perspective(1000px) rotateX(5deg);
    margin-left: 15%;
    padding: 3rem;
    border: 2px solid transparent;
    border-image: linear-gradient(
        135deg,
        rgb(207,202,210),
        transparent,
        rgb(171,164,176)
    );
    width: 70%;
    background: rgba(0, 0, 0, 0.5);
    border-image-slice: 1;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 0 25px rgb(207,202,210,0.5), 
                inset 0 0 15px rgb(171,164,176,0.5);
}

.sign_up_for_updates h3::after {
    left: 0;
    width: 50px;
    box-shadow: 0 0 10px rgb(171,164,176);
    position: absolute;
    background: rgb(171,164,176);
    content: "";
    height: 3px;
    bottom: -10px;
}

.sign_up_for_updates .input_holder {
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.sign_up_for_updates input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sign_up_for_updates input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: inset 0 0 15px rgb(207,202,210,0.5);
}

.sign_up_for_updates .join_list::before {
    top: 0;
    transition: all 0.6s ease;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    position: absolute;
    width: 100%;
    left: -100%;
    content: "";
}

.sign_up_for_updates .join_list:hover::before {
    left: 100%;
}

.pricing_offer {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}

.pricing_offer::before {
    z-index: 1;
    top: 0;
    right: 0;
    position: absolute;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 46, 101, 0.85), rgba(44, 62, 80, 0.9));
    content: "";
    left: 0;
}

.pricing_offer .discount_deals {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
    opacity: 0;
    font-size: 12px;
    color: #ffffff;
    position: relative;
}

.pricing_offer .pro_fees li {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.pricing_offer .learn_packs {
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    display: block;
    transform: translateZ(0);
    height: 100%;
}

.pricing_offer .learn_packs:hover .value_rates {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.9));
}

.pricing_offer .value_rates::before {
    background: linear-gradient(90deg, rgb(207,202,210), rgb(171,164,176));
    content: "";
    left: 0;
    transform-origin: left;
    top: 0;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    transform: scaleX(0);
    position: absolute;
    height: 6px;
}

.pricing_offer .learn_packs:hover .bundle_price h4 {
    color: rgb(207,202,210);
}

.pricing_offer .bundle_price h4::after {
    transition: width 0.4s ease;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgb(207,202,210);
}

.pricing_offer .monthly_plan {
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 50px;
    color: #000000;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.8), rgba(255, 255, 255, 0.9));
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    align-self: flex-start;
    font-weight: 700;
    font-size: calc(19px * 1.4);
    position: relative;
}

.pricing_offer .learn_packs:hover .monthly_plan::before {
    left: 100%;
}

::-webkit-scrollbar {
    width: auto;
}

::-webkit-scrollbar-track {
    border-radius: 10.2rem;
    margin: 4px 0;
    background: linear-gradient(163deg, #ffffff 90%, rgb(255, 255, 255, 0.5) 53%, rgb(171,164,176) 86%, rgb(171,164,176,0.5) 87%);
}

::-webkit-scrollbar-thumb {
    border-radius: 1.3em;
    background: rgb(255, 255, 255, 0.5);
    box-shadow: 3px -4px 15px 6px rgba(0, 0, 0, 0.7);
}

::-webkit-scrollbar-thumb:hover {
    transform: scale(0.95);
    background: rgb(255, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:active {
    transform: scale(0.95);
    background: rgb(235,233,237);
}

.course_structure .description::-webkit-scrollbar {
    width: 4px;
}

.course_structure .description::-webkit-scrollbar-track {
    background: rgba(rgba(0, 0, 0, 0.5), 0.05);
}

.course_structure .description::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: linear-gradient(to bottom, rgb(207,202,210), rgb(171,164,176));
}



@media (max-width: 576px) {.statistical_report {
    padding: 2.5rem 0;
}.statistical_report ul {
    grid-template-columns: 1fr;
    margin-left: auto;
    max-width: 320px;
    margin-right: auto;
}.statistical_report .extra_statistics {
    transform: perspective(1000px) rotateX(0) translateZ(0);
}.statistical_report .extra_statistics:hover {
    transform: perspective(1000px) rotateX(0) translateZ(5px) scale(1.01);
}.statistical_report .extra_statistics::before {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}.statistical_report h4 {
    font-size: calc(19px * 1.1);
}}



@media (max-width: 576px) {.teaching_experience {
    padding: 4rem 1rem;
}.teaching_experience .review_lounge {
    max-width: 100%;
}.teaching_experience .img_rounded {
    transform: translateY(-20px);
    height: 320px;
}.teaching_experience .img_rounded::before {
    top: 20px;
}.teaching_experience .work_details {
    padding: 0.5rem 1.5rem 2.5rem;
}.teaching_experience .name {
    font-size: calc(35px);
}.teaching_experience .work_details > div:nth-child(2) {
    font-size: 18px;
    letter-spacing: 1px;
}.teaching_experience .past_career {
    font-size: 18px;
}.teaching_experience .review_lounge:hover .img_rounded {
    transform: translateY(-25px);
}}



@media (max-width: 767px) {.appContainer {
    padding: 80px 0;
}.appContainer h2 {
    margin-bottom: 40px;
    font-size: calc(30px * 0.9);
}.appContainer .learning_lab {
    padding: 30px 25px;
}.appContainer span {
    line-height: 1.7;
    font-size: 15px;
}.appContainer h2::after {
    width: 60px;
}
}


@media only screen and (max-width: 1200px) {.cookie_notice_overlay {
    padding: 15px 0;
}.visitor_privacy {
    padding: 15px 5%;
}
}



@media (max-width: 992px) {.contact_form_box {
    padding: 80px 0;
}.contact_form_box .help_grid {
    padding: 35px;
}.contact_form_box .support_request {
    padding: 35px;
}
}



@media (max-width: 768px) {.contact_form_box {
    padding: 60px 0;
}.contact_form_box .help_grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
}.contact_form_box .support_request {
    padding: 30px;
}.contact_form_box form {
    grid-gap: 20px;
    grid-template-columns: 1fr;
}.contact_form_box .help_grid h3,
    .contact_form_box form h3 {
    margin-bottom: 30px;
    font-size: calc(38px * 0.85);
}
}



@media (min-width: 768px) {.course_structure {
    padding: 150px 0 100px;
}.course_structure h2 {
    margin-bottom: 60px;
    max-width: 80%;
    font-size: calc(32px * 1.2);
}.course_structure .next_skill {
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
}.course_structure .img_rounded {
    height: 500px;
    transform: perspective(1500px) rotateY(-5deg) rotateX(3deg) translateX(-20px);
}.course_structure .img_rounded:hover {
    transform: perspective(1500px) rotateY(-2deg) rotateX(1deg) translateX(0);
}.course_structure .word_box {
    padding: 0 0 0 20px;
}.course_structure .description {
    max-height: 300px;
}
}



@media (min-width: 1200px) {.course_structure {
    padding: 180px 0 120px;
}.course_structure h2 {
    max-width: 60%;
    font-size: calc(32px * 1.5);
}.course_structure .next_skill {
    grid-gap: 100px;
}.course_structure .img_rounded {
    height: 600px;
}.course_structure .description {
    font-size: calc(17px * 1.1);
    max-height: 450px;
}
}



@media (min-width: 768px) {.course_benefits {
    padding: 6rem 2rem;
}.course_benefits h5 {
    font-size: calc(19px * 1.1);
    margin-bottom: 4rem;
}.course_benefits .learning_lab {
    gap: 3rem;
    padding: 3rem;
    flex-direction: row;
}.course_benefits ul {
    grid-template-columns: repeat(2, 1fr);
}
}



@media (min-width: 992px) {.course_benefits {
    padding: 8rem 3rem;
}.course_benefits .learning_lab {
    gap: 4rem;
}.course_benefits .img_rounded {
    max-width: 45%;
}.course_benefits .word_box {
    max-width: 55%;
}.course_benefits h5::after {
    width: 6rem;
}
}



@media (max-width: 767px) {header .site_start {
    grid-template-areas:
            "logo"
            "site_header";
    grid-template-columns: 1fr;
}header .nav_pro {
    padding: 0.4rem;
}header .nav_pro svg {
    width: 130px;
}header .site_header {
    padding: 0.4rem;
    flex-wrap: wrap;
}header .top_start {
    padding: 0.3rem 0.5rem;
    font-size: calc(14px - 1px);
}
}


@media only screen and (max-width: 800px) {.privacy_hideout {
    padding: 20px;
}.privacy_hideout h1 {
    font-size: calc(18px * 0.8);
}.privacy_hideout h2 {
    font-size: calc(18px * 0.8);
}.privacy_hideout ul li,
    .privacy_hideout ol li {
    padding: 10px;
}.privacy_hideout ol li:before {
    font-size: 0.8em;
    width: 20px;
    height: 20px;
}.privacy_hideout p {
    font-size: calc(12px * 0.9);
}}



@media (min-width: 992px) {.primary_page {
    padding: 8rem 5rem;
}.primary_page h1 {
    font-size: calc(19px * 1.4);
}.primary_page .word_box {
    padding: 4rem;
    transform: translateX(2rem);
}.primary_page .img_rounded {
    height: 550px;
    transform: translateX(-2rem);
}.primary_page svg {
    width: 180px;
    height: 180px;
}.primary_page .learning_lead p {
    font-size: calc(13px * 1.3);
    max-width: 70%;
}.primary_page .message_feedback {
    padding: 1.3rem 3rem;
}
}



@media (max-width: 767px) {.primary_page .word_box {
    padding: 2rem;
}.primary_page h1 {
    font-size: 22px;
}.primary_page .learning_lead p {
    font-size: 13px;
}.primary_page .message_feedback {
    padding: 1rem;
    width: 100%;
}
}



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



@media (max-width: 991px) {footer .info_item:nth-child(even) {
    transform: translateY(15px);
}footer .site_header {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}



@media (max-width: 576px) {footer .equity_info {
    padding: 50px 0 20px;
}footer .top_master {
    padding: 15px;
}footer .site_header h5, footer .subscribe_holder h5 {
    font-size: calc(18px - 2px);
}footer .input_holder input[type="email"],
    footer .join_list {
    padding: 12px;
}}



@media (max-width: 1024px) {.user_testimonials {
    padding: 4rem 0;
}.user_testimonials h2 {
    font-size: calc(29px * 0.9);
}.user_testimonials .feedback_track {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}



@media (max-width: 576px) {.user_testimonials {
    padding: 2.5rem 0;
}.user_testimonials h2 {
    margin-bottom: 1.5rem;
    font-size: calc(29px * 0.7);
}.user_testimonials h2::after {
    width: 3rem;
}.user_testimonials .feedback_track {
    grid-template-columns: 1fr;
}.user_testimonials .review_lounge {
    padding: 1.2rem;
}.user_testimonials .review_lounge div {
    margin-bottom: 1rem;
}.user_testimonials .review_lounge img {
    width: 50px;
    height: 50px;
}.user_testimonials a {
    margin-top: 2rem;
    padding: 0.7rem 1.5rem;
}}



@media (max-width: 991px) {.course_suitability {
    padding: 4rem 0;
}.course_suitability ul {
    gap: 1.5rem;
}.course_suitability h3 {
    padding: 0.8rem 2rem;
    margin-bottom: 3rem;
    font-size: calc(36px * 0.9);
}.course_suitability li {
    padding: 1.5rem;
}.course_suitability li svg {
    height: 50px;
    width: 50px;
    margin-bottom: 1rem;
}
}



@media (max-width: 480px) {.course_suitability {
    padding: 2.5rem 0;
}.course_suitability .learning_lab {
    padding: 0 1rem;
}.course_suitability h3 {
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: calc(36px * 0.7);
}.course_suitability h3::before,
    .course_suitability h3::after {
    width: 20px;
    height: 20px;
}.course_suitability ul {
    gap: 1rem;
}.course_suitability li {
    padding: 1rem;
}.course_suitability li svg {
    margin-bottom: 0.75rem;
    height: 35px;
    width: 35px;
}}



@media screen and (max-width: 767px) {.company_overview {
    padding: 60px 0;
}.company_overview .learning_lab {
    gap: 25px;
    padding: 30px 20px;
}.company_overview .student_voice .img_rounded {
    width: 220px;
    margin-bottom: 30px;
    height: 280px;
}.company_overview .study_growth {
    padding: 15px 20px;
    max-width: 220px;
}.company_overview h2 {
    font-size: calc(37px * 0.85);
}
}



@media screen and (max-width: 480px) {.company_overview {
    padding: 40px 0;
}.company_overview .learning_lab {
    padding: 25px 15px;
    gap: 20px;
}.company_overview .student_voice .img_rounded {
    margin-bottom: 25px;
    border-width: 3px;
    height: 230px;
    width: 180px;
}.company_overview .study_growth {
    max-width: 180px;
    padding: 12px 15px;
}.company_overview .fast_learn {
    font-size: calc(23px * 0.9);
}.company_overview .learn_guides {
    font-size: calc(18px * 0.9);
}.company_overview .study_tracks svg {
    height: 45px;
    width: 45px;
    margin-right: 15px;
}.company_overview h2 {
    font-size: calc(37px * 0.7);
    margin-bottom: 20px;
}.company_overview p {
    font-size: calc(18px * 0.9);
}}



@media (max-width: 1200px) {.pricing_offer {
    padding: 100px 0;
}.pricing_offer .pro_fees {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
}



@media (max-width: 991px) {.pricing_offer {
    padding: 80px 0;
}.pricing_offer h2 {
    font-size: calc(33px * 0.9);
}.pricing_offer .discount_deals {
    font-size: calc(12px * 0.95);
    margin-bottom: 50px;
}.pricing_offer .pro_fees {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.pricing_offer .bundle_price {
    padding: 30px 25px;
}
}



@media (max-width: 480px) {.pricing_offer {
    padding: 60px 0;
}.pricing_offer h2 {
    font-size: calc(33px * 0.8);
}.pricing_offer .discount_deals {
    font-size: calc(12px * 0.85);
    margin-bottom: 35px;
}.pricing_offer .bundle_price {
    padding: 25px 20px;
}.pricing_offer .bundle_price h4 {
    padding-bottom: 12px;
    margin-bottom: 15px;
}.pricing_offer .bundle_price p {
    font-size: calc(12px * 0.85);
    line-height: 1.5;
}.pricing_offer .monthly_plan {
    padding: 8px 18px;
    font-size: calc(19px * 1.2);
}
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes glowLine {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(rgb(171,164,176,0.5), 0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(rgb(207,202,210,0.5), 0.8);
    }
}



@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

