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

header,footer {
    width: 100%;
}

header {
    margin-top: 0;
    padding: 0;
    overflow: visible;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 100;
    position: relative;
}


.training_structure {
    background: linear-gradient(135deg, rgb(238,234,239), #ffffff);
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}

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

.training_structure .container.virtual_academy > div {
    padding: 3.5rem 4rem;
    background-color: #ffffff;
    position: relative;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    box-shadow: 0 15px 40px rgba(rgba(0, 0, 0, 0.5), 0.08);
}

.training_structure h3 {
    font-family: Arial, sans-serif;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    color: #000000;
}

.training_structure .container.virtual_academy > div:hover h3::after {
    width: 120px;
}

.training_structure p span {
    border-left: 1px dashed rgba(rgb(209,198,212,0.5), 0.3);
    position: relative;
    padding-left: 1rem;
    display: block;
}

.secure_guard::before {
    content: '';
    background: linear-gradient(135deg, rgb(209,198,212,0.5), transparent);
    height: 70%;
    opacity: 0.07;
    top: -10%;
    z-index: 0;
    transform: rotate(-15deg) skew(15deg);
    position: absolute;
    right: -5%;
    width: 40%;
}

.secure_guard h1::after {
    height: 3px;
    left: 0;
    width: 4rem;
    bottom: -0.8rem;
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgb(174,161,179), transparent);
}

.secure_guard h4 {
    font-size: calc(37px * 0.75);
    color: rgb(209,198,212);
    font-weight: 400;
    margin: 2.2rem 0 0.8rem;
}

.secure_guard p {
    max-width: 48rem;
    color: #000000;
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.secure_guard span {
    line-height: 1.7;
    padding-left: 1.2rem;
    padding: 0.5rem 0 0;
    display: block;
    border-left: 2px solid rgba(0, 0, 0, 0.05);
    font-style: italic;
    font-size: 18px;
    color: #000000;
    margin-bottom: 2rem;
}

.course_program_details::after {
    content: "";
    opacity: 0.15;
    left: 0;
    height: 100%;
    animation: gridShift 30s infinite linear;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgb(174,161,179,0.5) 15px, rgb(174,161,179,0.5) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgb(209,198,212,0.5) 15px, rgb(209,198,212,0.5) 16px);
    width: 100%;
    top: 0;
    z-index: 1;
    background-size: 4rem 4rem;
    position: absolute;
}

.course_program_details .img_grid_wrapper::after {
    right: -5px;
    opacity: 0.6;
    border-radius: 10px;
    position: absolute;
    height: 70%;
    border: 2px solid rgb(174,161,179);
    width: 70%;
    z-index: 1;
    content: "";
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    bottom: -5px;
}

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

.course_program_details h3 {
    color: #000000;
    font-weight: 700;
    padding-left: 1rem;
    line-height: 1.3;
    border-left: 4px solid rgb(209,198,212);
    position: relative;
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.course_program_details .career_learn::before {
    right: 0;
    background: linear-gradient(90deg, rgb(209,198,212) 0%, rgb(174,161,179) 100%);
    height: 5px;
    content: "";
    border-radius: 0 10px 0 10px;
    top: 0;
    width: 100px;
    position: absolute;
}

.user_feedback {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

.user_feedback::after {
    right: -5%;
    content: "";
    z-index: 1;
    height: 30%;
    position: absolute;
    background: linear-gradient(225deg, rgb(209,198,212) 0%, transparent 70%);
    transform: rotate(-15deg);
    top: -5%;
    opacity: 0.05;
    width: 30%;
}

.user_feedback .virtual_academy {
    position: relative;
}

.user_feedback .learning_voices {
    gap: 2.5rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.user_feedback .user_ratings:hover {
    box-shadow: 0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.08),
              0 10px 20px rgba(rgba(0, 0, 0, 0.5), 0.05);
    transform: translateY(-8px);
}

.user_feedback .user_ratings h3 {
    font-weight: 600;
    font-size: calc(19px - 0.1rem);
    display: inline-block;
    color: rgb(209,198,212);
    position: relative;
    margin-bottom: 1rem;
}

.user_feedback .user_ratings:hover h3::after {
    width: 100%;
}

.user_feedback .user_ratings img {
    width: 60px;
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 3px solid rgba(rgb(209,198,212,0.5), 0.2);
    border-radius: 50%;
    transform-origin: center;
    height: 60px;
}

.give_it_a_try::before {
    opacity: 0.05;
    background: linear-gradient(45deg, rgb(209,198,212,0.5) 25%, transparent 25%, transparent 75%, rgb(209,198,212,0.5) 75%, rgb(209,198,212,0.5));
    background-size: 60px 60px;
    position: absolute;
    z-index: 1;
    content: '';
    height: 100%;
    background-position: 0 0, 30px 30px;
    left: 0;
    top: 0;
    width: 100%;
}

.give_it_a_try .container {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.give_it_a_try .query_grid {
    display: inline-block;
    position: relative;
    transition: all 0.4s ease;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    z-index: 5;
    color: rgb(209,198,212);
    background: transparent;
    padding: 16px 40px;
    border: 1px solid rgb(209,198,212);
}

.contact_form_box {
    padding: 90px 0;
    background: rgb(238,234,239);
    overflow: hidden;
    position: relative;
}

.contact_form_box::before {
    z-index: 0;
    background-size: 40px 40px;
    left: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(rgb(209,198,212), 0.05) 49%, rgba(rgb(209,198,212), 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(rgb(174,161,179), 0.05) 49%, rgba(rgb(174,161,179), 0.05) 51%, transparent 52%);
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.contact_form_box .connect_message::before {
    content: "";
    background: 
        linear-gradient(135deg, #ffffff 0%, #ffffff 50%, transparent 50%, transparent 100%),
        linear-gradient(-135deg, #ffffff 0%, #ffffff 50%, transparent 50%, transparent 100%);
    width: 100%;
    z-index: -1;
    top: 0;
    opacity: 0.1;
    position: absolute;
    background-size: 30px 30px;
    left: 0;
    background-position: 0 0, 15px 15px;
    height: 100%;
}

.contact_form_box .request_message input[type="checkbox"] {
    width: 22px;
    border: 2px solid rgb(238,234,239);
    background: rgb(238,234,239);
    height: 22px;
    position: relative;
    cursor: pointer;
    margin-top: 3px;
    border-radius: 4px;
    appearance: none;
    transition: all 0.3s ease;
}

.contact_form_box .request_message a:hover {
    color: rgb(174,161,179);
}

.contact_form_box .request_message a:hover::after {
    background: rgb(174,161,179);
    height: 2px;
}

.contact_form_box .query_grid::after {
    top: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 0;
    height: 0;
    position: absolute;
    content: "";
    transform: translate(-50%, -50%);
    left: 50%;
    transition: all 0.6s ease;
    border-radius: 50%;
}

.contact_form_box svg:hover {
    fill: rgb(174,161,179);
}

.contact_form_box svg:hover path {
    fill: rgb(174,161,179);
}

.cookie_explained {
    margin-bottom: 20px;
}

.cookie_explained svg, .cookie_explained svg path, .cookie_explained img {
    fill: rgb(209,198,212);
    height: 60px;
    width: 60px;
}

.cookie_message_overlay p {
    color: #000000;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.cookie_button.cookie_disclaimer {
    background: rgb(174,161,179);
}

.cookie_message_overlay p a {
    color: rgb(209,198,212);
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}

#privacyBannerPopup:checked ~ .cookie_message_overlay {
    visibility: hidden;
    opacity: 0;
}



header .top_sitebar {
    padding: 1.3rem 2rem;
    justify-content: space-between;
    position: relative;
    align-items: center;
    display: flex;
    z-index: 5;
}

header .header_start {
    position: relative;
    flex: 0 0 auto;
    z-index: 5;
}

header .header_nav {
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    z-index: 2;
    align-items: center;
    text-decoration: none;
    position: relative;
}

header .header_start:hover::before {
    transform: skew(-5deg) scale(1.05);
    opacity: 0.7;
    box-shadow: 0 0 15px rgb(209,198,212,0.5);
}

header .header_tutor {
    position: relative;
    margin: 0 0.3rem;
    perspective: 800px;
}

header .header_tutor a:hover {
    color: rgb(209,198,212);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateZ(10px);
}

header .header_tutor:hover::after {
    opacity: 0.4;
}

header .top_sitebar::after {
    left: 20%;
    height: 1px;
    width: 60%;
    bottom: 0;
    position: absolute;
    content: '';
    opacity: 0.1;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.locate::before {
    height: 100%;
    background: radial-gradient(circle at 75% 25%, rgba(rgb(209,198,212,0.5), 0.05) 0%, transparent 60%);
    width: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    content: "";
}

.locate h1::after {
    width: 80px;
    position: absolute;
    content: "";
    background: linear-gradient(90deg, transparent 0%, rgb(209,198,212) 50%, transparent 100%);
    bottom: -0.5rem;
    transform: translateX(-50%);
    height: 3px;
    left: 50%;
}

.locate .learn_chat > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.12);
}

.locate h6 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #000000;
    font-size: 18px;
    align-items: center;
    display: flex;
    letter-spacing: 1px;
}

.locate span {
    display: block;
    color: #000000;
    font-size: calc(17px * 0.95);
    margin-left: 1.5rem;
}

.locate .join_community:hover {
    color: rgb(209,198,212);
    transform: translateX(5px);
}

.locate .join_community:hover::after {
    width: 100%;
}

.locate .join_community svg {
    transition: transform 0.3s ease;
    transform: scale(0.85);
    margin-left: 0.5rem;
}

header .top_plank .master_elite div svg, header .top_plank .master_elite div svg path {
    fill: #ffffff;
}

header .top_plank .master_elite div {
    margin-right: 24px;
    align-items: center;
    display: flex;
    justify-content: flex-start;
}

.course_fit_for {
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgb(238,234,239) 0%, rgb(209,198,212,0.5) 100%);
}



.course_fit_for .virtual_academy {
    border-radius: 14px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
    z-index: 5;
}



.course_fit_for h3 {
    position: relative;
    z-index: 10;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
}



.course_fit_for ul {
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin: 0;
    position: relative;
    gap: 2.5rem;
    padding: 0;
    display: grid;
}

.course_fit_for li::before {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 100%;
    top: 0;
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    z-index: -1;
}

.course_fit_for li:nth-child(1) {
    --i: 0;
}

.course_fit_for li:nth-child(2) {
    --i: 1;
}

.course_fit_for li:nth-child(5) {
    --i: 4;
}

.course_fit_for li:nth-child(8) {
    --i: 7;
}



.course_fit_for li:hover {
    border-color: rgb(174,161,179);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.course_fit_for li:hover svg path {
    fill: rgb(209,198,212);
}

footer::after {
    height: 100%;
    content: "";
    animation: scanline 10s linear infinite;
    z-index: -1;
    width: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 5px,
            rgba(255, 255, 255, 0.03) 5px,
            rgba(255, 255, 255, 0.03) 10px
        );
    left: 0;
    position: absolute;
    top: 0;
}

.guide_section .company_holder {
    transition: all 0.4s ease;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-left: 3px solid rgb(209,198,212);
    border-radius: 14px;
}

.guide_section .intern_ship {
    padding-left: 1rem;
    line-height: 1.7;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    font-size: 12px;
}

.guide_section .header_master {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    display: grid;
    height: 100%;
}

.guide_section .top_master:hover::before {
    left: -100%;
    top: -100%;
}

.guide_section .top_master::after {
    border-width: 0 25px 25px 0;
    border-style: solid;
    height: 0;
    content: "";
    transition: all 0.4s ease;
    transform: translateZ(5px);
    right: 0;
    border-color: transparent rgb(209,198,212) transparent transparent;
    width: 0;
    top: 0;
    position: absolute;
    transform-style: preserve-3d;
}

.guide_section .top_master h5::before {
    bottom: -8px;
    left: 0;
    background: rgb(174,161,179);
    width: 100%;
    position: absolute;
    content: "";
    height: 1px;
}

.guide_section .top_master:hover h5::after {
    width: 100%;
}

.guide_section .top_master a {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 0;
    display: block;
    text-decoration: none;
    font-size: 12px;
    transform-style: preserve-3d;
    position: relative;
    transition: all 0.3s ease;
}

.podcast_cta::before {
    height: 1px;
    left: 0;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to right, 
                transparent 0%, 
                rgb(209,198,212) 30%, 
                #ffffff 50%, 
                rgb(174,161,179) 70%, 
                transparent 100%);
    content: "";
}

.guide_section .company_holder:hover::before,
.guide_section .top_master:hover::before {
    opacity: 0.5;
}

.guide_section .company_holder:hover::after {
    transform: rotate(45deg);
    height: 40px;
    width: 40px;
}



.guide_section .company_holder .intern_ship::after {
    bottom: -10px;
    height: 3px;
    transition: width 0.4s ease;
    position: absolute;
    left: 1rem;
    content: "";
    width: 70px;
    background: linear-gradient(to right, rgb(209,198,212), transparent);
}

.guide_section .top_master:nth-child(2)::before {
    background: radial-gradient(circle, rgb(174,161,179,0.5) 0%, transparent 70%);
}

.guide_section .header_master a:hover::after {
    width: 100%;
}

.teaching_history {
    overflow: hidden;
    padding: 8rem 0;
    background: linear-gradient(to bottom, #000000 0%, rgb(238,234,239) 100%);
    position: relative;
}

.teaching_history .user_ratings {
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgb(174,161,179,0.5),
        inset 0 0 30px rgb(209,198,212,0.5);
    border-radius: 16px;
    transform: rotateX(5deg) rotateY(-5deg);
    backdrop-filter: blur(15px);
    display: flex;
    position: relative;
    transform-style: preserve-3d;
    flex-wrap: wrap;
}

.teaching_history .user_ratings span:not(.name) {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 17px;
    letter-spacing: 2px;
    color: rgb(174,161,179);
    transform: translateZ(15px);
}

.teaching_history .user_ratings:hover .past_jobs {
    transform: translateZ(25px);
}

.thanksWrap {
    background: linear-gradient(135deg, rgb(209,198,212,0.5) 0%, rgb(238,234,239) 40%, rgb(174,161,179,0.5) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

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

.thanksWrap h2 {
    font-size: 34px;
    transform: translateY(20px);
    color: #000000;
    font-family: Arial, sans-serif;
    text-align: center;
    animation: fadeUpIn 0.8s 0.2s forwards ease-out;
    opacity: 0;
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
}

.thanksWrap .virtual_academy::before {
    content: "";
    left: 50%;
    background: linear-gradient(180deg, rgb(209,198,212,0.5) 0%, transparent 80%);
    height: 100%;
    opacity: 0.3;
    transform: translateX(-50%);
    width: 95%;
    position: absolute;
    top: -8px;
    filter: blur(12px);
    border-radius: 10px;
    z-index: -1;
}

.thanksWrap li::before {
    top: -5px;
    opacity: 0;
    height: 32px;
    box-shadow: 0 5px 15px -5px rgb(174,161,179,0.5);
    width: 32px;
    position: absolute;
    left: -40px;
    transform: scale(0);
    background: linear-gradient(135deg, rgb(174,161,179) 0%, rgb(209,198,212) 100%);
    content: "";
    animation: popIn 0.4s 1.2s forwards cubic-bezier(0.25, 1.8, 0.5, 1);
    border-radius: 50%;
}

.title_section::after {
    animation: subtleRotate 40s infinite linear;
    background: radial-gradient(circle at center, 
    transparent 0%, 
    transparent 50%, 
    rgba(rgb(209,198,212), 0.02) 70%, 
    rgba(rgb(209,198,212), 0.04) 100%);
    left: -25%;
    height: 150%;
    content: "";
    position: absolute;
    top: -25%;
    width: 150%;
    z-index: 1;
}

.title_section .study_express h3 {
    transition: transform 0.5s ease-out;
    transform: perspective(1000px) rotateY(-5deg);
    padding-left: 2rem;
    color: #000000;
    line-height: 1.4;
    position: relative;
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 2rem);
}

.title_section .study_express > div:nth-child(2) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.title_section .knowledge_lab h1 {
    font-weight: 700;
    transform: translateX(-10px);
    opacity: 0;
    color: #000000;
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
    position: relative;
    line-height: 1.1;
    animation: slideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    margin-bottom: 1.5rem;
}

.title_section .knowledge_lab h1::after {
    height: 3px;
    left: 0;
    content: "";
    animation: scaleIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    width: 80px;
    transform-origin: left;
    transform: scaleX(0);
    background: rgb(209,198,212);
    position: absolute;
    bottom: -0.5rem;
}

.price_item_element::before {
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    content: "";
    position: absolute;
    left: 0;
}

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

.price_item_element .class_deals li {
    height: 100%;
    transform: translateY(20px);
    animation-delay: calc(0.6s + (0.15s * var(--i, 0)));
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.price_item_element .group_plans:hover {
    transform: translateY(-10px);
}

.price_item_element .group_plans:hover .learn_fees {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.05) 0%, 
        rgba(255,255,255,0.1) 100%);
}

.price_item_element .group_plans:hover .learn_fees::before {
    transform: scaleX(1);
}

.price_item_element .annual_plan {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price_item_element .annual_plan h4::after {
    width: 40px;
    transition: width 0.4s ease;
    background: rgb(209,198,212);
    position: absolute;
    height: 3px;
    left: 0;
    content: "";
    bottom: 0;
}

.price_item_element .group_plans:hover .fee_pricing {
    color: rgb(209,198,212);
}

.about_this {
    padding: 120px 0 100px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.about_this::after {
    width: 50%;
    right: 0;
    top: 0;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(209,198,212,0.5));
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: -1;
}

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

.about_this .info_wrapper:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.3), 
               -15px -15px 40px rgba(255, 255, 255, 0.07), 
               inset 3px 3px 10px rgba(255, 255, 255, 0.07), 
               inset -3px -3px 10px rgba(0, 0, 0, 0.2);
}

.about_this span {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    column-gap: 40px;
    display: block;
    font-size: 12px;
    line-height: 1.8;
    columns: 1;
    column-rule: 1px solid rgba(255, 255, 255, 0.1);
}


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


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media (min-width: 992px) {.training_structure .container.virtual_academy > div {
    padding: 4rem 5rem;
    margin-left: 3rem;
    grid-template-columns: 1fr;
    display: grid;
}.training_structure h3 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
}.training_structure p {
    font-size: calc(16px + 0.1rem);
    line-height: 1.9;
}
}



@media (max-width: 575px) {.training_structure .container.virtual_academy > div {
    padding: 1.75rem 1.25rem;
}.training_structure .container.virtual_academy > div::after {
    display: none;
}.training_structure h3 {
    font-size: 1.5rem;
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
}.training_structure h3::after {
    width: 50px;
}}



@media (min-width: 1200px) {.secure_guard {
    padding: 7rem 2rem;
}.secure_guard h1 {
    font-size: calc(41px * 1.4);
}.secure_guard h1::after {
    width: 8rem;
}.secure_guard .container {
    max-width: 1200px;
}
}



@media (hover: hover) {.secure_guard li:hover::before {
    transform: rotate(135deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
}



@media (max-width: 1200px) {.course_program_details {
    padding: 7rem 0;
}.course_program_details .virtual_academy {
    gap: 0.75rem;
}.course_program_details .career_learn {
    padding: 2.5rem;
    grid-column: 1 / 8;
}.course_program_details .img_grid_wrapper {
    grid-column: 6 / 13;
}.course_program_details .header_start {
    right: 2rem;
}
}



@media (max-width: 576px) {.course_program_details {
    padding: 4rem 0;
}.course_program_details .career_learn {
    padding: 1.5rem;
}.course_program_details .img_grid_wrapper {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
    height: 250px;
}.course_program_details .header_start {
    bottom: -1.25rem;
    width: 4rem;
    height: 4rem;
    right: 1.5rem;
}.course_program_details .header_start svg {
    width: 2.25rem;
    height: 2.25rem;
}.course_program_details h3 {
    font-size: calc(32px * 0.7);
    margin-bottom: 1rem;
    padding-left: 0.75rem;
}.course_program_details p {
    line-height: 1.6;
    font-size: calc(15px * 0.9);
}.course_program_details .career_learn::before {
    width: 50px;
}.course_program_details .career_learn::after {
    height: 50px;
}.course_program_details .virtual_academy::before,
    .course_program_details .virtual_academy::after {
    display: none;
}}



@media (max-width: 767px) {.user_feedback {
    padding: 4rem 0;
}.user_feedback h2 {
    margin-bottom: 2.5rem;
    font-size: calc(31px - 0.2rem);
}.user_feedback .learning_voices {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}.user_feedback .user_ratings {
    padding: 2rem 1.5rem;
}
}



@media (prefers-reduced-motion: no-preference) {.user_feedback .user_ratings {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}.user_feedback .user_ratings:nth-child(1) {
    animation-delay: 0.1s;
}.user_feedback .user_ratings:nth-child(2) {
    animation-delay: 0.2s;
}.user_feedback .user_ratings:nth-child(3) {
    animation-delay: 0.3s;
}.user_feedback .user_ratings:nth-child(4) {
    animation-delay: 0.4s;
}.user_feedback .user_ratings:nth-child(5) {
    animation-delay: 0.5s;
}.user_feedback .user_ratings:nth-child(6) {
    animation-delay: 0.6s;
}.user_feedback .user_ratings:nth-child(7) {
    animation-delay: 0.7s;
}}



@media (max-width: 992px) {.contact_form_box {
    padding: 70px 0;
}.contact_form_box .query_links {
    flex-direction: column;
}.contact_form_box .img_grid_wrapper {
    flex: 0 0 auto;
    min-height: 300px;
}.contact_form_box .connect_message {
    flex: 0 0 auto;
    padding: 40px 30px 50px;
}
}



@media (min-width: 1400px) {header .top_sitebar {
    max-width: 1300px;
    margin: 0 auto;
}header .header_tutor {
    margin: 0 0.5rem;
}header .header_tutor a {
    padding: 0.8rem 1.5rem;
}
}



@media (max-width: 767px) {header {
    padding: 0;
}header .top_sitebar {
    padding: 0.8rem 1.2rem;
}header .header_start {
    max-width: 130px;
}header .header_start::before {
    display: none;
}header .top_master {
    margin-top: 0.8rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}header .top_master::-webkit-scrollbar {
    height: 2px;
}header .top_master::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(209,198,212);
}header .header_tutor {
    margin: 0 0.1rem;
    flex: 0 0 auto;
}header .header_tutor a {
    letter-spacing: 0;
    font-size: calc(12px - 2px);
    padding: 0.5rem 0.7rem;
    white-space: nowrap;
}header .header_tutor a::before {
    bottom: 3px;
}header::after {
    height: 2px;
}
}



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



@media (max-width: 768px) {.guide_section {
    padding: 3.5rem 0 1.5rem;
}.guide_section .header_master {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.guide_section .company_holder,
    .guide_section .top_master {
    padding: 1.5rem;
}.guide_section .company_holder h3,
    .guide_section .top_master h5 {
    margin-bottom: 1.25rem;
}.podcast_cta {
    padding: 1.25rem 0;
    margin-top: 2rem;
}
}



@media (max-width: 767px) {.teaching_history {
    padding: 6rem 0 3rem;
}.teaching_history .container {
    padding: 0 1rem;
}.teaching_history .user_ratings {
    padding: 2rem 1.5rem;
    transform: none;
}.teaching_history .img_grid_wrapper {
    top: -60px;
    width: 120px;
    height: 120px;
}.teaching_history .name {
    font-size: calc(36px - 2px);
    margin-top: 70px;
}.teaching_history .user_ratings span:not(.name) {
    font-size: calc(17px - 1px);
}.teaching_history .past_jobs {
    padding: 1.2rem;
    margin-top: 1.5rem;
    font-size: calc(18px - 1px);
}.teaching_history .user_ratings:hover {
    transform: none;
}}



@media (max-width: 1200px) {.title_section .study_express {
    gap: 2rem;
}.title_section .study_express h3::before {
    width: 3px;
}
}



@media (max-width: 576px) {.title_section {
    padding: 3rem 0;
}.title_section .study_express {
    width: 90%;
}.title_section .study_express h3 {
    padding-left: 1rem;
}.title_section .study_express h3::before {
    width: 2px;
}.title_section .knowledge_lab {
    padding: 1.5rem 1rem;
}.title_section .knowledge_lab > div {
    padding: 1.25rem;
    margin-top: 1.5rem;
}.title_section .knowledge_lab h1::after {
    height: 2px;
    width: 50px;
}}



@media (max-width: 480px) {.price_item_element {
    padding: 50px 0;
}.price_item_element h2 {
    font-size: calc(29px * 0.9);
}.price_item_element .plan_options {
    font-size: calc(12px * 0.9);
}.price_item_element .learn_fees {
    padding: 20px;
}}



@media (max-width: 767px) {.about_this {
    padding: 60px 0 40px;
}.about_this .info_wrapper {
    transform: none;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25),
                   -8px -8px 20px rgba(255, 255, 255, 0.03),
                   inset 2px 2px 5px rgba(255, 255, 255, 0.03),
                   inset -2px -2px 5px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
}.about_this h4 {
    font-size: calc(22px + 4px);
    margin-bottom: 30px;
}.about_this h6 {
    margin-bottom: 20px;
    font-size: 17px;
}.about_this span {
    font-size: calc(12px - 1px);
    line-height: 1.6;
}.about_this .info_wrapper div::before,
    .about_this .info_wrapper div::after {
    width: 30px;
    height: 30px;
}
}



@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

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



@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}



@keyframes expandLine {
    from {
        transform: translateX(-50%) scaleX(0);
    }
    to {
        transform: translateX(-50%) scaleX(1);
    }
}



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



@keyframes patternShift {
    from {
        transform: rotate(-5deg) translateX(0);
    }
    to {
        transform: rotate(-5deg) translateX(100px);
    }
}



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

