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

html {
    scrollbar-color: #ffffff rgb(224,230,230);
}

.module_end {
    flex: 0 0 auto;
}

.module_end {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

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


.cookie_popup_disclosure {
    width: 100%;
    border-top: 3px solid rgb(134,167,142);
    background: rgb(134,167,142);
    animation: slideUp 0.5s forwards;
    font-family: Arial, sans-serif;
    z-index: 90;
    bottom: 0;
    padding: 20px 0;
    position: fixed;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie_rules {
    align-items: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgb(174,193,193));
    display: flex;
    justify-content: center;
    margin-right: 15px;
}

.cookie_rules:hover svg {
    transform: scale(1.1);
}

.cookie_window:hover {
    box-shadow: 0 0 20px rgb(134,167,142);
}

.cookie_button.cookie_guard:hover {
    box-shadow: 0 0 15px rgb(134,167,142);
}

.cookie_popup_disclosure p a {
    color: rgb(174,193,193);
    transition: color 0.3s ease;
    text-decoration: none;
}

.cookie_popup_disclosure p a:hover {
    color: rgb(134,167,142);
}

#cookieNoticeWindow {
    display: none;
}

#cookieNoticeWindow:checked ~ .cookie_popup_disclosure {
    opacity: 0;
    visibility: hidden;
}

.contact::before {
    background: 
        radial-gradient(circle at 20% 20%, rgb(174,193,193,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(134,167,142,0.5) 0%, transparent 40%);
    left: 0;
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
}

.contact .send_feedback:nth-child(1) {
    display: flex;
    background: linear-gradient(225deg, rgb(174,193,193) 0%, #000000 100%);
    padding: 3rem;
    border-radius: 28px 0 0 28px;
    width: 35%;
    flex-direction: column;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    justify-content: center;
}

.contact .send_feedback h2 {
    padding-left: 1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 33px;
}

.contact .send_feedback h2::before {
    position: absolute;
    background: rgb(134,167,142);
    left: 0;
    height: 100%;
    top: 0;
    content: "";
    width: 4px;
    border-radius: 2px;
}

.contact .send_feedback p {
    margin-bottom: 1rem;
    gap: 1rem;
    color: #ffffff;
    align-items: center;
    display: flex;
}

.contact .ask_feedback {
    position: relative;
    margin-top: 2rem;
}

.contact .ask_feedback h3 {
    margin: 1rem 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.contact .msg_support {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact .msg_support span::before {
    width: 8px;
    border-radius: 50%;
    left: 0;
    transform: translateY(-50%);
    position: absolute;
    background: rgb(134,167,142);
    content: "";
    height: 8px;
    top: 50%;
}

.contact .send_feedback .img_caption_box {
    height: 100%;
    position: relative;
    filter: saturate(0.8) contrast(1.1);
    transition: all 0.5s ease;
    min-height: 400px;
}

.contact .learn_form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.contact .learn_form a {
    padding: 1.25rem;
    border-right: 3px solid rgb(134,167,142);
    align-items: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    gap: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
}

.contact .learn_form a:hover {
    transform: translateX(-5px);
}

.contact .learn_form a p {
    flex: 1;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.contact svg {
    width: 20px;
    fill: none;
    height: 20px;
}

.contact .learn_form a:hover svg path {
    fill: #ffffff;
}

.secure_archive::before {
    z-index: 1;
    top: 0;
    opacity: 0.07;
    width: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgb(174,193,193,0.5) 49%, rgb(174,193,193,0.5) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgb(134,167,142,0.5) 49%, rgb(134,167,142,0.5) 51%, transparent 52%);
    height: 100%;
    left: 0;
    content: "";
    background-size: 50px 50px;
    position: absolute;
}

.secure_archive h1::after {
    animation: widthPulse 3s infinite alternate ease-in-out;
    bottom: 0;
    content: "";
    width: 80px;
    left: 0;
    background: linear-gradient(90deg, rgb(174,193,193) 0%, rgb(134,167,142) 100%);
    transform-origin: left center;
    position: absolute;
    height: 4px;
}

.secure_archive h3 {
    color: #000000;
    padding-left: 1rem;
    font-size: calc(30px * 0.85);
    margin: 2rem 0 1.2rem;
    position: relative;
    font-weight: 600;
    border-left: 2px solid rgb(134,167,142,0.5);
}

.secure_archive p {
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.secure_archive p strong::after {
    height: 8px;
    bottom: 0;
    content: "";
    opacity: 0.3;
    background-color: rgb(134,167,142,0.5);
    left: 0;
    z-index: -1;
    width: 100%;
    position: absolute;
}

.secure_archive li::before {
    border-radius: 10px;
    top: 0.65rem;
    left: 0;
    position: absolute;
    height: 8px;
    content: "";
    width: 8px;
    background-color: rgb(174,193,193);
    transition: transform 0.3s ease;
    transform: rotate(45deg);
}

.secure_archive span::before {
    top: 0;
    opacity: 0.5;
    width: 3px;
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgb(174,193,193,0.5), transparent);
    left: -1rem;
    content: "";
    height: 100%;
}

.join_list::before {
    animation: scanLine 4s infinite linear;
    right: 0;
    position: absolute;
    height: 1px;
    left: 0;
    top: 0;
    box-shadow: 0 0 15px 2px rgb(174,193,193);
    content: "";
    background: linear-gradient(90deg, transparent, rgb(174,193,193), transparent);
}

.join_list .training_pro {
    perspective: 1000px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.join_list .request_grid:hover {
    transform: rotateY(0deg);
}

.join_list .request_grid::before,
.join_list .request_grid::after {
    content: "";
    z-index: -1;
    border-radius: 22px;
    position: absolute;
    inset: 0;
}

.join_list .request_grid::before {
    animation: glowPulse 3s infinite alternate;
    background: linear-gradient(45deg, rgb(174,193,193), transparent 60%);
    opacity: 0.5;
    filter: blur(20px);
}

.join_list h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgb(174,193,193), 0 0 20px rgb(174,193,193,0.5);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-size: 35px;
    position: relative;
}

.join_list .input_holder {
    gap: 1.5rem;
    display: grid;
    width: 100%;
}

.join_list input[type="email"] {
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgb(134,167,142,0.5);
    border-radius: 10px;
    width: 100%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-size: 16px;
}

.join_list .mail_join {
    border-radius: 10px;
    text-shadow: 0 0 10px rgb(174,193,193);
    background: transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(174,193,193,0.5);
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: #ffffff;
    border: 1px solid rgb(174,193,193);
    transition: all 0.3s ease;
}

.join_list .mail_join:hover::before {
    opacity: 1;
}

.gratMessage::before {
    filter: blur(80px);
    top: -10%;
    position: absolute;
    opacity: 0.2;
    right: -5%;
    content: "";
    transform: rotate(-15deg);
    height: 70%;
    width: 40%;
    background: linear-gradient(120deg, rgb(174,193,193,0.5), rgb(134,167,142,0.5));
    z-index: 0;
    pointer-events: none;
}

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

.gratMessage h2 {
    text-align: center;
    color: #000000;
    line-height: 1.3;
    opacity: 1;
    animation: fadeInDown 0.8s ease-out forwards;
    transform: translateY(0);
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 700;
    font-size: 35px;
}

.gratMessage .training_pro {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    border-radius: 17px;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.05),
        -20px -20px 60px rgba(255, 255, 255, 0.9),
        inset 4px 4px 20px rgba(255, 255, 255, 0.9),
        inset -4px -4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    padding: 2.5rem;
    transform: translateY(0);
    background: #ffffff;
}

.gratMessage ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

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

.gratMessage li::before {
    left: 0;
    content: "";
    width: 8px;
    top: 0.6rem;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    animation: scaleIn 0.4s ease-out 0.8s forwards;
    background: linear-gradient(135deg, rgb(174,193,193), rgb(134,167,142));
}

header::after {
    position: absolute;
    z-index: 1;
    width: 5px;
    content: '';
    background: linear-gradient(to bottom, rgb(174,193,193), rgb(134,167,142));
    height: 100%;
    top: 0;
    left: 0;
}

header .container {
    max-width: 100%;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 2;
}

header .header_nav {
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 10px;
    align-items: center;
    display: flex;
    position: relative;
}

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

header .head_section::before {
    position: absolute;
    z-index: -1;
    top: -2px;
    opacity: 0.5;
    left: -2px;
    right: -2px;
    border-radius: calc(10px + 2px);
    background: linear-gradient(135deg, rgb(174,193,193,0.5), rgb(134,167,142,0.5));
    content: '';
    bottom: -2px;
}

header .top_sitewrap::before {
    opacity: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    content: '';
    height: 100%;
    background: linear-gradient(45deg, rgb(174,193,193,0.5), rgb(134,167,142,0.5));
}

header .top_sitewrap:hover::before {
    opacity: 1;
}

.company_info::before {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.65) 100%);
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    z-index: 1;
    position: absolute;
    content: "";
}

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



.company_info .container {
    animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.company_info h2::after {
    position: absolute;
    animation: lineWidth 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    left: 0;
    bottom: -12px;
    width: 80px;
    content: "";
    height: 3px;
    transform-origin: left;
    background: rgb(174,193,193);
}



.company_info .word_box > div {
    position: relative;
}

.company_info .word_box p {
    font-size: calc(17px * 1.5);
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 600;
    transform: translateX(-10px);
    position: relative;
    letter-spacing: 0.5px;
    color: rgb(134,167,142);
}

.company_info .word_box div div {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    column-gap: 40px;
    column-count: 1;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
}

.try_immediately::before {
    width: 100%;
    top: 0;
    left: 0;
    background-size: 60px 60px;
    height: 100%;
    content: '';
    animation: crystalBackground 30s linear infinite;
    z-index: -1;
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%);
    opacity: 0.05;
}

.try_immediately .training_pro {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    clip-path: polygon(
        4% 0%, 
        96% 0%, 
        100% 4%, 
        100% 96%, 
        96% 100%, 
        4% 100%, 
        0% 96%, 
        0% 4%
    );
    background: rgba(255, 255, 255, 0.07);
    max-width: 1000px;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(255, 255, 255, 0.1);
    align-items: center;
}

.try_immediately h3 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    color: #ffffff;
    position: relative;
    font-size: 29px;
    font-family: Arial, sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.try_immediately h3::before {
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 30px;
    content: '';
    transform: translateX(-50%);
    animation: orbitalSpin 10s linear infinite;
    top: -40px;
    position: absolute;
    height: 30px;
    left: 50%;
    opacity: 0.6;
    border-radius: 50%;
}

.try_immediately .learn_help {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(
        5% 0%, 
        95% 0%, 
        100% 5%, 
        100% 95%, 
        95% 100%, 
        5% 100%, 
        0% 95%, 
        0% 5%
    );
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    letter-spacing: 2px;
    z-index: 1;
    font-family: Arial, sans-serif;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 45px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.try_immediately .learn_help:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.8);
    color: rgb(174,193,193);
}

.price_palette::before {
    top: 0;
    position: absolute;
    right: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    bottom: 0;
    left: 0;
    content: "";
    z-index: 1;
}

.price_palette h2::after {
    background: linear-gradient(90deg, rgb(174,193,193), rgb(134,167,142));
    content: "";
    position: absolute;
    transform: translateX(-50%);
    height: 3px;
    left: 50%;
    bottom: -15px;
    width: 80px;
}

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

.price_palette .pricing_deals {
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transform: translateZ(0);
}

.price_palette .pricing_deals:hover::before {
    opacity: 0.15;
}

.price_palette .fee_structure {
    height: 100%;
    flex-direction: column;
    display: flex;
}

.price_palette .fee_structure h4::after {
    background: rgb(134,167,142);
    width: 40px;
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: -8px;
    content: "";
    transform: scaleX(1);
    left: 0;
    height: 2px;
    position: absolute;
}

.price_palette .fee_structure p {
    padding-right: 5px;
    max-height: 300px;
    hyphens: auto;
    flex-grow: 1;
    transform: translateZ(10px);
    line-height: 1.6;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 13px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.price_palette .pricing_deals:hover .pricing_card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateZ(25px) scale(1.05);
}

.course_candidates {
    padding: 130px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(224,230,230) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
}

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

.course_candidates .training_pro {
    position: relative;
}

.course_candidates h4 {
    font-weight: 700;
    text-align: center;
    font-size: 35px;
    color: #000000;
    position: relative;
    margin-bottom: 70px;
    padding-bottom: 20px;
}

.course_candidates div {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.course_candidates div p {
    line-height: 1.6;
    color: #000000;
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    padding: 25px 25px 25px 75px;
    z-index: 1;
    font-size: 14px;
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 26px;
    min-width: 280px;
    background: #ffffff;
}

.course_candidates div p::after {
    border-radius: calc(26px - 10px);
    border: 1px solid rgb(134,167,142,0.5);
    position: absolute;
    content: "";
    left: 10px;
    transition: all 0.3s ease;
    top: 10px;
    opacity: 0.2;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    z-index: -2;
    background: #ffffff;
}

.course_candidates div p:hover svg {
    background: rgb(174,193,193,0.5);
    transform: rotate(15deg);
}

.course_candidates div p svg path {
    transition: all 0.3s ease;
    fill: rgb(174,193,193);
}

.title_welcome {
    position: relative;
    padding: 2rem 1rem;
    display: flex;
    background: linear-gradient(135deg, rgb(224,230,230) 0%, rgb(174,193,193,0.5) 100%);
    min-height: 100vh;
    overflow: hidden;
    flex-direction: column;
}

.title_welcome::after {
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgb(174,193,193,0.5) 0%, transparent 70%);
    bottom: -5%;
    transform: translateZ(0);
    height: 50%;
    right: -5%;
    width: 50%;
    z-index: 0;
    opacity: 0.6;
}

.title_welcome h1::before {
    width: 1rem;
    height: 2px;
    transform: scaleX(0);
    background: rgb(174,193,193);
    left: 0;
    transform-origin: left;
    position: absolute;
    transition: transform 0.5s ease-out;
    content: "";
    top: 50%;
}

.title_welcome .word_box {
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    transform: translateZ(0);
    order: 2;
    position: relative;
}

.title_welcome .img_caption_box::before {
    top: 0;
    pointer-events: none;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    bottom: 0;
    position: absolute;
    right: 0;
    content: "";
}

.title_welcome ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title_welcome .main_welcome svg {
    height: 100px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1rem;
    width: 100px;
    transform: translateY(0);
}

.title_welcome .main_welcome:hover svg path {
    fill: rgb(134,167,142);
}

.title_welcome .main_welcome svg text {
    font-family: Arial, sans-serif;
    transition: fill 0.3s ease;
}

.title_welcome .main_welcome p::after {
    background: rgb(174,193,193);
    position: absolute;
    transform: translateX(-50%) scaleX(0.5);
    content: "";
    width: 40px;
    opacity: 0.7;
    bottom: -10px;
    transition: all 0.4s ease;
    height: 2px;
    left: 50%;
}

.title_welcome .reach_request {
    display: inline-block;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    overflow: hidden;
    text-decoration: none;
    transform: translateY(0);
    background: linear-gradient(135deg, rgb(174,193,193) 0%, rgb(134,167,142) 100%);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 0.8rem 2rem;
    font-size: 18px;
    position: relative;
}

.title_welcome .reach_request::after {
    bottom: 0;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    content: "";
    width: 100%;
    height: 3px;
    transform-origin: right;
    left: 0;
    position: absolute;
}

.leadership_profile::before {
    background: repeating-linear-gradient(
        -45deg,
        rgb(134,167,142,0.5) 0,
        rgb(134,167,142,0.5) 2px,
        transparent 2px,
        transparent 10px
    );
    width: 100%;
    content: "";
    z-index: 1;
    left: 0;
    opacity: 0.3;
    position: absolute;
    height: 100%;
    top: 0;
}

.leadership_profile .img_caption_box {
    border-radius: 24px 24px 0 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    width: 80%;
    height: 350px;
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.5);
    z-index: 3;
    margin: 0 auto;
    transition: all 0.5s ease;
}

.leadership_profile .learning_voices:hover .img_caption_box {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 95%);
}

.leadership_profile .emp_exp::before {
    left: 0;
    right: 0;
    background-size: 200% 100%;
    content: "";
    height: 6px;
    animation: gradient-shift 8s infinite alternate;
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, 
                rgb(174,193,193), 
                rgb(134,167,142), 
                rgb(174,193,193));
    border-radius: 10px 10px 0 0;
}

.leadership_profile .name {
    font-weight: 700;
    transform: translateY(0);
    color: rgb(174,193,193);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-family: Arial, sans-serif;
    font-size: 31px;
}

.leadership_profile .emp_exp > div:nth-child(2)::after {
    height: 3px;
    content: "";
    transition: width 0.4s ease;
    bottom: 0;
    position: absolute;
    width: 40px;
    left: 0;
    background: rgb(134,167,142,0.5);
}

.leadership_profile .past_work {
    font-style: italic;
    padding: 1rem 0 0 1.5rem;
    transition: all 0.5s ease 0.2s;
    transform: translateY(10px);
    border-left: 3px solid rgb(134,167,142,0.5);
    opacity: 0.7;
    font-size: 13px;
    line-height: 1.7;
    color: #000000;
    position: relative;
}

.training_benefits::before {
    position: absolute;
    width: 300px;
    right: -50px;
    content: "";
    opacity: 0.5;
    filter: blur(40px);
    top: -50px;
    height: 300px;
    transform: rotate(-15deg);
    z-index: 1;
    background: linear-gradient(225deg, rgb(134,167,142,0.5) 0%, transparent 70%);
    animation: pulse 8s infinite alternate ease-in-out;
}

.training_benefits h5 {
    opacity: 1;
    font-weight: 700;
    transform: translateY(0);
    margin-right: auto;
    z-index: 2;
    position: relative;
    max-width: 800px;
    color: #000000;
    font-size: 22px;
    text-align: center;
    margin-left: auto;
    margin-bottom: 50px;
    animation: fadeSlideUp 1s ease-out;
}

.training_benefits .training_pro {
    animation: fadeSlideUp 1.2s ease-out 0.2s both;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    opacity: 1;
    flex-direction: column;
    overflow: hidden;
    padding: 40px;
    display: flex;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    gap: 40px;
    transform: translateY(0);
}

.training_benefits .training_pro:hover .img_caption_box {
    transform: scale(1.03);
}

.training_benefits .word_box {
    position: relative;
}

.training_benefits li {
    animation: fadeSlideRight 0.5s ease-out both;
    transition: transform 0.3s ease;
    position: relative;
    padding-left: 40px;
}

.training_benefits li:nth-child(2) {
    animation-delay: 0.4s;
}

.training_benefits li:nth-child(4) {
    animation-delay: 0.6s;
}

.training_benefits li:hover {
    transform: translateX(5px);
}

.training_benefits svg {
    left: -40px;
    transition: transform 0.3s ease;
    position: absolute;
    transform: translateY(0) scale(1);
    width: 28px;
    top: 0;
    height: 28px;
}

.training_benefits li:hover svg path {
    fill: rgb(134,167,142);
}

.operation_process::before {
    position: absolute;
    z-index: 1;
    height: 100%;
    content: "";
    background: radial-gradient(circle at 75% 25%, rgba(rgb(174,193,193,0.5), 0.15) 0%, transparent 60%);
    width: 100%;
    top: 0;
    left: 0;
}

.operation_process .training_pro {
    z-index: 3;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    max-width: 1200px;
    transform-origin: center bottom;
}

.operation_process h2 {
    text-align: center;
    position: relative;
    color: #000000;
    opacity: 0;
    margin-bottom: 3rem;
    font-size: 34px;
    animation: fadeSlideDown 0.8s ease-out 0.3s forwards;
    transform: translateY(-10px);
    font-weight: 700;
}

.operation_process:hover h2::after {
    width: 120px;
}

.operation_process .word_box {
    position: relative;
    backdrop-filter: blur(10px);
    animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.07), 
                0 1px 5px rgba(rgba(0, 0, 0, 0.5), 0.05);
    transform: translateY(20px);
    border-radius: 0 10px 10px 0;
    padding: 2.5rem;
    border-left: 4px solid rgb(174,193,193);
}

.operation_process:hover .word_box::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(rgb(174,193,193,0.5), 0.1), 
                0 0 20px rgba(rgb(174,193,193,0.5), 0.3);
}

.operation_process .word_box p {
    font-size: 16px;
    position: relative;
    margin: 0;
    line-height: 1.7;
    z-index: 2;
    font-weight: 400;
    color: #000000;
}

.connect_form::before {
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    position: absolute;
    content: '';
    background: 
        repeating-linear-gradient(
            0deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        );
    pointer-events: none;
}

.connect_form h2 {
    color: #ffffff;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 43px;
    position: relative;
}

.connect_form h2::after {
    width: 30%;
    right: 0;
}

.connect_form .query_support {
    background: rgb(134,167,142,0.5);
    transition: transform 0.3s ease;
    border-radius: 21px;
    border: 1px solid rgb(174,193,193,0.5);
    display: flex;
    transform: rotateX(5deg) scale(0.98);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 5px 15px rgba(0,0,0,0.1);
    align-items: stretch;
}

.connect_form .support_query {
    position: relative;
    padding: 4rem 3rem;
    justify-content: center;
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
}

.connect_form .support_query::before {
    width: 10px;
    background: rgb(174,193,193);
    height: 10px;
    content: '';
    position: absolute;
    box-shadow: 0 0 20px rgb(174,193,193);
    top: 2rem;
    border-radius: 50%;
    animation: signal-pulse 2s infinite alternate;
    right: 2rem;
}

.connect_form .support_query input:not([type="checkbox"]):not([type="submit"]) {
    z-index: 2;
    font-size: 18px;
    outline: none;
    background: rgb(134,167,142,0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
    padding: 1rem 1.5rem;
    width: 100%;
    border: 1px solid rgb(174,193,193,0.5);
    margin-bottom: 1.5rem;
}

.connect_form .support_query input:not([type="checkbox"]):not([type="submit"]):focus {
    box-shadow: 0 0 15px rgb(174,193,193,0.5);
    border-color: rgb(174,193,193);
}

.connect_form .support_query .support_form {
    align-items: center;
    margin-bottom: 1.5rem;
    display: flex;
}

.connect_form .support_query .support_form input[type="checkbox"]:checked {
    background: rgb(174,193,193);
    border-color: rgb(174,193,193);
}

.connect_form .support_query .support_form input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    color: #ffffff;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
}

.connect_form .support_query .support_form a:hover {
    text-decoration: underline;
}

.connect_form .support_query .reach_request {
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem;
    overflow: hidden;
    text-transform: uppercase;
    border: none;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
    background: rgb(174,193,193);
}

.connect_form .support_query .reach_request:hover::before {
    left: 100%;
}

.module_end::before {
    content: "";
    z-index: -1;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
    backdrop-filter: blur(8px);
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgb(174,193,193,0.5) 100%);
}



.module_end .company_holder h3 {
    -webkit-background-clip: text !important;
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, rgb(134,167,142));
    font-size: calc(32px * 1.2);
}

.module_end .head_section {
    position: relative;
}

.module_end .head_section::after {
    height: 40px;
    width: 40px;
    border-right: 1px solid rgb(174,193,193);
    border-bottom: 1px solid rgb(174,193,193);
    bottom: -10px;
    right: -20px;
    opacity: 0.4;
    position: absolute;
    content: "";
}

.module_end .head_section .header_tutor {
    flex-direction: column;
    gap: 0.8rem;
    display: flex;
}

.module_end .head_section .header_tutor a {
    padding-left: 1rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
}

.module_end .head_section .header_tutor a:hover {
    transform: translateX(5px);
    color: rgb(174,193,193);
    opacity: 1;
}

.module_end .head_section .header_tutor a:hover::before {
    width: 7px;
    height: 7px;
    background-color: rgb(134,167,142);
}

.biz_learnings::before {
    height: 1px;
    top: 0;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    opacity: 0.5;
    background: linear-gradient(to right, transparent, rgb(174,193,193), transparent);
}

.course_structure {
    min-height: 100vh;
    overflow: hidden;
    justify-content: center;
    display: flex;
    position: relative;
    align-items: center;
    padding: 0;
    flex-direction: column;
    margin: 0;
    background-color: rgb(224,230,230);
}

.course_structure .training_path::after {
    left: 0;
    height: 70%;
    z-index: 3;
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(to top, rgb(174,193,193,0.5) 10%, transparent 100%);
    bottom: 0;
}

.course_structure .learn_code {
    animation: carousel-slide 25s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
    height: 100%;
    display: flex;
}

.course_structure .learn_business::before {
    position: absolute;
    content: "";
    z-index: 1;
    opacity: 0.1;
    background: repeating-linear-gradient(
        45deg,
        rgb(134,167,142,0.5),
        rgb(134,167,142,0.5) 10px,
        transparent 10px,
        transparent 20px
    );
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
}

.course_structure .container {
    padding: 2rem;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 10;
    width: 100%;
}

.course_structure .learn_plan {
    border-left: 4px solid rgb(174,193,193);
    background: linear-gradient(145deg, 
        rgb(174,193,193,0.5) 0%, 
        rgb(134,167,142,0.5) 100%);
    border-radius: 21px;
    transform: translateY(0);
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    max-width: 900px;
    animation: float 6s ease-in-out infinite;
    margin-left: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.3),
                inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}

.course_structure .learn_plan .reach_request {
    overflow: hidden;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(to right, rgb(174,193,193), rgb(134,167,142));
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    padding: 1rem 2rem;
    z-index: 1;
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 600;
}

.course_structure .learn_plan .reach_request:hover::before {
    left: 100%;
}

::-webkit-scrollbar {
    width: 12px;
    padding: 2px;
}

::-webkit-scrollbar-track {
    box-shadow: inset -5px -5px 7px 2px rgba(0, 0, 0, 0.7);
    background: rgb(224,230,230);
}

::-webkit-scrollbar-thumb {
    background: radial-gradient(ellipse at top right, #ffffff 59%, rgb(255, 255, 255, 0.5) 4%, rgb(134,167,142) 2%, rgb(134,167,142,0.5) 75%, rgb(174,193,193) 92%, rgb(174,193,193,0.5) 27%);
}

::-webkit-scrollbar-thumb:active {
    background: rgb(255, 255, 255, 0.5);
    box-shadow: inset -3px 5px 10px 7px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

.price_palette .fee_structure p::-webkit-scrollbar {
    width: 4px;
}

.price_palette .fee_structure p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(134,167,142,0.5);
}



@media (max-width: 992px) {.contact .knowledge_plan {
    flex-direction: column;
}.contact .send_feedback:nth-child(1),
    .contact .send_feedback:nth-child(2),
    .contact .send_feedback:nth-child(3) {
    width: 100%;
    clip-path: none;
    border-radius: 28px;
    margin-bottom: 1.5rem;
}.contact .send_feedback .img_caption_box {
    min-height: 300px;
}.contact .learn_form {
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: row;
}.contact .learn_form a {
    min-width: 250px;
    flex: 1 1 calc(50% - 0.5rem);
}
}



@media (max-width: 480px) {.contact {
    padding: 3rem 0;
}.contact .send_feedback:nth-child(1),
    .contact .send_feedback:nth-child(3) {
    padding: 1.5rem;
}.contact .send_feedback .img_caption_box {
    min-height: 200px;
}.contact .ask_feedback {
    margin-top: 1.5rem;
}.contact .ask_feedback h3 {
    font-size: calc(20px * 0.9);
}.contact .learn_form a {
    padding: 1rem;
}}



@media (max-width: 576px) {.secure_archive {
    padding: 1.5rem 0.5rem;
}.secure_archive .container {
    padding: 1.25rem;
}.secure_archive h1 {
    font-size: calc(38px * 0.7);
}.secure_archive h2 {
    font-size: calc(30px * 0.7);
}.secure_archive h3 {
    font-size: calc(30px * 0.6);
}.secure_archive h4 {
    font-size: calc(30px * 0.5);
}.secure_archive p, 
    .secure_archive li,
    .secure_archive span {
    font-size: calc(12px * 0.9);
}.secure_archive span::before {
    left: -0.75rem;
}}



@media (min-width: 768px) {.join_list {
    padding: 7rem 3rem;
}.join_list .request_grid {
    padding: 4rem;
    width: 80%;
}.join_list .input_holder {
    grid-template-columns: 2fr 1fr;
}
}



@media (max-width: 991px) {.gratMessage {
    padding: 3rem 1.5rem;
}.gratMessage h2 {
    font-size: calc(35px * 0.9);
    margin-bottom: 2rem;
}.gratMessage .training_pro {
    padding: 2rem;
}
}



@media (max-width: 480px) {.gratMessage {
    padding: 2rem 1rem;
}.gratMessage h2 {
    text-align: left;
    font-size: calc(35px * 0.7);
}.gratMessage h2::after {
    left: 0;
    width: 50px;
    transform: none;
}.gratMessage .training_pro {
    padding: 1.25rem;
}.gratMessage li {
    padding-left: 1.25rem;
}.gratMessage li::before {
    height: 6px;
    top: 0.5rem;
    width: 6px;
}}



@media (max-width: 767px) {header::after {
    width: 3px;
}header .top_info {
    flex-direction: column;
    margin-left: 3px;
    padding: 0.8rem 2%;
    gap: 0.7rem;
    align-items: flex-start;
}header .header_nav {
    padding: 0.4rem;
}header .header_nav svg {
    width: 120px;
}header .head_section {
    padding: 0.4rem;
    justify-content: flex-start;
    width: 98%;
    overflow-x: auto;
}header .head_section::-webkit-scrollbar {
    height: 2px;
}header .head_section::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(174,193,193);
}header .top_sitewrap {
    font-size: calc(15px - 1px);
    padding: 0.3rem 0.5rem;
    white-space: nowrap;
}
}



@media (min-width: 1200px) {.company_info .word_box {
    width: calc(100% - 80px);
    margin-left: 80px;
}.company_info .word_box div div {
    font-size: calc(17px * 1.05);
}
}



@media (max-width: 767px) {.company_info {
    padding: 80px 0 100px;
}.company_info h2 {
    font-size: calc(36px * 1.1);
    margin-bottom: 30px;
}.company_info .word_box {
    padding: 30px;
}
}



@media (prefers-reduced-motion) {.company_info .container,
    .company_info .word_box,
    .company_info h2::after {
    transform: none;
    opacity: 1;
    animation: none;
}}



@media screen and (max-width: 768px) {.try_immediately {
    padding: 70px 0;
}.try_immediately .training_pro {
    padding: 40px 30px;
}.try_immediately h3 {
    font-size: calc(29px * 0.8);
    letter-spacing: 3px;
    margin-bottom: 40px;
}.try_immediately h3::before {
    height: 20px;
    width: 20px;
    top: -30px;
}.try_immediately h3::after {
    width: 40px;
}.try_immediately .learn_help {
    padding: 12px 35px;
    font-size: calc(20px * 0.95);
    letter-spacing: 1.5px;
}
}



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



@media (max-width: 992px) {.price_palette {
    padding: 80px 0;
}.price_palette .tuition_table {
    padding: 2rem 1.5rem;
}.price_palette .fee_structure h4 {
    font-size: calc(19px * 1.1);
}.price_palette .pricing_card {
    padding: 0.7rem 1.2rem;
    font-size: calc(19px * 1.1);
}
}



@media (max-width: 576px) {.price_palette {
    padding: 50px 0;
}.price_palette h2 {
    font-size: calc(37px * 0.8);
}.price_palette .tuition_table {
    padding: 1.5rem 1.2rem;
}.price_palette .fee_structure h4 {
    margin-bottom: 1.2rem;
    font-size: 19px;
}.price_palette .pricing_card {
    padding: 0.6rem 1rem;
    font-size: 19px;
}.price_palette .pricing_deals:hover {
    transform: translateY(-5px);
}}



@media (max-width: 767px) {.course_candidates {
    padding: 80px 0;
}.course_candidates h4 {
    font-size: calc(35px - 4px);
    margin-bottom: 50px;
}.course_candidates div {
    gap: 20px;
}.course_candidates div p {
    flex: 0 0 100%;
    padding: 18px 18px 18px 60px;
}.course_candidates div p svg {
    height: 28px;
    width: 28px;
}
}



@media (min-width: 768px) {.title_welcome {
    padding: 3rem 2rem;
}.title_welcome h1 {
    font-size: calc(18px * 1.2);
    padding-left: 2rem;
}.title_welcome h1::before {
    width: 1.5rem;
}.title_welcome .training_pro {
    gap: 2rem;
    align-items: center;
    flex-direction: row;
}.title_welcome .word_box {
    flex: 1;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    order: 1;
    border-radius: 10px;
    padding: 3rem 2rem;
}.title_welcome:hover .word_box {
    transform: translateX(5px);
}.title_welcome .img_caption_box {
    order: 2;
    flex: 1;
    transform: translateZ(0) scale(0.98);
    min-height: 400px;
    border-radius: 10px;
}.title_welcome:hover .img_caption_box {
    transform: translateZ(0) scale(1);
}.title_welcome .main_welcome {
    align-items: flex-start;
    text-align: left;
}.title_welcome .main_welcome p::after {
    transform: translateX(0) scaleX(0.5);
    left: 0;
}.title_welcome .main_welcome:hover p::after {
    transform: translateX(0) scaleX(1);
}.title_welcome .main_welcome svg {
    width: 120px;
    height: 120px;
}
}



@media (prefers-reduced-motion: reduce) {.title_welcome *,
    .title_welcome *::before,
    .title_welcome *::after {
    scroll-behavior: auto !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
}}



@media (min-width: 992px) {.training_benefits {
    padding: 140px 60px;
}.training_benefits .training_pro {
    gap: 60px;
}.training_benefits h5 {
    font-size: calc(22px * 1.2);
}.training_benefits h5::after {
    width: 120px;
}.training_benefits p {
    font-size: calc(17px * 1.05);
}
}



@media (max-width: 767px) {.training_benefits {
    padding: 80px 20px;
}.training_benefits h5 {
    font-size: calc(22px * 0.9);
}.training_benefits .training_pro {
    padding: 30px;
}.training_benefits .img_caption_box {
    object-position: center;
    max-height: 250px;
}.training_benefits li {
    padding-left: 35px;
}.training_benefits svg {
    width: 24px;
    height: 24px;
    left: -35px;
}}



@media (max-width: 480px) {.operation_process {
    padding: 4rem 0;
}.operation_process .training_pro {
    padding: 0 1rem;
}.operation_process h2 {
    font-size: calc(34px * 0.7);
}.operation_process .word_box {
    padding: 1.25rem;
}.operation_process .word_box p {
    line-height: 1.6;
    font-size: calc(16px * 0.95);
}}



@media screen and (max-width: 1024px) {.connect_form .query_support {
    transform: none;
    flex-direction: column;
}.connect_form .img_caption_box {
    min-height: 300px;
    flex: 0 0 100%;
}.connect_form .support_query {
    padding: 3rem 2rem;
    flex: 0 0 100%;
}
}



@media screen and (max-width: 480px) {.connect_form .query_support {
    border-radius: 0;
}.connect_form .img_caption_box {
    min-height: 250px;
}.connect_form .support_query {
    padding: 2rem 1.5rem;
}}



@media screen and (max-width: 992px) {.module_end .container {
    grid-template-columns: 1fr;
    gap: 2rem;
}.module_end .company_holder {
    margin-bottom: 2rem;
    padding-left: 1rem;
}.module_end .math_tools {
    justify-content: flex-start;
}.module_end .header_tutor {
    gap: 2rem;
}
}



@media screen and (max-width: 576px) {.module_end .company_holder h3 {
    font-size: 32px;
}.module_end .head_section h5 {
    font-size: calc(21px * 1.1);
}.module_end .head_section .header_tutor a {
    font-size: calc(16px * 0.9);
}}



@media screen and (max-width: 991px) {.course_structure {
    min-height: auto;
    padding: 5rem 0;
}.course_structure .training_path {
    height: 50vh;
    position: relative;
}.course_structure .training_pro {
    justify-content: center;
}.course_structure .learn_plan {
    margin: 2rem auto 0;
    max-width: 90%;
    padding: 2.5rem;
}
}



@media screen and (max-width: 480px) {.course_structure .training_path {
    height: 30vh;
}.course_structure .training_path::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 50%, rgb(174,193,193,0.5) 100%);
}.course_structure .container {
    padding: 1rem;
}.course_structure .learn_plan {
    padding: 1.2rem;
}
}



@keyframes scanLine {
    0% {
        transform: translateY(-100vh);
    }
    100% {
        transform: translateY(100vh);
    }
}



@keyframes borderFlash {
    0%, 90% {
        border-color: rgb(174,193,193);
        box-shadow: 0 0 20px rgb(174,193,193,0.5);
    }
    91%, 100% {
        border-color: rgb(134,167,142);
        box-shadow: 0 0 25px rgb(134,167,142);
    }
}



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



@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



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



@keyframes orbitalSpin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}



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



@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}



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



@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: rotate(-15deg) scale(1);
    }
    100% {
        opacity: 0.6;
        transform: rotate(-12deg) scale(1.1);
    }
}



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



@keyframes circuit-pulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(5deg) scale(1.02);
        opacity: 0.8;
    }
}

@keyframes borderPulse {
    0% {
        border-left-color: rgb(174,193,193);
    }
    50% {
        border-left-color: rgb(134,167,142);
    }
    100% {
        border-left-color: rgb(174,193,193);
    }
}



@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

