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

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

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

header::before {
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
    opacity: 0.6;
    top: 0;
    background: linear-gradient(135deg, 
        rgb(126,162,185,0.5) 0%, 
        transparent 60%, 
        rgb(99,129,154,0.5) 100%);
    z-index: 0;
    left: 0;
}

header .main_learning:hover::after {
    transform: scaleX(1);
}

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

header .main_navbar {
    background: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    border-radius: 10px;
    gap: 0.4rem;
    display: flex;
    padding: 0.5rem;
}

header .nav_section:hover {
    color: rgb(126,162,185);
    background: rgba(255, 255, 255, 0.7);
}

header .nav_section:hover::after {
    transform: scaleX(1);
}

.interested_learners::before {
    top: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    content: "";
    z-index: 1;
    animation: rotate 20s linear infinite;
    height: 500px;
    position: absolute;
    width: 500px;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 50%;
}

.interested_learners .knowledge_space::before {
    background: radial-gradient(circle, rgb(99,129,154,0.5) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    height: 300px;
    position: absolute;
    content: "";
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 300px;
    left: 50%;
    top: 50%;
    animation: pulse 8s ease-in-out infinite alternate;
}

.interested_learners li::after {
    height: 150%;
    position: absolute;
    transform: rotate(20deg) translateX(-150px);
    opacity: 0;
    content: "";
    animation: data-stream 5s infinite;
    z-index: 0;
    width: 50px;
    background: rgba(255, 255, 255, 0.2);
    animation-delay: calc(var(--i, 0) * 1s);
}

.interested_learners li:nth-child(3) {
    --i: 2;
}

.interested_learners li:nth-child(6) {
    --i: 5;
}

.interested_learners li:nth-child(9) {
    --i: 8;
}

.interested_learners svg {
    height: 30px;
    transition: all 0.4s ease;
    width: 30px;
    z-index: 2;
    margin-right: 1.5rem;
    position: relative;
}

footer {
    margin-top: 0;
    background-color: #000000;
    position: relative;
}

.subscr_info .company_holder {
    background-color: rgba(255, 255, 255, 0.03);
    grid-column: span 4;
    position: relative;
    padding: 30px;
    border-radius: 10px;
}

.subscr_info .company_holder h3::after {
    height: 2px;
    position: absolute;
    background: rgb(126,162,185);
    width: 100%;
    bottom: -8px;
    content: "";
    left: 0;
}

.subscr_info .main_navbar h5 {
    font-size: 21px;
    font-weight: 600;
    display: inline-block;
    color: #ffffff;
    position: relative;
    margin-bottom: 20px;
}

.subscr_info .main_navbar h5,
.subscr_info .company_holder h3 {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subscr_info .main_navbar .top_mentor a:hover {
    transform: translateX(5px);
    color: rgb(126,162,185);
    opacity: 1;
}

.milestone_cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
}



.subscr_info .company_holder:hover,
.subscr_info .main_navbar:hover {
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.subscr_info .main_navbar::before {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    opacity: 0.5;
    background: rgb(99,129,154);
    width: 5px;
    content: "";
}

.subscr_info .top_mentor {
    position: relative;
}

.subscr_info .top_mentor::after {
    content: "";
    opacity: 0.2;
    bottom: -15px;
    width: 100%;
    position: absolute;
    background: rgb(99,129,154,0.5);
    left: 0;
    height: 1px;
}

.teacher_profile {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgb(155,201,218) 0%, rgb(126,162,185,0.5) 100%);
}

.teacher_profile::before {
    height: 70%;
    width: 120%;
    background: rgb(99,129,154,0.5);
    left: -5%;
    transform: rotate(-12deg);
    z-index: 1;
    top: -10%;
    position: absolute;
    content: "";
}

.teacher_profile .image_container:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.teacher_profile .work_projects:hover {
    transform: rotate(0deg) translateY(-20px);
}

.teacher_profile .work_projects:hover::after {
    width: 95%;
    opacity: 0.8;
}

.teacher_profile .career_projects {
    font-style: italic;
    font-size: 15px;
    padding-left: 1.5rem;
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
    position: relative;
}

.cookie_preference {
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
}

#cookieMessageAlert {
    display: none;
}

.cookie_window_overlay h5 {
    font-size: 22px;
    margin-bottom: 6px;
}

.online_cookies {
    white-space: nowrap;
    border-bottom: 2px solid rgb(126,162,185);
    cursor: pointer;
    margin-left: 10px;
    text-align: center;
    line-height: 35px;
    color: rgb(126,162,185);
    min-width: 120px;
    text-decoration: none;
    font-size: 24px;
    flex-shrink: 0;
}

.wrapper-capsule .consent_track svg, .wrapper-capsule .consent_track svg path, .wrapper-capsule .consent_track img {
    width: 40px;
    fill:#000000;
    height: 40px;
}

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

.contact_panel h2 {
    position: relative;
    font-family: Arial, sans-serif;
    text-align: center;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    font-size: 36px;
}

.contact_panel .support_section {
    gap: 40px;
    position: relative;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 450px;
    align-items: center;
}

.contact_panel .help_support:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.contact_panel form {
    width: 100%;
}

.contact_panel form input[type="text"] {
    border: none;
    font-size: 17px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgb(155,201,218);
    margin-bottom: 20px;
    width: 100%;
    font-family: Arial, sans-serif;
    padding: 16px 20px;
    color: #000000;
}

.contact_panel .reach_inquiry label {
    line-height: 1.5;
    font-size: 14px;
    padding-left: 35px;
    cursor: pointer;
    color: #000000;
    position: relative;
}

.contact_panel .reach_inquiry label a {
    transition: all 0.3s ease;
    color: rgb(126,162,185);
    text-decoration: none;
}

.contact_panel form .help_feedback {
    transition: all 0.3s ease;
    padding: 16px 35px;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    position: relative;
    font-family: Arial, sans-serif;
    cursor: pointer;
    font-size: 17px;
    overflow: hidden;
    background: rgb(126,162,185);
}

.landing_page .image_container {
    position: absolute;
    transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1;
    transform: scale(1.05);
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}

.landing_page .knowledge_space {
    transform: translateY(0);
    gap: 2rem;
    width: 90%;
    display: grid;
    padding: 3rem 1.5rem;
    z-index: 3;
    position: relative;
    animation: fadeSlideUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    grid-template-columns: 1fr;
    opacity: 1;
    max-width: 1200px;
}

.landing_page .text_text {
    opacity: 0;
    border-radius: 17px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(20px);
    padding: 2.5rem;
    overflow: hidden;
    animation: fadeSlideUp 0.6s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1),
                inset 1px 1px 2px rgba(255, 255, 255, 0.05);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.landing_page .text_text {
    padding: 2rem 1.5rem;
}

.landing_page svg {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 120px;
    filter: drop-shadow(0 4px 12px rgba(94, 170, 168, 0.3));
    width: 120px;
}

.landing_page svg {
    width: 100px;
    height: 100px;
}

.landing_page h6 {
    animation: fadeIn 0.8s 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    opacity: 0;
    text-align: center;
    margin-top: 2rem;
}

.landing_page .help_feedback::before {
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    content: '';
    z-index: -1;
    position: absolute;
    left: -100%;
}

.our_background::before {
    position: absolute;
    background: linear-gradient(45deg, transparent 30%, rgb(126,162,185,0.5) 100%);
    z-index: 0;
    height: 100%;
    top: 0;
    content: "";
    width: 100%;
    left: 0;
}

.our_background .knowledge_space {
    position: relative;
}

.our_background h3::after {
    left: 0;
    transform: scaleX(0.7);
    height: 4px;
    transform-origin: left;
    width: 100%;
    bottom: -15px;
    transition: transform 0.6s ease;
    content: "";
    position: absolute;
    background: rgb(99,129,154);
}

.our_background .community_ed::after {
    width: 40px;
    height: 40px;
    right: -20px;
    border-bottom: 3px solid rgb(126,162,185);
    border-right: 3px solid rgb(126,162,185);
    position: absolute;
    bottom: -20px;
    content: "";
}

.our_background .community_ed p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 600px;
    color: #000000;
}

.our_background .community_ed .image_container:hover {
    transform: perspective(1000px) rotateY(0);
}

.our_background .learn_identity::before {
    position: absolute;
    border-right: 3px solid rgb(99,129,154);
    border-top: 3px solid rgb(99,129,154);
    content: "";
    right: -20px;
    height: 40px;
    top: -20px;
    width: 40px;
}

.our_background .learn_identity p::before {
    top: 0;
    border-radius: 10px;
    position: absolute;
    height: 100%;
    background: linear-gradient(to bottom, rgb(99,129,154), transparent);
    content: "";
    left: -20px;
    width: 3px;
}

.our_background .community_ed .image_container::after {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    height: 30%;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

.thxSection::after {
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    content: "";
    opacity: 0.3;
    background: linear-gradient(to top, rgb(99,129,154,0.5) 0%, transparent 100%);
    height: 30%;
    right: 0;
}

.thxSection .knowledge_space:hover {
    box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.1), 
                -16px -16px 32px rgba(255, 255, 255, 0.9), 
                inset 2px 2px 5px rgba(255, 255, 255, 0.4), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.thxSection h5 {
    line-height: 1.4;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: #000000;
    transform: translateZ(0);
    font-size: calc(24px * 1.1);
}

.thxSection a:hover {
    transform: translateX(10px);
}

.thxSection a::before {
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255, 0.5), transparent);
    animation: lightSweep 6s infinite ease-in-out;
    content: "";
}

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

.course_structure .image_container {
    height: 380px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(0, 0, 0, 0.08);
    transform: perspective(1000px) rotateY(-2deg);
    position: relative;
}

.course_structure .text_text {
    padding: 2rem;
    flex-direction: column;
    background: #ffffff;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    justify-content: center;
    position: relative;
}

.course_structure .text_text:hover h3 {
    transform: translateY(-5px);
}

.course_structure .text_text:hover h3::after {
    width: 100px;
}

.course_structure .description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 15px;
    padding-right: 1rem;
    position: relative;
    max-height: 200px;
    overflow-y: auto;
    color: #000000;
}

.customer_opinions::after {
    filter: blur(40px);
    position: absolute;
    left: -5%;
    bottom: -10%;
    height: 250px;
    opacity: 0.1;
    background: radial-gradient(circle, rgb(99,129,154) 0%, rgba(rgb(99,129,154,0.5), 0) 70%);
    width: 250px;
    content: "";
    z-index: 0;
}

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

.customer_opinions .feedback_stories:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(rgba(0, 0, 0, 0.5), 0.12);
}

.customer_opinions .feedback_stories div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.customer_opinions .feedback_stories:hover img {
    transform: scale(1.05);
}

.customer_opinions .feedback_stories h4 {
    color: #000000;
    font-weight: 600;
    margin: 0;
    font-size: 23px;
    position: relative;
}

.customer_opinions .feedback_stories:hover h4::after {
    transform: scaleX(1);
}

.customer_opinions .description::before {
    z-index: -1;
    position: absolute;
    border-radius: 10px;
    opacity: 0.1;
    background: linear-gradient(135deg, rgb(99,129,154) 0%, rgba(rgb(99,129,154,0.5), 0.2) 100%);
    content: "";
    top: -10px;
    transition: transform 0.3s ease-out;
    left: -15px;
    transform: rotate(45deg) scale(0);
    width: 30px;
    height: 30px;
}

.customer_opinions a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(rgb(126,162,185,0.5), 0.4);
}

.learning_profits {
    position: relative;
    background: linear-gradient(135deg, rgb(155,201,218) 0%, rgba(255,255,255,0.92) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.learning_profits h5 {
    font-weight: 600;
    position: relative;
    text-align: center;
    margin-left: auto;
    font-size: 23px;
    margin-bottom: 60px;
    line-height: 1.5;
    color: #000000;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(0);
    max-width: 850px;
    margin-right: auto;
}

.learning_profits .image_container {
    transform: perspective(1000px) rotateY(-2deg);
    width: 100%;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    border-radius: 28px;
    height: auto;
}

.learning_profits .text_text:hover::before {
    opacity: 0.8;
}

.learning_profits ul {
    padding: 0;
    gap: 20px;
    grid-template-columns: 1fr;
    display: grid;
    margin: 0;
    list-style: none;
}

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

.learning_profits li p svg {
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    margin-top: 3px;
    flex-shrink: 0;
    transform: scale(0.95);
}

.learning_profits li:hover svg path {
    fill: rgb(126,162,185);
}

.metrics_summary::after {
    content: "";
    opacity: 0.4;
    position: absolute;
    z-index: 0;
    filter: blur(40px);
    background: linear-gradient(225deg, rgb(99,129,154) 0%, transparent 70%);
    bottom: -20px;
    height: 200px;
    width: 200px;
    right: -20px;
}

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

.metrics_summary ul {
    padding: 0;
    list-style: none;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}

.metrics_summary .statistics_value:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.08),
              -8px -8px 25px rgba(255, 255, 255, 0.9);
}

.metrics_summary .statistics_value:hover::before {
    opacity: 1;
}

.metrics_summary .statistics_value:hover span {
    transform: translateX(5px);
}

.metrics_summary .statistics_value p {
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: rgb(126,162,185);
    position: relative;
    line-height: 1;
}

.service_contact::before {
    transform: skewY(-5deg);
    background: 
        linear-gradient(0deg, transparent 50%, rgb(126,162,185,0.5) 50%) 0 0 / 40px 40px,
        linear-gradient(90deg, transparent 50%, rgb(126,162,185,0.5) 50%) 0 0 / 40px 40px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    opacity: 0.15;
    width: 100%;
    z-index: -1;
    top: 0;
}

.service_contact .get_contactus::before {
    top: 0;
    width: 100%;
    height: 5px;
    left: 0;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(126,162,185), rgb(99,129,154));
    z-index: 1;
}

.service_contact h3 svg {
    transform-origin: center;
    vertical-align: middle;
    width: 28px;
    fill: rgb(126,162,185);
    stroke: rgb(99,129,154);
    animation: pulseIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    stroke-width: 0.5;
    margin-right: 10px;
    height: 28px;
}

.service_contact .reach_experts::before {
    background: rgb(126,162,185);
    width: 50px;
    height: 3px;
    content: "";
    top: -10px;
    left: 40px;
    position: absolute;
    border-radius: 10px;
}

.service_contact .reach_experts span:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.service_contact .reach_experts span svg {
    width: 22px;
    height: 22px;
    stroke-width: 0.8;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
    margin: 0 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    fill: rgb(126,162,185);
    stroke: rgb(126,162,185);
}

.service_contact .reach_experts span span::before {
    display: none;
}

.service_contact .reach_experts span span a svg {
    height: 16px;
    width: 16px;
    stroke-width: 0.5;
    stroke: rgb(126,162,185);
    margin-right: 5px;
    transition: all 0.3s ease;
    fill: rgb(126,162,185);
    opacity: 0.8;
}

.service_contact .reach_experts span span a:hover {
    color: rgb(99,129,154);
}

.service_contact .contact_map {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    grid-row: 3 / 4;
    padding: 30px;
    background: linear-gradient(145deg, rgb(155,201,218), rgba(255, 255, 255, 0.9));
    overflow: hidden;
    border-radius: 10px;
    grid-column: 2 / 3;
    position: relative;
}

.service_contact .contact_map h4 svg {
    width: 24px;
    stroke-width: 0.5;
    height: 24px;
    margin-right: 8px;
    fill: rgb(99,129,154);
    animation: clockRotate 8s linear infinite;
    stroke: rgb(126,162,185);
}

.service_contact .contact_map span svg {
    stroke-width: 0.5;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform-origin: center;
    fill: rgb(126,162,185);
    margin-right: 10px;
    width: 18px;
    height: 18px;
    stroke: rgb(155,201,218);
}

.service_contact .contact_map span:last-child {
    border-bottom: none;
}

.secure_depository::before {
    height: 8px;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    background: linear-gradient(90deg, rgb(126,162,185) 0%, rgb(99,129,154) 100%);
}

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

.secure_depository h1::after {
    width: 85px;
    position: absolute;
    content: "";
    background: rgb(99,129,154);
    height: 3px;
    transform-origin: left;
    bottom: 0;
    animation: expandWidth 0.8s ease-out forwards;
    left: 0;
}

.secure_depository h1::after {
    width: 120px;
}

.secure_depository h4 {
    font-size: calc(38px * 0.7);
    color: #000000;
    margin-bottom: 0.75rem;
    margin-top: 1.75rem;
    font-weight: 600;
}

.secure_depository p {
    line-height: 1.7;
    color: #000000;
    font-size: 16px;
    margin-bottom: 1.25rem;
    max-width: 90ch;
}

.secure_depository li::before {
    transform: rotate(45deg);
    top: 0.5rem;
    left: 0;
    height: 8px;
    width: 8px;
    position: absolute;
    content: "";
    background-color: rgb(99,129,154);
}

.secure_depository li:hover::before {
    transition: transform 0.3s ease;
    transform: rotate(135deg);
}

.access_now {
    position: relative;
    background: linear-gradient(135deg, rgb(99,129,154) 0%, rgb(126,162,185) 100%);
    overflow: hidden;
    isolation: isolate;
    padding: 6rem 0;
}

.access_now .container {
    max-width: 1200px;
    perspective: 1000px;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    position: relative;
    align-items: center;
}

.access_now .knowledge_space {
    align-items: center;
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    justify-content: center;
    transform-style: preserve-3d;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    padding: 2.5rem 3rem;
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transform: translateZ(30px) rotateX(3deg);
}

.access_now .knowledge_space:hover svg {
    transform: rotateZ(0) scale(1.1);
}

.access_now .knowledge_space:hover svg path {
    fill: #ffffff;
    animation: pathPulse 2s infinite alternate;
}

.access_now .help_feedback:hover {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    color: rgb(126,162,185);
    transform: translateY(-3px) scale(1.03);
}

.access_now .help_feedback:hover::before {
    animation: shimmer 1.5s infinite;
}

.plan_selection {
    position: relative;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background-color: rgb(155,201,218);
    padding: 100px 0;
}

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

.plan_selection .pricing_pack h2 {
    position: relative;
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 31px;
    color: #000000;
    font-weight: 700;
}

.plan_selection .learning_packages {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-top: 20px;
    display: grid;
    gap: 30px;
}

.plan_selection .basic_cost:nth-child(3) {
    --i: 3;
}

.plan_selection .class_deals {
    transform-style: preserve-3d;
    background-color: #ffffff;
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15), 
              0 5px 15px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.plan_selection .access_cost {
    font-weight: 700;
    font-size: calc(18px + 4px);
    position: relative;
    color: rgb(99,129,154);
    transition: all 0.3s ease;
    display: block;
    margin: 20px 0;
}

.plan_selection .study_costs p {
    overflow-wrap: break-word;
    word-break: normal;
    font-size: 17px;
    margin-top: 15px;
    line-height: 1.6;
    color: #000000;
    word-wrap: break-word;
    white-space: normal;
    transition: color 0.3s ease;
    hyphens: auto;
}

.plan_selection .basic_cost:hover .image_container::after {
    opacity: 0.3;
}



@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}



@media (max-width: 991px) {header .head_lead {
    padding: 0.7rem 2.5%;
}header .main_learning svg {
    width: 130px;
}header .main_navbar {
    gap: 0.35rem;
    padding: 0.4rem;
}header .nav_section {
    padding: 0.35rem 0.6rem;
    font-size: calc(18px - 1px);
}
}



@media (max-width: 1200px) {.interested_learners::before {
    height: 400px;
    width: 400px;
}.interested_learners::after {
    width: 600px;
    height: 600px;
}
}



@media (max-width: 768px) {.interested_learners {
    padding: 3.5rem 1.5rem;
}.interested_learners ul {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.interested_learners::before {
    width: 300px;
    height: 300px;
}.interested_learners::after {
    height: 450px;
    width: 450px;
}.interested_learners h3 {
    font-size: calc(35px * 0.9);
}
}



@media (max-width: 767px) {.subscr_info {
    padding: 40px 0 30px;
}.subscr_info .footer_benefit {
    grid-template-columns: 1fr;
}.subscr_info .company_holder {
    padding: 25px;
}.subscr_info .main_navbar {
    padding: 25px;
}.subscr_info .company_holder h3 {
    font-size: calc(31px - 2px);
}.subscr_info .main_navbar h5 {
    font-size: calc(21px - 1px);
}
}


@media only screen and (max-width: 800px) {.consent_track {
    display: none;
}.cookie_preference {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.cookie_window_overlay h5 {
    text-align: center;
}.cookie_window_overlay p {
    text-align: center;
}.edu_cookies {
    margin-bottom: 20px;
}body .wrapper-capsule .online_cookies {
    margin-left: 0;
    margin-bottom: 10px;
}}



@media screen and (max-width: 767px) {.contact_panel {
    padding: 60px 0;
}.contact_panel h2 {
    margin-bottom: 40px;
}.contact_panel .image_container {
    height: 350px;
}
}



@media (min-width: 1024px) {.landing_page .knowledge_space {
    padding: 5rem 3rem;
    gap: 4rem;
}.landing_page h1 {
    padding-left: 2.5rem;
}.landing_page h1::before {
    width: 10px;
}.landing_page .text_text {
    padding: 3.5rem;
}.landing_page svg {
    height: 180px;
    width: 180px;
}.landing_page .image_container {
    transition: transform 6s cubic-bezier(0.215, 0.61, 0.355, 1);
}.landing_page:hover .image_container {
    transform: scale(1.1);
}
}



@media screen and (max-width: 576px) {.our_background {
    padding: 40px 0;
}.our_background h3 {
    font-size: calc(28px * 0.8);
    margin-bottom: 30px;
}.our_background h3::after {
    height: 3px;
    bottom: -10px;
}.our_background .community_ed,
    .our_background .learn_identity {
    margin-bottom: 40px;
}.our_background .community_ed span {
    margin-bottom: 15px;
    font-size: calc(21px * 0.85);
}.our_background .community_ed p,
    .our_background .learn_identity p {
    line-height: 1.6;
    font-size: calc(13px * 0.95);
}.our_background .community_ed .image_container,
    .our_background .learn_identity .virtual_classes {
    margin-top: 20px;
    height: 250px;
}.our_background .community_ed::before,
    .our_background .community_ed::after,
    .our_background .learn_identity::before,
    .our_background .learn_identity::after {
    height: 25px;
    width: 25px;
}}



@media (prefers-reduced-motion: reduce) {.thxSection .knowledge_space,
    .thxSection .knowledge_space:hover,
    .thxSection a:hover {
    transition: none;
    transform: none;
}.thxSection::before,
    .thxSection a::before {
    animation: none;
}.thxSection .knowledge_space > div:first-child::after {
    width: 100px;
    animation: none;
}.thxSection h5::before {
    transform: scale(1);
    animation: none;
}}



@media (max-width: 767px) {.course_structure {
    padding: 4rem 0;
}.course_structure .container {
    padding: 0 1.5rem;
}.course_structure .image_container {
    height: 280px;
    margin-bottom: 1rem;
}.course_structure .text_text {
    padding: 1.5rem;
}.course_structure h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    font-size: calc(18px * 1.1);
}.course_structure .description {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
    max-height: 180px;
}}



@media (max-width: 576px) {.customer_opinions {
    padding: 60px 0;
}.customer_opinions h2 {
    font-size: calc(38px * 0.8);
    margin-bottom: 35px;
}.customer_opinions h2::after {
    bottom: -15px;
    width: 60px;
}.customer_opinions .feedback_stories {
    padding: 20px 15px;
}.customer_opinions .feedback_stories div {
    margin-bottom: 15px;
}.customer_opinions .feedback_stories img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}.customer_opinions a {
    padding: 10px 25px;
    margin-top: 30px;
    width: 100%;
}}



@media (max-width: 480px) {.learning_profits {
    padding: 60px 0 40px;
}.learning_profits h5 {
    margin-bottom: 35px;
    font-size: calc(23px * 0.85);
}.learning_profits .text_text {
    padding: 25px 20px;
}.learning_profits li p {
    gap: 10px;
}.learning_profits li p svg {
    margin-top: 2px;
    transform: scale(0.85);
}.learning_profits li:hover p svg {
    transform: scale(0.9);
}}



@media (min-width: 1025px) {.metrics_summary ul {
    grid-template-columns: repeat(3, 1fr);
}.metrics_summary .statistics_value {
    transform: translateZ(0) scale(1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.5s ease;
}.metrics_summary .statistics_value:hover {
    transform: translateY(-8px) scale(1.03);
}
}


@media (max-width: 480px) {.service_contact {
    padding: 40px 0;
}.service_contact .container {
    padding: 0 15px;
}.service_contact .get_contactus {
    gap: 10px;
}.service_contact h3 {
    margin: 20px 20px 15px;
    font-size: calc(38px - 0.4rem);
}.service_contact h3 svg {
    margin-right: 6px;
    width: 20px;
    height: 20px;
}.service_contact .message_us2UB {
    margin: 0 20px 20px;
}.service_contact .reach_experts {
    padding: 0 20px 15px;
}.service_contact .reach_experts::before {
    left: 20px;
}.service_contact .reach_experts span {
    padding: 12px 15px;
}.service_contact .reach_experts span svg {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}.service_contact .reach_experts span span a svg {
    margin-right: 4px;
    height: 14px;
    width: 14px;
}.service_contact .contact_map {
    padding: 20px;
    margin: 0 20px 20px;
}.service_contact .contact_map span {
    padding: 6px 0;
}.service_contact .contact_map h4 svg {
    width: 18px;
    margin-right: 6px;
    height: 18px;
}.service_contact .contact_map span svg {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}}



@media (max-width: 480px) {.access_now {
    padding: 3rem 0;
}.access_now h2 {
    font-size: 1.5rem;
}.access_now h2::after {
    width: 60px;
}.access_now .knowledge_space {
    padding: 1.5rem;
    transform: translateZ(10px) rotateX(1deg);
}.access_now svg {
    width: 36px;
    height: 36px;
}.access_now .help_feedback {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
}}



@media (max-width: 767px) {.plan_selection {
    padding: 60px 0;
}.plan_selection .learning_packages {
    grid-template-columns: 1fr;
    gap: 20px;
}.plan_selection .study_costs {
    padding: 25px 20px;
}.plan_selection .image_container {
    height: 180px;
}.plan_selection .pricing_pack h2 {
    font-size: calc(31px - 2px);
}.plan_selection .cert_plans {
    font-size: calc(17px - 1px);
}
}

@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes data-stream {
    0% { transform: rotate(20deg) translateX(-150px); opacity: 0; }
    20% { opacity: 0.5; }
    100% { transform: rotate(20deg) translateX(500px); opacity: 0; }
}



@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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



@keyframes bubbleAppear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

@keyframes blobMovement {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(180deg);
    }
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(360deg);
    }
}



@keyframes pathPulse {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

