﻿* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}.access_help {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}a {
    text-decoration: none;
    color: inherit;
}html,body {
    color: #000000;
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
    min-height: 100%;
    height: 100%;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1267px;
}svg {
    width: 30px;
    height: 30px;
}.warp-container {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}.header_page {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header {
    position: fixed;
    top: 0;
    z-index: 1000;
    left: 0;
    background: 
        linear-gradient(170deg, 
            #000000 0%,
            rgb(163,193,202,0.5) 100%);
    background: #000000;
    overflow: hidden;
    width: 100%;
}header::before {
    opacity: 0.03;
    top: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgb(119,159,172,0.5) 10px,
            rgb(119,159,172,0.5) 11px
        );
    z-index: 1;
    left: 0;
    height: 100%;
    position: absolute;
    content: "";
    width: 100%;
}header::after {
    width: 100%;
    height: 5px;
    z-index: 5;
    content: "";
    background: linear-gradient(90deg, 
        rgb(163,193,202),
        rgb(119,159,172),
        rgb(163,193,202));
    left: 0;
    animation: gradient-shift 8s linear infinite;
    position: absolute;
    top: 0;
    background-size: 200% 100%;
}header .container {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}header .main_pagebar {
    width: 100%;
    display: flex;
    padding-top: 1.5rem;
    position: relative;
    z-index: 2;
    align-items: center;
    flex-direction: column;
}header .main_header {
    padding: 0.5rem 2rem;
    position: relative;
    text-decoration: none;
    display: flex;
    margin-bottom: 2rem;
    z-index: 3;
    justify-content: center;
}header .main_header::before {
    height: 1px;
    content: "";
    bottom: -10px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgb(119,159,172,0.5) 20%,
        rgb(119,159,172) 50%,
        rgb(119,159,172,0.5) 80%,
        transparent 100%);
    position: absolute;
    width: 160%;
    left: -30%;
}header .main_header::after {
    height: 40px;
    width: 40px;
    background: rgb(163,193,202,0.5);
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
    position: absolute;
    content: "";
    animation: orb-float 5s ease-in-out infinite alternate;
    border-radius: 50%;
}header .main_header svg {
    filter: drop-shadow(0 0 8px rgb(163,193,202,0.5));
    width: auto;
    height: 48px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}header .main_header:hover svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgb(163,193,202));
}header .nav_top {
    justify-content: center;
    scrollbar-width: none;
    background: linear-gradient(to bottom, 
        #000000 0%,
        rgba(0, 0, 0, 0.5) 100%);
    gap: 1rem;
    padding: 1rem 0;
    display: flex;
    position: relative;
    mask-image: linear-gradient(90deg, 
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%);
    width: 100vw;
    overflow-x: auto;
}header .nav_top::-webkit-scrollbar {
    display: none;
}header .nav_top::before {
    content: "";
    background: rgb(163,193,202,0.5);
    height: 1px;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}header .header_learn {
    border-radius: 27px;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.5px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg,
        #000000 0%,
        rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    border: 1px solid rgb(163,193,202,0.5);
    text-decoration: none;
    font-size: 12px;
    overflow: hidden;
    padding: 0.6rem 1.8rem;
    transition: all 0.3s ease;
}header .header_learn::before {
    width: 100%;
    height: 100%;
    transition: left 0.5s ease;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg,
        transparent,
        rgb(119,159,172,0.5),
        transparent);
    position: absolute;
    content: "";
    opacity: 0.5;
}header .header_learn::after {
    width: 8px;
    box-shadow: 0 0 10px rgb(119,159,172);
    border-radius: 50%;
    right: 12px;
    top: 50%;
    background: rgb(119,159,172);
    content: "";
    position: absolute;
    height: 8px;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
}header .header_learn:hover {
    box-shadow: 0 0 15px rgb(163,193,202,0.5),
                inset 0 0 10px rgb(163,193,202,0.5);
    border-color: rgb(119,159,172);
    transform: translateY(-2px);
    color: rgb(119,159,172);
}header .header_learn:hover::before {
    left: 100%;
}header .header_learn:hover::after {
    transform: translateY(-50%) scale(1);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 10px);
    }
}

@media (max-width: 991px) {header .main_header {
    margin-bottom: 1.5rem;
}header .main_header svg {
    height: 42px;
}header .header_learn {
    font-size: calc(12px - 1px);
    padding: 0.5rem 1.5rem;
}
}

@media (max-width: 767px) {header .main_pagebar {
    padding-top: 1rem;
}header .main_header {
    margin-bottom: 1rem;
}header .main_header svg {
    height: 36px;
}header .nav_top {
    justify-content: flex-start;
    padding: 0.8rem 0;
}header .header_learn {
    font-size: calc(12px - 2px);
    margin: 0 0.2rem;
    padding: 0.4rem 1.2rem;
}header .header_learn:first-child {
    margin-left: 1rem;
}header .header_learn:last-child {
    margin-right: 1rem;
}header .header_learn::after {
    width: 6px;
    right: 8px;
    height: 6px;
}}.cookie_popup_advisory {
    background: rgb(119,159,172);
    bottom: 0;
    border-top: 3px solid rgb(119,159,172);
    position: fixed;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s forwards;
    width: 100%;
    padding: 20px 0;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    z-index: 90;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
#userPrivacyWindow {
    display: none;
}#userPrivacyWindow:checked ~ .cookie_popup_advisory {
    visibility: hidden;
    opacity: 0;
}.track_manage {
    gap: 20px;
    justify-content: space-between;
    padding: 20px 5%;
    display: flex;
    align-items: center;
}.cookie_popup_advisory h5 {
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    font-size: 23px;
}.cookie_popup_advisory p {
    font-size: 12px;
    line-height: 1.5;
    color: #ffffff;
    font-family: Arial, sans-serif;
}.data_policy {
    margin-right: 15px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 10px rgb(163,193,202));
}.data_policy svg {
    fill: rgb(163,193,202);
    width: 80px;
    transition: transform 0.3s ease-in-out;
    height: 80px;
}.data_policy:hover svg {
    transform: scale(1.1);
}.data_settings {
    color: #000000;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border-radius: 30px;
    padding: 10px 20px;
    min-width: 140px;
    flex-shrink: 0;
    font-size: 17px;
    box-shadow: 0 0 15px rgb(163,193,202);
    background: linear-gradient(90deg, rgb(163,193,202), rgb(119,159,172));
    margin-left: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}.data_settings:hover {
    box-shadow: 0 0 20px rgb(119,159,172);
}.cookie_button.data_comply {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(119,159,172);
    color: #ffffff;
}.cookie_button.data_comply:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgb(119,159,172);
}.cookie_popup_advisory p a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgb(163,193,202);
}.cookie_popup_advisory p a:hover {
    color: rgb(119,159,172);
}
@media only screen and (max-width: 1200px) {.cookie_popup_advisory {
    padding: 15px 0;
}.track_manage {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.data_policy {
    display: none;
}.track_manage {
    align-items: center;
    flex-direction: column;
    text-align: center;
}.cookie_popup_advisory h5 {
    margin-bottom: 5px;
    font-size: 21px;
}.cookie_alerts {
    margin-bottom: 15px;
}.data_settings {
    min-width: 100%;
    margin: 10px 0;
}}
.client_experience {
    overflow: hidden;
    position: relative;
    padding: 7rem 0 8rem;
    background: rgb(212,229,233);
}.client_experience::before {
    left: 0;
    height: 100%;
    z-index: 0;
    position: absolute;
    content: "";
    opacity: 0.05;
    top: 0;
    width: 100%;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
    background-image: 
        linear-gradient(45deg, rgb(163,193,202,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(163,193,202,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(163,193,202,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(163,193,202,0.5) 75%);
    background-size: 100px 100px;
}.client_experience::after {
    z-index: 0;
    width: 200px;
    height: 200px;
    right: -50px;
    background: rgb(119,159,172,0.5);
    opacity: 0.6;
    filter: blur(80px);
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    content: "";
}.client_experience .container {
    position: relative;
    z-index: 1;
}.client_experience h2 {
    transform: skewY(-3deg);
    font-size: calc(29px * 1.3);
    position: relative;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5rem;
    display: inline-block;
}.client_experience h2::before,
.client_experience h2::after {
    content: "";
    background: rgb(163,193,202);
    height: 4px;
    position: absolute;
}.client_experience h2::before {
    width: 60%;
    transform-origin: left;
    left: 0;
    bottom: -15px;
    animation: expandLine 1.5s ease-in-out infinite alternate;
}.client_experience h2::after {
    width: 30%;
    opacity: 0.7;
    left: 20px;
    bottom: -30px;
    animation: expandLine 2s ease-in-out infinite alternate 0.5s;
    transform-origin: left;
}@keyframes expandLine {
    from {
        transform: scaleX(0.6);
    }
    to {
        transform: scaleX(1);
    }
}

.client_experience .testimonials_hub {
    position: relative;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}.client_experience .alumni_feedback {
    padding: 2rem;
    z-index: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #ffffff;
}.client_experience .alumni_feedback:nth-child(odd) {
    transform: rotate(-2deg);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 80%,
        80% 100%,
        0 100%
    );
}.client_experience .alumni_feedback:nth-child(even) {
    transform: rotate(2deg);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        20% 100%,
        0 80%
    );
}.client_experience .alumni_feedback:hover {
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 100%
    );
    transform: rotate(0) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}.client_experience .alumni_feedback::before {
    inset: 0;
    transform: none;
    transition: transform 0.3s ease;
    z-index: -1;
    background: #ffffff;
    content: "";
    position: absolute;
}.client_experience .alumni_feedback:hover::before {
    transform: scale(1.02);
}.client_experience .alumni_feedback::after {
    background: linear-gradient(135deg, rgb(163,193,202), rgb(119,159,172));
    opacity: 0;
    inset: 0;
    transition: transform 0.3s ease;
    z-index: -2;
    transform: none;
    position: absolute;
    content: "";
}.client_experience .alumni_feedback:hover::after {
    opacity: 1;
    transform: scale(1.03);
}.client_experience .alumni_feedback:nth-child(4n+1) {
    grid-row: auto / span 1;
    grid-column: auto / span 1;
}.client_experience .alumni_feedback:nth-child(4n+2) {
    grid-column: auto / span 1;
    transform: translateY(40px) rotate(-2deg);
    grid-row: auto / span 1;
}.client_experience .alumni_feedback:nth-child(4n+2):hover {
    transform: translateY(30px) rotate(0);
}.client_experience .alumni_feedback:nth-child(4n+3) {
    grid-row: auto / span 1;
    grid-column: auto / span 1;
    transform: translateY(-30px) rotate(2deg);
}.client_experience .alumni_feedback:nth-child(4n+3):hover {
    transform: translateY(-40px) rotate(0);
}.client_experience .alumni_feedback:nth-child(4n+4) {
    transform: translateY(20px) rotate(-1deg);
    grid-row: auto / span 1;
    grid-column: auto / span 1;
}.client_experience .alumni_feedback:nth-child(4n+4):hover {
    transform: translateY(10px) rotate(0);
}.client_experience .alumni_feedback img {
    height: 90px;
    display: block;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
    width: 90px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 3px solid #ffffff;
    object-fit: cover;
}.client_experience .alumni_feedback:nth-child(odd) img {
    transform: rotate(3deg);
    box-shadow: 4px 4px 0 rgb(163,193,202,0.5);
}.client_experience .alumni_feedback:nth-child(even) img {
    transform: rotate(-3deg);
    box-shadow: -4px 4px 0 rgb(119,159,172,0.5);
}.client_experience .alumni_feedback:hover img {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}.client_experience .alumni_feedback p {
    margin: 0;
    position: relative;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.3s ease;
    color: #000000;
}.client_experience .alumni_feedback:hover p {
    transform: translateY(-5px);
}.client_experience .alumni_feedback .description {
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    color: #000000;
    transition: transform 0.3s ease 0.1s;
    margin-top: 1rem;
}.client_experience .alumni_feedback:hover .description {
    transform: translateY(-5px);
}.client_experience .alumni_feedback .description::after {
    left: 0;
    width: 20%;
    transition: width 0.3s ease;
    bottom: -10px;
    height: 2px;
    position: absolute;
    background: rgb(163,193,202,0.5);
    content: "";
}.client_experience .alumni_feedback:hover .description::after {
    width: 60%;
}.client_experience .alumni_feedback:nth-child(even) .description::after {
    background: rgb(119,159,172,0.5);
    left: auto;
    right: 0;
}

@media (max-width: 992px) {.client_experience {
    padding: 6rem 0 7rem;
}.client_experience h2 {
    font-size: calc(29px * 1.1);
    margin-bottom: 4rem;
}.client_experience .testimonials_hub {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.client_experience .alumni_feedback:nth-child(4n+2),
    .client_experience .alumni_feedback:nth-child(4n+3),
    .client_experience .alumni_feedback:nth-child(4n+4) {
    transform: rotate(0);
}.client_experience .alumni_feedback:nth-child(odd) {
    transform: rotate(-1deg);
}.client_experience .alumni_feedback:nth-child(even) {
    transform: rotate(1deg);
}
}

@media (max-width: 768px) {.client_experience {
    padding: 5rem 0 6rem;
}.client_experience h2 {
    transform: skewY(-2deg);
    font-size: 29px;
    margin-bottom: 3.5rem;
}.client_experience .testimonials_hub {
    max-width: 450px;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 0 auto;
}.client_experience .alumni_feedback {
    padding: 1.5rem;
}.client_experience .alumni_feedback img {
    width: 80px;
    height: 80px;
}
}

@media (max-width: 576px) {.client_experience {
    padding: 4rem 0 5rem;
}.client_experience .testimonials_hub {
    max-width: 320px;
}.client_experience .alumni_feedback:nth-child(odd),
    .client_experience .alumni_feedback:nth-child(even) {
    clip-path: none;
    transform: none;
}.client_experience .alumni_feedback:hover {
    transform: translateY(-5px);
}}.leadership_profile {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(212,229,233), rgba(245, 247, 250, 0.9));
    overflow: hidden;
}.leadership_profile::before {
    height: 100%;
    background-size: 60px 60px;
    position: absolute;
    opacity: 0.07;
    left: 0;
    background-image: 
        linear-gradient(30deg, rgb(119,159,172,0.5) 2px, transparent 2px),
        linear-gradient(120deg, rgb(119,159,172,0.5) 2px, transparent 2px);
    width: 100%;
    z-index: 0;
    content: "";
    top: 0;
}.leadership_profile::after {
    position: absolute;
    background: radial-gradient(circle at center, rgb(119,159,172,0.5) 0%, transparent 70%);
    height: 200%;
    opacity: 0.1;
    right: -20%;
    width: 70%;
    transform: rotate(-15deg);
    top: -50%;
    content: "";
    z-index: 1;
}.leadership_profile .container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1140px;
    z-index: 2;
    position: relative;
}.leadership_profile .alumni_feedback {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: #ffffff;
    gap: 30px;
    padding: 40px;
    overflow: hidden;
    grid-template-columns: 1fr;
    display: grid;
    box-shadow: 
        15px 15px 30px rgba(rgba(0, 0, 0, 0.5), 0.06),
        -5px -5px 20px rgba(#ffffff, 0.8),
        inset 2px 2px 5px rgba(#ffffff, 0.4),
        inset -2px -2px 5px rgba(rgba(0, 0, 0, 0.5), 0.05);
    border-radius: 8px;
    position: relative;
}.leadership_profile .alumni_feedback:hover {
    transform: translateY(-5px);
    box-shadow: 
        20px 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.08),
        -8px -8px 25px rgba(#ffffff, 0.9),
        inset 2px 2px 5px rgba(#ffffff, 0.4),
        inset -2px -2px 5px rgba(rgba(0, 0, 0, 0.5), 0.05);
}.leadership_profile .alumni_feedback > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}.leadership_profile .slider {
    height: 160px;
    width: 160px;
    border-radius: 12px;
    transform: rotate(-2deg);
    box-shadow: 
        8px 8px 16px rgba(rgba(0, 0, 0, 0.5), 0.1),
        -4px -4px 12px rgba(#ffffff, 0.6);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}.leadership_profile .alumni_feedback:hover .slider {
    transform: rotate(1deg) scale(1.03);
}.leadership_profile .slider::before {
    content: "";
    bottom: -15px;
    z-index: -1;
    border-radius: 20px;
    right: -15px;
    left: -15px;
    transition: transform 0.8s ease;
    transform: rotate(-3deg);
    background: linear-gradient(135deg, rgb(119,159,172,0.5), transparent);
    top: -15px;
    position: absolute;
    opacity: 0.2;
}.leadership_profile .alumni_feedback:hover .slider::before {
    transform: rotate(1deg) scale(1.05);
}.leadership_profile .alumni_feedback > div:nth-child(2) {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}.leadership_profile .alumni_feedback > div:nth-child(2)::after {
    content: "";
    background: linear-gradient(90deg, transparent, rgb(119,159,172), transparent);
    bottom: 0;
    left: 50%;
    height: 3px;
    transform: translateX(-50%);
    position: absolute;
    width: 80px;
}.leadership_profile .name {
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    font-family: Arial, sans-serif;
    margin: 0 0 10px;
    color: rgb(163,193,202);
    font-size: calc(24px * 1.1);
}.leadership_profile .alumni_feedback > div:nth-child(2) > div {
    backdrop-filter: blur(2px);
    border-radius: 4px;
    color: rgb(119,159,172);
    font-weight: 600;
    padding: 5px 15px;
    font-size: calc(12px * 0.95);
    position: relative;
    background: linear-gradient(120deg, rgba(rgb(119,159,172,0.5), 0.05), rgba(rgb(119,159,172,0.5), 0.15));
    display: inline-block;
    letter-spacing: 0.3px;
}.leadership_profile .career_wrap {
    font-size: 12px;
    font-family: Arial, sans-serif;
    border-left: 3px solid rgb(119,159,172);
    margin: 0;
    background: linear-gradient(to right, rgba(rgb(119,159,172,0.5), 0.05), transparent);
    line-height: 1.7;
    color: #000000;
    backdrop-filter: blur(3px);
    padding: 10px 20px 10px 30px;
    position: relative;
}.leadership_profile .career_wrap::before {
    position: absolute;
    color: rgb(119,159,172);
    top: -20px;
    opacity: 0.1;
    content: "";
    font-size: 80px;
    font-family: serif;
    left: 10px;
}.leadership_profile .career_wrap::after {
    color: rgb(119,159,172);
    bottom: -70px;
    content: "";
    position: absolute;
    opacity: 0.1;
    right: 10px;
    font-size: 80px;
    font-family: serif;
}

@media (min-width: 768px) {.leadership_profile {
    padding: 100px 0;
}.leadership_profile .alumni_feedback {
    gap: 40px 50px;
    grid-template-columns: auto 1fr;
    padding: 50px;
    grid-template-areas: 
            "photo info"
            "quote quote";
    align-items: center;
}.leadership_profile .alumni_feedback > div:first-child {
    grid-area: photo;
}.leadership_profile .alumni_feedback > div:nth-child(2) {
    padding-bottom: 0;
    grid-area: info;
    text-align: left;
}.leadership_profile .alumni_feedback > div:nth-child(3) {
    grid-area: quote;
}.leadership_profile .alumni_feedback > div:nth-child(2)::after {
    left: 0;
    bottom: -10px;
    background: linear-gradient(90deg, rgb(119,159,172), transparent);
    transform: none;
    width: 60px;
}.leadership_profile .slider {
    width: 200px;
    height: 200px;
}.leadership_profile .career_wrap {
    padding: 25px 40px 25px 50px;
    font-size: calc(12px * 1.05);
    margin-top: 20px;
}
}

@media (min-width: 992px) {.leadership_profile .alumni_feedback {
    gap: 0 50px;
    grid-template-areas: 
            "photo info quote";
    grid-template-columns: auto 1fr 1fr;
}.leadership_profile .slider {
    height: 240px;
    width: 240px;
    transform: rotate(-3deg);
}.leadership_profile .alumni_feedback:hover .slider {
    transform: rotate(0) scale(1.05);
}.leadership_profile .career_wrap {
    position: relative;
    background: linear-gradient(135deg, rgba(rgb(119,159,172,0.5), 0.08), transparent);
    padding: 30px;
    margin-top: 0;
    border-left: none;
}.leadership_profile .career_wrap::before {
    left: 0;
}.leadership_profile .career_wrap::after {
    right: 0;
}.leadership_profile .career_wrap:before {
    position: absolute;
    left: -25px;
    background: linear-gradient(to bottom, rgb(119,159,172), transparent);
    width: 3px;
    top: 0;
    content: "";
    height: 100%;
}
}

@media (max-width: 767px) {.leadership_profile {
    padding: 60px 0;
}.leadership_profile .alumni_feedback {
    padding: 30px 25px;
}.leadership_profile .slider {
    height: 140px;
    width: 140px;
}.leadership_profile .name {
    font-size: 24px;
}.leadership_profile .alumni_feedback > div:nth-child(2) > div {
    font-size: calc(12px * 0.9);
}.leadership_profile .career_wrap {
    font-size: calc(12px * 0.95);
    line-height: 1.6;
    padding: 15px 15px 15px 25px;
}}.our_background {
    position: relative;
    padding: 120px 0;
    background: rgb(212,229,233);
    overflow: hidden;
}.our_background::before {
    left: 0;
    background: linear-gradient(135deg, 
                rgb(163,193,202,0.5) 0%, 
                transparent 25%);
    width: 100%;
    content: "";
    top: 0;
    z-index: 1;
    height: 100%;
    position: absolute;
}.our_background::after {
    top: 0;
    position: absolute;
    background: linear-gradient(225deg, 
                rgb(119,159,172,0.5) 0%, 
                transparent 25%);
    width: 100%;
    z-index: 1;
    right: 0;
    content: "";
    height: 100%;
}.our_background .container {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.our_background h2 {
    font-size: 36px;
    position: relative;
    font-weight: 700;
    text-align: center;
    color: #000000;
    margin-bottom: 70px;
}.our_background h2::after {
    border-radius: 10px;
    width: 80px;
    height: 4px;
    left: 50%;
    content: "";
    bottom: -20px;
    background: rgb(163,193,202);
    transform: translateX(-50%);
    position: absolute;
}.our_background .learn_learn {
    grid-template-rows: auto auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 40px;
}.our_background .skill_mastery {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    flex-direction: column;
    border-radius: 27px;
}.our_background .skill_mastery:first-child {
    transform-origin: left center;
    grid-column: 1;
    grid-row: 1 / span 2;
}.our_background .skill_mastery:nth-child(2) {
    grid-row: 1 / span 2;
    transform-origin: right center;
    grid-column: 2;
}.our_background .skill_mastery:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transform: scale(1.03);
}.our_background .skill_mastery h3 {
    z-index: 2;
    color: #ffffff;
    background: rgb(163,193,202);
    margin: 0;
    font-size: 22px;
    position: relative;
    font-weight: 600;
    padding: 20px 30px;
}.our_background .skill_mastery:nth-child(2) h3 {
    background: rgb(119,159,172);
}.our_background .skill_mastery p {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
    align-items: center;
    z-index: 1;
    padding: 30px;
    line-height: 1.8;
    color: #000000;
    display: flex;
    position: relative;
}.our_background .skill_mastery p::first-letter {
    font-size: calc(16px * 1.8);
    margin-right: 8px;
    float: left;
    line-height: 1;
    font-weight: 700;
    color: rgb(163,193,202);
}.our_background .skill_mastery:nth-child(2) p::first-letter {
    color: rgb(119,159,172);
}.our_background .skill_mastery::before {
    width: 100px;
    z-index: 1;
    right: 0;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, transparent 50%, rgba(rgb(163,193,202,0.5), 0.1) 50%);
    bottom: 0;
    height: 100px;
}.our_background .skill_mastery:nth-child(2)::before {
    background: linear-gradient(135deg, transparent 50%, rgba(rgb(119,159,172,0.5), 0.1) 50%);
}.our_background .skill_mastery::after {
    top: 0;
    z-index: 3;
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, rgb(163,193,202), transparent);
    right: 0;
}.our_background .skill_mastery:nth-child(2)::after {
    background: linear-gradient(90deg, rgb(119,159,172), transparent);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}


@media screen and (max-width: 991px) {.our_background {
    padding: 90px 0;
}.our_background h2 {
    margin-bottom: 60px;
}.our_background .learn_learn {
    gap: 30px;
}
}

@media screen and (max-width: 768px) {.our_background {
    padding: 70px 0;
}.our_background h2 {
    margin-bottom: 50px;
}.our_background .learn_learn {
    grid-template-columns: 1fr;
    gap: 30px;
    grid-template-rows: auto auto;
}.our_background .skill_mastery:first-child,
    .our_background .skill_mastery:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
}
}

@media screen and (max-width: 576px) {.our_background {
    padding: 60px 0;
}.our_background .container {
    padding: 0 15px;
}.our_background h2 {
    font-size: calc(36px * 0.9);
    margin-bottom: 40px;
}.our_background h2::after {
    height: 3px;
    width: 60px;
    bottom: -15px;
}.our_background .skill_mastery h3 {
    padding: 15px 20px;
    font-size: calc(22px * 0.9);
}.our_background .skill_mastery p {
    padding: 20px;
    font-size: calc(16px * 0.95);
    line-height: 1.7;
}}.give_it_a_try {
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background: linear-gradient(125deg, rgb(163,193,202) 0%, rgb(119,159,172) 100%);
}.give_it_a_try::before {
    background-size: 20px 20px;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    width: 100%;
    z-index: -1;
    left: 0;
    content: '';
    top: 0;
    position: absolute;
    height: 100%;
}.give_it_a_try::after {
    position: absolute;
    top: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.2) 0%, transparent 50%);
    height: 100%;
    z-index: -1;
    filter: blur(60px);
    width: 100%;
    content: '';
    left: 0;
}.give_it_a_try .virtual_track {
    border-radius: 30px;
    align-items: center;
    max-width: 900px;
    justify-content: center;
    transform-style: preserve-3d;
    background: rgba(255,255,255,0.1);
    padding: 70px 50px;
    margin: 0 auto;
    display: flex;
    backdrop-filter: blur(15px);
    flex-direction: column;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.15),
        0 5px 15px rgba(255,255,255,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
    perspective: 1000px;
    transition: transform 0.6s ease;
    transform: rotateX(2deg) rotateY(2deg);
}.give_it_a_try .virtual_track::before {
    border-radius: 35px;
    filter: blur(5px);
    z-index: -1;
    top: -5px;
    content: '';
    animation: borderGlow 10s linear infinite;
    right: -5px;
    opacity: 0.5;
    position: absolute;
    left: -5px;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1),
        rgba(255,255,255,0),
        rgba(255,255,255,0.1),
        rgba(255,255,255,0),
        rgba(255,255,255,0.1)
    );
    bottom: -5px;
}.give_it_a_try .virtual_track::after {
    border-radius: 30px;
    top: 0;
    z-index: -1;
    background: 
        linear-gradient(to bottom,
            rgba(255,255,255,0.1) 0%,
            transparent 100%
        );
    width: 100%;
    content: '';
    position: absolute;
    height: 100%;
    left: 0;
}.give_it_a_try .virtual_track:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(-5px);
}.give_it_a_try h3 {
    font-weight: 700;
    text-align: center;
    font-family: Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 3px;
    position: relative;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 55px;
}.give_it_a_try h3::before {
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(255,255,255,0.2);
    content: '';
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #ffffff, 
        transparent);
    width: 60px;
    border-radius: 2px;
    left: 50%;
    bottom: -20px;
    position: absolute;
}.give_it_a_try h3::after {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    animation: lightScan 5s linear infinite;
    content: '';
    top: 0;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.1), 
        transparent
    );
    left: -100%;
}.give_it_a_try .get_support7XW {
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    font-weight: 600;
    padding: 18px 50px;
    transition: all 0.4s ease;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
    color: rgb(163,193,202);
    background: rgba(255,255,255,0.9);
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    transform: perspective(1000px) translateZ(20px);
    z-index: 1;
    font-size: 15px;
}.give_it_a_try .get_support7XW::before {
    left: 0;
    position: absolute;
    transition: opacity 0.4s ease;
    content: '';
    height: 100%;
    opacity: 0;
    width: 100%;
    top: 0;
    z-index: -1;
    background: linear-gradient(45deg, 
        rgb(163,193,202), 
        rgb(119,159,172));
}.give_it_a_try .get_support7XW::after {
    position: absolute;
    transform: rotate(35deg);
    z-index: 1;
    transition: all 0.6s ease;
    top: -50%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    width: 20px;
    content: '';
    height: 200%;
    left: -100px;
}.give_it_a_try .get_support7XW:hover {
    color: #ffffff;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 10px 25px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    transform: perspective(1000px) translateZ(30px);
}.give_it_a_try .get_support7XW:hover::before {
    opacity: 1;
}.give_it_a_try .get_support7XW:hover::after {
    left: 200%;
}

@media screen and (max-width: 992px) {.give_it_a_try {
    padding: 110px 0;
}.give_it_a_try .virtual_track {
    padding: 60px 40px;
    max-width: 85%;
}.give_it_a_try h3 {
    margin-bottom: 50px;
    font-size: calc(36px * 0.9);
}.give_it_a_try h3::before {
    width: 50px;
    height: 3px;
    bottom: -18px;
}.give_it_a_try .get_support7XW {
    padding: 16px 45px;
    font-size: calc(15px * 0.95);
}
}

@media screen and (max-width: 768px) {.give_it_a_try {
    padding: 90px 0;
}.give_it_a_try .virtual_track {
    padding: 50px 30px;
    transform: none;
}.give_it_a_try h3 {
    letter-spacing: 2px;
    margin-bottom: 45px;
    font-size: calc(36px * 0.8);
}.give_it_a_try h3::before {
    height: 3px;
    bottom: -15px;
    width: 45px;
}.give_it_a_try .get_support7XW {
    letter-spacing: 1.5px;
    font-size: calc(15px * 0.9);
    transform: none;
    padding: 14px 40px;
}.give_it_a_try .get_support7XW:hover {
    transform: translateY(-5px);
}
}

@media screen and (max-width: 576px) {.give_it_a_try {
    padding: 70px 0;
}.give_it_a_try .virtual_track {
    border-radius: 20px;
    padding: 40px 20px;
}.give_it_a_try h3 {
    font-size: calc(36px * 0.7);
    margin-bottom: 40px;
    letter-spacing: 1.5px;
}.give_it_a_try h3::before {
    width: 40px;
    height: 2px;
    bottom: -12px;
}.give_it_a_try .get_support7XW {
    padding: 12px 35px;
    letter-spacing: 1px;
    font-size: calc(15px * 0.85);
    border-radius: 30px;
}}

@keyframes borderGlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes lightScan {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 100%;
        opacity: 0.5;
    }
}.gratefulPage {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, hsl(210, 40%, 95%), hsl(210, 40%, 98%));
}.gratefulPage::before {
    position: absolute;
    background: radial-gradient(circle at 20% 30%, rgb(163,193,202,0.5), transparent 60%);
    width: 120%;
    top: -50%;
    opacity: 0.2;
    left: -20%;
    z-index: 0;
    height: 200%;
    content: "";
    transform: rotate(-15deg);
}.gratefulPage::after {
    z-index: 0;
    bottom: -10%;
    content: "";
    background: radial-gradient(circle at 80% 80%, rgb(119,159,172,0.5), transparent 60%);
    position: absolute;
    height: 70%;
    right: -10%;
    opacity: 0.15;
    width: 70%;
}.gratefulPage .container {
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}.gratefulPage .virtual_track {
    border-radius: 16px;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.05),
        -20px -20px 60px rgba(255, 255, 255, 0.9),
        inset 5px 5px 10px rgba(255, 255, 255, 0.8),
        inset -5px -5px 10px rgba(0, 0, 0, 0.03);
    padding: 3.5rem;
    clip-path: polygon(
        0 0,
        100% 0,
        98% 98%,
        2% 100%
    );
    position: relative;
    background: #ffffff;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}.gratefulPage .virtual_track:hover {
    box-shadow: 
        25px 25px 70px rgba(0, 0, 0, 0.07),
        -25px -25px 70px rgba(255, 255, 255, 1),
        inset 5px 5px 10px rgba(255, 255, 255, 0.9),
        inset -5px -5px 10px rgba(0, 0, 0, 0.04);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.gratefulPage .virtual_track > div:first-child {
    padding-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}.gratefulPage .virtual_track > div:first-child::after {
    box-shadow: 0 2px 6px rgba(rgb(163,193,202,0.5), 0.2);
    left: 0;
    border-radius: 3px;
    animation: gradientSlide 6s infinite ease-in-out;
    background-size: 200% 100%;
    height: 3px;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(163,193,202), rgb(119,159,172), rgb(163,193,202));
    content: "";
    position: absolute;
}.gratefulPage h5 {
    font-size: calc(22px * 1.15);
    position: relative;
    line-height: 1.4;
    margin: 0;
    padding-left: 1.2rem;
    font-weight: 700;
    color: #000000;
    transform: translateZ(0);
}.gratefulPage h5::before {
    position: absolute;
    width: 6px;
    box-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.1),
        -1px -1px 3px rgba(255, 255, 255, 0.7);
    left: 0;
    top: 0.1em;
    height: 90%;
    border-radius: 3px;
    content: "";
    transform: translateZ(0);
    background: rgb(163,193,202);
}.gratefulPage .virtual_track > div:last-child {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    transform: translateZ(0);
}.gratefulPage a {
    transition: all 0.3s ease;
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 12px;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 245, 250, 0.5));
    padding: 0.5rem 1.2rem;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.03),
        -4px -4px 8px rgba(255, 255, 255, 0.8),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    transform: translateZ(0);
    backdrop-filter: blur(8px);
}.gratefulPage a:hover {
    box-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.02),
        -2px -2px 5px rgba(255, 255, 255, 0.7),
        inset 3px 3px 6px rgba(0, 0, 0, 0.03),
        inset -3px -3px 6px rgba(255, 255, 255, 0.7);
    transform: translateY(1px);
}.gratefulPage a:active {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.05),
        inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    transform: translateY(2px);
}.gratefulPage p {
    z-index: 1;
    position: relative;
    margin: 0;
    line-height: 1.7;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #000000;
}

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

@media (max-width: 991px) {.gratefulPage {
    padding: 5rem 0;
}.gratefulPage .virtual_track {
    padding: 2.5rem;
    transform: perspective(800px) rotateX(1deg);
}.gratefulPage h5 {
    font-size: calc(22px * 1.05);
}.gratefulPage .virtual_track > div:first-child {
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}
}

@media (max-width: 767px) {.gratefulPage {
    padding: 4rem 0;
}.gratefulPage .virtual_track {
    padding: 2rem;
    transform: none;
    clip-path: polygon(
            0 0,
            100% 0,
            97% 97%,
            3% 100%
        );
}.gratefulPage h5 {
    padding-left: 1rem;
    font-size: 22px;
}.gratefulPage h5::before {
    width: 4px;
}.gratefulPage a {
    padding: 0.5rem 1rem;
}.gratefulPage p {
    font-size: calc(18px - 1px);
}
}

@media (max-width: 575px) {.gratefulPage {
    padding: 3.5rem 0;
}.gratefulPage .container {
    padding: 0 1.5rem;
}.gratefulPage .virtual_track {
    padding: 1.75rem;
    clip-path: polygon(
            0 0,
            100% 0,
            96% 96%,
            4% 100%
        );
    border-radius: 12px;
}.gratefulPage h5 {
    font-size: calc(22px - 2px);
    padding-left: 0.8rem;
}.gratefulPage h5::before {
    width: 3px;
}.gratefulPage .virtual_track > div:first-child {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
}.gratefulPage a {
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
}.gratefulPage p {
    font-size: calc(18px - 2px);
    line-height: 1.6;
}}.program_offerings {
    position: relative;
    background: linear-gradient(145deg, rgb(212,229,233) 0%, rgb(163,193,202,0.5) 100%);
    overflow: hidden;
    padding: 6rem 0;
}.program_offerings::before {
    opacity: 0.04;
    background: repeating-linear-gradient(
        -45deg,
        rgb(163,193,202,0.5),
        rgb(163,193,202,0.5) 2px,
        transparent 2px,
        transparent 12px
    );
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    position: absolute;
}.program_offerings .container {
    z-index: 2;
    position: relative;
}.program_offerings .learn_career {
    position: relative;
    grid-template-columns: 1fr;
    display: grid;
    gap: 0;
}.program_offerings .reading_block {
    z-index: 3;
    background: #ffffff;
    transition: transform 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    position: relative;
    padding: 2.5rem;
    transform: translateY(0);
}.program_offerings .reading_block:hover {
    transform: translateY(-10px);
}.program_offerings .reading_block::before {
    content: "";
    z-index: -1;
    border-radius: 50%;
    right: 3rem;
    width: 8rem;
    opacity: 0.6;
    top: -4rem;
    background: rgb(119,159,172,0.5);
    position: absolute;
    height: 8rem;
}.program_offerings .reading_block h2 {
    color: rgb(163,193,202);
    animation: fadeInUp 0.8s ease forwards;
    display: inline-block;
    font-size: 30px;
    position: relative;
    font-weight: 700;
    margin-bottom: 2rem;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program_offerings .reading_block h2::after {
    bottom: -10px;
    border-radius: 10px;
    transition: width 0.4s ease;
    position: absolute;
    height: 4px;
    left: 0;
    width: 3rem;
    content: "";
    background: rgb(119,159,172);
}.program_offerings .reading_block:hover h2::after {
    width: 100%;
}.program_offerings .reading_block .description {
    animation-delay: 0.2s;
    margin-bottom: 1.2rem;
    color: #000000;
    line-height: 1.7;
    opacity: 0;
    padding-left: 1rem;
    position: relative;
    font-size: 17px;
    animation: fadeInUp 0.8s ease forwards;
}.program_offerings .reading_block .description:last-of-type {
    margin-bottom: 0;
    font-weight: 600;
    animation-delay: 0.4s;
}.program_offerings .reading_block .description::before {
    position: absolute;
    background: rgb(119,159,172);
    left: 0;
    border-radius: 50%;
    content: "";
    height: 4px;
    width: 4px;
    top: 0.5rem;
}.program_offerings .slider {
    transition: transform 0.5s ease;
    position: relative;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    z-index: 2;
    margin-top: -2rem;
    height: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    border-radius: 0;
}.program_offerings .slider:hover {
    transform: perspective(1000px) rotateX(0) rotateY(0);
}.program_offerings .slider::after {
    background: linear-gradient(
        to bottom right,
        rgb(163,193,202,0.5) 0%,
        transparent 40%
    );
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {.program_offerings .learn_career {
    gap: 2rem;
    grid-template-columns: 1.2fr 0.8fr;
}.program_offerings .reading_block {
    margin-right: -4rem;
    grid-column: 1 / 2;
    align-self: center;
}.program_offerings .slider {
    grid-column: 2 / 3;
    transform: perspective(1000px) rotateX(8deg) rotateY(-8deg);
    height: 400px;
    margin-top: 0;
}.program_offerings .slider::before {
    bottom: -20px;
    z-index: -1;
    position: absolute;
    content: "";
    height: 20px;
    width: 60%;
    background: rgb(119,159,172);
    filter: blur(15px);
    opacity: 0.4;
    left: 20px;
}
}

@media (min-width: 992px) {.program_offerings .learn_career {
    grid-template-columns: 1.2fr 0.8fr;
}.program_offerings .reading_block {
    padding: 3rem;
}.program_offerings .slider {
    margin-top: 3rem;
    height: 450px;
}.program_offerings .reading_block::after {
    height: 6rem;
    position: absolute;
    left: 25%;
    bottom: -3rem;
    width: 6rem;
    z-index: -1;
    opacity: 0.4;
    border-radius: 50%;
    content: "";
    background: rgb(163,193,202,0.5);
}
}

@media (max-width: 767px) {.program_offerings {
    padding: 4rem 0;
}.program_offerings .slider {
    margin-bottom: 2rem;
    transform: perspective(1000px) rotateX(3deg) rotateY(-3deg);
}}.title_welcome {
    min-height: 100vh;
    background-color: rgb(212,229,233);
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    display: flex;
    align-items: center;
}.title_welcome > div {
    position: relative;
    max-width: 1200px;
    z-index: 1;
    transform-style: preserve-3d;
    width: 100%;
    padding: 2rem;
}.title_welcome .corp_values {
    position: relative;
    transform: translateZ(20px);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}.title_welcome .learn_hero {
    color: rgb(163,193,202);
    font-size: 46px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
}.title_welcome .learn_hero::after {
    background: linear-gradient(90deg, rgb(163,193,202), rgb(119,159,172));
    transform-origin: left;
    height: 3px;
    left: 0;
    bottom: -10px;
    transform: scaleX(0);
    position: absolute;
    animation: lineReveal 1.2s 0.5s ease forwards;
    content: '';
    width: 80%;
}.title_welcome .edu_hero {
    animation: fadeInUp 0.8s 0.3s ease-out forwards;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(20px) translateZ(0);
    opacity: 0;
    border-radius: 10px;
}.title_welcome .edu_hero::before {
    backdrop-filter: blur(3px);
    content: '';
    opacity: 0.85;
    left: 0;
    position: absolute;
    z-index: 1;
    background: linear-gradient(135deg, rgb(163,193,202,0.5), rgba(0, 0, 0, 0.5));
    top: 0;
    bottom: 0;
    right: 0;
}.title_welcome .edu_hero:hover {
    transform: translateY(10px) translateZ(0);
}.title_welcome .edu_hero > div {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    color: #ffffff;
}.title_welcome .edu_hero p {
    padding-left: 20px;
    font-size: calc(15px * 1.2);
    max-width: 80%;
    font-weight: 600;
    position: relative;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s ease-out forwards;
    opacity: 0;
    line-height: 1.6;
}.title_welcome .edu_hero p::before {
    transform: scaleY(0);
    transform-origin: top;
    width: 4px;
    position: absolute;
    left: 0;
    background: rgb(119,159,172);
    content: '';
    top: 0;
    animation: scaleVertical 0.6s 0.9s ease-out forwards;
    height: 100%;
}.title_welcome .edu_hero h3 {
    line-height: 1.5;
    border-left: 4px solid rgb(119,159,172);
    animation: fadeInUp 0.8s 0.9s ease-out forwards;
    margin-top: 1rem;
    position: relative;
    padding: 1.5rem;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 400;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(20px);
}

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

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

@keyframes scaleVertical {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}


@media (max-width: 1200px) {.title_welcome .learn_hero {
    font-size: calc(46px * 0.9);
}.title_welcome .edu_hero > div {
    padding: 2.5rem;
}
}

@media (max-width: 992px) {.title_welcome .learn_hero {
    font-size: calc(46px * 0.8);
}.title_welcome .edu_hero p {
    font-size: calc(15px * 1.1);
    max-width: 90%;
}.title_welcome .edu_hero > div {
    padding: 2rem;
}
}

@media (max-width: 768px) {.title_welcome > div {
    padding: 1.5rem;
}.title_welcome .corp_values {
    margin-bottom: 2rem;
}.title_welcome .learn_hero {
    font-size: calc(46px * 0.7);
}.title_welcome .edu_hero p {
    padding-left: 15px;
    font-size: 15px;
    max-width: 100%;
}.title_welcome .edu_hero h3 {
    padding: 1.2rem;
    font-size: calc(18px * 0.9);
}.title_welcome .edu_hero > div {
    padding: 1.5rem;
    gap: 1.5rem;
}
}

@media (max-width: 576px) {.title_welcome {
    min-height: auto;
}.title_welcome > div {
    padding: 1rem;
}.title_welcome .corp_values {
    margin-bottom: 1.5rem;
}.title_welcome .learn_hero {
    font-size: calc(46px * 0.6);
    margin-bottom: 1rem;
}.title_welcome .learn_hero::after {
    height: 2px;
}.title_welcome .edu_hero p {
    font-size: calc(15px * 0.95);
    padding-left: 12px;
}.title_welcome .edu_hero p::before {
    width: 3px;
}.title_welcome .edu_hero h3 {
    border-left-width: 3px;
    font-size: calc(18px * 0.8);
    padding: 1rem;
}.title_welcome .edu_hero > div {
    padding: 1.2rem;
    gap: 1.2rem;
}}.secure_safekeeping {
    box-shadow: 0 0 10px rgb(163,193,202,0.5), inset 0 0 15px rgba(0, 0, 0, 0.5);
    background: rgb(119,159,172);
    flex-direction: column;
    border: 2px solid rgb(163,193,202);
    padding: 40px;
    display: flex;
    height: auto;
    color: #ffffff;
    width: 100%;
    gap: 25px;
}.secure_safekeeping h1 {
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    border-bottom: 2px solid rgb(119,159,172);
    color: rgb(163,193,202);
    letter-spacing: 2px;
    font-family: Arial, sans-serif;
    padding-bottom: 10px;
    text-align: center;
}.secure_safekeeping h2 {
    border-left: 4px solid rgb(163,193,202);
    text-transform: uppercase;
    padding-left: 15px;
    font-size: 31px;
    margin: 0;
    color: rgb(119,159,172);
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-align: left;
    letter-spacing: 1px;
}.secure_safekeeping h3, .secure_safekeeping h4, .secure_safekeeping h5 {
    color: #ffffff;
    font-size: 23px;
}.secure_safekeeping ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}.secure_safekeeping li {
    padding: 10px;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
    border: 1px solid rgb(163,193,202);
    line-height: 1.6;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    background: rgb(119,159,172,0.5);
}.secure_safekeeping div {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(119,159,172);
    line-height: 1.8;
    border-radius: 24px;
    font-family: Arial, sans-serif;
    color: #000000;
    background: rgb(163,193,202,0.5);
    font-size: 18px;
    padding: 20px;
}.secure_safekeeping p, .secure_safekeeping span {
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}
@media only screen and (max-width: 800px) {.secure_safekeeping {
    padding: 20px;
}.secure_safekeeping h1 {
    margin-bottom: 15px;
    font-size: calc(23px - 4px);
}.secure_safekeeping h2 {
    font-size: calc(23px - 2px);
    margin-bottom: 10px;
}.secure_safekeeping ul {
    padding-left: 15px;
}.secure_safekeeping li {
    padding: 8px;
    margin-bottom: 8px;
}.secure_safekeeping div {
    padding: 15px;
}}.training_results {
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(212,229,233) 0%, #ffffff 100%);
}.training_results::before {
    transform: rotate(-15deg);
    height: 300px;
    position: absolute;
    z-index: 0;
    top: -50px;
    opacity: 0.4;
    background: rgb(163,193,202,0.5);
    filter: blur(100px);
    width: 300px;
    left: -100px;
    content: "";
}.training_results::after {
    right: -60px;
    position: absolute;
    background: rgb(119,159,172,0.5);
    filter: blur(80px);
    z-index: 0;
    height: 200px;
    content: "";
    width: 200px;
    opacity: 0.3;
    bottom: -40px;
    transform: rotate(25deg);
}.training_results h5 {
    position: relative;
    line-height: 1.4;
    font-size: 18px;
    margin-left: auto;
    z-index: 2;
    text-align: center;
    transform: translateY(0);
    font-weight: 700;
    color: #000000;
    transition: transform 0.5s ease-out;
    margin-bottom: 60px;
    margin-right: auto;
    max-width: 800px;
}.training_results h5:hover {
    transform: translateY(-5px);
}.training_results h5::after {
    transform: translateX(-50%);
    left: 50%;
    background: linear-gradient(90deg, rgb(163,193,202) 0%, rgb(119,159,172) 100%);
    border-radius: 10px;
    height: 4px;
    bottom: -15px;
    width: 80px;
    content: "";
    position: absolute;
}.training_results .container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
}.training_results .virtual_track {
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid rgb(163,193,202);
    padding: 40px;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: perspective(1000px) rotateX(0deg);
    backdrop-filter: blur(10px);
    gap: 40px;
    align-items: center;
    display: flex;
    flex-direction: column;
}.training_results .virtual_track:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateX(2deg);
}.training_results .virtual_track > div:first-child {
    position: relative;
    width: 100%;
    overflow: hidden;
}.training_results .slider {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: auto;
    object-fit: cover;
    transform: scale(1);
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.training_results .virtual_track:hover .slider {
    transform: scale(1.05);
}.training_results .reading_block {
    width: 100%;
}.training_results .reading_block ul {
    list-style: none;
    display: grid;
    padding: 0;
    gap: 20px;
    grid-template-columns: 1fr;
    margin: 0;
}.training_results .reading_block li {
    position: relative;
    padding-left: 40px;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.95;
}.training_results .reading_block li:hover {
    transform: translateY(-3px);
    opacity: 1;
}.training_results .reading_block li p {
    position: relative;
    color: #000000;
    font-weight: 400;
    font-family: Arial, sans-serif;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}.training_results .reading_block li svg {
    width: 24px;
    top: 2px;
    left: -40px;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 24px;
}.training_results .reading_block li:hover svg {
    transform: scale(1.2) rotate(5deg);
}.training_results .reading_block li svg path {
    transition: fill 0.3s ease;
    fill: rgb(163,193,202);
}.training_results .reading_block li:hover svg path {
    fill: rgb(119,159,172);
}.training_results .reading_block li:nth-child(odd) {
    border-left: 2px solid rgba(var(--primary-color-rgb), 0.1);
    padding-left: 45px;
}.training_results .reading_block li:nth-child(even) {
    padding-right: 15px;
    border-right: 2px solid rgba(var(--secondary-color-rgb), 0.1);
}.training_results .reading_block li::before {
    height: 2px;
    background: linear-gradient(90deg, rgb(163,193,202) 0%, rgb(119,159,172) 100%);
    bottom: -5px;
    content: "";
    position: absolute;
    width: 0;
    transition: width 0.4s ease-out;
    left: 0;
}.training_results .reading_block li:hover::before {
    width: 100%;
}

@media (min-width: 768px) {.training_results {
    padding: 150px 0 180px;
}.training_results .virtual_track {
    padding: 60px;
    border-left: 6px solid rgb(163,193,202);
    flex-direction: row;
}.training_results .virtual_track > div:first-child {
    flex-shrink: 0;
    width: 40%;
}.training_results .reading_block {
    padding-left: 40px;
    width: 60%;
}.training_results .reading_block ul {
    gap: 30px 20px;
    grid-template-columns: repeat(2, 1fr);
}.training_results h5 {
    font-size: calc(18px * 1.1);
    margin-bottom: 80px;
}.training_results h5::after {
    width: 120px;
    height: 5px;
}
}

@media (min-width: 992px) {.training_results .virtual_track {
    padding: 70px;
}.training_results .virtual_track > div:first-child {
    width: 45%;
}.training_results .reading_block {
    padding-left: 50px;
    width: 55%;
}.training_results .slider {
    height: 450px;
}
}

@media (max-width: 767px) {.training_results {
    padding: 80px 0 100px;
}.training_results h5 {
    padding: 0 15px;
    margin-bottom: 40px;
    font-size: calc(18px * 0.9);
}.training_results .virtual_track {
    padding: 30px 20px;
}.training_results .slider {
    margin-bottom: 20px;
    height: 250px;
}.training_results .reading_block li {
    margin-bottom: 15px;
}.training_results .reading_block li p {
    font-size: calc(17px * 0.95);
}}.connect {
    position: relative;
    padding: 100px 0;
    background: rgb(212,229,233);
    overflow: hidden;
}.connect::before {
    height: 100%;
    content: '';
    background-size: 30px 30px;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
    top: 0;
}.connect .container {
    position: relative;
    z-index: 1;
}.connect .message_infoUBL4w {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(212,229,233) 0%, transparent 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    border-radius: 18px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}.connect .message_infoUBL4w::before {
    content: '';
    height: 5px;
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(163,193,202) 0%, rgb(119,159,172) 100%);
    left: 0;
    width: 100%;
}.connect .message_infoUBL4w h2 {
    color: rgb(163,193,202);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}.connect .message_infoUBL4w p {
    max-width: 700px;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.7;
    color: #000000;
}.connect .message_infoUBL4w p:last-of-type {
    margin-bottom: 40px;
    padding-left: 30px;
    position: relative;
}.connect .send_info {
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
}.connect .get_support7XW {
    flex-direction: column;
    text-decoration: none;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    height: 110px;
    border-radius: 10px;
    position: relative;
    width: 110px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    z-index: 1;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
}.connect .get_support7XW::before {
    left: 0;
    width: 100%;
    transition: opacity 0.4s ease;
    opacity: 0;
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    background: linear-gradient(135deg, rgb(163,193,202,0.5) 0%, rgb(119,159,172,0.5) 100%);
    height: 100%;
}.connect .get_support7XW::after {
    position: absolute;
    transform: scaleX(0);
    content: '';
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    bottom: 0;
    background: rgb(163,193,202);
    width: 100%;
    height: 3px;
    transform-origin: left;
}.connect .get_support7XW:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.connect .get_support7XW:hover::before {
    opacity: 0.1;
}.connect .get_support7XW:hover::after {
    transform: scaleX(1);
}.connect .get_support7XW svg {
    stroke: rgb(163,193,202);
    margin-bottom: 12px;
    fill: none;
    stroke-width: 2;
    width: 36px;
    transition: all 0.3s ease;
    height: 36px;
}.connect .get_support7XW:hover svg {
    stroke: rgb(163,193,202);
    transform: scale(1.1);
}.connect .get_support7XW span {
    font-weight: 600;
    transition: all 0.3s ease;
    color: #000000;
    text-align: center;
    font-size: calc(13px * 0.85);
}.connect .get_support7XW:hover span {
    color: rgb(163,193,202);
}.connect .message_infoUBL4w p:last-of-type svg {
    top: 50%;
    fill: none;
    stroke-width: 2;
    stroke: rgb(163,193,202);
    height: 20px;
    position: absolute;
    width: 20px;
    left: 0;
    transform: translateY(-50%);
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.05;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.08;
    }
}

@media screen and (max-width: 991px) {.connect {
    padding: 80px 0;
}.connect .message_infoUBL4w {
    padding: 40px;
}.connect .get_support7XW {
    height: 100px;
    width: 100px;
}
}

@media screen and (max-width: 767px) {.connect {
    padding: 60px 0;
}.connect .message_infoUBL4w {
    padding: 30px;
}.connect .message_infoUBL4w h2 {
    font-size: calc(28px * 0.9);
}.connect .send_info {
    gap: 20px;
    justify-content: center;
}.connect .get_support7XW {
    width: 90px;
    height: 90px;
}.connect .get_support7XW svg {
    height: 30px;
    width: 30px;
    margin-bottom: 8px;
}
}

@media screen and (max-width: 480px) {.connect {
    padding: 50px 0;
}.connect .message_infoUBL4w {
    padding: 25px 20px;
}.connect .message_infoUBL4w h2 {
    font-size: calc(28px * 0.85);
}.connect .get_support7XW {
    height: 80px;
    width: 80px;
}.connect .get_support7XW svg {
    margin-bottom: 6px;
    width: 28px;
    height: 28px;
}.connect .get_support7XW span {
    font-size: calc(13px * 0.8);
}}.target_audience {
    background-color: rgb(212,229,233);
    z-index: 1;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}.target_audience::before {
    width: 100%;
    background: radial-gradient(
        circle at center,
        rgba(rgb(119,159,172,0.5), 0.3) 0%,
        transparent 70%
    );
    top: -50%;
    position: absolute;
    right: -50%;
    animation: pulseGlow 15s infinite alternate ease-in-out;
    height: 100%;
    content: "";
    z-index: -1;
}.target_audience::after {
    animation: pulseGlow 12s infinite alternate-reverse ease-in-out;
    height: 80%;
    left: -20%;
    position: absolute;
    z-index: -1;
    content: "";
    bottom: -30%;
    width: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(rgb(163,193,202,0.5), 0.2) 0%,
        transparent 70%
    );
}.target_audience .virtual_track {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-direction: column;
    position: relative;
    display: flex;
    align-items: center;
}.target_audience h3 {
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1rem 3rem;
    position: relative;
    backdrop-filter: blur(10px);
    font-size: 38px;
    z-index: 2;
    margin-bottom: 4rem;
    font-weight: 600;
    border-radius: 22px;
}.target_audience h3::before,
.target_audience h3::after {
    border-style: solid;
    width: 30px;
    height: 30px;
    border-color: rgb(119,159,172);
    position: absolute;
    content: "";
    z-index: -1;
}.target_audience h3::before {
    left: -10px;
    top: -10px;
    border-width: 2px 0 0 2px;
    border-radius: 5px 0 0 0;
}.target_audience h3::after {
    right: -10px;
    bottom: -10px;
    border-radius: 0 0 5px 0;
    border-width: 0 2px 2px 0;
}.target_audience ul {
    padding: 0;
    width: 100%;
    margin: 0;
    gap: 2rem;
    display: flex;
    z-index: 2;
    list-style: none;
    position: relative;
    flex-direction: column;
}.target_audience li {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.05),
        0 6px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 2rem;
    display: flex;
    text-align: center;
    align-items: center;
}.target_audience li::before {
    top: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(rgb(119,159,172,0.5), 0.5),
        transparent
    );
    height: 2px;
    right: 0;
    left: 0;
    content: "";
    position: absolute;
}.target_audience li:hover {
    transform: translateY(-10px);
    border-color: rgba(rgb(119,159,172,0.5), 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 12px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}.target_audience li:hover::after {
    bottom: 0;
    content: "";
    animation: glowLine 2s infinite alternate ease-in-out;
    position: absolute;
    background: linear-gradient(
        90deg,
        rgb(119,159,172),
        rgb(163,193,202)
    );
    left: 0;
    height: 4px;
    width: 100%;
}.target_audience li svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    fill: rgb(119,159,172);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}.target_audience li svg path {
    fill: rgb(119,159,172);
    transition: fill 0.3s ease;
}.target_audience li:hover svg {
    fill: rgb(163,193,202);
    transform: scale(1.05);
}.target_audience li:hover svg path {
    fill: rgb(163,193,202);
}.target_audience li:nth-child(even) {
    transform: translateX(20px);
}.target_audience li:nth-child(odd) {
    transform: translateX(-20px);
}.target_audience li:nth-child(even):hover {
    transform: translateX(20px) translateY(-10px);
}.target_audience li:nth-child(odd):hover {
    transform: translateX(-20px) translateY(-10px);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes glowLine {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(rgb(119,159,172,0.5), 0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(rgb(163,193,202,0.5), 0.8);
    }
}

@media (min-width: 992px) {.target_audience ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    display: grid;
}.target_audience li:nth-child(1),
    .target_audience li:nth-child(3) {
    transform: translateY(20px);
}.target_audience li:nth-child(2),
    .target_audience li:nth-child(4) {
    transform: translateY(-20px);
}.target_audience li:nth-child(1):hover,
    .target_audience li:nth-child(3):hover {
    transform: translateY(10px);
}.target_audience li:nth-child(2):hover,
    .target_audience li:nth-child(4):hover {
    transform: translateY(-30px);
}
}

@media (max-width: 991px) {.target_audience {
    padding: 4rem 0;
}.target_audience ul {
    gap: 1.5rem;
}.target_audience h3 {
    margin-bottom: 3rem;
    font-size: calc(38px * 0.9);
    padding: 0.8rem 2rem;
}.target_audience li {
    padding: 1.5rem;
}.target_audience li svg {
    margin-bottom: 1rem;
    height: 50px;
    width: 50px;
}
}

@media (max-width: 768px) {.target_audience {
    padding: 3rem 0;
}.target_audience .virtual_track {
    padding: 0 1.5rem;
}.target_audience h3 {
    font-size: calc(38px * 0.8);
    margin-bottom: 2.5rem;
    padding: 0.7rem 1.5rem;
}.target_audience li {
    padding: 1.25rem;
}.target_audience li:nth-child(even),
    .target_audience li:nth-child(odd) {
    transform: translateX(0);
}.target_audience li:nth-child(even):hover,
    .target_audience li:nth-child(odd):hover {
    transform: translateY(-5px);
}.target_audience li svg {
    width: 40px;
    height: 40px;
}
}

@media (max-width: 480px) {.target_audience {
    padding: 2.5rem 0;
}.target_audience .virtual_track {
    padding: 0 1rem;
}.target_audience h3 {
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: calc(38px * 0.7);
}.target_audience h3::before,
    .target_audience h3::after {
    height: 20px;
    width: 20px;
}.target_audience ul {
    gap: 1rem;
}.target_audience li {
    padding: 1rem;
}.target_audience li svg {
    margin-bottom: 0.75rem;
    width: 35px;
    height: 35px;
}}.plan_box {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.plan_box::before {
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    content: "";
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%,
        rgba(20, 20, 40, 0.75) 100%);
    right: 0;
}.plan_box .container {
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}.plan_box .learn_rates {
    perspective: 1000px;
}.plan_box h2 {
    font-weight: 700;
    font-size: 30px;
    transform: translateZ(30px);
    text-align: center;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 20px;
}.plan_box .annual_plan {
    max-width: 700px;
    font-weight: 400;
    color: #ffffff;
    transform: translateZ(20px);
    text-align: center;
    margin: 0 auto 50px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 17px;
}.plan_box .premium_cost {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0;
    list-style: none;
    margin: 0;
}.plan_box .premium_cost li {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}.plan_box .price_choices {
    height: 100%;
    display: block;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
}.plan_box .annual_fee {
    position: relative;
    transform-style: preserve-3d;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 100%);
    overflow: hidden;
}.plan_box .annual_fee::before {
    position: absolute;
    height: 5px;
    content: "";
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(90deg, 
        rgb(163,193,202) 0%,
        rgb(119,159,172) 100%);
    transform: scaleX(0.92);
    top: 0;
    left: 0;
    right: 0;
    transform-origin: left;
}.plan_box .annual_fee::after {
    height: 2px;
    opacity: 0.7;
    left: 10px;
    transform-origin: bottom;
    position: absolute;
    background: linear-gradient(90deg, 
        rgb(119,159,172,0.5) 0%,
        rgb(163,193,202,0.5) 100%);
    right: 10px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    bottom: -2px;
    content: "";
}.plan_box .learning_fee {
    padding: 35px 30px;
    transform: translateZ(10px);
}.plan_box .learning_fee h4 {
    display: inline-block;
    position: relative;
    transform: translateZ(5px);
    margin: 0 0 20px;
    font-size: calc(19px * 1.1);
    color: #ffffff;
    font-weight: 700;
}.plan_box .learning_fee h4::after {
    height: 3px;
    left: 0;
    bottom: -8px;
    width: 40px;
    content: "";
    background: rgb(163,193,202);
    position: absolute;
    transform-origin: left;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}.plan_box .learning_fee p {
    opacity: 0.85;
    font-size: 17px;
    hyphens: auto;
    line-height: 1.6;
    padding-right: 5px;
    font-weight: 400;
    max-height: 250px;
    color: #ffffff;
    margin: 0 0 25px;
    overflow-wrap: break-word;
    overflow-y: auto;
    word-wrap: break-word;
}.plan_box .learning_fee p::-webkit-scrollbar {
    width: 4px;
}.plan_box .learning_fee p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(163,193,202,0.5);
}.plan_box .plan_deals {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: calc(19px * 1.2);
    font-weight: 700;
    transform: translateZ(15px);
    margin-top: 20px;
    display: block;
    text-align: right;
    color: #ffffff;
}.plan_box .plan_deals::before {
    background: rgb(163,193,202);
    box-shadow: 0 0 15px rgb(163,193,202);
    border-radius: 50%;
    content: "";
    transform: translateY(-2px);
    width: 10px;
    height: 10px;
    margin-right: 8px;
    display: inline-block;
}.plan_box .premium_cost li:hover {
    transform: translateY(-5px) scale(1.02);
}.plan_box .premium_cost li:hover .annual_fee {
    transform: translateZ(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3),
                0 10px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
}.plan_box .premium_cost li:hover .annual_fee::before {
    transform: scaleX(1);
}.plan_box .premium_cost li:hover .annual_fee::after {
    transform: scaleY(1.5);
    opacity: 0.9;
}.plan_box .premium_cost li:hover .learning_fee h4::after {
    width: 100%;
}

@media (max-width: 991px) {.plan_box {
    padding: 80px 0;
}.plan_box h2 {
    font-size: calc(30px * 0.9);
}.plan_box .premium_cost {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}.plan_box .learning_fee {
    padding: 30px 25px;
}
}

@media (max-width: 767px) {.plan_box {
    padding: 60px 0;
}.plan_box h2 {
    font-size: calc(30px * 0.8);
    margin-bottom: 15px;
}.plan_box .annual_plan {
    font-size: calc(17px * 0.95);
    margin-bottom: 40px;
}.plan_box .premium_cost {
    margin: 0 auto;
    max-width: 450px;
    grid-template-columns: 1fr;
}.plan_box .learning_fee {
    padding: 25px 20px;
}.plan_box .learning_fee h4 {
    font-size: 19px;
}.plan_box .plan_deals {
    font-size: calc(19px * 1.1);
}
}

@media (max-width: 480px) {.plan_box {
    padding: 50px 0;
}.plan_box h2 {
    font-size: calc(30px * 0.7);
}.plan_box .annual_plan {
    font-size: calc(17px * 0.9);
}.plan_box .learning_fee {
    padding: 20px 15px;
}.plan_box .learning_fee p {
    line-height: 1.5;
    font-size: calc(17px * 0.9);
    max-height: 200px;
}}footer {
    position: relative;
    z-index: 1;
}footer::before {
    z-index: -2;
    top: 0;
    background: rgb(163,193,202);
    right: 0;
    content: "";
    position: absolute;
    bottom: 0;
    opacity: 0.95;
    left: 0;
}footer::after {
    background-image: 
        radial-gradient(circle at 25% 25%, rgb(119,159,172) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgb(119,159,172) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgb(119,159,172) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgb(119,159,172) 1px, transparent 1px);
    right: 0;
    background-size: 50px 50px;
    content: "";
    top: 0;
    z-index: -1;
    left: 0;
    bottom: 0;
    position: absolute;
    opacity: 0.1;
}.access_help {
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
}.access_help::before {
    height: 3px;
    background: rgb(119,159,172);
    top: 0;
    width: 100%;
    left: 0;
    content: "";
    position: absolute;
}.access_help::after {
    width: 100%;
    top: 3px;
    position: absolute;
    opacity: 0.5;
    content: "";
    background-repeat: repeat-x;
    left: 0;
    height: 8px;
    background-image: 
        linear-gradient(90deg, 
            rgb(119,159,172) 0px, rgb(119,159,172) 10px,
            transparent 10px, transparent 15px,
            rgb(119,159,172) 15px, rgb(119,159,172) 30px,
            transparent 30px, transparent 35px,
            rgb(119,159,172) 35px, rgb(119,159,172) 40px,
            transparent 40px, transparent 60px,
            rgb(119,159,172) 60px, rgb(119,159,172) 70px,
            transparent 70px, transparent 80px,
            rgb(119,159,172) 80px, rgb(119,159,172) 90px,
            transparent 90px, transparent 110px,
            rgb(119,159,172) 110px, rgb(119,159,172) 120px,
            transparent 120px, transparent 140px
        );
}.access_help .container {
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    display: flex;
}.access_help .company_holder {
    border-radius: 23px;
    padding: 0;
    flex: 1 1 400px;
    position: relative;
}.access_help .company_holder::before {
    height: 100%;
    background-size: 50px 50px;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 23px;
    width: 100%;
    opacity: 0.1;
    background-image:
        linear-gradient(0deg, transparent 24px, rgb(119,159,172) 25px, rgb(119,159,172) 26px, transparent 27px, transparent 49px),
        linear-gradient(90deg, transparent 24px, rgb(119,159,172) 25px, rgb(119,159,172) 26px, transparent 27px, transparent 49px);
}.access_help .company_holder h3 {
    background: rgb(119,159,172);
    position: relative;
    padding: 1.5rem 2rem;
    margin: 0;
    font-weight: 700;
    border-top-left-radius: 23px;
    font-size: 36px;
    border-top-right-radius: 23px;
    color: #ffffff;
}.access_help .company_holder h3::after {
    right: 15px;
    background: #ffffff;
    content: "";
    top: 50%;
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}.access_help .level_up {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-right-radius: 23px;
    border-bottom-left-radius: 23px;
    line-height: 1.6;
    padding: 2rem;
    position: relative;
    font-size: 16px;
    color: #ffffff;
}.access_help .level_up::before {
    top: 2rem;
    opacity: 0.6;
    position: absolute;
    height: 20px;
    border-radius: 50%;
    width: 20px;
    background: rgb(119,159,172);
    content: "";
    left: -10px;
}.access_help .level_up::after {
    background: rgb(119,159,172);
    right: -10px;
    position: absolute;
    bottom: 2rem;
    width: 20px;
    content: "";
    border-radius: 50%;
    opacity: 0.6;
    height: 20px;
}.access_help .footer_benefit {
    flex: 1 1 calc(100% - 450px);
    min-width: 400px;
}.access_help .site_navbar {
    flex-wrap: wrap;
    gap: 3rem;
    display: flex;
}.access_help .nav_top {
    flex: 1 1 calc(50% - 1.5rem);
    border-radius: 23px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}.access_help .nav_top::before {
    position: absolute;
    content: "";
    right: 0;
    z-index: -1;
    border-radius: 23px;
    top: 0;
    left: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}.access_help .nav_top h5 {
    font-weight: 600;
    display: flex;
    padding: 1rem 1.5rem;
    align-items: center;
    background: rgb(119,159,172);
    position: relative;
    margin: 0;
    font-size: 22px;
    color: #ffffff;
}.access_help .nav_top h5::before {
    background: #ffffff;
    content: "";
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    width: 8px;
    margin-right: 10px;
}.access_help .nav_top h5::after {
    width: 6px;
    background: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    content: "";
    position: absolute;
    right: 15px;
    border-radius: 50%;
}.access_help .nav_top .site_navbar {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 1.5rem;
}.access_help .nav_top .site_navbar a {
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 10px;
    padding: 0.8rem 1rem 0.8rem 2rem;
    color: #ffffff;
    font-size: 16px;
}.access_help .nav_top .site_navbar a::before {
    transform: translateY(-50%);
    transition: all 0.3s ease;
    position: absolute;
    background: rgb(119,159,172);
    top: 50%;
    left: 0.7rem;
    height: 6px;
    content: "";
    border-radius: 50%;
    width: 6px;
}.access_help .nav_top .site_navbar a:hover {
    background: rgba(255, 255, 255, 0.1);
}.access_help .nav_top .site_navbar a:hover::before {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}.site_map {
    margin-top: 2.5rem;
    background: rgb(119,159,172);
    position: relative;
    padding: 2rem 0;
}.site_map::before {
    background-repeat: repeat-x;
    height: 5px;
    width: 100%;
    left: 0;
    content: "";
    top: -5px;
    position: absolute;
    background-image: 
        linear-gradient(90deg, 
            transparent 0px, transparent 20px,
            rgb(163,193,202) 20px, rgb(163,193,202) 40px,
            transparent 40px, transparent 60px,
            rgb(163,193,202) 60px, rgb(163,193,202) 80px,
            transparent 80px, transparent 100px,
            rgb(163,193,202) 100px, rgb(163,193,202) 120px
        );
}.site_map .container {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}.site_map .container::before,
.site_map .container::after {
    content: "";
    width: 15px;
    border-radius: 50%;
    height: 15px;
    top: 50%;
    position: absolute;
    background: rgb(163,193,202);
    transform: translateY(-50%);
}.site_map .container::before {
    left: 15%;
}.site_map .container::after {
    right: 15%;
}.site_map .tech_stack {
    font-size: 12px;
    color: #ffffff;
    background: rgb(163,193,202);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    position: relative;
}.site_map .tech_stack::before,
.site_map .tech_stack::after {
    position: absolute;
    top: 50%;
    background: rgb(163,193,202);
    content: "";
    height: 1px;
    width: 50px;
    transform: translateY(-50%);
}.site_map .tech_stack::before {
    right: 100%;
    margin-right: 15px;
}.site_map .tech_stack::after {
    margin-left: 15px;
    left: 100%;
}

@media (max-width: 1200px) {.access_help .container {
    gap: 2rem;
}.access_help .company_holder {
    flex: 1 1 350px;
}.access_help .footer_benefit {
    flex: 1 1 calc(100% - 400px);
    min-width: 350px;
}.access_help .site_navbar {
    gap: 2rem;
}.site_map .container::before {
    left: 5%;
}.site_map .container::after {
    right: 5%;
}
}

@media (max-width: 992px) {.access_help {
    padding: 3.5rem 0 1.5rem;
}.access_help .container {
    flex-direction: column;
    gap: 2.5rem;
}.access_help .company_holder,
    .access_help .footer_benefit {
    min-width: 100%;
    flex: 1 1 100%;
}.access_help .nav_top {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 200px;
}.site_map .container::before,
    .site_map .container::after {
    display: none;
}
}

@media (max-width: 768px) {.access_help {
    padding: 3rem 0 1rem;
}.access_help .site_navbar {
    gap: 1.5rem;
}.access_help .company_holder h3 {
    padding: 1.2rem 1.5rem;
    font-size: calc(36px - 2px);
}.access_help .level_up {
    padding: 1.5rem;
}.access_help .level_up::before,
    .access_help .level_up::after {
    display: none;
}.site_map {
    margin-top: 2rem;
}.site_map .tech_stack::before,
    .site_map .tech_stack::after {
    width: 30px;
}
}

@media (max-width: 576px) {.access_help {
    padding: 2.5rem 0 0.8rem;
}.access_help .nav_top {
    flex: 1 1 100%;
    min-width: 100%;
}.access_help .site_navbar {
    gap: 1rem;
}.access_help .nav_top .site_navbar a {
    padding: 0.7rem 1rem 0.7rem 1.8rem;
}.access_help .nav_top .site_navbar a::before {
    left: 0.6rem;
}.site_map {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}.site_map .tech_stack::before,
    .site_map .tech_stack::after {
    display: none;
}
}

@media (max-width: 420px) {.access_help::after {
    background-size: 100px 5px;
    height: 5px;
}.access_help .company_holder h3::after,
    .access_help .nav_top h5::before,
    .access_help .nav_top h5::after {
    display: none;
}.access_help .nav_top h5 {
    padding: 0.8rem 1rem;
}.access_help .nav_top .site_navbar {
    padding: 1rem;
}.site_map .tech_stack {
    width: 90%;
    padding: 0.4rem 1.5rem;
}}.contact_box {
    padding: 6rem 0;
    overflow: hidden;
    perspective: 1000px;
    background: linear-gradient(
        225deg, 
        rgb(212,229,233) 0%, 
        rgb(119,159,172,0.5) 100%
    );
    position: relative;
}.contact_box::before {
    bottom: 0;
    position: absolute;
    top: 0;
    content: '';
    right: 0;
    left: 0;
    background: 
        repeating-linear-gradient(
            0deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        );
    pointer-events: none;
    z-index: 1;
}.contact_box::after {
    animation: circuit-pulse 10s infinite alternate;
    position: absolute;
    background: radial-gradient(
        circle at center, 
        rgb(163,193,202,0.5) 0%, 
        transparent 70%
    );
    height: 200%;
    z-index: 2;
    opacity: 0.6;
    left: -50%;
    top: -50%;
    content: '';
    width: 200%;
}.contact_box .container {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 1rem;
}.contact_box h2 {
    text-align: center;
    position: relative;
    font-size: 39px;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
}.contact_box h2::before,
.contact_box h2::after {
    background: linear-gradient(
        to right, 
        transparent, 
        rgb(163,193,202), 
        transparent
    );
    bottom: -0.5rem;
    height: 2px;
    position: absolute;
    content: '';
}.contact_box h2::before {
    width: 30%;
    left: 0;
}.contact_box h2::after {
    width: 30%;
    right: 0;
}.contact_box .message_box {
    transform: rotateX(5deg) scale(0.98);
    align-items: stretch;
    transition: transform 0.3s ease;
    display: flex;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgb(163,193,202,0.5);
    border-radius: 26px;
    background: rgb(119,159,172,0.5);
}.contact_box .message_box:hover {
    transform: rotateX(0) scale(1);
}.contact_box .slider {
    overflow: hidden;
    flex: 0 0 40%;
    position: relative;
    min-height: 500px;
}.contact_box .slider::before {
    left: 0;
    mix-blend-mode: color-dodge;
    background: linear-gradient(
        135deg, 
        rgb(163,193,202,0.5) 0%, 
        rgb(119,159,172,0.5) 100%
    );
    content: '';
    height: 100%;
    opacity: 0.7;
    width: 100%;
    top: 0;
    position: absolute;
}.contact_box .inquiry_info {
    padding: 4rem 3rem;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 60%;
    position: relative;
    display: flex;
}.contact_box .inquiry_info::before {
    right: 2rem;
    top: 2rem;
    width: 10px;
    position: absolute;
    content: '';
    height: 10px;
    box-shadow: 0 0 20px rgb(163,193,202);
    background: rgb(163,193,202);
    border-radius: 50%;
    animation: signal-pulse 2s infinite alternate;
}.contact_box .inquiry_info form {
    z-index: 3;
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: 0 auto;
}.contact_box .inquiry_info h3 {
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
}.contact_box .inquiry_info input:not([type="checkbox"]):not([type="submit"]) {
    margin-bottom: 1.5rem;
    border: 1px solid rgb(163,193,202,0.5);
    outline: none;
    width: 100%;
    font-size: 17px;
    position: relative;
    z-index: 2;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: rgb(119,159,172,0.5);
    color: #ffffff;
    transition: all 0.3s ease;
}.contact_box .inquiry_info input:not([type="checkbox"]):not([type="submit"])::before {
    transition: opacity 0.3s ease;
    height: 100%;
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    left: 0;
    background: linear-gradient(
        45deg, 
        transparent 0%, 
        rgb(163,193,202,0.5) 100%
    );
}.contact_box .inquiry_info input:not([type="checkbox"]):not([type="submit"]):focus {
    box-shadow: 0 0 15px rgb(163,193,202,0.5);
    border-color: rgb(163,193,202);
}.contact_box .inquiry_info input:not([type="checkbox"]):not([type="submit"]):focus::before {
    opacity: 1;
}.contact_box .inquiry_info .help_form {
    margin-bottom: 1.5rem;
    align-items: center;
    display: flex;
}.contact_box .inquiry_info .help_form input[type="checkbox"] {
    width: 22px;
    background: rgb(119,159,172,0.5);
    appearance: none;
    transition: all 0.3s ease;
    margin-right: 1rem;
    border-radius: 10px;
    cursor: pointer;
    height: 22px;
    position: relative;
    border: 2px solid rgb(163,193,202,0.5);
}.contact_box .inquiry_info .help_form input[type="checkbox"]:checked {
    border-color: rgb(163,193,202);
    background: rgb(163,193,202);
}.contact_box .inquiry_info .help_form input[type="checkbox"]:checked::after {
    font-size: 0.8rem;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    position: absolute;
    color: #ffffff;
    content: '✔';
}.contact_box .inquiry_info .help_form label {
    display: flex;
    align-items: center;
    font-size: 17px;
    color: #ffffff;
}.contact_box .inquiry_info .help_form a {
    margin-left: 0.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgb(163,193,202);
}.contact_box .inquiry_info .help_form a:hover {
    text-decoration: underline;
}.contact_box .inquiry_info .inquiry_panel {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    padding: 1rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    border: none;
    overflow: hidden;
    font-size: 15px;
    text-transform: uppercase;
    background: rgb(163,193,202);
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}.contact_box .inquiry_info .inquiry_panel::before {
    transition: all 0.3s ease;
    width: 100%;
    left: -100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgb(163,193,202,0.5), 
        transparent
    );
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
}.contact_box .inquiry_info .inquiry_panel:hover::before {
    left: 100%;
}.contact_box .inquiry_info .inquiry_panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(163,193,202,0.5);
}

@keyframes circuit-pulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(5deg) scale(1.02);
        opacity: 0.8;
    }
}

@keyframes signal-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {.contact_box .message_box {
    transform: none;
    flex-direction: column;
}.contact_box .slider {
    min-height: 300px;
    flex: 0 0 100%;
}.contact_box .inquiry_info {
    padding: 3rem 2rem;
    flex: 0 0 100%;
}
}

@media screen and (max-width: 768px) {.contact_box {
    padding: 3rem 0;
}.contact_box h2 {
    margin-bottom: 2rem;
    font-size: calc(39px * 0.8);
}.contact_box .inquiry_info h3 {
    font-size: calc(38px * 0.9);
}.contact_box .inquiry_info input:not([type="checkbox"]):not([type="submit"]) {
    margin-bottom: 1rem;
    padding: 0.8rem 1.2rem;
}.contact_box .inquiry_info .help_form {
    align-items: flex-start;
}.contact_box .inquiry_info .help_form input[type="checkbox"] {
    margin-top: 0.2rem;
}
}

@media screen and (max-width: 480px) {.contact_box .message_box {
    border-radius: 0;
}.contact_box .slider {
    min-height: 250px;
}.contact_box .inquiry_info {
    padding: 2rem 1.5rem;
}
}