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

header,footer {
    width: 100%;
}

header {
    padding: 0;
    background: linear-gradient(90deg, rgb(109,122,162) 0%, rgb(177,183,201) 100%);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    overflow: visible;
    margin-top: 0;
    z-index: 100;
    position: relative;
}

.secure-habitat h3 {
    padding-bottom: 8px;
    font-size: 34px;
    font-weight: 600;
}

.secure-habitat li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: #ffffff;
    line-height: 1.6;
    font-size: 12px;
}

.secure-habitat p, .secure-habitat span {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 12px;
    text-align: justify;
}

.course-structure .container {
    z-index: 2;
    position: relative;
}

.course-structure .skill-map {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.course-structure .info-wrapper::before {
    top: -4rem;
    position: absolute;
    height: 8rem;
    border-radius: 50%;
    opacity: 0.6;
    content: "";
    background: rgb(109,122,162,0.5);
    right: 3rem;
    z-index: -1;
    width: 8rem;
}

.course-structure .info-wrapper .description:last-of-type {
    animation-delay: 0.4s;
    font-weight: 600;
    margin-bottom: 0;
}

.course-structure .img-preview:hover {
    transform: perspective(1000px) rotateX(0) rotateY(0);
}

.course-structure .img-preview::after {
    left: 0;
    background: linear-gradient(
        to bottom right,
        rgb(177,183,201,0.5) 0%,
        transparent 40%
    );
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    content: "";
}

.data-overview ul {
    padding: 0;
    gap: 2.5rem;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    list-style: none;
}

.data-overview .boost-growth:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                0 8px 20px rgba(0, 0, 0, 0.07);
}

.data-overview .boost-growth p::after {
    content: "";
    bottom: -0.3rem;
    width: 30%;
    background: rgb(109,122,162);
    transition: width 0.4s ease;
    height: 3px;
    left: 0;
    position: absolute;
}

.data-overview h4::after {
    height: 3px;
    background: linear-gradient(to right, rgb(177,183,201), rgb(109,122,162));
    width: 80px;
    bottom: 0;
    left: 50%;
    position: absolute;
    content: "";
    transform: translateX(-50%);
}

.launch-now .container {
    gap: 3rem;
    position: relative;
    flex-direction: column;
    margin: 0 auto;
    perspective: 1000px;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-now svg {
    width: 4rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transform: translateZ(40px);
    height: 4rem;
}

.launch-now .help-info {
    position: relative;
    font-family: Arial, sans-serif;
    padding: 1rem 2.5rem;
    background: #ffffff;
    font-size: 19px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    isolation: isolate;
    color: rgb(177,183,201);
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1),
              0 5px 10px rgba(0, 0, 0, 0.05),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 8px;
    display: inline-block;
}

.ty-section .mission-why {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    transform: perspective(1000px) rotateY(2deg);
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    flex-direction: column;
    padding: 50px;
    position: relative;
}

.ty-section .mission-why:hover h5 {
    transform: translateX(5px);
}

.ty-section .mission-why > div:last-child {
    padding: 20px;
    background: linear-gradient(120deg, rgba(255,255,255,0.7), rgba(255,255,255,0.9));
    position: relative;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
    transition: all 0.4s ease;
    border-left: 2px solid rgb(177,183,201,0.5);
}

.edu-cookie {
    margin-right: 20px;
    flex-shrink: 0;
}

.learn-consent {
    display: flex;
    max-width: 600px;
    justify-content: center;
    flex-direction: column;
}

.digital-cookies:hover {
    border-color: rgb(177,183,201,0.5);
    background: rgb(177,183,201,0.5);
}


#cookie-message-box {
    display: none;
}

.audience-profile::before {
    width: 100%;
    opacity: 0.4;
    content: "";
    height: 100%;
    z-index: 1;
    background-size: 30px 30px;
    background: 
        linear-gradient(90deg, transparent 98%, rgb(109,122,162,0.5) 98%, rgb(109,122,162,0.5) 100%),
        linear-gradient(0deg, transparent 98%, rgb(109,122,162,0.5) 98%, rgb(109,122,162,0.5) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.audience-profile p {
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    align-items: center;
    display: flex;
    border: 1px solid rgb(206,208,212);
    color: #000000;
    justify-content: flex-start;
    width: calc(33.333% - 50px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 18px;
    margin: 0;
    background: #ffffff;
    z-index: 1;
    position: relative;
}

.audience-profile p:hover svg path {
    fill: rgb(109,122,162);
}

.audience-profile .mission-why > div p:nth-child(2) {
    animation-delay: 0.2s;
}

.audience-profile .mission-why > div p:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-form-section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.contact-form-section .message-inquiry {
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 23px;
}

.contact-form-section .request-section h3 {
    padding-bottom: 15px;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 36px;
}

.contact-form-section .request-section div:hover {
    transform: translateX(10px);
}

.contact-form-section .request-section svg {
    height: 24px;
    margin-right: 15px;
    fill: #ffffff;
    width: 24px;
}

.contact-form-section .request-section span {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
}

.contact-form-section .help-feedback::before {
    position: absolute;
    right: -100px;
    width: 200px;
    background: radial-gradient(circle, rgb(109,122,162,0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite alternate;
    content: '';
    top: -100px;
    height: 200px;
}

.contact-form-section .help-feedback .request-help {
    display: flex;
    margin-bottom: 25px;
    position: relative;
    align-items: flex-start;
}

.contact-form-section .help-feedback .request-help input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.contact-form-section .help-feedback .request-help label::after {
    position: absolute;
    top: 9px;
    content: '';
    left: 5px;
    height: 4px;
    transform: rotate(-45deg) scale(0);
    opacity: 0;
    border-bottom: 2px solid #ffffff;
    transition: all 0.2s ease;
    border-left: 2px solid #ffffff;
    width: 8px;
}

.contact-form-section .help-feedback .help-info::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 0;
    position: absolute;
    content: '';
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    z-index: -1;
}

.footer-disclaimer::before {
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    height: 3px;
    background: rgb(109,122,162);
    width: 100%;
}

.footer-disclaimer .company_holder::before {
    background-size: 50px 50px;
    width: 100%;
    background-image:
        linear-gradient(0deg, transparent 24px, rgb(109,122,162) 25px, rgb(109,122,162) 26px, transparent 27px, transparent 49px),
        linear-gradient(90deg, transparent 24px, rgb(109,122,162) 25px, rgb(109,122,162) 26px, transparent 27px, transparent 49px);
    position: absolute;
    opacity: 0.1;
    border-radius: 20px;
    top: 0;
    height: 100%;
    content: "";
    left: 0;
}

.footer-disclaimer .trade-mark::before {
    height: 20px;
    content: "";
    left: -10px;
    top: 2rem;
    position: absolute;
    background: rgb(109,122,162);
    width: 20px;
    opacity: 0.6;
    border-radius: 50%;
}

.footer-disclaimer .top-base {
    min-width: 200px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    flex: 1 1 calc(50% - 1.5rem);
}

.footer-disclaimer .top-base h5::after {
    transform: translateY(-50%);
    right: 15px;
    height: 6px;
    top: 50%;
    background: #ffffff;
    width: 6px;
    border-radius: 50%;
    content: "";
    position: absolute;
}

.footer-disclaimer .top-base .header-base a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vr-labs {
    padding: 2rem 0;
    background: rgb(109,122,162);
    position: relative;
    margin-top: 2.5rem;
}

.vr-labs .container::before,
.vr-labs .container::after {
    background: rgb(177,183,201);
    top: 50%;
    height: 15px;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 15px;
    transform: translateY(-50%);
}

.vr-labs .container::before {
    left: 15%;
}

.vr-labs .comm-guide::after {
    margin-left: 15px;
    left: 100%;
}

.title-page .mission-why {
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    height: 100%;
    display: flex;
    position: relative;
}

.title-page .main-entry {
    animation: carousel-slide 25s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    display: flex;
    height: 100%;
    width: calc(100% * var(--slide-count, 5));
}



.title-page .main-entry {
    --slide-count: 2;
}

.title-page .info-wrapper h1::after {
    content: '';
    height: 3px;
    width: 80px;
    left: 50%;
    position: absolute;
    bottom: -10px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgb(177,183,201), transparent);
}

.title-page .info-wrapper .help-info:hover {
    background: linear-gradient(135deg, rgb(109,122,162) 0%, rgb(177,183,201) 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.title-page:has(.course-begin:nth-child(3)) .main-entry {
    --slide-count: 3;
}

.title-page:has(.course-begin:nth-child(5)) .main-entry {
    --slide-count: 5;
}

.tariff-package .container {
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    padding: 0 1.5rem;
}

.tariff-package .value-pricing {
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    background: rgba(#ffffff, 0.9);
    position: relative;
    transform: translateY(0);
    padding: 2rem;
}

.tariff-package .study-pricing {
    overflow: hidden;
    text-decoration: none;
    display: block;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.tariff-package .learn-pricing {
    position: relative;
    font-weight: 700;
    margin: 0.5rem 0 1.25rem;
    display: block;
    font-size: calc(24px + 0.3rem);
    color: rgb(177,183,201);
}

.tariff-package .img-preview::after {
    width: 100%;
    content: "";
    z-index: 1;
    top: 0;
    position: absolute;
    left: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

header .head-top::before {
    left: -5px;
    transform: skew(-5deg);
    opacity: 0.1;
    bottom: -5px;
    border: 2px solid #ffffff;
    content: '';
    position: absolute;
    top: -5px;
    z-index: -1;
    right: -5px;
    transition: all 0.3s ease;
}

header .main-learning img {
    max-height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

header .site-head a::before {
    transform: scale(0.9);
    z-index: -1;
    background: #ffffff;
    opacity: 0;
    content: '';
    left: -2px;
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    transition: opacity 0.3s ease;
}

header .head-learn::before {
    width: 100%;
    height: 1px;
    top: 0;
    content: '';
    left: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    position: absolute;
}

.company-info::after {
    bottom: -10%;
    background: linear-gradient(45deg, rgb(109,122,162,0.5) 0%, transparent 70%);
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    width: 250px;
    content: '';
    z-index: 0;
    height: 250px;
    left: -5%;
    animation: float 18s infinite alternate-reverse ease-in-out;
    filter: blur(35px);
    opacity: 0.3;
}

.company-info .learn-growth {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.04),
              -12px -12px 24px rgba(255, 255, 255, 0.9),
              inset 1px 1px 2px rgba(255, 255, 255, 0.6),
              inset -1px -1px 2px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    position: relative;
    padding: 40px;
}

.company-info .learn-growth div {
    scrollbar-color: rgb(109,122,162,0.5) transparent;
    font-size: 14px;
    line-height: 1.75;
    scrollbar-width: thin;
    padding-right: 10px;
    color: #000000;
    max-height: 240px;
    overflow-y: auto;
    font-weight: 400;
}

.instructor-profile .img-preview {
    transition: all 0.5s ease;
    margin-bottom: -50px;
    border-radius: 0;
    position: relative;
    width: 200px;
    height: 250px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 3;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.instructor-profile .name::after {
    width: 50px;
    background: rgb(109,122,162);
    left: 50%;
    content: "";
    height: 3px;
    transform: translateX(-50%);
    position: absolute;
    bottom: -10px;
}

.instructor-profile .exp-view::after {
    transform: translateX(-10px);
    top: -15px;
    left: 50%;
}

.company-info .learn-growth div::-webkit-scrollbar {
    width: 6px;
}

.company-info .learn-growth div::-webkit-scrollbar-track {
    background: transparent;
}

.company-info .learn-growth div::-webkit-scrollbar-thumb {
    background-color: rgb(109,122,162,0.5);
    border-radius: 10px;
}



@media (max-width: 767px) {.course-structure {
    padding: 4rem 0;
}.course-structure .img-preview {
    transform: perspective(1000px) rotateX(3deg) rotateY(-3deg);
    margin-bottom: 2rem;
}}



@media (max-width: 992px) {.data-overview {
    padding: 5rem 0;
}.data-overview ul {
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}.data-overview .boost-growth {
    padding: 1.5rem;
}.data-overview .boost-growth p {
    font-size: 32px;
}
}



@media (prefers-reduced-motion: reduce) {.data-overview .boost-growth,
    .data-overview .boost-growth p,
    .data-overview .boost-growth span,
    .data-overview .boost-growth::before,
    .data-overview .boost-growth p::after {
    transition-duration: 0.1s;
}
}



@media (max-width: 768px) {.launch-now {
    padding: 3.5rem 1.25rem;
}.launch-now h2 {
    font-size: calc(29px * 0.8);
}.launch-now .mission-why {
    padding: 2rem;
    flex-direction: column;
    transform: none;
    gap: 1.5rem;
}.launch-now svg {
    height: 3.5rem;
    width: 3.5rem;
}.launch-now .help-info {
    padding: 0.9rem 2rem;
}
}



@media (max-width: 768px) {.ty-section {
    padding: 50px 0;
}.ty-section .mission-why {
    padding: 30px 20px;
    transform: none;
}.ty-section .mission-why::before {
    height: 3px;
}.ty-section .mission-why > div:first-child {
    margin-bottom: 20px;
}.ty-section h5 {
    font-size: calc(20px - 4px);
}.ty-section p {
    font-size: calc(15px - 1px);
}.ty-section .mission-why > div:last-child {
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
}
}



@media (max-width: 576px) {.audience-profile {
    padding: 60px 0;
}.audience-profile h4 {
    font-size: calc(36px * 0.7);
    padding: 8px 16px;
    box-shadow: 2px 2px 0 rgb(177,183,201,0.5);
    margin-bottom: 35px;
    border-width: 1px;
}.audience-profile div > div {
    gap: 20px;
}.audience-profile p {
    font-size: calc(18px * 0.9);
    padding: 12px;
}.audience-profile p svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}.audience-profile p::after {
    width: 12px;
    height: 12px;
    left: -5px;
    top: -5px;
}.audience-profile::after {
    width: 100px;
    height: 100px;
}}



@media (max-width: 1200px) {.footer-disclaimer .container {
    gap: 2rem;
}.footer-disclaimer .company_holder {
    flex: 1 1 350px;
}.footer-disclaimer .peer-help {
    flex: 1 1 calc(100% - 400px);
    min-width: 350px;
}.footer-disclaimer .header-base {
    gap: 2rem;
}.vr-labs .container::before {
    left: 5%;
}.vr-labs .container::after {
    right: 5%;
}
}



@media (max-width: 576px) {.footer-disclaimer {
    padding: 2.5rem 0 0.8rem;
}.footer-disclaimer .top-base {
    flex: 1 1 100%;
    min-width: 100%;
}.footer-disclaimer .header-base {
    gap: 1rem;
}.footer-disclaimer .top-base .header-base a {
    padding: 0.7rem 1rem 0.7rem 1.8rem;
}.footer-disclaimer .top-base .header-base a::before {
    left: 0.6rem;
}.vr-labs {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
}.vr-labs .comm-guide::before,
    .vr-labs .comm-guide::after {
    display: none;
}
}



@media (max-width: 576px) {.title-page {
    min-height: 500px;
    height: 60vh;
}.title-page .master-expert::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
}.title-page .main-entry {
    animation: carousel-slide 20s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}.title-page .info-wrapper {
    padding: 1rem;
}.title-page .info-wrapper h1 {
    font-size: calc(38px * 0.9);
}.title-page .info-wrapper h1::after {
    width: 50px;
    height: 2px;
}.title-page .info-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: calc(12px * 0.9);
}.title-page .info-wrapper .help-info {
    padding: 0.6rem 1.5rem;
    font-size: calc(15px * 0.95);
}
}



@media (max-width: 767px) {header {
    padding: 0;
}header .head-learn {
    padding: 0.8rem 1.5rem;
}header .head-top {
    max-width: 140px;
}header .head-top::before, 
    header .head-top::after {
    right: -3px;
    top: -3px;
    left: -3px;
    bottom: -3px;
}header .main-learning img {
    max-height: 35px;
}header .top-base {
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    justify-content: flex-start;
    margin-top: 0.8rem;
    overflow-x: auto;
}header .top-base::-webkit-scrollbar {
    height: 3px;
}header .top-base::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}header .site-head {
    margin: 0 0.2rem;
    flex: 0 0 auto;
}header .site-head a {
    padding: 0 0.8rem;
    font-size: calc(17px - 2px);
    white-space: nowrap;
    height: 32px;
}header .site-head::after {
    display: none;
}
}

@keyframes circuitPath {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



@keyframes scale-pulse {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes neonPulse {
    0% { opacity: 0.3; box-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; }
    100% { opacity: 0.7; box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff; }
}

