* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}.wrapper-container {
    height: 100%;
    display: flex;
    min-height: 100%;
    flex-direction: column;
}html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
    scroll-behavior: auto;
    min-height: 100%;
}.head_prime {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}.flag_content {
    flex: 0 0 auto;
}@keyframes shift_scrollbar { 0% { transform: translateX(0); } 50% { transform: translateX(5px); } 100% { transform: translateX(0); } }

::-webkit-scrollbar {
    scroll-behavior: smooth;
    width: 2%;
}::-webkit-scrollbar-track {
    border-radius: 18.3em;
    background: rgb(255, 255, 255, 0.5);
}::-webkit-scrollbar-thumb {
    background: rgb(169,164,185);
    animation: shift_scrollbar 3.4s ease-out 5;
    border: 1px solid rgb(234,231,242);
    min-height: 43px;
}html {
    scrollbar-color: #ffffff rgb(234,231,242);
    scrollbar-width: thin;
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 4px;
}::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255, 0.5);
}}

.container {
    width: 1269px;
    margin: auto;
    max-width: 100%;
}a {
    text-decoration: none;
    color: inherit;
}header,footer {
    width: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
footer {
    position: relative;
    width: 100%;
}footer .flag_content {
    padding: 80px 0 30px;
    z-index: 1;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(135deg, #000000 0%, rgb(206,200,217) 100%);
}footer .flag_content::before {
    z-index: -1;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 10px,
        transparent 10px,
        transparent 20px
    );
    height: 100%;
    position: absolute;
    content: '';
    width: 100%;
    left: 0;
    opacity: 0.05;
    top: 0;
}footer .flag_content::after {
    animation: glowBorder 3s infinite linear;
    top: 0;
    background: linear-gradient(90deg, 
        rgb(206,200,217) 0%, 
        rgb(169,164,185) 50%, 
        rgb(206,200,217) 100%);
    left: 0;
    height: 3px;
    content: '';
    position: absolute;
    width: 100%;
}@keyframes glowBorder {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

footer .flag_content .container {
    position: relative;
    z-index: 2;
}footer .price_table {
    gap: 40px;
    grid-template-columns: 1fr;
    display: grid;
}footer .course_ask {
    padding-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}footer .course_ask::after {
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(169,164,185,0.5) 50%, 
        transparent 100%);
    position: absolute;
    bottom: 0;
    height: 1px;
    content: '';
}footer .info_item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    padding: 15px;
    min-width: 200px;
    transform: translateY(0);
}footer .info_item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    align-items: center;
    color: #ffffff;
    gap: 10px;
    display: flex;
    font-size: 17px;
    transition: color 0.3s ease;
    font-weight: 400;
    font-family: Arial, sans-serif;
}footer .info_item svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    fill: rgb(169,164,185);
    height: 20px;
}footer .info_item:hover svg {
    transform: scale(1.2);
}footer .info_item:hover a,
footer .info_item:hover p {
    color: rgb(169,164,185);
}footer .text_main_holder {
    margin-bottom: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    display: grid;
}footer .head_base {
    gap: 20px;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
}footer .head_base svg {
    height: auto;
    max-width: 160px;
    filter: drop-shadow(0 0 5px rgb(206,200,217,0.5));
}footer .exam_prep {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
    max-width: 300px;
    color: #ffffff;
    font-weight: 300;
}footer .head_train {
    flex-direction: column;
    display: flex;
    gap: 20px;
}footer .head_train h5 {
    color: #ffffff;
    font-size: 19px;
    padding-bottom: 15px;
    margin-bottom: 5px;
    font-weight: 700;
    position: relative;
}footer .head_train h5::after {
    height: 3px;
    position: absolute;
    border-radius: 10px;
    content: '';
    left: 0;
    width: 50px;
    bottom: 0;
    background: rgb(169,164,185);
}footer .header_tutor {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 20px;
}footer .header_tutor a {
    position: relative;
    color: #ffffff;
    font-size: 17px;
    padding-left: 15px;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}footer .header_tutor a::before {
    opacity: 0.7;
    content: '';
    top: 50%;
    transition: all 0.3s ease;
    left: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    width: 6px;
    background: rgb(169,164,185);
    position: absolute;
    height: 6px;
}footer .header_tutor a:hover {
    opacity: 1;
    color: rgb(169,164,185);
    transform: translateX(5px);
}footer .header_tutor a:hover::before {
    box-shadow: 0 0 10px rgb(169,164,185);
    height: 8px;
    opacity: 1;
    width: 8px;
}footer .subscribe_holder {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg);
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}footer .subscribe_holder:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}footer .subscribe_holder h5 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
}footer .subscribe_holder p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.8;
    font-size: 17px;
    margin-bottom: 20px;
}footer .input_holder {
    gap: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}footer .input_holder input[type="email"] {
    width: 100%;
    color: #ffffff;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    outline: none;
    border-radius: 10px;
    font-size: 17px;
    transition: all 0.3s ease;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .input_holder input[type="email"]:focus {
    box-shadow: 0 0 15px rgb(169,164,185,0.5);
    border-color: rgb(169,164,185);
}footer .instant_learning {
    background: linear-gradient(45deg, rgb(169,164,185) 0%, rgb(206,200,217) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 10px;
    color: #ffffff;
    border: none;
    letter-spacing: 1px;
    font-size: 17px;
}footer .instant_learning::before {
    width: 100%;
    left: -100%;
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.6s;
    content: '';
    top: 0;
}footer .instant_learning:hover::before {
    left: 100%;
}footer .instant_learning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}footer .cloud_lab {
    padding-top: 30px;
    text-align: center;
    position: relative;
}footer .cloud_lab::before {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(169,164,185,0.5) 50%, 
        transparent 100%);
    top: 0;
    width: 100%;
    position: absolute;
    left: 0;
    content: '';
}footer .debate_club {
    opacity: 0.7;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
}

@media (max-width: 992px) {footer .flag_content {
    padding: 60px 0 30px;
}footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}footer .subscribe_holder {
    transform: perspective(1000px) rotateY(0deg);
    grid-column: span 2;
}footer .course_ask {
    gap: 20px;
}footer .info_item {
    min-width: 180px;
}
}

@media (max-width: 768px) {footer .flag_content {
    padding: 50px 0 30px;
}footer .text_main_holder {
    grid-template-columns: 1fr;
    gap: 40px;
}footer .subscribe_holder {
    grid-column: span 1;
}footer .head_train {
    gap: 15px;
}footer .course_ask {
    flex-direction: column;
    gap: 15px;
}footer .info_item {
    width: 100%;
    margin-bottom: 0;
}footer .input_holder {
    flex-direction: column;
}footer .instant_learning {
    width: 100%;
}
}

@media (max-width: 576px) {footer .flag_content {
    padding: 40px 0 30px;
}footer .head_base {
    align-items: center;
    margin: 0 auto;
    text-align: center;
}footer .exam_prep {
    text-align: center;
    margin: 0 auto;
}footer .head_train h5 {
    text-align: center;
}footer .head_train h5::after {
    transform: translateX(-50%);
    left: 50%;
}footer .header_tutor {
    align-items: center;
}footer .header_tutor a {
    text-align: center;
}footer .subscribe_holder {
    padding: 20px;
    text-align: center;
}footer .subscribe_holder h5,
    footer .subscribe_holder p {
    text-align: center;
}}.educational_yield {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(234,231,242) 30%, #ffffff 100%);
    position: relative;
}.educational_yield::before {
    position: absolute;
    height: 300px;
    width: 300px;
    top: -50px;
    right: -50px;
    transform: rotate(45deg);
    opacity: 0.08;
    background: linear-gradient(120deg, rgb(206,200,217,0.5), rgb(169,164,185));
    content: "";
    z-index: 0;
}.educational_yield::after {
    bottom: -100px;
    position: absolute;
    background: linear-gradient(220deg, rgb(169,164,185), rgb(206,200,217,0.5));
    content: "";
    width: 400px;
    height: 400px;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.05;
    left: -100px;
}.educational_yield .container {
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}.educational_yield .skill_track {
    gap: 60px;
    display: flex;
    position: relative;
    align-items: center;
}.educational_yield .word_box {
    position: relative;
    flex: 1;
}.educational_yield .word_box::before {
    left: -30px;
    position: absolute;
    transform: translateY(-20px);
    top: 20px;
    width: 4px;
    content: "";
    height: 60%;
    background: linear-gradient(to bottom, rgb(206,200,217), rgb(169,164,185));
}.educational_yield h4 {
    color: #000000;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(0);
    font-size: 36px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
}.educational_yield h4::after {
    position: absolute;
    width: 80px;
    content: "";
    transition: transform 0.4s ease-out;
    background: rgb(206,200,217);
    height: 3px;
    transform: scaleX(0.7);
    left: 0;
    transform-origin: left;
    bottom: -10px;
}.educational_yield .word_box:hover h4::after {
    transform: scaleX(1);
}.educational_yield .word_box > div {
    flex-wrap: wrap;
    gap: 20px;
    display: flex;
}.educational_yield ul {
    min-width: 280px;
    flex: 1;
    padding: 0;
    list-style: none;
    margin: 0;
}.educational_yield li {
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease;
    transform: translateY(0);
}.educational_yield li:hover {
    transform: translateY(-5px);
}.educational_yield li p {
    align-items: flex-start;
    border-left: 3px solid rgb(206,200,217);
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    display: flex;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}.educational_yield li:hover p {
    border-left-width: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.educational_yield li p span:first-child {
    border-radius: 10px;
    display: flex;
    background: #ffffff;
    height: 40px;
    justify-content: center;
    width: 40px;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}.educational_yield li p span:last-child {
    color: #000000;
    line-height: 1.6;
    font-size: 13px;
}.educational_yield svg {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}.educational_yield li:hover svg {
    transform: scale(1.1);
}.educational_yield svg path {
    transition: fill 0.3s ease;
    fill: rgb(206,200,217);
}.educational_yield li:hover svg path {
    fill: rgb(169,164,185);
}.educational_yield .image_panel {
    box-shadow: 
        25px 25px 50px rgba(0, 0, 0, 0.1),
        -15px -15px 30px rgba(255, 255, 255, 0.8);
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    border-radius: 23px;
    max-width: 450px;
    height: auto;
    flex: 0 0 40%;
    object-fit: cover;
    transform: perspective(1000px) rotateY(-5deg);
}.educational_yield .image_panel::before {
    background: linear-gradient(135deg, rgb(206,200,217,0.5), transparent);
    border-radius: 23px;
    inset: -10px;
    opacity: 0.3;
    z-index: -1;
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: absolute;
    content: "";
    transform: scale(0.95);
}.educational_yield .skill_track:hover .image_panel {
    transform: perspective(1000px) rotateY(0deg);
}.educational_yield .skill_track:hover .image_panel::before {
    transform: scale(1);
    opacity: 0.5;
}

@media (max-width: 992px) {.educational_yield {
    padding: 80px 0;
}.educational_yield .skill_track {
    flex-direction: column-reverse;
    gap: 40px;
}.educational_yield .image_panel {
    transform: perspective(1000px) rotateY(0);
    max-width: 100%;
    width: 100%;
}.educational_yield h4 {
    margin-bottom: 30px;
    font-size: calc(36px * 0.85);
}.educational_yield .word_box > div {
    flex-direction: column;
}
}

@media (max-width: 768px) {.educational_yield {
    padding: 60px 0;
}.educational_yield .word_box::before {
    left: -15px;
    height: 50%;
}.educational_yield h4 {
    font-size: calc(36px * 0.75);
}.educational_yield li p {
    padding: 15px;
}.educational_yield li p span:first-child {
    width: 35px;
    height: 35px;
}.educational_yield svg {
    height: 20px;
    width: 20px;
}
}

@media (max-width: 576px) {.educational_yield {
    padding: 40px 0;
}.educational_yield .container {
    padding: 0 15px;
}.educational_yield h4 {
    font-size: calc(36px * 0.65);
}.educational_yield .word_box::before {
    display: none;
}.educational_yield li p {
    padding: 12px;
}.educational_yield li p span:first-child {
    width: 30px;
    height: 30px;
}.educational_yield li p span:last-child {
    font-size: calc(13px * 0.9);
}.educational_yield svg {
    width: 18px;
    height: 18px;
}}

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

.educational_yield .image_panel {
    animation: float 8s ease-in-out infinite;
}header .top_plank {
    color:  #ffffff;
    background: rgb(206,200,217);
}header .top_plank .top_experts div svg, header .top_plank .top_experts div svg path {
    fill: #ffffff;
}header .top_plank .top_experts div span {
    color: #ffffff;
}header .top_plank .top_experts {
    padding: 15px 0 10px 0;
    display: flex;
    font-size: 12px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    line-height: 21px;
    flex-wrap: wrap;
}header .top_plank .top_experts div {
    justify-content: flex-start;
    display: flex;
    margin-right: 24px;
    align-items: center;
}header .top_plank .top_experts div img, header .top_plank .top_experts div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.privacy_encasement {
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(234,231,242) 0%, rgb(206,200,217,0.5) 100%);
    position: relative;
}.privacy_encasement::before {
    height: 100%;
    left: 0;
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 0;
    background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(rgb(206,200,217,0.5), 0.03) 20px,
    rgba(rgb(206,200,217,0.5), 0.03) 40px
  );
}.privacy_encasement::after {
    z-index: 0;
    opacity: 0.1;
    content: "";
    top: -50%;
    right: -50%;
    height: 100%;
    background: radial-gradient(circle, rgb(169,164,185,0.5) 0%, transparent 70%);
    width: 100%;
    position: absolute;
}.privacy_encasement .container {
    z-index: 1;
    margin: 0 auto;
    max-width: 1200px;
    animation: fadeIn 0.8s ease-out forwards;
    position: relative;
}.privacy_encasement h1 {
    animation: slideInLeft 0.6s ease-out 0.2s forwards;
    opacity: 0;
    font-size: 44px;
    font-family: Arial, sans-serif;
    transform: translateX(-5px);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: rgb(206,200,217);
    position: relative;
    font-weight: 700;
    padding-bottom: 1rem;
}.privacy_encasement h1::after {
    width: 80px;
    transform-origin: left;
    bottom: 0;
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, rgb(206,200,217) 0%, rgb(169,164,185) 100%);
    content: "";
    left: 0;
    animation: expandWidth 0.6s ease-out 0.8s forwards;
    transform: scaleX(0);
}.privacy_encasement h2 {
    position: relative;
    font-family: Arial, sans-serif;
    transform: translateY(10px);
    opacity: 0;
    margin: 2.5rem 0 1.5rem;
    padding-left: 20px;
    font-size: 30px;
    color: rgb(169,164,185);
    animation: slideInUp 0.5s ease-out 0.4s forwards;
    font-weight: 600;
}.privacy_encasement h2::before {
    background: rgb(169,164,185);
    border-radius: 2px;
    height: calc(100% - 16px);
    width: 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
}.privacy_encasement h3 {
    margin: 2rem 0 1rem;
    position: relative;
    transform: translateY(10px);
    font-size: calc(30px * 0.85);
    color: rgb(169,164,185);
    animation: slideInUp 0.5s ease-out 0.5s forwards;
    opacity: 0;
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding-left: 15px;
}.privacy_encasement h3::before {
    width: 3px;
    left: 0;
    position: absolute;
    background: rgb(169,164,185,0.5);
    border-radius: 2px;
    top: 8px;
    content: "";
    height: calc(100% - 16px);
}.privacy_encasement h4 {
    transform: translateY(8px);
    margin: 1.5rem 0 1rem;
    font-size: calc(30px * 0.7);
    font-weight: 600;
    font-family: Arial, sans-serif;
    padding-left: 12px;
    animation: slideInUp 0.5s ease-out 0.6s forwards;
    color: #000000;
    opacity: 0;
    position: relative;
}.privacy_encasement h4::before {
    content: "";
    position: absolute;
    width: 2px;
    height: calc(100% - 16px);
    left: 0;
    border-radius: 1px;
    top: 8px;
    background: rgba(0, 0, 0, 0.5);
}.privacy_encasement p {
    line-height: 1.7;
    color: #000000;
    font-size: 17px;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.7s ease-out 0.6s forwards;
    opacity: 0;
    font-family: Arial, sans-serif;
    transform: translateY(8px);
    position: relative;
}.privacy_encasement p strong {
    position: relative;
    color: #000000;
    font-weight: 600;
}.privacy_encasement p strong::after {
    width: 100%;
    background: rgb(169,164,185,0.5);
    content: "";
    bottom: -2px;
    position: absolute;
    left: 0;
    height: 1px;
}.privacy_encasement ul {
    opacity: 0;
    list-style-type: none;
    transform: translateX(10px);
    border-left: 3px solid rgb(206,200,217,0.5);
    margin: 0 0 2rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    background: rgba(rgb(255, 255, 255, 0.5), 0.5);
    animation: fadeSlideIn 0.7s ease-out 0.8s forwards;
    position: relative;
}.privacy_encasement ul::before {
    position: absolute;
    background: linear-gradient(90deg, rgb(169,164,185,0.5) 0%, transparent 10%);
    height: 100%;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.1;
}.privacy_encasement li {
    transform: translateY(8px);
    line-height: 1.6;
    opacity: 0;
    font-size: 17px;
    animation: listItemAppear 0.4s ease-out forwards;
    padding: 0.8rem 0 0.8rem 1.8rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    position: relative;
    animation-delay: calc(0.9s + (0.1s * var(--li-index, 0)));
}.privacy_encasement li:nth-child(1) {
    --li-index: 1;
}.privacy_encasement li:nth-child(2) {
    --li-index: 2;
}.privacy_encasement li:nth-child(3) {
    --li-index: 3;
}.privacy_encasement li::before {
    width: 8px;
    height: 8px;
    top: 1.2rem;
    position: absolute;
    border-radius: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 0 3px rgb(206,200,217,0.5);
    content: "";
    background: rgb(206,200,217);
    left: 0;
}.privacy_encasement span {
    animation: fadeSlideUp 0.7s ease-out 1s forwards;
    font-family: Arial, sans-serif;
    opacity: 0;
    font-size: 17px;
    color: #000000;
    transform: translateY(10px);
    position: relative;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    display: block;
    padding-left: 1rem;
    border-left: 1px dashed rgb(169,164,185,0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(-5px);
    opacity: 1;
  }
}

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

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

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

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (min-width: 768px) {.privacy_encasement {
    padding: 5rem 3rem;
}.privacy_encasement h1 {
    margin-bottom: 3rem;
    font-size: calc(44px * 1.1);
}.privacy_encasement h1::after {
    width: 120px;
    height: 5px;
}.privacy_encasement h2 {
    font-size: calc(30px * 1.05);
    padding-left: 25px;
}.privacy_encasement h2::before {
    width: 6px;
}.privacy_encasement .container {
    padding: 0 2rem;
}.privacy_encasement p,
  .privacy_encasement span,
  .privacy_encasement li {
    line-height: 1.75;
    font-size: calc(17px * 1.05);
}.privacy_encasement ul {
    margin-bottom: 2.5rem;
    padding: 1rem 2rem 1rem 2.5rem;
}
}

@media (min-width: 992px) {.privacy_encasement {
    padding: 6rem 4rem;
}.privacy_encasement h1 {
    margin-bottom: 3.5rem;
    font-size: calc(44px * 1.2);
}.privacy_encasement h1::after {
    width: 150px;
}.privacy_encasement .container {
    padding: 0 4rem;
    max-width: 1400px;
}.privacy_encasement ul {
    padding: 1.5rem 2.5rem 1.5rem 3rem;
    margin: 0 0 3rem 2rem;
}.privacy_encasement h2 {
    margin: 3.5rem 0 2rem;
}.privacy_encasement p,
  .privacy_encasement span {
    margin-bottom: 2rem;
}
}

@media (max-width: 767px) {.privacy_encasement {
    padding: 3rem 1.5rem;
}.privacy_encasement h1 {
    font-size: calc(44px * 0.9);
    padding-bottom: 0.8rem;
}.privacy_encasement h2 {
    font-size: calc(30px * 0.9);
    padding-left: 15px;
}.privacy_encasement h3 {
    padding-left: 12px;
    font-size: calc(30px * 0.75);
}.privacy_encasement h4 {
    font-size: calc(30px * 0.65);
    padding-left: 10px;
}.privacy_encasement p, 
  .privacy_encasement span,
  .privacy_encasement li {
    line-height: 1.6;
    font-size: calc(17px * 0.95);
}.privacy_encasement ul {
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1.2rem;
}.privacy_encasement li {
    padding: 0.6rem 0 0.6rem 1.5rem;
}}.course_instructor {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(234,231,242) 0%, rgba(255,255,255,0.95) 100%);
    padding: 5rem 0;
}.course_instructor::before {
    top: 0;
    position: absolute;
    background: linear-gradient(45deg, rgb(206,200,217,0.5) 0%, transparent 70%);
    opacity: 0.1;
    height: 100%;
    z-index: 0;
    width: 100%;
    transform: translateY(-30%) skewY(-5deg);
    content: "";
    left: 0;
}.course_instructor::after {
    content: "";
    z-index: 0;
    position: absolute;
    height: 60%;
    right: -20%;
    opacity: 0.15;
    transform: rotate(-15deg);
    background: linear-gradient(135deg, rgb(169,164,185,0.5) 0%, transparent 80%);
    bottom: -20%;
    width: 100%;
}.course_instructor .container {
    perspective: 1000px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    padding: 0 1.5rem;
    max-width: 1200px;
}.course_instructor .learner_ratings {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: grid;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 
    0 20px 40px rgba(0,0,0,0.05),
    0 5px 15px rgba(0,0,0,0.03),
    0 0 0 1px rgba(255,255,255,0.1) inset;
    padding: 2.5rem;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    overflow: hidden;
}.course_instructor .learner_ratings::before {
    background: linear-gradient(90deg, 
    rgb(206,200,217) 0%, 
    rgb(169,164,185) 50%, 
    rgb(206,200,217) 100%);
    height: 5px;
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    animation: gradientMove 8s ease-in-out infinite;
    background-size: 200% 100%;
    z-index: 2;
}.course_instructor .learner_ratings > div:first-child {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-content: center;
}.course_instructor .image_panel {
    border-radius: 50%;
    position: relative;
    height: 180px;
    width: 180px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(30px);
    box-shadow: 
    0 10px 25px rgba(0,0,0,0.1),
    0 5px 10px rgba(0,0,0,0.05);
}.course_instructor .image_panel::before {
    background: linear-gradient(
    135deg,
    rgb(169,164,185) 0%,
    transparent 50%,
    rgb(206,200,217) 100%
  );
    opacity: 0.8;
    z-index: -1;
    inset: -8px;
    transform: rotate(-45deg);
    content: "";
    position: absolute;
    animation: rotateGradient 15s linear infinite;
    border-radius: 50%;
}.course_instructor .image_panel::after {
    inset: 0;
    box-shadow: inset 0 0 0 10px rgba(255,255,255,0.1);
    z-index: 1;
    border-radius: 50%;
    position: absolute;
    content: "";
}.course_instructor .learner_ratings > div:nth-child(2) {
    text-align: center;
    position: relative;
    transform: translateZ(20px);
}.course_instructor .name {
    color: #000000;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 23px;
    display: inline-block;
    font-weight: 700;
}.course_instructor .name::after {
    content: "";
    bottom: -8px;
    left: 30%;
    width: 40%;
    transform: translateZ(5px);
    position: absolute;
    height: 3px;
    background: rgb(206,200,217);
}.course_instructor .learner_ratings > div:nth-child(2) > div {
    font-size: calc(16px * 0.9);
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 1rem;
    color: rgb(169,164,185);
}.course_instructor .learner_ratings > div:nth-child(3) {
    transform: translateZ(10px);
    position: relative;
}.course_instructor .professional_exp {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    color: #000000;
    padding-left: 1rem;
}.course_instructor .professional_exp::before {
    content: "";
    position: absolute;
    top: 0;
    background: linear-gradient(
    to bottom,
    rgb(206,200,217) 0%,
    rgb(169,164,185) 100%
  );
    width: 3px;
    bottom: 0;
    left: 0;
    border-radius: 3px;
}.course_instructor .learner_ratings:hover {
    box-shadow: 
    0 30px 60px rgba(0,0,0,0.08),
    0 10px 25px rgba(0,0,0,0.05),
    0 0 0 1px rgba(255,255,255,0.2) inset;
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
}.course_instructor .learner_ratings:hover .image_panel {
    transform: translateZ(40px) scale(1.05);
}

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

@keyframes rotateGradient {
  0% { transform: rotate(-45deg); }
  100% { transform: rotate(315deg); }
}

@media (min-width: 768px) {.course_instructor {
    padding: 7rem 0;
}.course_instructor .learner_ratings {
    grid-gap: 2.5rem;
    padding: 3rem;
    grid-template-rows: auto 1fr;
    grid-template-columns: auto 1fr;
}.course_instructor .learner_ratings > div:first-child {
    grid-row: 1 / span 2;
}.course_instructor .learner_ratings > div:nth-child(2) {
    padding-top: 1.5rem;
    align-self: end;
    text-align: left;
}.course_instructor .name::after {
    left: 0;
    width: 60px;
}.course_instructor .professional_exp {
    padding-left: 1.5rem;
}.course_instructor .professional_exp::before {
    width: 4px;
}
}

@media (min-width: 992px) {.course_instructor .learner_ratings {
    padding: 3.5rem 4rem;
    grid-gap: 3rem;
    grid-template-columns: 250px 1fr;
}.course_instructor .image_panel {
    height: 220px;
    width: 220px;
}.course_instructor .name {
    font-size: calc(23px * 1.1);
}.course_instructor .learner_ratings > div:nth-child(2) > div {
    font-size: 16px;
}.course_instructor .professional_exp {
    font-size: calc(16px * 1.05);
    line-height: 1.9;
}
}

@media (min-width: 1200px) {.course_instructor .container {
    padding: 0 2rem;
}.course_instructor .learner_ratings {
    padding: 4rem 5rem;
    grid-template-columns: 280px 1fr;
}.course_instructor .image_panel {
    width: 240px;
    height: 240px;
}
}

@media (max-width: 767px) {.course_instructor {
    padding: 4rem 0;
}.course_instructor .learner_ratings {
    text-align: center;
    padding: 2rem 1.5rem;
}.course_instructor .image_panel {
    height: 150px;
    width: 150px;
}.course_instructor .professional_exp {
    padding-left: 0;
    padding-top: 1rem;
    text-align: left;
}.course_instructor .professional_exp::before {
    top: 0;
    height: 3px;
    width: 50px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
}}.title_greeting {
    background: linear-gradient(135deg, rgb(234,231,242) 0%, #f0f4f8 100%);
    overflow: hidden;
    align-items: center;
    min-height: 100vh;
    padding: 5rem 2rem;
    position: relative;
    display: flex;
    justify-content: center;
}.title_greeting::before {
    box-shadow: 0 5px 15px rgba(94, 170, 168, 0.3);
    position: absolute;
    top: 0;
    z-index: 5;
    background: linear-gradient(90deg, rgb(206,200,217) 0%, rgb(169,164,185) 100%);
    height: 10px;
    content: '';
    left: 0;
    right: 0;
}.title_greeting::after {
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(94, 170, 168, 0.1) 0%, transparent 70%);
    width: 100%;
    pointer-events: none;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
}.title_greeting .skill_track {
    display: grid;
    position: relative;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    grid-template-columns: 1fr 1fr;
    box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
    transform: perspective(1000px) rotateX(2deg);
    gap: 2rem;
    padding: 3rem;
    width: 100%;
    border-radius: 12px;
    max-width: 1200px;
}.title_greeting h1 {
    transform-origin: left center;
    animation: titleReveal 1s ease-out forwards;
    letter-spacing: -0.5px;
    z-index: 1;
    margin-bottom: 2rem;
    color: #000000;
    grid-column: 1 / -1;
    font-size: calc(44px * 1.1);
    font-weight: 700;
    position: relative;
    text-shadow: 2px 2px 0 rgba(94, 170, 168, 0.1);
}.title_greeting .word_box {
    position: relative;
    flex-direction: column;
    display: flex;
    z-index: 1;
    justify-content: center;
    padding-right: 2rem;
}.title_greeting .edu_first {
    padding: 2.5rem;
    transform: translateY(0);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
}.title_greeting .edu_first:hover {
    transform: translateY(-10px);
}.title_greeting p {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
    line-height: 1.6;
    font-size: calc(17px * 1.1);
    position: relative;
    color: #000000;
    margin-bottom: 2rem;
}.title_greeting svg {
    transform: translateY(0);
    height: 120px;
    width: 120px;
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.1));
    transition: transform 0.4s ease;
    margin: 0 auto 2rem;
    animation: float 6s ease-in-out infinite;
    display: block;
}.title_greeting svg:hover {
    transform: translateY(-10px) scale(1.05);
}.title_greeting svg path {
    transition: fill 0.3s ease;
    fill: rgb(94, 170, 168);
}.title_greeting svg:hover path {
    fill: rgb(70, 150, 148);
}.title_greeting svg text {
    font-weight: 700;
    font-family: Arial, sans-serif;
    transition: fill 0.3s ease;
}.title_greeting svg:hover text {
    fill: rgb(70, 150, 148);
}.title_greeting .reach_support {
    text-align: center;
    display: inline-block;
    opacity: 0;
    font-size: 20px;
    z-index: 2;
    position: relative;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
    overflow: hidden;
    border-radius: 12px;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
    color: #ffffff;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgb(169,164,185) 0%, rgb(206,200,217) 100%);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(94, 170, 168, 0.3);
}.title_greeting .reach_support::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    transform: translateX(-100%) skewX(-15deg);
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    top: 0;
}.title_greeting .reach_support:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(94, 170, 168, 0.4);
}.title_greeting .reach_support:hover::before {
    transform: translateX(100%) skewX(-15deg);
}.title_greeting .image_panel {
    min-height: 400px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    opacity: 0;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.8s forwards;
}.title_greeting .image_panel::before {
    position: absolute;
    width: 100%;
    background: linear-gradient(135deg, rgba(94, 170, 168, 0.3) 0%, transparent 80%);
    top: 0;
    height: 100%;
    content: '';
    z-index: 1;
    left: 0;
}.title_greeting .image_panel:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@keyframes titleReveal {
    0% {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

@media screen and (max-width: 992px) {.title_greeting .skill_track {
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateX(0deg);
    padding: 2rem;
}.title_greeting h1 {
    font-size: calc(44px * 0.9);
    text-align: center;
}.title_greeting .word_box {
    padding-right: 0;
    order: 2;
}.title_greeting .image_panel {
    transform: perspective(1000px) rotateY(0deg);
    min-height: 300px;
    order: 1;
}.title_greeting p {
    font-size: 17px;
    text-align: center;
}.title_greeting .edu_first {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    align-items: center;
}.title_greeting svg {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}.title_greeting .reach_support {
    max-width: 300px;
    width: 100%;
}
}

@media screen and (max-width: 768px) {.title_greeting {
    padding: 4rem 1.5rem;
}.title_greeting .skill_track {
    padding: 1.5rem;
}.title_greeting h1 {
    margin-bottom: 1.5rem;
    font-size: calc(44px * 0.8);
}.title_greeting .edu_first {
    padding: 1.5rem;
}.title_greeting svg {
    height: 80px;
    width: 80px;
}.title_greeting .image_panel {
    min-height: 250px;
}
}

@media screen and (max-width: 576px) {.title_greeting {
    padding: 3rem 1rem;
}.title_greeting .skill_track {
    padding: 1.25rem;
    box-shadow: 10px 10px 30px #d1d9e6, -10px -10px 30px #ffffff;
}.title_greeting h1 {
    margin-bottom: 1rem;
    font-size: calc(44px * 0.7);
}.title_greeting p {
    font-size: calc(17px * 0.9);
    margin-bottom: 1.5rem;
}.title_greeting .edu_first {
    padding: 1.25rem;
}.title_greeting svg {
    margin-bottom: 1rem;
    height: 70px;
    width: 70px;
}.title_greeting .image_panel {
    min-height: 200px;
}.title_greeting .reach_support {
    padding: 0.875rem 1.5rem;
    font-size: calc(20px * 0.9);
}}.reach_out {
    overflow: hidden;
    background: #000000;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
}.reach_out::before {
    background: linear-gradient(135deg, rgb(206,200,217,0.5) 0%, transparent 50%, rgb(169,164,185,0.5) 100%);
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    opacity: 0.2;
    z-index: 1;
    top: 0;
    position: absolute;
}.reach_out::after {
    bottom: 0;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgb(206,200,217), transparent);
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 1px;
}.reach_out .image_panel {
    top: 0;
    z-index: 0;
    mix-blend-mode: luminosity;
    width: 100%;
    opacity: 0.15;
    left: 0;
    height: 100%;
    position: absolute;
    filter: saturate(0.6) contrast(1.3);
}.reach_out .container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    position: relative;
}.reach_out h3 {
    text-shadow: 0 0 10px rgb(206,200,217,0.5), 0 0 20px rgb(206,200,217,0.5);
    text-align: center;
    position: relative;
    letter-spacing: 3px;
    margin-bottom: 60px;
    color: #ffffff;
    font-size: 39px;
    text-transform: uppercase;
    font-weight: 700;
}.reach_out h3::before {
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    left: calc(50% - 100px);
    width: 200px;
    box-shadow: 0 0 10px rgb(206,200,217), 0 0 20px rgb(206,200,217);
    bottom: -20px;
    background: rgb(206,200,217);
    content: "";
    height: 3px;
}.reach_out .inquiry_request {
    flex-wrap: wrap;
    background: rgba(15, 15, 20, 0.8);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        0 0, 
        calc(100% - 20px) 0, 
        100% 20px, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        20px 100%, 
        0 calc(100% - 20px)
    );
    display: flex;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 15px rgb(206,200,217,0.5);
    border: 1px solid rgb(206,200,217,0.5);
}.reach_out .inquiry_request::before {
    position: absolute;
    content: "";
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(206,200,217), transparent);
    top: 0;
    z-index: 3;
    right: 0;
    height: 2px;
}.reach_out .inquiry_request::after {
    right: 0;
    bottom: 0;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(169,164,185), transparent);
    height: 2px;
    left: 0;
    z-index: 3;
}.reach_out .query_box {
    flex: 1 1 60%;
    padding: 50px;
    position: relative;
    z-index: 2;
}.reach_out .query_box h3 {
    font-weight: 600;
    color: rgb(206,200,217);
    text-transform: uppercase;
    font-size: 19px;
    text-align: left;
    letter-spacing: 1px;
    text-shadow: none;
    margin-bottom: 30px;
}.reach_out .query_box h3::before {
    display: none;
}.reach_out .query_box input[type="text"],
.reach_out .query_box textarea {
    width: 100%;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgb(206,200,217,0.5);
    margin-bottom: 20px;
    padding: 16px 20px;
    font-family: Arial, sans-serif;
    border-radius: 0;
    border-left: 3px solid rgb(206,200,217);
    font-size: 17px;
    color: #ffffff;
}.reach_out .query_box input[type="text"]::placeholder,
.reach_out .query_box textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}.reach_out .query_box input[type="text"]:focus,
.reach_out .query_box textarea:focus {
    outline: none;
    border-color: rgb(206,200,217);
    box-shadow: 0 0 15px rgb(206,200,217,0.5);
    background: rgba(0, 0, 0, 0.5);
}.reach_out .query_box textarea {
    min-height: 150px;
    resize: vertical;
}.reach_out .query_box .feedback_reach {
    margin-bottom: 25px;
    align-items: flex-start;
    display: flex;
}.reach_out .query_box .feedback_reach input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.reach_out .query_box .feedback_reach label {
    font-size: 14px;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}.reach_out .query_box .feedback_reach label::before {
    border: 1px solid rgb(206,200,217,0.5);
    position: absolute;
    top: 2px;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    content: "";
    background: rgba(0, 0, 0, 0.3);
    left: 0;
}.reach_out .query_box .feedback_reach input[type="checkbox"]:checked + label::before {
    box-shadow: 0 0 10px rgb(206,200,217,0.5);
    border-color: rgb(206,200,217);
    background: rgb(206,200,217);
}.reach_out .query_box .feedback_reach input[type="checkbox"]:checked + label::after {
    position: absolute;
    width: 6px;
    border-width: 0 2px 2px 0;
    border: solid #ffffff;
    transform: rotate(45deg);
    left: 7px;
    content: "";
    top: 4px;
    height: 12px;
}.reach_out .query_box .feedback_reach a {
    border-bottom: 1px solid rgb(206,200,217,0.5);
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgb(206,200,217);
    text-decoration: none;
}.reach_out .query_box .feedback_reach a:hover {
    border-bottom-color: rgb(169,164,185);
    color: rgb(169,164,185);
    text-shadow: 0 0 5px rgb(169,164,185);
}.reach_out .query_box .reach_support {
    border: none;
    background: rgb(206,200,217);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
    padding: 16px 30px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}.reach_out .query_box .reach_support::before {
    left: -100%;
    height: 100%;
    top: 0;
    transition: all 0.5s ease;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    content: "";
    width: 100%;
}.reach_out .query_box .reach_support:hover {
    box-shadow: 0 0 20px rgb(169,164,185,0.5);
    transform: translateY(-2px);
    background: rgb(169,164,185);
}.reach_out .query_box .reach_support:hover::before {
    left: 100%;
}.reach_out .help_feedback {
    padding: 50px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgb(206,200,217,0.5);
    flex: 1 1 35%;
    position: relative;
}.reach_out .help_feedback h4 {
    margin-bottom: 35px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 19px;
    text-transform: uppercase;
    color: rgb(169,164,185);
    position: relative;
}.reach_out .help_feedback h4::after {
    bottom: -10px;
    content: "";
    left: 0;
    width: 50px;
    position: absolute;
    box-shadow: 0 0 10px rgb(169,164,185);
    height: 2px;
    background: rgb(169,164,185);
}.reach_out .help_feedback .reach_widget {
    list-style: none;
    padding: 0;
    margin: 0;
}.reach_out .help_feedback .reach_widget li {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid rgb(169,164,185,0.5);
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}.reach_out .help_feedback .reach_widget li::after {
    opacity: 0.7;
    content: "";
    height: 100%;
    left: 0;
    width: 3px;
    top: 0;
    position: absolute;
    background: rgb(169,164,185);
}.reach_out .help_feedback .reach_widget li:hover {
    box-shadow: 0 0 15px rgb(169,164,185,0.5);
    border-color: rgb(169,164,185);
    transform: translateX(5px);
}.reach_out .help_feedback .reach_widget li svg {
    height: 22px;
    transition: all 0.3s ease;
    margin-right: 15px;
    width: 22px;
}.reach_out .help_feedback .reach_widget li:hover svg {
    transform: scale(1.1);
}.reach_out .help_feedback .reach_widget li svg path {
    fill: rgb(169,164,185);
    transition: all 0.3s ease;
}.reach_out .help_feedback .reach_widget li:hover svg path {
    filter: drop-shadow(0 0 3px rgb(169,164,185));
    fill: #ffffff;
}.reach_out .help_feedback .reach_widget li span {
    font-size: 17px;
    color: #ffffff;
}.reach_out .help_feedback .reach_widget li a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
}.reach_out .help_feedback .reach_widget li a:hover {
    color: rgb(169,164,185);
    text-shadow: 0 0 5px rgb(169,164,185,0.5);
}

@keyframes flicker {
    0% { opacity: 1; }
    3% { opacity: 0.8; }
    6% { opacity: 1; }
    7% { opacity: 0.9; }
    9% { opacity: 1; }
    11% { opacity: 0.7; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    83% { opacity: 0.8; }
    87% { opacity: 1; }
    100% { opacity: 1; }
}

@media (max-width: 992px) {.reach_out {
    padding: 70px 0;
}.reach_out h3 {
    font-size: calc(39px * 0.8);
}.reach_out .inquiry_request {
    clip-path: polygon(
            0 0, 
            calc(100% - 20px) 0, 
            100% 20px, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
    flex-direction: column;
}.reach_out .help_feedback {
    border-left: none;
    border-top: 1px solid rgb(169,164,185,0.5);
}
}

@media (max-width: 768px) {.reach_out {
    padding: 60px 0;
}.reach_out h3 {
    margin-bottom: 40px;
    font-size: calc(39px * 0.7);
}.reach_out h3::before {
    bottom: -15px;
    width: 150px;
    left: calc(50% - 75px);
}.reach_out .query_box,
    .reach_out .help_feedback {
    padding: 40px 30px;
}.reach_out .query_box input[type="text"],
    .reach_out .query_box textarea {
    padding: 14px 16px;
}.reach_out .help_feedback .reach_widget li {
    padding: 12px;
}
}

@media (max-width: 576px) {.reach_out {
    padding: 50px 0;
}.reach_out h3 {
    font-size: calc(39px * 0.5);
    margin-bottom: 35px;
}.reach_out h3::before {
    width: 100px;
    height: 2px;
    bottom: -12px;
    left: calc(50% - 50px);
}.reach_out .inquiry_request {
    clip-path: polygon(
            0 0, 
            calc(100% - 15px) 0, 
            100% 15px, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
}.reach_out .query_box,
    .reach_out .help_feedback {
    padding: 30px 20px;
}.reach_out .query_box input[type="text"],
    .reach_out .query_box textarea {
    margin-bottom: 15px;
    padding: 12px 15px;
}.reach_out .query_box .feedback_reach label {
    font-size: calc(14px * 0.9);
}.reach_out .query_box .reach_support {
    width: 100%;
    padding: 14px 20px;
}.reach_out .help_feedback .reach_widget li {
    margin-bottom: 15px;
    padding: 10px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}}header {
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgb(234,231,242);
    padding: 0;
    margin-top: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}header::before {
    left: 0;
    position: absolute;
    content: '';
    top: 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(rgb(206,200,217), 0.03) 25%, 
        rgba(rgb(206,200,217), 0.05) 50%,
        rgba(rgb(206,200,217), 0.03) 75%,
        transparent 100%
    );
    width: 100%;
    pointer-events: none;
    height: 100%;
}header .main_skill {
    padding: 1.2rem 2rem;
    display: flex;
    z-index: 2;
    position: relative;
    justify-content: space-between;
    align-items: center;
}header .head_base {
    position: relative;
    flex: 0 0 auto;
    margin-right: 2rem;
    max-width: 180px;
}header .top_prime {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    position: relative;
}header .top_prime:hover {
    transform: translateY(-3px);
}header .top_prime img {
    max-width: 100%;
    height: auto;
    filter: brightness(1.03);
    display: block;
}header .top_prime::before {
    width: 100%;
    height: 10px;
    bottom: -15px;
    left: 0;
    position: absolute;
    border-radius: 10px;
    opacity: 0;
    background: rgb(206,200,217);
    content: '';
    transform: scaleX(0.7);
    transition: all 0.3s ease;
}header .top_prime:hover::before {
    transform: scaleX(1);
    opacity: 0.7;
}header .head_train {
    position: relative;
    list-style: none;
    flex-wrap: nowrap;
    padding: 0;
    display: flex;
    margin: 0;
}header .head_train::after {
    content: '';
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(206,200,217,0.5), 
        transparent
    );
    position: absolute;
    height: 1px;
    bottom: -15px;
}header .nav_mainbar {
    margin: 0;
    position: relative;
}header .nav_mainbar a {
    font-weight: 600;
    font-size: 15px;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    padding: 1rem 1.2rem;
    position: relative;
    color: #000000;
}header .nav_mainbar a::before {
    transform: translateX(-100%);
    height: 3px;
    width: 100%;
    background: rgb(206,200,217);
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transition: transform 0.3s ease;
}header .nav_mainbar a:hover {
    color: rgb(206,200,217);
}header .nav_mainbar a:hover::before {
    transform: translateX(0);
}header .nav_mainbar a::after {
    background: rgb(206,200,217,0.5);
    width: 100%;
    content: '';
    border-radius: 10px;
    top: 0;
    z-index: -1;
    opacity: 0;
    left: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.3s ease;
    position: absolute;
    height: 100%;
}header .nav_mainbar a:hover::after {
    transform: scale(1);
    opacity: 0.15;
}header .main_skill::before {
    height: 100%;
    background: linear-gradient(-90deg, rgb(234,231,242), transparent);
    width: 30%;
    z-index: -1;
    right: 0;
    top: 0;
    content: '';
    position: absolute;
}header .main_skill::after {
    width: 30%;
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgb(234,231,242), transparent);
    left: 0;
    z-index: -1;
    height: 100%;
    top: 0;
}header .head_prime {
    position: relative;
    background: #ffffff;
    z-index: 1;
    padding-top: 2rem;
}

@media (min-width: 1400px) {header .main_skill {
    margin: 0 auto;
    max-width: 1300px;
}header .nav_mainbar a {
    padding: 1rem 1.5rem;
}
}

@media (max-width: 991px) {header .main_skill {
    justify-content: space-between;
    flex-direction: row;
    padding: 1rem;
    flex-wrap: wrap;
}header .head_base {
    margin-bottom: 0;
    margin-right: 0;
}header .head_train {
    margin-top: 0;
    flex-wrap: wrap;
    padding-top: 1rem;
    justify-content: flex-end;
    flex-basis: 100%;
}header .nav_mainbar {
    margin-bottom: 0.5rem;
}header .nav_mainbar a {
    font-size: calc(15px - 1px);
    padding: 0.7rem 1rem;
}
}

@media (max-width: 767px) {header {
    margin-top: 0;
}header .main_skill {
    padding: 1rem 1.5rem;
}header .head_base {
    flex: 0 0 auto;
    max-width: 150px;
}header .head_train {
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin-top: 0.5rem;
    flex-wrap: nowrap;
}header .head_train::-webkit-scrollbar {
    height: 3px;
}header .head_train::-webkit-scrollbar-thumb {
    background: rgb(206,200,217,0.5);
    border-radius: 10px;
}header .nav_mainbar {
    flex: 0 0 auto;
}header .nav_mainbar a {
    white-space: nowrap;
    font-size: calc(15px - 2px);
    padding: 0.6rem 0.8rem;
}header .head_train::after {
    bottom: 0;
}header .top_prime::before {
    display: none;
}}.our_mission {
    padding: 120px 0;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}.our_mission::before {
    position: absolute;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
    top: 0;
    width: 100%;
    content: "";
    left: 0;
    height: 100%;
}.our_mission::after {
    opacity: 0.18;
    width: 100%;
    position: absolute;
    top: -50%;
    background: rgb(206,200,217);
    z-index: 2;
    height: 200%;
    transform: rotate(-45deg);
    right: -50%;
    content: "";
}.our_mission .container {
    z-index: 5;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.our_mission .word_box {
    padding: 50px;
    animation: slide-up 0.8s ease-out forwards;
    border-left: 4px solid rgb(206,200,217);
    transform: translateY(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    background: rgba(23, 23, 35, 0.85);
}.our_mission .word_box::before {
    position: absolute;
    height: 4px;
    top: 0;
    content: "";
    width: 30%;
    right: 0;
    background: rgb(206,200,217);
}.our_mission .word_box::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(206,200,217), transparent);
    bottom: 0;
    width: 60%;
}.our_mission h1 {
    opacity: 0;
    font-size: 48px;
    transform: translateX(-20px);
    position: relative;
    animation: slide-right 0.6s ease-out 0.3s forwards;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
}.our_mission h1::after {
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    left: 0;
    background: rgb(206,200,217);
    position: absolute;
    bottom: -10px;
    width: 80px;
    height: 3px;
    animation: expand 0.6s ease-out 0.9s forwards;
}.our_mission ul {
    list-style: none;
    margin: 0;
    padding: 0;
}.our_mission li {
    margin-bottom: 20px;
}.our_mission li:last-child {
    margin-bottom: 0;
}.our_mission h4 {
    animation: slide-up 0.6s ease-out 0.6s forwards;
    font-size: 18px;
    transform: translateY(15px);
    font-weight: 600;
    color: rgb(169,164,185);
    opacity: 0;
    margin-bottom: 15px;
}.our_mission span {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    transform: translateY(20px);
    max-width: 100%;
    column-gap: 40px;
    opacity: 0;
    font-weight: 400;
    animation: fade-in 0.8s ease-out 0.9s forwards;
    column-count: 1;
    font-family: Arial, sans-serif;
}

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

@keyframes slide-right {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes expand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

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

@media (min-width: 768px) {.our_mission {
    padding: 160px 0;
}.our_mission .word_box {
    margin-left: 5%;
    padding: 60px;
    width: 90%;
}.our_mission h1 {
    margin-bottom: 40px;
    font-size: calc(48px * 1.2);
}.our_mission h1::after {
    width: 120px;
}.our_mission span {
    column-gap: 50px;
    column-count: 2;
}.our_mission::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}
}

@media (min-width: 1200px) {.our_mission {
    padding: 180px 0;
}.our_mission .word_box {
    width: 80%;
    padding: 70px 80px;
    margin-left: 10%;
    transform: perspective(1000px) rotateY(-2deg);
}.our_mission h1 {
    font-size: calc(48px * 1.4);
}.our_mission h1::after {
    height: 4px;
    width: 150px;
}.our_mission span {
    font-size: calc(13px * 1.05);
    column-count: 3;
}
}

@media (hover: hover) {.our_mission .word_box:hover {
    transform: perspective(1000px) rotateY(0);
    transition: transform 0.5s ease-out;
}.our_mission .word_box:hover::before {
    width: 40%;
    transition: width 0.5s ease;
}
}

@media (max-width: 767px) {.our_mission {
    padding: 80px 0;
}.our_mission .word_box {
    padding: 30px 25px;
}.our_mission h1 {
    margin-bottom: 25px;
    font-size: calc(48px * 0.9);
}.our_mission h4 {
    font-size: calc(18px * 0.9);
}.our_mission span {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
}}.pricing_row_item {
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}.pricing_row_item::before {
    bottom: 0;
    z-index: 1;
    top: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.85) 100%);
    content: "";
    left: 0;
    right: 0;
    position: absolute;
}.pricing_row_item .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}.pricing_row_item .discount_grid {
    position: relative;
}.pricing_row_item h2 {
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    color: #ffffff;
    margin-bottom: 20px;
    transform: perspective(1000px) translateZ(30px);
    text-align: center;
    font-weight: 700;
    font-size: 38px;
}.pricing_row_item h2::after {
    position: absolute;
    height: 4px;
    left: 50%;
    width: 80px;
    bottom: -15px;
    background: linear-gradient(90deg, rgb(206,200,217,0.5), rgb(206,200,217), rgb(206,200,217,0.5));
    content: "";
    transform: translateX(-50%);
}.pricing_row_item .rate_choices {
    max-width: 800px;
    line-height: 1.6;
    font-size: calc(18px * 1.1);
    transform: perspective(1000px) translateZ(20px);
    font-weight: 300;
    opacity: 0.9;
    color: #ffffff;
    margin: 0 auto 50px;
    text-align: center;
}.pricing_row_item .fee_board {
    list-style: none;
    display: grid;
    padding: 0;
    gap: 30px;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0;
}.pricing_row_item .fee_board li {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}.pricing_row_item .program_rate {
    position: relative;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    transform-style: preserve-3d;
    height: 100%;
}.pricing_row_item .pricing_fees {
    border: 1px solid rgba(255,255,255,0.1);
    transform-style: preserve-3d;
    padding: 40px 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
    position: relative;
    height: 100%;
}.pricing_row_item .pricing_fees::before {
    transform: scaleX(0.8);
    left: 0;
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(206,200,217), rgb(169,164,185));
    opacity: 0.8;
    transition: transform 0.5s ease, opacity 0.5s ease;
    height: 5px;
}.pricing_row_item .pricing_fees::after {
    border-radius: 50%;
    transition: all 0.6s ease;
    right: 0;
    content: "";
    background: radial-gradient(circle, rgb(206,200,217,0.5) 0%, transparent 70%);
    transform: translate(30%, 30%);
    opacity: 0.2;
    width: 150px;
    z-index: -1;
    position: absolute;
    height: 150px;
    bottom: 0;
}.pricing_row_item .edu_packages {
    transform-style: preserve-3d;
    position: relative;
    transition: transform 0.5s ease;
}.pricing_row_item .edu_packages h4 {
    transform: translateZ(10px);
    position: relative;
    font-size: calc(20px * 1.2);
    color: #ffffff;
    margin: 0 0 25px;
    padding-bottom: 15px;
    font-weight: 600;
}.pricing_row_item .edu_packages h4::after {
    height: 2px;
    position: absolute;
    background: rgb(169,164,185);
    left: 0;
    content: "";
    transition: width 0.4s ease;
    width: 50px;
    bottom: 0;
}.pricing_row_item .edu_packages p {
    font-weight: 300;
    margin: 0 0 30px;
    line-height: 1.7;
    transform: translateZ(5px);
    max-height: 250px;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow-y: auto;
    opacity: 0.8;
    font-size: 18px;
    padding-right: 5px;
    color: #ffffff;
}.pricing_row_item .edu_packages p::-webkit-scrollbar {
    width: 4px;
}.pricing_row_item .edu_packages p::-webkit-scrollbar-thumb {
    background: rgb(206,200,217,0.5);
    border-radius: 10px;
}.pricing_row_item .edu_packages p::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}.pricing_row_item .price_plan {
    padding: 10px 5px;
    color: #ffffff;
    transition: all 0.4s ease;
    font-size: calc(20px * 1.5);
    display: inline-block;
    transform: translateZ(15px);
    font-weight: 700;
    position: relative;
}.pricing_row_item .price_plan::before {
    opacity: 0.6;
    bottom: 5px;
    left: 0;
    width: 100%;
    transform: scaleX(0.5);
    transform-origin: center;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(169,164,185), transparent);
    transition: transform 0.5s ease, opacity 0.5s ease;
    content: "";
    position: absolute;
}.pricing_row_item .program_rate:hover .pricing_fees {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.15);
}.pricing_row_item .program_rate:hover .pricing_fees::before {
    opacity: 1;
    transform: scaleX(1);
}.pricing_row_item .program_rate:hover .pricing_fees::after {
    opacity: 0.4;
    transform: translate(20%, 20%) scale(1.2);
}.pricing_row_item .program_rate:hover .edu_packages h4::after {
    width: 80px;
}.pricing_row_item .program_rate:hover .price_plan {
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateZ(25px) scale(1.05);
}.pricing_row_item .program_rate:hover .price_plan::before {
    transform: scaleX(0.8);
    opacity: 1;
}

@media (max-width: 1200px) {.pricing_row_item {
    padding: 80px 0;
}.pricing_row_item .fee_board {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
}

@media (max-width: 991px) {.pricing_row_item {
    padding: 70px 0;
}.pricing_row_item h2 {
    font-size: calc(38px * 0.9);
}.pricing_row_item .rate_choices {
    margin-bottom: 40px;
    font-size: 18px;
}.pricing_row_item .fee_board {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}.pricing_row_item .pricing_fees {
    padding: 30px 25px;
}
}

@media (max-width: 767px) {.pricing_row_item {
    padding: 60px 0;
}.pricing_row_item h2 {
    margin-bottom: 15px;
    font-size: calc(38px * 0.8);
}.pricing_row_item .rate_choices {
    margin-bottom: 30px;
}.pricing_row_item .fee_board {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 450px;
}.pricing_row_item .edu_packages h4 {
    font-size: 20px;
}.pricing_row_item .price_plan {
    font-size: calc(20px * 1.3);
}
}

@media (max-width: 480px) {.pricing_row_item {
    padding: 50px 0;
}.pricing_row_item .pricing_fees {
    padding: 25px 20px;
}.pricing_row_item .edu_packages p {
    line-height: 1.6;
    font-size: calc(18px * 0.95);
    max-height: 200px;
}.pricing_row_item .price_plan {
    font-size: calc(20px * 1.2);
}
}

@media (hover: none) {.pricing_row_item .pricing_fees {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.1) !important;
}.pricing_row_item .pricing_fees::before {
    transform: scaleX(0.9);
    opacity: 0.9;
}.pricing_row_item .edu_packages h4::after {
    width: 60px;
}}.thanksSpot {
    font-family: Arial, sans-serif;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(234,231,242) 0%, rgb(206,200,217,0.5) 100%);
}.thanksSpot::before {
    right: -50px;
    filter: blur(60px);
    border-radius: 50%;
    position: absolute;
    top: -50px;
    z-index: 0;
    animation: float 15s infinite ease-in-out;
    content: "";
    background: rgb(169,164,185,0.5);
    height: 200px;
    width: 200px;
}.thanksSpot::after {
    background: linear-gradient(90deg, transparent, rgb(206,200,217), transparent);
    left: 0;
    content: "";
    height: 5px;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}.thanksSpot .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
}.thanksSpot h2 {
    margin-bottom: 40px;
    color: #000000;
    max-width: 800px;
    opacity: 1;
    animation: slideInUp 0.8s ease-out forwards;
    transform: translateY(0);
    font-size: 34px;
    position: relative;
    line-height: 1.4;
    font-weight: 700;
}.thanksSpot h2::after {
    left: 0;
    content: "";
    background: rgb(206,200,217);
    bottom: -15px;
    width: 60px;
    transform: scaleX(1);
    position: absolute;
    transform-origin: left;
    transition: transform 0.5s ease;
    height: 3px;
}.thanksSpot .skill_track {
    padding: 40px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    border-left: 4px solid rgb(206,200,217);
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transform: translateY(20px);
    background: #ffffff;
}.thanksSpot .skill_track::before {
    left: 0;
    background-size: 20px 20px;
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, transparent 49.5%, rgb(169,164,185,0.5) 49.5%, rgb(169,164,185,0.5) 50.5%, transparent 50.5%);
    opacity: 0.05;
    z-index: -1;
    content: "";
    top: 0;
    position: absolute;
}.thanksSpot ul {
    list-style: none;
    margin: 0;
    padding: 0;
}.thanksSpot li {
    position: relative;
    padding-left: 25px;
}.thanksSpot li::before {
    transform: rotate(45deg);
    position: absolute;
    transition: transform 0.3s ease;
    height: 8px;
    left: 0;
    top: 10px;
    width: 8px;
    background: rgb(206,200,217);
    content: "";
}.thanksSpot li:hover::before {
    transform: rotate(225deg);
}.thanksSpot span {
    color: #000000;
    line-height: 1.8;
    font-size: 17px;
    display: block;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(15px);
    }
    50% {
        transform: translateY(0) translateX(30px);
    }
    75% {
        transform: translateY(15px) translateX(15px);
    }
}

@media (max-width: 991px) {.thanksSpot {
    padding: 80px 0;
}.thanksSpot h2 {
    max-width: 100%;
    font-size: calc(34px * 0.9);
}.thanksSpot .skill_track {
    padding: 30px;
}
}

@media (max-width: 767px) {.thanksSpot {
    padding: 60px 0;
}.thanksSpot h2 {
    font-size: calc(34px * 0.8);
    margin-bottom: 30px;
}.thanksSpot h2::after {
    width: 40px;
}.thanksSpot .skill_track {
    padding: 25px 20px;
}.thanksSpot span {
    line-height: 1.7;
    font-size: calc(17px * 0.95);
}
}

@media (max-width: 480px) {.thanksSpot {
    padding: 40px 0;
}.thanksSpot h2 {
    font-size: calc(34px * 0.7);
    margin-bottom: 25px;
}.thanksSpot .skill_track {
    padding: 20px 15px;
    border-left-width: 3px;
}.thanksSpot li {
    padding-left: 20px;
}.thanksSpot li::before {
    top: 8px;
    height: 6px;
    width: 6px;
}.thanksSpot span {
    font-size: calc(17px * 0.9);
    line-height: 1.6;
}}.course_summary {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(234,231,242) 0%, rgba(255,255,255,0.9) 100%);
}.course_summary::before {
    content: "";
    background: linear-gradient(145deg, rgb(169,164,185,0.5) 0%, rgb(206,200,217,0.5) 100%);
    width: 40%;
    top: -5%;
    right: -10%;
    height: 60%;
    transform: rotate(-15deg);
    z-index: 0;
    filter: blur(60px);
    opacity: 0.5;
    position: absolute;
}.course_summary::after {
    background: linear-gradient(145deg, rgb(206,200,217,0.5) 0%, rgb(169,164,185) 20%, transparent 100%);
    opacity: 0.3;
    position: absolute;
    filter: blur(60px);
    content: "";
    z-index: 0;
    height: 60%;
    width: 40%;
    left: -10%;
    transform: rotate(15deg);
    bottom: -5%;
}.course_summary .container {
    padding: 0 20px;
    max-width: 1200px;
    z-index: 1;
    position: relative;
    margin: 0 auto;
}.course_summary h2 {
    position: relative;
    animation: slideInTitle 0.8s ease-out 0.2s forwards;
    font-size: 30px;
    margin-bottom: 3rem;
    opacity: 0;
    text-align: left;
    font-weight: 700;
    color: #000000;
    transform: translateX(-20px);
}.course_summary h2::after {
    height: 4px;
    transform-origin: left;
    content: "";
    background: linear-gradient(90deg, rgb(206,200,217), rgb(169,164,185));
    margin-top: 15px;
    width: 80px;
    animation: expandLine 0.6s ease-out 1s forwards;
    display: block;
    transform: scaleX(0);
}.course_summary .lesson_plan {
    gap: 3rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    display: grid;
    grid-template-columns: 1fr;
    transform: translateY(20px);
}.course_summary .image_panel {
    transform: perspective(1000px) rotateY(-2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 300px;
    width: 100%;
    transition: transform 0.5s ease-out;
    position: relative;
    overflow: hidden;
}.course_summary .image_panel::before {
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    content: "";
    position: absolute;
    left: 0;
}.course_summary .image_panel::after {
    height: 120%;
    background: linear-gradient(135deg, rgb(169,164,185,0.5) 0%, transparent 70%);
    animation: shimmer 8s infinite alternate ease-in-out;
    width: 120%;
    top: -10%;
    z-index: 2;
    left: -10%;
    position: absolute;
    mix-blend-mode: overlay;
    opacity: 0.5;
    content: "";
}.course_summary .word_box {
    backdrop-filter: blur(5px);
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    padding: 2rem;
}.course_summary .word_box::before {
    transform: scaleX(0);
    content: "";
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, rgb(206,200,217), rgb(169,164,185));
    transform-origin: left;
    width: 100%;
    animation: expandLine 0.8s ease-out 1.2s forwards;
    left: 0;
    height: 5px;
}.course_summary .description {
    position: relative;
    font-size: 12px;
    margin-bottom: 1.5rem;
    color: #000000;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    line-height: 1.8;
    transform: translateY(15px);
}.course_summary .description:first-of-type::first-letter {
    color: rgb(206,200,217);
    line-height: 0.8;
    font-weight: 700;
    font-size: 1.8em;
    float: left;
    padding-right: 0.1em;
}.course_summary .description:last-of-type {
    animation-delay: 1s;
    margin-bottom: 0;
}

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

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

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

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translate(-10%, -10%) scale(1.1);
    }
    100% {
        transform: translate(5%, 5%) scale(1);
    }
}

@media (min-width: 768px) {.course_summary {
    padding: 8rem 0;
}.course_summary h2 {
    font-size: calc(30px * 1.2);
    max-width: 80%;
}.course_summary .lesson_plan {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}.course_summary .image_panel {
    transform: perspective(1000px) rotateY(-3deg);
    height: 500px;
}.course_summary .image_panel:hover {
    transform: perspective(1000px) rotateY(0deg);
}.course_summary .word_box {
    padding: 3rem;
}
}

@media (min-width: 992px) {.course_summary {
    padding: 10rem 0;
}.course_summary h2 {
    font-size: calc(30px * 1.4);
    max-width: 70%;
}.course_summary .lesson_plan {
    gap: 6rem;
}.course_summary .image_panel {
    height: 600px;
}.course_summary .description {
    line-height: 1.9;
    font-size: calc(12px * 1.05);
}
}

@media (max-width: 767px) {.course_summary h2 {
    text-align: center;
    font-size: calc(30px * 0.9);
}.course_summary h2::after {
    margin: 15px auto 0;
}.course_summary .image_panel {
    order: -1;
}.course_summary .word_box {
    padding: 1.5rem;
}.course_summary .description {
    font-size: calc(12px * 0.95);
    line-height: 1.7;
}
}