﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
.footer_clients_7280 {
    flex: 0 0 auto;
}
svg {
    width: 30px;
    height: 30px;
}
.container {
    margin: auto;
    width: 1150px;
    max-width: 100%;
}

.head_sitebar_2569 {
    flex: 1 0 auto;
}
header,footer {
    width: 100%;
}
.inner-container_6057 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Roboto, sans-serif;
    color: #000000;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}
.greeting_page_0185 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: rgb(236,242,239);
}

.greeting_page_0185::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgb(169,199,166,0.5) 0%, transparent 30%),
        linear-gradient(225deg, rgb(187,123,171,0.5) 0%, transparent 30%);
    z-index: 2;
    opacity: 0.7;
}

.greeting_page_0185 .learn_track_1374 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 3;
}

.greeting_page_0185 .page_entry_7068 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.greeting_page_0185 .learn_team_4938 {
    height: 100%;
    display: flex;
    animation: sidePanCarousel 30s linear infinite;
}

.greeting_page_0185 .start_begin_4927 {
    min-width: 100vw;
    height: 100%;
    position: relative;
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.greeting_page_0185 .start_begin_4927::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgb(236,242,239) 0%,
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: 2;
}

.greeting_page_0185 .start_begin_4927 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    animation: slowZoom 15s alternate infinite ease-in-out;
}

.greeting_page_0185 .text_dock_2758 {
    position: relative;
    width: 50%;
    padding: 3rem;
    margin: 0 0 5% 10%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 21px 21px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: slideUp 1s ease-out;
    z-index: 4;
}

.greeting_page_0185 .text_dock_2758::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgb(169,199,166), rgb(187,123,171));
}

.greeting_page_0185 .text_dock_2758 h2 {
    font-size: 37px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
}

.greeting_page_0185 .text_dock_2758 p {
    font-size: 13px;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
}

.greeting_page_0185 .text_dock_2758 .request_map_9638 {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, rgb(169,199,166), rgb(187,123,171));
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.greeting_page_0185 .text_dock_2758 .request_map_9638::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonGlow 3s infinite;
}

.greeting_page_0185 .text_dock_2758 .request_map_9638:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes sidePanCarousel {
    0% {
        transform: translateX(0);
    }
    16% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-100%);
    }
    36% {
        transform: translateX(-100%);
    }
    40% {
        transform: translateX(-200%);
    }
    56% {
        transform: translateX(-200%);
    }
    60% {
        transform: translateX(-300%);
    }
    76% {
        transform: translateX(-300%);
    }
    80% {
        transform: translateX(-400%);
    }
    96% {
        transform: translateX(-400%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes buttonGlow {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .greeting_page_0185 .text_dock_2758 {
        width: 60%;
        margin-left: 5%;
    }
}

@media screen and (max-width: 992px) {
    .greeting_page_0185 .text_dock_2758 {
        width: 70%;
    }
    
    .greeting_page_0185 .text_dock_2758 h2 {
        font-size: calc(37px * 0.9);
    }
    
    .greeting_page_0185 .text_dock_2758 p {
        font-size: calc(13px * 0.95);
    }
}

@media screen and (max-width: 768px) {
    .greeting_page_0185 .learn_track_1374 {
        align-items: center;
    }
    
    .greeting_page_0185 .text_dock_2758 {
        width: 85%;
        margin: 0 auto;
        padding: 2rem;
        border-radius: 21px;
    }
    
    .greeting_page_0185 .text_dock_2758 h2 {
        font-size: calc(37px * 0.8);
    }
}

@media screen and (max-width: 576px) {
    .greeting_page_0185 .text_dock_2758 {
        width: 90%;
        padding: 1.5rem;
    }
    
    .greeting_page_0185 .text_dock_2758 h2 {
        font-size: calc(37px * 0.7);
        margin-bottom: 1rem;
    }
    
    .greeting_page_0185 .text_dock_2758 p {
        font-size: calc(13px * 0.9);
        margin-bottom: 1.5rem;
    }
    
    .greeting_page_0185 .text_dock_2758 .request_map_9638 {
        padding: 0.8rem 2rem;
        font-size: calc(20px * 0.9);
    }
}.test_drive_3589 {
    position: relative;
    padding: 140px 0;
    background: rgb(236,242,239);
    overflow: hidden;
}

.test_drive_3589::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 200%;
    top: -50%;
    right: 0;
    background: rgb(169,199,166,0.5);
    opacity: 0.1;
    transform: skewX(-20deg);
    z-index: 1;
}

.test_drive_3589::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 200%;
    top: -50%;
    right: 15%;
    background: rgb(187,123,171,0.5);
    opacity: 0.1;
    transform: skewX(-20deg);
    z-index: 1;
}

.test_drive_3589 .learn_track_1374 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    z-index: 10;
}

.test_drive_3589 .container p {
    flex: 0 0 60%;
    margin: 0;
    padding-right: 60px;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 5;
}

.test_drive_3589 .request_map_9638 {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: #ffffff;
    color: #000000;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px 0 60px 60px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 5;
}

.test_drive_3589 .request_map_9638::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(169,199,166);
    top: 0;
    right: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.test_drive_3589 .request_map_9638:hover {
    transform: translateY(-5px);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.test_drive_3589 .request_map_9638:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 60px 0 60px 60px;
}

.test_drive_3589 .container p::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 6px;
    background: rgb(169,199,166);
    bottom: -20px;
    left: 0;
    border-radius: 3px;
}

.test_drive_3589 .learn_track_1374::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgb(169,199,166,0.5);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    left: -100px;
    filter: blur(40px);
    z-index: -1;
}

.test_drive_3589 .learn_track_1374::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(169,199,166);
    border-radius: 50%;
    bottom: -30px;
    right: 40px;
}

@media (max-width: 991px) {
    .test_drive_3589 {
        padding: 120px 0;
    }
    
    .test_drive_3589 .container p {
        font-size: calc(23px * 1.2);
        padding-right: 40px;
    }
    
    .test_drive_3589 .request_map_9638 {
        height: 100px;
    }
    
    .test_drive_3589 .container p::after {
        width: 50px;
        height: 5px;
    }
}

@media (max-width: 767px) {
    .test_drive_3589 {
        padding: 90px 0;
    }
    
    .test_drive_3589 .learn_track_1374 {
        flex-direction: column;
    }
    
    .test_drive_3589 .container p {
        flex: none;
        width: 100%;
        font-size: 23px;
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .test_drive_3589 .request_map_9638 {
        flex: none;
        width: 100%;
        height: 80px;
    }
    
    .test_drive_3589 .learn_track_1374::after {
        right: auto;
        left: 40px;
    }
}

@media (max-width: 480px) {
    .test_drive_3589 {
        padding: 70px 0;
    }
    
    .test_drive_3589 .container p {
        font-size: calc(12px * 1.2);
        margin-bottom: 40px;
    }
    
    .test_drive_3589 .request_map_9638 {
        height: 70px;
        font-size: calc(19px * 0.9);
        border-radius: 35px 0 35px 35px;
    }
    
    .test_drive_3589 .request_map_9638:hover::before {
        border-radius: 35px 0 35px 35px;
    }
    
    .test_drive_3589 .container p::after {
        width: 40px;
        height: 4px;
        bottom: -15px;
    }
    
    .test_drive_3589 .learn_track_1374::after {
        width: 8px;
        height: 8px;
        bottom: -25px;
        left: 30px;
    }
}.newsletter_8146 {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(169,199,166,0.5) 0%, rgb(236,242,239) 100%);
}

.newsletter_8146::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgb(187,123,171,0.5) 45%, rgb(187,123,171,0.5) 55%, transparent 55%);
    transform: scale(1.5);
    z-index: 1;
}

.newsletter_8146 .learn_track_1374 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter_8146 .request_form_2348 {
    position: relative;
    display: flex;
    flex-direction: column;
    transform: skewX(-10deg);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 3rem;
    background: linear-gradient(110deg, #ffffff 0%, rgb(236,242,239) 100%);
    max-width: 600px;
    margin-left: auto;
}

.newsletter_8146 .request_form_2348::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60%;
    height: 10px;
    background: rgb(187,123,171);
    transform: skewX(15deg);
}

.newsletter_8146 .request_form_2348::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 60%;
    height: 10px;
    background: rgb(169,199,166);
    transform: skewX(15deg);
}

.newsletter_8146 h3 {
    transform: skewX(10deg);
    font-size: 21px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.newsletter_8146 h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: rgb(169,199,166);
    transform: skewY(45deg);
}

.newsletter_8146 .input_holder {
    transform: skewX(10deg);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.newsletter_8146 input[type="email"] {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgb(187,123,171,0.5);
    border-radius: 10px;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: #000000;
    background: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    transform: translateX(-10px);
}

.newsletter_8146 input[type="email"]:focus {
    outline: none;
    border-color: rgb(169,199,166);
    box-shadow: 0 0 10px rgb(169,199,166,0.5);
    transform: translateX(0);
}

.newsletter_8146 input[type="submit"] {
    align-self: flex-end;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(169,199,166) 0%, rgb(187,123,171) 100%);
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.newsletter_8146 input[type="submit"]:hover {
    background: linear-gradient(90deg, rgb(187,123,171) 0%, rgb(169,199,166) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .newsletter_8146 {
        padding: 3rem 1rem;
    }
    
    .newsletter_8146 .request_form_2348 {
        transform: skewX(-5deg);
        padding: 2rem;
        max-width: 100%;
    }
    
    .newsletter_8146 h3 {
        transform: skewX(5deg);
        font-size: calc(21px * 0.9);
    }
    
    .newsletter_8146 .input_holder {
        transform: skewX(5deg);
    }
    
    .newsletter_8146 input[type="email"] {
        padding: 0.7rem 1rem;
    }
    
    .newsletter_8146 input[type="submit"] {
        padding: 0.7rem 1.5rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .newsletter_8146 {
        padding: 2rem 0.8rem;
    }
    
    .newsletter_8146 .request_form_2348 {
        transform: none;
        padding: 1.5rem;
    }
    
    .newsletter_8146 h3 {
        transform: none;
        font-size: calc(21px * 0.8);
        text-align: center;
        padding-left: 0;
    }
    
    .newsletter_8146 h3::before {
        left: 50%;
        top: -10px;
        height: 5px;
        width: 50px;
        transform: translateX(-50%);
    }
    
    .newsletter_8146 .input_holder {
        transform: none;
    }
    
    .newsletter_8146 input[type="email"] {
        transform: none;
    }
}.education_framework_0965 {
    position: relative;
    background: linear-gradient(165deg, rgb(236,242,239) 0%, rgb(169,199,166,0.5) 120%);
    padding: 160px 0 140px;
    overflow: visible;
}

.education_framework_0965::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 70% 20%, rgb(187,123,171,0.5) 0%, transparent 70%);
    opacity: 0.2;
    z-index: 1;
}

.education_framework_0965 .learn_track_1374 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.education_framework_0965 .text_dock_2758 {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.education_framework_0965 .text_dock_2758 h2 {
    font-size: 29px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    padding: 35px 45px;
    background: rgb(169,199,166,0.5);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    position: relative;
    width: 40%;
    order: 1;
    transform: translateY(-30px) rotate(-2deg);
    box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.education_framework_0965 .text_dock_2758 p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    position: relative;
    width: 50%;
    order: 2;
    transform: translateY(30px) rotate(2deg);
    box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.education_framework_0965 .text_dock_2758::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: -40px;
    left: 30%;
    border: 2px solid rgb(169,199,166,0.5);
    border-radius: 14px;
    transform: rotate(-15deg);
    opacity: 0.1;
    z-index: 1;
    animation: float-rotate 20s infinite ease-in-out alternate;
}

.education_framework_0965 .text_dock_2758::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 3px;
    bottom: -20px;
    left: 10%;
    background: linear-gradient(90deg, transparent, rgb(169,199,166), transparent);
    opacity: 0.2;
    z-index: 2;
}

.education_framework_0965 .text_dock_2758 h2::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: -25px;
    left: -25px;
    background: rgb(169,199,166);
    transform: rotate(45deg);
    opacity: 0.2;
}

.education_framework_0965 .text_dock_2758 h2::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: 15px;
    left: 10%;
    background: #ffffff;
    opacity: 0.3;
}

.education_framework_0965 .text_dock_2758 p::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    z-index: -1;
}

.education_framework_0965 .text_dock_2758 p::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: -15px;
    right: 40px;
    background: rgb(187,123,171);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 5;
    animation: pulse-fade 4s infinite ease-in-out;
}

.education_framework_0965::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 50px;
    left: 0;
    background: linear-gradient(90deg, rgb(169,199,166,0.5), transparent, rgb(169,199,166,0.5));
    opacity: 0.2;
    z-index: 1;
}

.education_framework_0965 .learn_track_1374::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 10%;
    background: rgb(169,199,166);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(50px);
    animation: pulse-subtle 10s infinite alternate;
}

.education_framework_0965 .learn_track_1374::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: 20%;
    left: -40px;
    background: rgb(187,123,171);
    border-radius: 14px;
    opacity: 0.05;
    filter: blur(20px);
    transform: rotate(15deg);
    animation: float-rotate 15s infinite ease-in-out alternate;
}

@keyframes float-rotate {
    0% {
        transform: rotate(-15deg) translateY(0);
    }
    100% {
        transform: rotate(15deg) translateY(-30px);
    }
}

@keyframes pulse-fade {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.08;
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1200px) {
    .education_framework_0965 .text_dock_2758 h2 {
        width: 45%;
    }
    
    .education_framework_0965 .text_dock_2758 p {
        width: 45%;
    }
    
    .education_framework_0965 .text_dock_2758::before {
        left: 25%;
    }
}

@media screen and (max-width: 992px) {
    .education_framework_0965 {
        padding: 140px 0 120px;
    }
    
    .education_framework_0965 .text_dock_2758 h2 {
        padding: 30px 35px;
        transform: translateY(-20px) rotate(-1deg);
    }
    
    .education_framework_0965 .text_dock_2758 p {
        padding: 30px 35px;
        transform: translateY(20px) rotate(1deg);
    }
    
    .education_framework_0965 .text_dock_2758::before {
        width: 150px;
        height: 150px;
        top: -30px;
    }
    
    .education_framework_0965 .learn_track_1374::before {
        width: 120px;
        height: 120px;
        bottom: -60px;
    }
}

@media screen and (max-width: 768px) {
    .education_framework_0965 {
        padding: 120px 0 100px;
        overflow: hidden;
    }
    
    .education_framework_0965 .text_dock_2758 {
        flex-direction: column;
        align-items: center;
    }
    
    .education_framework_0965 .text_dock_2758 h2 {
        font-size: calc(29px * 0.9);
        width: 90%;
        order: 1;
        transform: none;
        margin-bottom: 20px;
    }
    
    .education_framework_0965 .text_dock_2758 p {
        width: 90%;
        order: 2;
        transform: none;
    }
    
    .education_framework_0965 .text_dock_2758::before,
    .education_framework_0965 .text_dock_2758::after,
    .education_framework_0965::after,
    .education_framework_0965 .learn_track_1374::before,
    .education_framework_0965 .learn_track_1374::after {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .education_framework_0965 {
        padding: 100px 0 80px;
    }
    
    .education_framework_0965 .text_dock_2758 h2 {
        font-size: calc(29px * 0.8);
        width: 100%;
        padding: 25px;
    }
    
    .education_framework_0965 .text_dock_2758 p {
        font-size: calc(16px * 0.9);
        width: 100%;
        padding: 25px;
    }
}.reach_out_4598 {
    padding: 100px 0;
    background: rgb(236,242,239);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.reach_out_4598 .container {
    width: 90%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
}

.reach_out_4598 .container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgb(169,199,166);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
    animation: rotate 10s linear infinite;
}

.reach_out_4598 .container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgb(187,123,171);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
    animation: rotate 10s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.reach_out_4598 h3 {
    font-size: 41px;
    font-weight: 700;
    color: rgb(169,199,166);
    margin-bottom: 20px;
    text-align: center;
}

.reach_out_4598 .query_block_5176 {
    font-size: 12px;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.reach_out_4598 form input[type="text"],
.reach_out_4598 form input[type="email"] {
    border: 2px solid rgb(169,199,166);
    border-radius: 10px;
    padding: 15px;
    font-size: 12px;
    color: #000000;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #ffffff;
    width: calc(100% - 30px);
}

.reach_out_4598 form input[type="text"]:focus,
.reach_out_4598 form input[type="email"]:focus {
    border-color: rgb(187,123,171);
    box-shadow: 0 0 10px rgb(187,123,171,0.5);
    outline: none;
}
.reach_out_4598 form input {
    width: 100%;
    margin-bottom: 20px;
}

.reach_out_4598 form .request_map_9638 {
    background: rgb(169,199,166);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: calc(100% - 30px);
}

.reach_out_4598 form .request_map_9638:hover {
    background: rgb(187,123,171);
    transform: scale(1.05);
}

.reach_out_4598 .query_reach_1892 {
    display: flex;
    align-items: center;
    gap: 10px;
    grid-column: 1 / -1;
    justify-content: center;
    margin: 14px 0;
}

.reach_out_4598 .query_reach_1892 input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: rgb(169,199,166);
}

.reach_out_4598 .query_reach_1892 label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #000000;
}

.reach_out_4598 .query_reach_1892 a {
    color: rgb(169,199,166);
    text-decoration: underline;
    transition: color 0.3s;
}

.reach_out_4598 .query_reach_1892 a:hover {
    color: rgb(187,123,171);
}

@media only screen and (max-width: 800px) {
    .reach_out_4598 {
        padding: 60px 0;
    }

    .reach_out_4598 .container {
        padding: 30px;
    }

    .reach_out_4598 h3 {
        font-size: 34px;
    }

    .reach_out_4598 form {
        grid-template-columns: 1fr;
    }

    .reach_out_4598 form input[type="text"],
    .reach_out_4598 form input[type="email"],
    .reach_out_4598 form .request_map_9638 {
        width: 100%;
    }

    .reach_out_4598 .query_reach_1892 {
        justify-content: flex-start;
    }
}header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(169,199,166,0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 75%
    );
    animation: shimmer 8s infinite linear;
    pointer-events: none;
}

header:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgb(187,123,171) 0%,
        rgb(169,199,166) 50%,
        rgb(187,123,171) 100%
    );
    filter: blur(1px);
    opacity: 0.8;
}

header .head_base_7412 {
    position: relative;
    overflow: hidden;
}

header .head_base_7412:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgb(169,199,166,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgb(187,123,171,0.5) 0%, transparent 40%);
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 25px;
    position: relative;
}

header .container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    opacity: 0.5;
}

header .head_pagewrap_3245 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .main_edu_4698 {
    display: flex;
    gap: 35px;
    position: relative;
    align-items: center;
}

header .main_edu_4698:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 35px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scaleX(0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: all 0.4s ease;
}

header .main_edu_4698:hover:before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
}

header .main_sitewrap_9324 {
    color: #ffffff;
    text-decoration: none;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

header .main_sitewrap_9324:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #ffffff,
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: right;
}

header .main_sitewrap_9324:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgb(169,199,166,0.5),
        transparent
    );
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease;
    z-index: -1;
}

header .main_sitewrap_9324:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
}

header .main_sitewrap_9324:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

header .main_sitewrap_9324:hover:after {
    opacity: 0.15;
    transform: scaleY(1);
}

header .header_start_9301 {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 5px;
    transition: all 0.4s ease;
}

header .header_start_9301:before {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    background: radial-gradient(
        circle,
        rgb(169,199,166,0.5) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

header .header_start_9301:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid transparent;
    border-image: linear-gradient(
        to right,
        transparent,
        rgb(169,199,166),
        transparent
    ) 1;
    opacity: 0;
    transition: all 0.3s ease;
}

header .header_start_9301:hover:before {
    opacity: 0.15;
    animation: pulse 2s infinite;
}

header .header_start_9301:hover:after {
    opacity: 0.7;
}

header .header_start_9301 svg {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 3px rgb(169,199,166,0.5));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header .header_start_9301:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px rgb(169,199,166));
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes glowEffect {
    0%, 100% {
        opacity: 0.7;
        filter: blur(1px);
    }
    50% {
        opacity: 1;
        filter: blur(1.5px);
    }
}

@media (max-width: 991px) {
    header .container {
        padding: 14px 20px;
    }
    
    header .main_edu_4698 {
        gap: 20px;
    }
    
    header .header_start_9301 svg {
        height: 38px;
    }
}

@media (max-width: 767px) {
    header .main_edu_4698 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: rgb(169,199,166);
        background: linear-gradient(
            135deg,
            rgb(169,199,166) 0%,
            rgb(169,199,166,0.5) 100%
        );
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 80px 30px 30px;
        gap: 20px;
        z-index: 1001;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }
    
    header .main_edu_4698:before {
        display: none;
    }
    
    header .menu.active {
        right: 0;
    }
    
    header .main_sitewrap_9324 {
        padding: 12px 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    header .main_sitewrap_9324:last-child {
        border-bottom: none;
    }
    
    header .header_start_9301 {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 12px 15px;
    }
    
    header .header_start_9301 svg {
        height: 35px;
    }
}.privacy_silo_3048 {
    background-color: rgb(236,242,239);
    color: #000000;
    font-family: Roboto, sans-serif;
    padding: 40px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}
.privacy_silo_3048 h1, .privacy_silo_3048 h2, .privacy_silo_3048 h3, .privacy_silo_3048 h4, .privacy_silo_3048 h5, .privacy_silo_3048 h6 {
    color: rgb(169,199,166);
    margin-bottom: 20px;
}
.privacy_silo_3048 h1 {
    font-size: 48px;
    font-weight: 700;
    border-bottom: 2px solid rgb(169,199,166);
    padding-bottom: 10px;
}
.privacy_silo_3048 h2 {
    font-size: 38px;
    font-weight: 600;
}
.privacy_silo_3048 h3 {
    font-size: 1.5em;
    font-weight: 600;
}
.privacy_silo_3048 h4 {
    font-size: 1.25em;
    font-weight: 400;
}
.privacy_silo_3048 h5 {
    font-size: 19px;
    font-weight: 400;
}
.privacy_silo_3048 h6 {
    font-size: 22px;
    font-weight: 300;
}
.privacy_silo_3048 ul, .privacy_silo_3048 ol {
    margin-left: 20px;
    padding-left: 20px;
    list-style: none;
}
.privacy_silo_3048 ul li, .privacy_silo_3048 ol li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.privacy_silo_3048 ul li:before {
    content: '•';
    color: rgb(187,123,171);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}
.privacy_silo_3048 p, .privacy_silo_3048 span, .privacy_silo_3048 div {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000000;
}
@media only screen and (max-width: 800px) {
    .privacy_silo_3048 {
        padding: 20px 10px;
    }
    .privacy_silo_3048 h1 {
        font-size: calc(19px - 10%);
    }
    .privacy_silo_3048 h2 {
        font-size: calc(19px - 10%);
    }
    .privacy_silo_3048 p, .privacy_silo_3048 span, .privacy_silo_3048 div {
        font-size: calc(16px - 10%);
    }
}
.privacy_silo_3048 a {
    color: rgb(169,199,166);
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}
.privacy_silo_3048 a:hover {
    color: rgb(187,123,171);
}
.privacy_silo_3048 blockquote {
    background-color: rgb(169,199,166,0.5);
    border-left: 5px solid rgb(169,199,166);
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
}
.privacy_silo_3048 code {
    background-color: rgb(187,123,171,0.5);
    border-radius: 10px;
    padding: 2px 6px;
    font-family: monospace;
}
.privacy_silo_3048 hr {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.5);
    margin: 30px 0;
}.client_testimonials_1247 {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(to right, rgb(236,242,239), #ffffff);
    overflow: hidden;
}

.client_testimonials_1247::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(169,199,166,0.5) 0,
        rgb(169,199,166,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.2;
    z-index: 0;
}

.client_testimonials_1247 .learn_track_1374 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.client_testimonials_1247 h4 {
    font-size: 46px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
    transform: skewY(0);
    display: block;
}

.client_testimonials_1247 h4::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 10px;
    background: rgb(169,199,166);
    bottom: -20px;
    left: -10%;
    transform: skewX(0);
}

.client_testimonials_1247 .learning_stories_3167 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
}

.client_testimonials_1247 .alumni_feedback_4157 {
    width: calc(33.333% - 40px);
    margin: 0 20px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.client_testimonials_1247 .alumni_feedback_4157:hover {
    transform: translateY(-15px);
}

.client_testimonials_1247 .alumni_feedback_4157::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: rgb(169,199,166);
    transition: height 0.5s ease;
}

.client_testimonials_1247 .alumni_feedback_4157:hover::before {
    height: 100%;
}

.client_testimonials_1247 .alumni_feedback_4157::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(169,199,166);
    transition: width 0.5s ease 0.2s;
}

.client_testimonials_1247 .alumni_feedback_4157:hover::after {
    width: 100%;
}

.client_testimonials_1247 .img_background_5902 {
    width: 80px;
    height: 80px;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transform: rotate(-3deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 rgb(187,123,171,0.5);
}

.client_testimonials_1247 .alumni_feedback_4157:hover .img_background_5902 {
    transform: rotate(0deg);
    box-shadow: 10px 10px 0 rgb(187,123,171,0.5);
}

.client_testimonials_1247 .alumni_feedback_4157 span {
    font-size: calc(14px * 1.1);
    font-weight: 600;
    color: #000000;
    margin: 10px 0;
    position: relative;
    padding-left: 15px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.client_testimonials_1247 .alumni_feedback_4157:hover span {
    transform: translateX(10px);
    color: rgb(169,199,166);
}

.client_testimonials_1247 .alumni_feedback_4157 p {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    position: relative;
    padding-left: 15px;
    border-left: 1px dashed rgb(187,123,171,0.5);
    margin-top: 15px;
    transition: border-left-color 0.3s ease;
}

.client_testimonials_1247 .alumni_feedback_4157:hover p {
    border-left-color: rgb(169,199,166);
}

.client_testimonials_1247 .alumni_feedback_4157:nth-child(3n+1) {
    transform: translateY(20px);
}

.client_testimonials_1247 .alumni_feedback_4157:nth-child(3n+2) {
    transform: translateY(40px);
}

.client_testimonials_1247 .alumni_feedback_4157:nth-child(3n+1):hover {
    transform: translateY(5px);
}

.client_testimonials_1247 .alumni_feedback_4157:nth-child(3n+2):hover {
    transform: translateY(25px);
}

@media (max-width: 1024px) {
    .client_testimonials_1247 .alumni_feedback_4157 {
        width: calc(50% - 40px);
    }
    
    .client_testimonials_1247 .alumni_feedback_4157:nth-child(2n+1) {
        transform: translateY(20px);
    }
    
    .client_testimonials_1247 .alumni_feedback_4157:nth-child(2n+2) {
        transform: translateY(40px);
    }
    
    .client_testimonials_1247 .alumni_feedback_4157:nth-child(2n+1):hover {
        transform: translateY(5px);
    }
    
    .client_testimonials_1247 .alumni_feedback_4157:nth-child(2n+2):hover {
        transform: translateY(25px);
    }
    
    .client_testimonials_1247 h4 {
        font-size: calc(46px * 0.9);
    }
}

@media (max-width: 768px) {
    .client_testimonials_1247 {
        padding: 70px 0 90px;
    }
    
    .client_testimonials_1247 .alumni_feedback_4157 {
        width: 100%;
        margin: 0 0 50px;
        transform: translateY(0) !important;
    }
    
    .client_testimonials_1247 .alumni_feedback_4157:hover {
        transform: translateY(-10px) !important;
    }
    
    .client_testimonials_1247 h4 {
        font-size: calc(46px * 0.8);
    }
    
    .client_testimonials_1247 h4::after {
        transform: skewX(0);
        width: 80%;
        left: 10%;
    }
}.meet_us_1409 {
    position: relative;
    background-color: rgb(236,242,239);
    padding: 120px 0;
    overflow: hidden;
}

.meet_us_1409::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgb(169,199,166,0.5);
    opacity: 0.15;
}

.meet_us_1409::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgb(187,123,171,0.5);
    opacity: 0.15;
}

.meet_us_1409 .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.meet_us_1409 .learn_track_1374 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: center;
}

.meet_us_1409 .class_pro_1204 {
    grid-column: span 4;
    position: relative;
}

.meet_us_1409 .img_background_5902 {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.2;
    border-radius: 11px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), 
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.meet_us_1409 .img_background_5902:hover {
    transform: translateY(-10px);
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.12), 
                -25px -25px 70px rgba(255, 255, 255, 0.9);
}

.meet_us_1409 .diff_block_8450 {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 11px;
    margin-top: -50px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.05), 
                -15px -15px 30px rgba(255, 255, 255, 0.6);
}

.meet_us_1409 .guide_approach_3048 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000000;
    text-align: center;
}

.meet_us_1409 .learn_study_6981 {
    font-size: 17px;
    color: rgb(169,199,166);
    text-align: center;
    font-weight: 600;
}

.meet_us_1409 .text_dock_2758 {
    grid-column: span 8;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 11px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.06), 
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    position: relative;
}

.meet_us_1409 .creds_block_9720 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #000000;
    font-weight: 600;
    font-size: 19px;
}

.meet_us_1409 .creds_block_9720 svg {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    fill: rgb(169,199,166);
}

.meet_us_1409 .creds_block_9720 svg path {
    fill: rgb(169,199,166);
}

.meet_us_1409 h2 {
    font-size: 31px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 700;
    position: relative;
}

.meet_us_1409 h2::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    width: 30px;
    height: 3px;
    background-color: rgb(169,199,166);
    transform: translateY(-50%);
}

.meet_us_1409 p {
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    position: relative;
}

@media (max-width: 992px) {
    .meet_us_1409 {
        padding: 80px 0;
    }
    
    .meet_us_1409 .learn_track_1374 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .meet_us_1409 .class_pro_1204 {
        grid-column: span 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .meet_us_1409 .text_dock_2758 {
        grid-column: span 1;
        padding: 40px 30px;
    }
    
    .meet_us_1409 h2::before {
        left: -30px;
        width: 20px;
    }
}

@media (max-width: 768px) {
    .meet_us_1409 {
        padding: 60px 0;
    }
    
    .meet_us_1409 .diff_block_8450 {
        padding: 20px;
        margin-top: -40px;
    }
    
    .meet_us_1409 .text_dock_2758 {
        padding: 30px 25px;
    }
    
    .meet_us_1409 h2 {
        font-size: calc(31px * 0.9);
        margin-bottom: 20px;
    }
    
    .meet_us_1409 h2::before {
        display: none;
    }
    
    .meet_us_1409 p {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .meet_us_1409 {
        padding: 40px 0;
    }
    
    .meet_us_1409 .diff_block_8450 {
        margin-top: -30px;
        padding: 15px;
    }
    
    .meet_us_1409 .guide_approach_3048 {
        font-size: calc(24px * 0.9);
    }
    
    .meet_us_1409 .learn_study_6981 {
        font-size: calc(17px * 0.9);
    }
    
    .meet_us_1409 .text_dock_2758 {
        padding: 25px 20px;
    }
    
    .meet_us_1409 h2 {
        font-size: calc(31px * 0.8);
        margin-bottom: 15px;
    }
    
    .meet_us_1409 p {
        font-size: calc(17px * 0.9);
        line-height: 1.6;
        padding-left: 10px;
    }
    
    .meet_us_1409 .creds_block_9720 {
        font-size: calc(19px * 0.9);
        margin-bottom: 15px;
    }
    
    .meet_us_1409 .creds_block_9720 svg {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
}.advantages_overview_6904 {
    background: linear-gradient(135deg, rgb(169,199,166) 0%, #000000 100%);
    padding: 110px 30px;
    position: relative;
    overflow: hidden;
}

.advantages_overview_6904::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgb(169,199,166,0.5) 0%, transparent 50%);
    opacity: 0.4;
    z-index: 1;
}

.advantages_overview_6904::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgb(187,123,171,0.5) 0%, transparent 50%);
    opacity: 0.4;
    z-index: 1;
}

.advantages_overview_6904 .expert_edge_3674 {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.advantages_overview_6904 h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    letter-spacing: 2px;
}

.advantages_overview_6904 h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
}

.advantages_overview_6904 .training_edge_2078 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.advantages_overview_6904 .training_growth_9654 {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    position: relative;
    padding: 40px 30px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.advantages_overview_6904 .training_growth_9654::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(187,123,171);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s ease;
    z-index: -1;
}

.advantages_overview_6904 .training_growth_9654:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantages_overview_6904 .training_growth_9654:hover::before {
    opacity: 0.1;
    transform: scaleY(1);
}

.advantages_overview_6904 .key_pros_7263 {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.advantages_overview_6904 .key_pros_7263::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.5s ease;
}

.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 {
    transform: scale(1.1);
}

.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263::before {
    opacity: 0.4;
    transform: scale(1.2);
}

.advantages_overview_6904 .key_pros_7263 svg {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.advantages_overview_6904 .key_pros_7263 svg path,
.advantages_overview_6904 .key_pros_7263 svg rect,
.advantages_overview_6904 .key_pros_7263 svg circle,
.advantages_overview_6904 .key_pros_7263 svg line,
.advantages_overview_6904 .key_pros_7263 svg polyline,
.advantages_overview_6904 .key_pros_7263 svg polygon {
    fill: #ffffff;
    transition: all 0.3s ease;
}

.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 svg path,
.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 svg rect,
.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 svg circle,
.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 svg line,
.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 svg polyline,
.advantages_overview_6904 .training_growth_9654:hover .key_pros_7263 svg polygon {
    fill: #ffffff;
}

.advantages_overview_6904 .training_growth_9654 p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.advantages_overview_6904 .training_growth_9654:hover p {
    color: #ffffff;
}

.advantages_overview_6904 .training_growth_9654:nth-child(3n+1) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.advantages_overview_6904 .training_growth_9654:nth-child(3n+2) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.advantages_overview_6904 .training_growth_9654:nth-child(3n) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.advantages_overview_6904 .training_edge_2078:has(.training_growth_9654:nth-child(3n+2):last-child),
.advantages_overview_6904 .training_edge_2078:has(.training_growth_9654:nth-child(3n+1):last-child) {
    justify-content: flex-start;
}

.advantages_overview_6904 .training_edge_2078:has(.training_growth_9654:nth-child(3n):last-child) {
    justify-content: flex-start;
}

.advantages_overview_6904 .training_edge_2078:has(.training_growth_9654:nth-child(odd):last-child) .training_growth_9654:last-child {
    margin-right: auto;
    margin-left: auto;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.advantages_overview_6904 .training_growth_9654:nth-child(3n+1) {
    animation: floatAnimation 8s ease infinite;
    animation-delay: 0s;
}

.advantages_overview_6904 .training_growth_9654:nth-child(3n+2) {
    animation: floatAnimation 8s ease infinite;
    animation-delay: 2s;
}

.advantages_overview_6904 .training_growth_9654:nth-child(3n) {
    animation: floatAnimation 8s ease infinite;
    animation-delay: 4s;
}

.advantages_overview_6904 .training_growth_9654:hover {
    animation-play-state: paused;
}

@media (max-width: 1200px) {
    .advantages_overview_6904 {
        padding: 90px 25px;
    }
    
    .advantages_overview_6904 h2 {
        margin-bottom: 60px;
    }
    
    .advantages_overview_6904 .training_growth_9654 {
        min-width: 250px;
    }
}

@media (max-width: 991px) {
    .advantages_overview_6904 {
        padding: 70px 20px;
    }
    
    .advantages_overview_6904 h2 {
        margin-bottom: 50px;
    }
    
    .advantages_overview_6904 .training_edge_2078 {
        gap: 20px;
    }
    
    .advantages_overview_6904 .training_growth_9654 {
        flex: 1 1 calc(50% - 20px);
        min-width: 0;
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .advantages_overview_6904 {
        padding: 50px 15px;
    }
    
    .advantages_overview_6904 h2 {
        font-size: calc(30px * 0.9);
        margin-bottom: 40px;
    }
    
    .advantages_overview_6904 .training_edge_2078 {
        flex-direction: column;
    }
    
    .advantages_overview_6904 .training_growth_9654 {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .advantages_overview_6904 .key_pros_7263 {
        width: 70px;
        height: 70px;
    }
}.thanksPage_2704 {
    background-color: rgb(169,199,166,0.5);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.thanksPage_2704::before, .thanksPage_2704::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgb(169,199,166,0.5);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}
.thanksPage_2704::before {
    top: -50px;
    left: -50px;
}
.thanksPage_2704::after {
    bottom: -50px;
    right: -50px;
}
.thanksPage_2704 .container {
    background-color: #ffffff;
    border-radius: 11px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.thanksPage_2704 .container h2 {
    font-family: Roboto, sans-serif;
    font-size: 47px;
    color: rgb(169,199,166);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid rgb(187,123,171);
    padding-bottom: 10px;
}
.thanksPage_2704 .container p {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
    text-align: center;
}
.thanksPage_2704 .container .info-block {
    background-color: rgb(236,242,239);
    border: 1px solid rgb(187,123,171,0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.thanksPage_2704 .container .info-block h5 {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid rgb(169,199,166,0.5);
    padding-bottom: 5px;
}
.thanksPage_2704 .container .info-block p {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    color: #000000;
    margin-bottom: 0;
    text-align: left;
}
@media only screen and (max-width: 800px) {
    .thanksPage_2704 {
        padding: 40px 10px;
    }
    .thanksPage_2704 .container {
        padding: 30px 20px;
    }
    .thanksPage_2704 .container h2 {
        font-size: calc(47px - 8px);
    }
    .thanksPage_2704 .container p {
        font-size: calc(15px - 2px);
    }
    .thanksPage_2704::before, .thanksPage_2704::after {
        width: 70px;
        height: 70px;
    }
}
.find_contact_6537 {
    position: relative;
    background: rgb(236,242,239);
    padding: 80px 0;
    overflow: hidden;
}

.find_contact_6537::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(169,199,166,0.5) 0%, transparent 40%, rgb(187,123,171,0.5) 100%);
    z-index: 1;
    opacity: 0.4;
}

.find_contact_6537::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(169,199,166,0.5) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}

.find_contact_6537 .container {
    position: relative;
    z-index: 2;
}

.find_contact_6537 .connect_now_5034 {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.find_contact_6537 .connect_now_5034::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgb(169,199,166) 0%, rgb(187,123,171) 100%);
    border-radius: 50%;
    top: -75px;
    right: -75px;
    filter: blur(30px);
    opacity: 0.4;
    z-index: -1;
}

.find_contact_6537 .connect_now_5034::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgb(169,199,166) 50%, transparent 100%);
    bottom: 0;
    left: 0;
    animation: slideLine 8s infinite;
    z-index: -1;
}

@keyframes slideLine {
    0% {
        transform: translateX(-100%);
        opacity: 0.7;
    }
    50% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0.7;
    }
}

.find_contact_6537 h2 {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.find_contact_6537 h2::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, rgb(169,199,166) 0%, rgb(187,123,171) 100%);
    bottom: -10px;
    left: 0;
    border-radius: 10px;
}

.find_contact_6537 p {
    color: #000000;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.find_contact_6537 .msg_form_9831 {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.find_contact_6537 .msg_form_9831::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(169,199,166,0.5), transparent);
}

.find_contact_6537 .query_form_8561 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    z-index: 1;
}

.find_contact_6537 .query_form_8561::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 135deg, rgb(169,199,166) 0%, transparent 60%, rgb(187,123,171) 120%, rgb(169,199,166) 180%);
    opacity: 0.2;
    transition: all 0.4s ease;
    z-index: -1;
    transform: scale(0.85);
}

.find_contact_6537 .query_form_8561::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    border-top-color: rgb(169,199,166);
    border-right-color: rgb(187,123,171);
    opacity: 0.3;
    transition: all 0.4s ease;
    z-index: -1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.find_contact_6537 .query_form_8561:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 
                0 0 15px rgb(169,199,166,0.5),
                0 0 30px rgb(187,123,171,0.5);
}

.find_contact_6537 .query_form_8561:hover::before {
    opacity: 0.6;
    transform: scale(1);
}

.find_contact_6537 .query_form_8561:hover::after {
    opacity: 0.8;
    border-width: 3px;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
}

.find_contact_6537 .query_form_8561 svg {
    width: 28px;
    height: 28px;
    fill: rgb(169,199,166);
    stroke: rgb(169,199,166);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 3px rgb(169,199,166,0.5));
}

.find_contact_6537 .query_form_8561:hover svg {
    fill: #ffffff;
    stroke: #ffffff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgb(169,199,166));
}

.find_contact_6537 .query_form_8561 svg path {
    fill: rgb(169,199,166);
    stroke: rgb(169,199,166);
    transition: all 0.4s ease;
}

.find_contact_6537 .query_form_8561:hover svg path {
    fill: #ffffff;
    stroke: #ffffff;
}

.find_contact_6537 p svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    fill: rgb(169,199,166);
    stroke: rgb(169,199,166);
    transition: all 0.3s ease;
}

.find_contact_6537 p:hover svg {
    fill: rgb(187,123,171);
    stroke: rgb(187,123,171);
}

.find_contact_6537 p svg path {
    fill: rgb(169,199,166);
    stroke: rgb(169,199,166);
    transition: all 0.3s ease;
}

.find_contact_6537 p:hover svg path {
    fill: rgb(187,123,171);
    stroke: rgb(187,123,171);
}

@media (max-width: 992px) {
    .find_contact_6537 {
        padding: 60px 0;
    }
    
    .find_contact_6537 .connect_now_5034 {
        padding: 30px;
    }
    
    .find_contact_6537 h2 {
        font-size: calc(30px * 0.9);
    }
    
    .find_contact_6537 .msg_form_9831 {
        gap: 30px;
    }
    
    .find_contact_6537 .query_form_8561 {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .find_contact_6537 {
        padding: 50px 0;
    }
    
    .find_contact_6537 .connect_now_5034 {
        padding: 25px;
    }
    
    .find_contact_6537 h2 {
        font-size: calc(30px * 0.8);
        margin-bottom: 20px;
    }
    
    .find_contact_6537 p {
        font-size: calc(12px * 0.95);
        margin-bottom: 20px;
    }
    
    .find_contact_6537 .msg_form_9831 {
        gap: 25px;
    }
    
    .find_contact_6537 .query_form_8561 {
        width: 60px;
        height: 60px;
    }
    
    .find_contact_6537 .query_form_8561 svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .find_contact_6537 {
        padding: 40px 0;
    }
    
    .find_contact_6537 .connect_now_5034 {
        padding: 20px;
        border-radius: calc(18px * 0.8);
    }
    
    .find_contact_6537 h2 {
        font-size: calc(30px * 0.7);
        margin-bottom: 15px;
    }
    
    .find_contact_6537 h2::after {
        height: 3px;
        bottom: -8px;
    }
    
    .find_contact_6537 p {
        font-size: calc(12px * 0.9);
        margin-bottom: 15px;
    }
    
    .find_contact_6537 .msg_form_9831 {
        gap: 15px;
        margin-top: 25px;
    }
    
    .find_contact_6537 .query_form_8561 {
        width: 50px;
        height: 50px;
    }
    
    .find_contact_6537 .query_form_8561 svg {
        width: 20px;
        height: 20px;
    }
    
    .find_contact_6537 .query_form_8561::after {
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border-width: 1px;
    }
    
    .find_contact_6537 .query_form_8561:hover::after {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-width: 2px;
    }
}

@media (prefers-reduced-motion) {
    .find_contact_6537::after,
    .find_contact_6537 .connect_now_5034::after {
        animation: none;
    }
}.course_instructor_2563 {
    position: relative;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, rgb(236,242,239) 0%, rgb(187,123,171,0.5) 100%);
    overflow: hidden;
}

.course_instructor_2563::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(169,199,166,0.5) 0px,
        rgb(169,199,166,0.5) 2px,
        transparent 2px,
        transparent 10px
    );
    opacity: 0.2;
    z-index: 1;
}

.course_instructor_2563::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.1;
    z-index: 1;
}

.course_instructor_2563 .alumni_feedback_4157 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.course_instructor_2563 .img_background_5902 {
    width: 200px;
    height: 250px;
    border-radius: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    margin-bottom: -50px;
    z-index: 3;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.course_instructor_2563 .img_background_5902:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.course_instructor_2563 .work_exp_7613 {
    width: 100%;
    padding: 70px 30px 30px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.course_instructor_2563 .work_exp_7613::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(169,199,166);
    transform: translateZ(-20px);
    z-index: -1;
}

.course_instructor_2563 .name {
    font-size: 29px;
    font-weight: 700;
    color: rgb(169,199,166);
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
}

.course_instructor_2563 .name::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgb(187,123,171);
}

.course_instructor_2563 .work_exp_7613 > div:nth-child(2) {
    font-size: 19px;
    font-weight: 600;
    color: rgb(187,123,171);
    margin: 20px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.course_instructor_2563 .exp_projects_9051 {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    font-style: italic;
    line-height: 1.8;
    text-align: center;
    position: relative;
    margin-top: 20px;
    padding-top: 30px;
    width: 100%;
    border-top: 1px solid rgb(236,242,239);
}

.course_instructor_2563 .exp_projects_9051::before,
.course_instructor_2563 .exp_projects_9051::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgb(187,123,171,0.5);
    border-radius: 50%;
}

.course_instructor_2563 .exp_projects_9051::before {
    top: -15px;
    left: 50%;
    transform: translateX(-20px);
}

.course_instructor_2563 .exp_projects_9051::after {
    top: -15px;
    left: 50%;
    transform: translateX(-10px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.course_instructor_2563 .work_exp_7613:hover {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .course_instructor_2563 {
        padding: 4rem 1rem 3rem;
    }
    
    .course_instructor_2563 .img_background_5902 {
        width: 150px;
        height: 180px;
        margin-bottom: -40px;
    }
    
    .course_instructor_2563 .work_exp_7613 {
        padding: 60px 20px 20px;
    }
}.course_offering_6195 {
    position: relative;
    background-color: rgb(236,242,239);
    padding: 100px 0;
    overflow: hidden;
}

.course_offering_6195::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(169,199,166,0.5) 0%, transparent 50%, rgb(187,123,171,0.5) 100%);
    z-index: 1;
}

.course_offering_6195::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(187,123,171,0.5) 0%, transparent 80%);
    z-index: 1;
    animation: rotate 20s linear infinite;
}

.course_offering_6195 .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course_offering_6195 .learn_coding_3052 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

.course_offering_6195 .text_dock_2758 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.course_offering_6195 .text_dock_2758 h2 {
    grid-column: 1 / -1;
    font-size: 29px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid rgb(169,199,166);
}

.course_offering_6195 .study_hack_5076 {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course_offering_6195 .study_hack_5076:first-of-type {
    position: relative;
    overflow: hidden;
}

.course_offering_6195 .study_hack_5076:first-of-type::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background-color: rgb(169,199,166,0.5);
    border-radius: 50%;
    z-index: -1;
}

.course_offering_6195 .study_hack_5076:last-of-type {
    position: relative;
    overflow: hidden;
}

.course_offering_6195 .study_hack_5076:last-of-type::before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: rgb(187,123,171,0.5);
    border-radius: 50%;
    z-index: -1;
}

.course_offering_6195 .study_hack_5076:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course_offering_6195 .img_background_5902 {
    margin: 40px 0;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}

.course_offering_6195 .img_background_5902::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    z-index: 1;
}

.course_offering_6195 .img_background_5902::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10px;
    background: rgb(169,199,166);
    filter: blur(10px);
    opacity: 0.7;
    border-radius: 50%;
    animation: glow 4s infinite alternate;
}

.course_offering_6195 .img_background_5902:hover {
    transform: perspective(1000px) rotateX(0deg);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        width: 90%;
    }
    100% {
        opacity: 0.8;
        width: 95%;
    }
}

@media screen and (max-width: 1024px) {
    .course_offering_6195 {
        padding: 80px 0;
    }
    
    .course_offering_6195 .img_background_5902 {
        height: 350px;
        margin: 30px 0;
    }
}

@media screen and (max-width: 768px) {
    .course_offering_6195 {
        padding: 60px 0;
    }
    
    .course_offering_6195 .text_dock_2758 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course_offering_6195 .study_hack_5076 {
        padding: 25px;
    }
    
    .course_offering_6195 .img_background_5902 {
        height: 300px;
        margin: 25px 0;
    }
    
    .course_offering_6195 h2 {
        font-size: calc(29px * 0.9);
    }
}

@media screen and (max-width: 480px) {
    .course_offering_6195 {
        padding: 40px 0;
    }
    
    .course_offering_6195 .learn_coding_3052 {
        gap: 30px;
    }
    
    .course_offering_6195 .text_dock_2758 h2 {
        font-size: calc(29px * 0.8);
        padding-left: 15px;
    }
    
    .course_offering_6195 .study_hack_5076 {
        padding: 20px;
        font-size: calc(16px * 0.95);
    }
    
    .course_offering_6195 .img_background_5902 {
        height: 250px;
        margin: 20px 0;
        transform: perspective(1000px) rotateX(0deg);
    }
}.course_demographic_7402 {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(140deg, #f5f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.course_demographic_7402::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgb(169,199,166,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(187,123,171,0.5) 0%, transparent 40%);
    opacity: 0.15;
    z-index: 1;
}

.course_demographic_7402::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(169,199,166,0.5) 49%, transparent 51%),
        linear-gradient(135deg, transparent 48%, rgb(187,123,171,0.5) 49%, transparent 51%);
    background-size: 60px 60px;
    opacity: 0.05;
    z-index: 2;
}

.course_demographic_7402 .learn_track_1374 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 10;
    text-align: center;
}

.course_demographic_7402 h3 {
    position: relative;
    display: inline-block;
    font-size: 31px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 70px;
    padding: 0 20px;
}

.course_demographic_7402 h3::before,
.course_demographic_7402 h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgb(169,199,166), rgb(187,123,171));
    top: 50%;
    transform: translateY(-50%);
}

.course_demographic_7402 h3::before {
    left: -60px;
}

.course_demographic_7402 h3::after {
    right: -60px;
}

.course_demographic_7402 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.course_demographic_7402 ul li {
    position: relative;
    width: calc(33.333% - 27px);
    min-width: 280px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 21px;
    box-shadow: 
        0 15px 35px -10px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    overflow: hidden;
}

.course_demographic_7402 ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(169,199,166), rgb(187,123,171));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.course_demographic_7402 ul li::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(169,199,166,0.5);
    opacity: 0.1;
    transition: all 0.6s ease;
    z-index: -1;
}

.course_demographic_7402 ul li:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08);
}

.course_demographic_7402 ul li:hover::before {
    opacity: 1;
}

.course_demographic_7402 ul li:hover::after {
    transform: scale(6);
    opacity: 0.05;
}

.course_demographic_7402 ul li svg {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    transition: all 0.5s ease;
    position: relative;
}

.course_demographic_7402 ul li:hover svg {
    transform: translateY(-5px) scale(1.1);
}

.course_demographic_7402 ul li svg path {
    fill: rgb(169,199,166);
    transition: fill 0.5s ease;
}

.course_demographic_7402 ul li:hover svg path {
    fill: rgb(187,123,171);
}

@keyframes floatingAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course_demographic_7402 ul li {
    opacity: 0;
    animation: slideInBottom 0.6s forwards;
}

.course_demographic_7402 ul li:nth-child(1) { animation-delay: 0.1s; }
.course_demographic_7402 ul li:nth-child(2) { animation-delay: 0.25s; }
.course_demographic_7402 ul li:nth-child(3) { animation-delay: 0.4s; }
.course_demographic_7402 ul li:nth-child(4) { animation-delay: 0.55s; }
.course_demographic_7402 ul li:nth-child(5) { animation-delay: 0.7s; }
.course_demographic_7402 ul li:nth-child(6) { animation-delay: 0.85s; }

.course_demographic_7402 ul li:nth-child(3n+1) {
    animation: slideInBottom 0.6s forwards, floatingAnimation 8s ease-in-out infinite;
    animation-delay: 0.1s, 2s;
}

.course_demographic_7402 ul li:nth-child(3n+2) {
    animation: slideInBottom 0.6s forwards, floatingAnimation 8s ease-in-out infinite 1s reverse;
    animation-delay: 0.25s, 3s;
}

.course_demographic_7402 ul li:nth-child(3n+3) {
    animation: slideInBottom 0.6s forwards, floatingAnimation 8s ease-in-out infinite 2s;
    animation-delay: 0.4s, 4s;
}

@media (max-width: 992px) {
    .course_demographic_7402 {
        padding: 90px 0;
    }
    
    .course_demographic_7402 h3 {
        margin-bottom: 60px;
    }
    
    .course_demographic_7402 h3::before,
    .course_demographic_7402 h3::after {
        width: 30px;
    }
    
    .course_demographic_7402 h3::before {
        left: -40px;
    }
    
    .course_demographic_7402 h3::after {
        right: -40px;
    }
    
    .course_demographic_7402 ul {
        gap: 30px;
    }
    
    .course_demographic_7402 ul li {
        width: calc(50% - 15px);
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .course_demographic_7402 ul li {
        width: 100%;
        max-width: 400px;
    }
    
    .course_demographic_7402 ul li:nth-child(3n+1),
    .course_demographic_7402 ul li:nth-child(3n+2),
    .course_demographic_7402 ul li:nth-child(3n+3) {
        animation: slideInBottom 0.6s forwards;
    }
}

@media (max-width: 576px) {
    .course_demographic_7402 {
        padding: 70px 0;
    }
    
    .course_demographic_7402 h3 {
        font-size: calc(31px * 0.9);
        margin-bottom: 50px;
    }
    
    .course_demographic_7402 h3::before,
    .course_demographic_7402 h3::after {
        display: none;
    }
    
    .course_demographic_7402 ul {
        gap: 25px;
    }
    
    .course_demographic_7402 ul li {
        padding: 30px 20px;
    }
    
    .course_demographic_7402 ul li svg {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .course_demographic_7402 ul li {
        animation: none;
        opacity: 1;
    }
    
    .course_demographic_7402 ul li:hover {
        transform: none;
    }
    
    .course_demographic_7402 ul li:hover svg {
        transform: none;
    }
}footer {
    background: rgb(187,123,171);
    color: #ffffff;
    font-family: Roboto, sans-serif;
    border-top: 3px solid rgb(169,199,166);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    padding-top: 50px;
}
footer .footer_clients_7280 {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
footer .footer_classes_8309 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    border-bottom: 1px solid rgb(187,123,171,0.5);
    margin-bottom: 30px;
}
footer .top_info_5612 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
footer .top_info_5612 svg, footer .top_info_5612 svg path, footer .top_info_5612 img {
    fill: rgb(169,199,166);
    height: 60px;
    width: 60px;
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}
footer .top_info_5612:hover svg, footer .top_info_5612:hover img {
    transform: scale(1.1);
}
footer .main_edu_4698 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
footer .main_pagewrap_6240 {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
footer .main_edu_4698 a {
    text-decoration: none;
    font-size: 13px;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
footer .main_edu_4698 a:hover {
    background: rgb(169,199,166,0.5);
    color: rgb(169,199,166);
}
footer .workshop_cta_5704 {
    background: rgb(169,199,166,0.5);
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    border-radius: 26px;
}
footer .footer_workshops_9864 {
    color: #ffffff;
}
footer .footer_workshops_9864 a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}
footer .footer_workshops_9864 a:hover {
    color: rgb(187,123,171);
}
@media only screen and (max-width: 1200px) {
    footer .footer_classes_8309 {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    footer .main_pagewrap_6240 {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    footer .main_edu_4698 a {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_classes_8309 {
        padding: 20px 10px;
        text-align: center;
    }
    footer .top_info_5612 {
        margin-bottom: 20px;
    }
    footer .main_pagewrap_6240 {
        width: 100%;
        align-items: center;
    }
    footer .main_edu_4698 a {
        margin: 5px 0;
        font-size: 16px;
        width: 100%;
        text-align: center;
        border: none;
    }
    footer .footer_workshops_9864 {
        text-align: center;
        font-size: 13px;
    }
}
.inner-container_6057 footer .footer_clients_7280 {
    padding: 0;
    border-top: 3px solid rgb(169,199,166);
}
.inner-container_6057 footer .footer_classes_8309 {
    flex-direction: row-reverse;
    align-items: center;
    min-height: 100px;
}
.inner-container_6057 footer .main_pagewrap_6240 {
    flex-direction: row;
}
.inner-container_6057 footer .main_edu_4698 a {
    margin: 0;
    padding: 0 30px;
    border-right: 3px solid rgb(169,199,166);
    font-size: 20px;
    color: #ffffff;
}
.inner-container_6057 footer .workshop_cta_5704 {
    background: rgb(169,199,166,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}
.inner-container_6057 footer .footer_workshops_9864 {
    text-align: right;
}
@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 800px) {
    .inner-container_6057 footer .main_pagewrap_6240 {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .inner-container_6057 footer .main_edu_4698 a {
        padding-left: 0;
        font-size: 18px;
    }
    .inner-container_6057 footer .main_edu_4698 a:first-child {
        margin-bottom: 10px;
    }
    .inner-container_6057 footer .footer_classes_8309 {
        padding: 20px 10px;
    }
    .inner-container_6057 footer .footer_workshops_9864 {
        text-align: center;
    }
    .inner-container_6057 footer .footer_workshops_9864 a {
        display: block;
        margin-top: 5px;
    }
}
