﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
header,footer {
    width: 100%;
}
svg {
    width: 30px;
    height: 30px;
}
.container {
    margin: auto;
    width: 1131px;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}
.app-nav-page {
    flex: 1 0 auto;
}
.app-wrapper-template {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.app-access-help {
    flex: 0 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;
    }
}
.app-customer-experience {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgb(237,233,235) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.app-customer-experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgb(210,202,207,0.5) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgb(176,164,171,0.5) 0%, transparent 30%);
    opacity: 0.2;
}

.app-customer-experience .container {
    position: relative;
    z-index: 2;
}

.app-customer-experience h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 2rem;
}

.app-customer-experience h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(210,202,207), transparent);
    animation: glow 2s infinite;
}

.app-customer-experience .app-review-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    perspective: 1000px;
}

.app-customer-experience .app-review-opinions {
    flex: 0 0 calc(33.333% - 2rem);
    margin: 1rem;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-customer-experience .app-review-opinions::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: linear-gradient(45deg, rgb(210,202,207), rgb(176,164,171)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    z-index: 1;
}

.app-customer-experience .app-review-opinions:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 
                0 0 20px rgb(210,202,207,0.5), 
                0 0 30px rgb(176,164,171,0.5);
}

.app-customer-experience .app-review-opinions:hover::before {
    animation: borderGlow 1.5s infinite alternate;
}

.app-customer-experience .app-review-opinions img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgb(237,233,235);
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.app-customer-experience .app-review-opinions:hover img {
    filter: grayscale(0%);
}

.app-customer-experience .app-review-opinions p {
    padding: 1rem 1.5rem 0;
    margin: 0;
    font-size: calc(16px + 0.1rem);
    font-weight: 600;
    color: #000000;
    position: relative;
}

.app-customer-experience .app-review-opinions p::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: rgb(210,202,207);
}

.app-customer-experience .app-review-opinions .app-master-it {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
}

.app-customer-experience .app-review-opinions:nth-child(3n+1) {
    transform: translateZ(20px);
}

.app-customer-experience .app-review-opinions:nth-child(3n+2) {
    transform: translateZ(10px);
}

.app-customer-experience .app-review-opinions:nth-child(3n+3) {
    transform: translateZ(30px);
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgb(210,202,207), 0 0 10px rgb(210,202,207,0.5);
    }
    50% {
        box-shadow: 0 0 15px rgb(210,202,207), 0 0 20px rgb(210,202,207);
    }
}

@keyframes borderGlow {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .app-customer-experience .app-review-opinions {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 767px) {
    .app-customer-experience {
        padding: 4rem 0;
    }

    .app-customer-experience h2 {
        font-size: calc(30px - 0.3rem);
        margin-bottom: 2.5rem;
    }

    .app-customer-experience .app-review-opinions {
        flex: 0 0 100%;
        margin: 1rem 0;
        transform: none !important;
    }

    .app-customer-experience .app-review-opinions:hover {
        transform: translateY(-10px) !important;
    }
}

.app-course-info {
    position: relative;
    overflow: hidden;
    background-color: rgb(237,233,235);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-course-info .app-education-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.app-course-info .app-education-flow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, #000000 100%);
    z-index: 2;
}

.app-course-info .app-tech-learn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.app-course-info .app-ready-skills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fade-slides 30s infinite;
    transform: scale(1.1);
    transition: transform 1s ease;
}

.app-course-info .app-education-flow:hover .app-ready-skills {
    animation-play-state: paused;
}

.app-course-info .app-ready-skills:hover {
    transform: scale(1);
}

.app-course-info .app-ready-skills:nth-child(1) {
    animation-delay: 0s;
}

.app-course-info .app-ready-skills:nth-child(2) {
    animation-delay: -6s;
}

.app-course-info .app-ready-skills:nth-child(3) {
    animation-delay: -12s;
}

.app-course-info .app-ready-skills:nth-child(4) {
    animation-delay: -18s;
}

.app-course-info .app-ready-skills:nth-child(5) {
    animation-delay: -24s;
}

.app-course-info .app-ready-skills img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.7);
}

.app-course-info .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.app-course-info .app-mastery-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-course-info .app-job-classes {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-course-info .app-job-classes::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgb(210,202,207,0.5) 90deg,
        transparent 180deg,
        rgb(176,164,171,0.5) 270deg,
        transparent 360deg
    );
    z-index: -1;
    opacity: 0.7;
    animation: rotate-border 15s linear infinite;
}

.app-course-info .app-job-classes::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgb(210,202,207,0.5) 0%,
        transparent 70%
    );
    opacity: 0.1;
    z-index: -2;
    filter: blur(20px);
    animation: pulse-glow 5s ease-in-out infinite alternate;
}

.app-course-info .app-job-classes h3 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}


.app-course-info .app-job-classes p {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-course-info .app-request-widget {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgb(210,202,207);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-course-info .app-request-widget::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(176,164,171);
    z-index: -1;
    transition: transform 0.6s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.app-course-info .app-request-widget:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.app-course-info .app-request-widget:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}


.app-course-info .app-job-classes .orbital-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
}

.app-course-info .app-job-classes::before,
.app-course-info .app-job-classes::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}


.app-course-info::after {
    content: "";
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.app-course-info::after {
    width: 100px;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff,
        #ffffff 10px,
        transparent 10px,
        transparent 25px
    );
    opacity: 0.3;
}

.app-course-info .active-indicator {
    position: absolute;
    bottom: 15%;
    left: calc(50% - 50px);
    width: 10px;
    height: 10px;
    background: rgb(210,202,207);
    z-index: 101;
    border-radius: 50%;
    animation: slide-indicator 30s infinite;
}


@keyframes fade-slides {
    0%, 16% {
        opacity: 1;
        z-index: 5;
    }
    20%, 96% {
        opacity: 0;
        z-index: 0;
    }
    100% {
        opacity: 1;
        z-index: 5;
    }
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.05;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.15;
        transform: scale(1.05);
    }
}

@keyframes slide-indicator {
    0%, 16% {
        left: calc(50% - 50px);
    }
    20%, 36% {
        left: calc(50% - 25px);
    }
    40%, 56% {
        left: calc(50%);
    }
    60%, 76% {
        left: calc(50% + 25px);
    }
    80%, 96% {
        left: calc(50% + 50px);
    }
    100% {
        left: calc(50% - 50px);
    }
}


@media screen and (max-width: 1200px) {
    .app-course-info .app-job-classes {
        max-width: 900px;
    }
}

@media screen and (max-width: 992px) {
    .app-course-info .app-job-classes {
        max-width: 800px;
        padding: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .app-course-info {
        padding: 2rem 0;
    }
    
    .app-course-info .app-job-classes {
        max-width: 700px;
        aspect-ratio: auto;
        height: auto;
        min-height: 700px;
        padding: 3rem;
        border-radius: 20px;
    }
    
    .app-course-info .app-job-classes::before {
        border-radius: 20px;
    }
    
    .app-course-info .app-job-classes h3 {
        font-size: calc(34px * 0.9);
    }
    
    .app-course-info .app-job-classes p {
        -webkit-line-clamp: 3;
    }
}

@media screen and (max-width: 576px) {
    .app-course-info .app-job-classes {
        max-width: 90%;
        min-height: auto;
        aspect-ratio: auto;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .app-course-info .app-job-classes::before {
        border-radius: 15px;
    }
    
    .app-course-info .app-job-classes h3 {
        font-size: calc(34px * 0.8);
    }

    .app-course-info .app-job-classes p {
        font-size: calc(18px * 0.9);
        -webkit-line-clamp: 4;
        margin-bottom: 1.5rem;
    }
    
    .app-course-info .app-request-widget {
        padding: 0.7rem 1.8rem;
        font-size: calc(14px * 0.9);
    }
    
    .app-course-info::after {
        bottom: 10%;
    }
    
    .app-course-info .active-indicator {
        bottom: 10%;
    }
}


.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(2):last-child) .app-ready-skills:nth-child(1) {
    animation-delay: 0s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(2):last-child) .app-ready-skills:nth-child(2) {
    animation-delay: -15s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(3):last-child) .app-ready-skills:nth-child(1) {
    animation-delay: 0s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(3):last-child) .app-ready-skills:nth-child(2) {
    animation-delay: -10s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(3):last-child) .app-ready-skills:nth-child(3) {
    animation-delay: -20s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(4):last-child) .app-ready-skills:nth-child(1) {
    animation-delay: 0s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(4):last-child) .app-ready-skills:nth-child(2) {
    animation-delay: -7.5s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(4):last-child) .app-ready-skills:nth-child(3) {
    animation-delay: -15s;
}

.app-course-info .app-tech-learn:has(.app-ready-skills:nth-child(4):last-child) .app-ready-skills:nth-child(4) {
    animation-delay: -22.5s;
}.app-course-beneficiaries {
    position: relative;
    background-color: rgb(237,233,235);
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
}

.app-course-beneficiaries::before,
.app-course-beneficiaries::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 20%, 
        rgb(210,202,207) 50%, 
        transparent 80%);
    opacity: 0;
    z-index: -1;
    animation: beamScan 8s infinite ease-out;
}

.app-course-beneficiaries::before {
    left: 25%;
    animation-delay: 0s;
}

.app-course-beneficiaries::after {
    right: 25%;
    animation-delay: 4s;
}

.app-course-beneficiaries .app-mastery-center {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.app-course-beneficiaries .app-mastery-center::before,
.app-course-beneficiaries .app-mastery-center::after {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, 
        transparent 10%, 
        rgb(176,164,171) 50%, 
        transparent 90%);
    opacity: 0;
    z-index: -1;
    animation: horizontalBeam 10s infinite ease-out;
}

.app-course-beneficiaries .app-mastery-center::before {
    top: 30%;
    animation-delay: 2s;
}

.app-course-beneficiaries .app-mastery-center::after {
    bottom: 30%;
    animation-delay: 6s;
}

.app-course-beneficiaries h3 {
    font-size: 37px;
    font-weight: 600;
    color: rgb(210,202,207);
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    letter-spacing: 1px;
}

.app-course-beneficiaries h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 2px;
    background: rgb(210,202,207);
    transform: translateX(-50%) scaleX(0.3);
    opacity: 0.7;
    animation: pulseLine 4s infinite ease-in-out;
}

.app-course-beneficiaries ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-course-beneficiaries ul li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.3rem 1.5rem;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.app-course-beneficiaries ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, 
        rgb(176,164,171,0.5), 
        rgb(210,202,207,0.5));
    opacity: 0.5;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.app-course-beneficiaries ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(210,202,207,0.5) 20%, 
        transparent 80%);
    opacity: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.app-course-beneficiaries ul li:hover {
    color: #000000;
    background-color: rgba(255, 255, 255, 0.05);
}

.app-course-beneficiaries ul li:hover::before {
    transform: scaleY(1);
}

.app-course-beneficiaries ul li:hover::after {
    opacity: 0.15;
    transform: translateX(100%);
}

.app-course-beneficiaries ul li svg {
    width: 28px;
    height: 28px;
    margin-right: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.app-course-beneficiaries ul li:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.app-course-beneficiaries ul li svg path {
    fill: rgb(210,202,207);
    transition: fill 0.4s ease;
}

.app-course-beneficiaries ul li:hover svg path {
    fill: rgb(176,164,171);
    animation: flashIcon 1s ease;
}

@keyframes beamScan {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    20%, 35% {
        opacity: 0.8;
    }
    80%, 100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes horizontalBeam {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    20%, 35% {
        opacity: 0.5;
    }
    80%, 100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scaleX(0.3);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes flashIcon {
    0% {
        filter: brightness(1);
    }
    25% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}

.app-course-beneficiaries::before :nth-child(1) {
    animation-delay: 1s;
}

.app-course-beneficiaries::before :nth-child(2) {
    animation-delay: 3s;
}

.app-course-beneficiaries::before :nth-child(3) {
    animation-delay: 5s;
}

.app-course-beneficiaries ul::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid rgb(210,202,207,0.5);
    border-radius: 50%;
    opacity: 0.2;
}

.app-course-beneficiaries ul::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    border: 1px solid rgb(176,164,171,0.5);
    border-radius: 50%;
    opacity: 0.2;
}

@media (max-width: 992px) {
    .app-course-beneficiaries {
        padding: 4rem 0;
    }
    
    .app-course-beneficiaries h3 {
        font-size: calc(37px * 0.9);
    }
    
    .app-course-beneficiaries ul {
        gap: 1rem;
    }
    
    .app-course-beneficiaries ul li {
        padding: 1.1rem 1.3rem;
    }
}

@media (max-width: 576px) {
    .app-course-beneficiaries {
        padding: 3rem 0;
    }
    
    .app-course-beneficiaries .app-mastery-center {
        padding: 0 1.5rem;
    }
    
    .app-course-beneficiaries h3 {
        font-size: calc(37px * 0.8);
        margin-bottom: 2.5rem;
    }
    
    .app-course-beneficiaries ul {
        gap: 0.8rem;
    }
    
    .app-course-beneficiaries ul li {
        padding: 1rem;
    }
    
    .app-course-beneficiaries ul li svg {
        width: 24px;
        height: 24px;
        margin-right: 1rem;
    }
}.app-advantages-benefits {
    background: linear-gradient(120deg, rgb(176,164,171) 0%, rgb(210,202,207,0.5) 20%, #000000 40%, rgb(237,233,235) 60%, rgb(176,164,171) 80%, rgb(210,202,207) 100%);
    padding: 120px 30px;
    position: relative;
    overflow: hidden;
}

.app-advantages-benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(210,202,207,0.5) 49%, rgb(210,202,207,0.5) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgb(176,164,171,0.5) 49%, rgb(176,164,171,0.5) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.07;
    z-index: 1;
}

.app-advantages-benefits .app-expert-upgrade {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.app-advantages-benefits h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.app-advantages-benefits h2::before,
.app-advantages-benefits h2::after {
    content: "";
    position: absolute;
    background: rgb(210,202,207);
}

.app-advantages-benefits h2::before {
    width: 40px;
    height: 40px;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.app-advantages-benefits h2::after {
    width: 100px;
    height: 1px;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.app-advantages-benefits .app-mentor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.app-advantages-benefits .app-skill-gains {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        85% 100%, 
        0% 100%
    );
}

.app-advantages-benefits .app-skill-gains::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(210,202,207) 0%, transparent 150%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.app-advantages-benefits .app-skill-gains:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.app-advantages-benefits .app-skill-gains:hover::before {
    opacity: 0.1;
}

.app-advantages-benefits .app-study-gain {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.5s ease;
}

.app-advantages-benefits .app-study-gain::before,
.app-advantages-benefits .app-study-gain::after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.5s ease;
}

.app-advantages-benefits .app-study-gain::before {
    width: 100%;
    height: 100%;
    background: rgb(210,202,207,0.5);
    opacity: 0.2;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.app-advantages-benefits .app-study-gain::after {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    background: rgb(176,164,171,0.5);
    opacity: 0.1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.app-advantages-benefits .app-skill-gains:hover .app-study-gain {
    transform: rotateY(180deg);
}

.app-advantages-benefits .app-skill-gains:hover .app-study-gain::before {
    transform: scale(1.2) rotate(45deg);
    opacity: 0.4;
}

.app-advantages-benefits .app-skill-gains:hover .app-study-gain::after {
    transform: scale(0.8) rotate(-45deg);
    opacity: 0.3;
}

.app-advantages-benefits .app-study-gain svg {
    width: 50px;
    height: 50px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.app-advantages-benefits .app-skill-gains:hover .app-study-gain svg {
    transform: rotateY(180deg);
}

.app-advantages-benefits .app-study-gain svg path,
.app-advantages-benefits .app-study-gain svg rect,
.app-advantages-benefits .app-study-gain svg circle,
.app-advantages-benefits .app-study-gain svg line,
.app-advantages-benefits .app-study-gain svg polyline,
.app-advantages-benefits .app-study-gain svg polygon {
    fill: #ffffff;
    transition: all 0.5s ease;
}

.app-advantages-benefits .app-skill-gains p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
    transition: all 0.3s ease;
}

.app-advantages-benefits .app-skill-gains:nth-child(4n+1) {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        85% 100%, 
        0% 100%
    );
}

.app-advantages-benefits .app-skill-gains:nth-child(4n+2) {
    clip-path: polygon(
        15% 0%, 
        100% 0%, 
        100% 100%, 
        0% 100%, 
        0% 15%
    );
}

.app-advantages-benefits .app-skill-gains:nth-child(4n+3) {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 100%, 
        15% 100%, 
        0% 85%
    );
}

.app-advantages-benefits .app-skill-gains:nth-child(4n+4) {
    clip-path: polygon(
        0% 0%, 
        85% 0%, 
        100% 15%, 
        100% 100%, 
        0% 100%
    );
}

.app-advantages-benefits .app-skill-gains:nth-child(odd)::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(210,202,207);
    opacity: 0.5;
    transition: all 0.5s ease;
    z-index: 1;
}

.app-advantages-benefits .app-skill-gains:nth-child(4n+1)::after {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}

.app-advantages-benefits .app-skill-gains:nth-child(4n+3)::after {
    bottom: 0;
    left: 0;
    clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
}

.app-advantages-benefits .app-skill-gains:hover::after {
    width: 30px;
    height: 30px;
    background: rgb(176,164,171);
}

.app-advantages-benefits .app-mentor-benefits:has(.app-skill-gains:nth-child(even):last-child) {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.app-advantages-benefits .app-mentor-benefits:has(.app-skill-gains:nth-child(odd):last-child) {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.app-advantages-benefits .app-mentor-benefits:has(.app-skill-gains:nth-child(odd):last-child) .app-skill-gains:last-child {
    grid-column-end: span 2;
    max-width: 600px;
    justify-self: center;
}

@keyframes rotateInfinity {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.app-advantages-benefits .app-skill-gains:hover .app-study-gain::before {
    animation: rotateInfinity 10s linear infinite;
}

@media (max-width: 1200px) {
    .app-advantages-benefits {
        padding: 100px 25px;
    }
    
    .app-advantages-benefits h2 {
        margin-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .app-advantages-benefits {
        padding: 80px 20px;
    }
    
    .app-advantages-benefits h2 {
        margin-bottom: 60px;
    }
    
    .app-advantages-benefits .app-mentor-benefits {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .app-advantages-benefits .app-skill-gains {
        padding: 30px 25px;
    }
    
    .app-advantages-benefits .app-study-gain {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .app-advantages-benefits .app-study-gain svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .app-advantages-benefits {
        padding: 60px 15px;
    }
    
    .app-advantages-benefits h2 {
        font-size: calc(34px * 0.9);
        margin-bottom: 50px;
    }
    
    .app-advantages-benefits .app-mentor-benefits {
        grid-template-columns: 1fr;
    }
    
    .app-advantages-benefits .app-mentor-benefits:has(.app-skill-gains:nth-child(odd):last-child) .app-skill-gains:last-child {
        grid-column-end: span 1;
        max-width: 100%;
    }
    
    .app-advantages-benefits .app-skill-gains {
        padding: 25px 20px;
    }
    
    .app-advantages-benefits .app-study-gain {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .app-advantages-benefits .app-study-gain svg {
        width: 35px;
        height: 35px;
    }
}.app-training-benefits {
    position: relative;
    padding: 7rem 0;
    background: rgb(237,233,235);
    overflow: hidden;
}

.app-training-benefits::before {
    content: '';
    position: absolute;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    top: -35vw;
    right: -35vw;
    background: linear-gradient(135deg, rgb(210,202,207,0.5) 0%, rgb(176,164,171,0.5) 100%);
    opacity: 0.8;
    z-index: 1;
}

.app-training-benefits::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    bottom: -25vw;
    left: -25vw;
    background: linear-gradient(135deg, rgb(176,164,171,0.5) 0%, rgb(210,202,207,0.5) 100%);
    opacity: 0.6;
    z-index: 1;
}

.app-training-benefits .app-mastery-center {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.app-training-benefits .app-pic-img-wrap {
    width: 45%;
    height: 550px;
    margin-left: -5vw;
    border-radius: 50% 0 0 50%;
    position: relative;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.app-training-benefits .app-pic-img-wrap::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border: 2px dashed rgb(210,202,207,0.5);
    border-radius: 50% 0 0 50%;
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.app-training-benefits .app-pic-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(210,202,207,0.5) 0%, transparent 100%);
    border-radius: 50% 0 0 50%;
    z-index: 1;
}

.app-training-benefits .app-text-clip {
    width: 60%;
    padding: 3rem 2rem 3rem 5rem;
    position: relative;
}

.app-training-benefits h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    position: relative;
}

.app-training-benefits h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: rgb(210,202,207);
    bottom: -15px;
    left: 0;
    border-radius: 10px;
}

.app-training-benefits .text_main_holder {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.app-training-benefits .text_main_holder::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    left: -2rem;
    top: 0;
    background: linear-gradient(to bottom, rgb(210,202,207,0.5), transparent);
}

.app-training-benefits .text_main_holder > div {
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.app-training-benefits .text_main_holder > div::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgb(210,202,207);
    left: -2.3rem;
    transition: all 0.3s ease;
}

.app-training-benefits .text_main_holder > div:hover::before {
    background: rgb(210,202,207);
    transform: scale(1.3);
}

.app-training-benefits .text_main_holder > div:hover {
    transform: translateX(10px);
}

.app-training-benefits .text_main_holder svg {
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.app-training-benefits .text_main_holder > div:hover svg {
    background: rgb(210,202,207,0.5);
    transform: rotate(10deg);
}

.app-training-benefits .text_main_holder svg path {
    fill: rgb(210,202,207);
    transition: fill 0.3s ease;
}

.app-training-benefits .text_main_holder > div:hover svg path {
    fill: rgb(176,164,171);
}

.app-training-benefits .text_main_holder p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .app-training-benefits .app-pic-img-wrap {
        width: 40%;
        height: 500px;
    }
    
    .app-training-benefits .app-text-clip {
        width: 65%;
        padding-left: 4rem;
    }
}

@media (max-width: 992px) {
    .app-training-benefits .app-mastery-center {
        flex-direction: column;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .app-training-benefits .app-pic-img-wrap {
        width: 100%;
        height: 400px;
        margin-left: 0;
        border-radius: 19px;
        margin-bottom: 3rem;
    }
    
    .app-training-benefits .app-pic-img-wrap::before {
        border-radius: 19px;
    }
    
    .app-training-benefits .app-pic-img-wrap::after {
        border-radius: 19px;
    }
    
    .app-training-benefits .app-text-clip {
        width: 100%;
        padding: 0;
    }
    
    .app-training-benefits .text_main_holder::before {
        left: -1.5rem;
    }
    
    .app-training-benefits .text_main_holder > div::before {
        left: -1.8rem;
    }
}

@media (max-width: 768px) {
    .app-training-benefits {
        padding: 5rem 0;
    }
    
    .app-training-benefits .app-pic-img-wrap {
        height: 350px;
    }
    
    .app-training-benefits h2 {
        font-size: calc(32px * 0.9);
    }
}

@media (max-width: 576px) {
    .app-training-benefits .app-mastery-center {
        max-width: 95%;
    }
    
    .app-training-benefits .app-pic-img-wrap {
        height: 250px;
    }
    
    .app-training-benefits .text_main_holder {
        margin-left: 1.5rem;
    }
    
    .app-training-benefits .text_main_holder::before {
        left: -1rem;
    }
    
    .app-training-benefits .text_main_holder > div::before {
        left: -1.3rem;
    }
    
    .app-training-benefits .text_main_holder svg {
        width: 2.5rem;
        height: 2.5rem;
        padding: 0.5rem;
        margin-right: 1rem;
    }
}header {
    position: relative;
    width: 100%;
    background: rgb(237,233,235);
    padding: 1rem 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgb(210,202,207,0.5) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgb(176,164,171,0.5) 100%);
    opacity: 0.4;
    z-index: 0;
}

header .container {
    width: 100%;
    max-width: 100%;
    padding: 0 2%;
    margin: 0;
    position: relative;
    z-index: 1;
}

header .app-header-lesson {
    display: grid;
    grid-template-areas:
        "logo logo logo"
        "left menu right";
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    gap: 1rem;
}

header .app-nav-core {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
}

header .app-nav-core::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(210,202,207), 
        rgb(176,164,171), 
        rgb(210,202,207), 
        transparent);
}

header .app-nav-core svg {
    width: 160px;
    height: auto;
    transition: all 0.3s ease;
}

header .app-nav-core:hover svg {
    transform: translateY(-3px);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

header .app-nav-lead {
    grid-area: menu;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.6rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

header .app-top-sitewrap {
    color: #000000;
    font-family: Ubuntu, sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

header .app-top-sitewrap:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgb(210,202,207), rgb(176,164,171));
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgb(210,202,207,0.5);
}

@media (max-width: 991px) {
    header .app-nav-core svg {
        width: 140px;
    }
    
    header .app-nav-lead {
        gap: 0.4rem;
        padding: 0.5rem;
    }
    
    header .app-top-sitewrap {
        padding: 0.35rem 0.6rem;
        font-size: calc(20px - 1px);
    }
}

@media (max-width: 767px) {
    header .app-header-lesson {
        grid-template-areas:
            "logo"
            "app-nav-lead";
        grid-template-columns: 1fr;
    }
    
    header .app-nav-core {
        padding: 0.4rem;
    }
    
    header .app-nav-core svg {
        width: 130px;
    }
    
    header .app-nav-lead {
        flex-wrap: wrap;
        padding: 0.4rem;
    }
    
    header .app-top-sitewrap {
        padding: 0.3rem 0.5rem;
        font-size: calc(20px - 1px);
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.8rem 0;
    }
    
    header .app-nav-core svg {
        width: 120px;
    }
    
    header .app-nav-lead {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 0.4rem;
    }
    
    header .app-nav-lead::-webkit-scrollbar {
        height: 2px;
    }
    
    header .app-nav-lead::-webkit-scrollbar-thumb {
        background: rgb(210,202,207);
        border-radius: 10px;
    }
    
    header .app-top-sitewrap {
        white-space: nowrap;
        flex-shrink: 0;
    }
}.app-our-story {
    position: relative;
    background: rgb(237,233,235);
    padding: 100px 0;
    overflow: hidden;
}

.app-our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(210,202,207,0.5) 0%, transparent 70%);
    opacity: 0.6;
}

.app-our-story .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-our-story .app-mastery-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.app-our-story .app-academy-track {
    flex: 0 0 30%;
    background-color: rgb(210,202,207);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.app-our-story .app-pic-img-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-our-story .app-founders-team {
    text-align: center;
    width: 100%;
}

.app-our-story .app-our-journey {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.app-our-story .app-skill-growth {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 400;
}

.app-our-story .app-text-clip {
    flex: 0 0 70%;
    padding: 50px;
}

.app-our-story .app-pro-study {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
}

.app-our-story .app-pro-study svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    fill: rgb(210,202,207);
}

.app-our-story .app-pro-study svg path {
    fill: rgb(210,202,207);
}

.app-our-story h2 {
    font-size: 33px;
    margin-bottom: 20px;
    color: #000000;
    position: relative;
    padding-bottom: 15px;
}

.app-our-story h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(210,202,207);
}

.app-our-story p {
    font-size: 13px;
    line-height: 1.7;
    color: #000000;
}

@media (max-width: 992px) {
    .app-our-story {
        padding: 70px 0;
    }
    
    .app-our-story .app-mastery-center {
        flex-direction: column;
    }
    
    .app-our-story .app-academy-track {
        flex: 0 0 100%;
        width: 100%;
        padding: 40px 20px;
    }
    
    .app-our-story .app-text-clip {
        flex: 0 0 100%;
        width: 100%;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .app-our-story {
        padding: 50px 0;
    }
    
    .app-our-story .app-pic-img-wrap {
        width: 150px;
        height: 150px;
    }
    
    .app-our-story h2 {
        font-size: calc(33px - 0.2rem);
    }
}

@media (max-width: 480px) {
    .app-our-story {
        padding: 40px 0;
    }
    
    .app-our-story .app-pic-img-wrap {
        width: 120px;
        height: 120px;
    }
    
    .app-our-story .app-academy-track {
        padding: 30px 15px;
    }
    
    .app-our-story .app-text-clip {
        padding: 30px 15px;
    }
    
    .app-our-story .app-our-journey {
        font-size: calc(22px - 0.2rem);
    }
    
    .app-our-story .app-skill-growth {
        font-size: calc(13px - 0.1rem);
    }
    
    .app-our-story h2 {
        font-size: calc(33px - 0.4rem);
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .app-our-story p {
        font-size: calc(13px - 0.1rem);
    }
}.app-access-now {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(150deg, rgb(210,202,207) 0%, rgb(176,164,171) 100%);
    overflow: hidden;
    z-index: 1;
}

.app-access-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            #ffffff 0,
            #ffffff 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(
            0deg,
            #ffffff 0,
            #ffffff 1px,
            transparent 1px,
            transparent 20px
        );
    opacity: 0.05;
    z-index: -1;
}

.app-access-now::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.05) 75%, 
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0.5;
    z-index: -1;
    animation: dataFlow 8s linear infinite;
}

.app-access-now .app-mastery-center {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.app-access-now .app-mastery-center::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(
            ellipse at center,
            #ffffff 0%,
            transparent 60%
        );
    opacity: 0.03;
    z-index: -1;
    transform-origin: center;
    animation: rotateRadial 60s linear infinite;
}

.app-access-now .app-mastery-center::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        linear-gradient(45deg, transparent 65%, #ffffff 65.5%, transparent 66%),
        linear-gradient(-45deg, transparent 65%, #ffffff 65.5%, transparent 66%);
    background-size: 60px 60px;
    opacity: 0.04;
    z-index: -1;
    animation: shiftPattern 40s linear infinite;
}

.app-access-now h3 {
    position: relative;
    font-family: Ubuntu, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 55px;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 15px #ffffff;
}

.app-access-now h3::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #ffffff, 
        transparent);
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #ffffff;
}

.app-access-now h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 40px;
    background-image: 
        linear-gradient(0deg, 
            transparent 0%, 
            #ffffff 50%, 
            transparent 100%);
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: center;
    top: -45px;
    left: 0;
    opacity: 0.1;
    animation: scanLine 3s linear infinite;
}

.app-access-now .app-message-form {
    position: relative;
    display: inline-block;
    padding: 18px 50px;
    background: rgb(176,164,171);
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    clip-path: polygon(
        5% 0%, 
        100% 0%, 
        95% 100%, 
        0% 100%
    );
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgb(176,164,171,0.5);
}

.app-access-now .app-message-form::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.app-access-now .app-message-form::after {
    content: '';
    position: absolute;
    width: 102%;
    height: calc(100% + 4px);
    top: -2px;
    left: -1%;
    background: linear-gradient(
        rgb(210,202,207),
        rgb(176,164,171)
    );
    z-index: -2;
    clip-path: polygon(
        5% 0%, 
        100% 0%, 
        95% 100%, 
        0% 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.app-access-now .app-message-form:hover {
    transform: translateY(-5px);
    color: #ffffff;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgb(176,164,171);
    text-shadow: 0 0 5px #ffffff;
    background: transparent;
}

.app-access-now .app-message-form:hover::before {
    left: 100%;
}

.app-access-now .app-message-form:hover::after {
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .app-access-now {
        padding: 90px 0;
    }
    
    .app-access-now h3 {
        font-size: calc(30px * 0.9);
        margin-bottom: 50px;
        letter-spacing: 3px;
    }
    
    .app-access-now h3::before {
        width: 100px;
    }
    
    .app-access-now .app-message-form {
        padding: 16px 45px;
        font-size: calc(15px * 0.95);
    }
}

@media screen and (max-width: 768px) {
    .app-access-now {
        padding: 70px 0;
    }
    
    .app-access-now h3 {
        font-size: calc(30px * 0.8);
        margin-bottom: 45px;
        letter-spacing: 2px;
    }
    
    .app-access-now h3::before {
        width: 90px;
        height: 2px;
        bottom: -15px;
    }
    
    .app-access-now h3::after {
        height: 30px;
        top: -35px;
    }
    
    .app-access-now .app-message-form {
        padding: 14px 40px;
        font-size: calc(15px * 0.9);
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 576px) {
    .app-access-now {
        padding: 50px 0;
    }
    
    .app-access-now h3 {
        font-size: calc(30px * 0.7);
        margin-bottom: 40px;
        letter-spacing: 1px;
    }
    
    .app-access-now h3::before {
        width: 70px;
        height: 2px;
        bottom: -12px;
    }
    
    .app-access-now h3::after {
        height: 20px;
        top: -25px;
    }
    
    .app-access-now .app-message-form {
        padding: 12px 30px;
        font-size: calc(15px * 0.85);
        letter-spacing: 1px;
    }
}

@keyframes dataFlow {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes rotateRadial {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shiftPattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@keyframes scanLine {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}footer {
    background: rgb(176,164,171);
    color: #ffffff;
}

footer .app-footer-disclaimer {
    background: rgb(210,202,207);
}

footer .app-main-core svg, footer .app-main-core svg path {
    fill: rgb(210,202,207);
}

footer h5 {
    color: rgb(210,202,207);
}

footer .app-nav-lead a {
    color: #ffffff;
}

footer .app-enroll-info {
    color: #ffffff;
}

footer .app-enroll-info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .app-support-section div svg, footer .app-support-section div svg path {
    fill: #ffffff;
}

footer .app-support-section div span {
    color: #ffffff;
}

footer .app-access-help {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .app-footer-disclaimer {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .app-policy-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .app-main-core svg, footer .app-main-core img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 18px;
    margin-bottom: 16px;

}

footer .app-support-section {
    display: flex;
    flex-direction: column;
}

footer .app-support-section div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .app-support-section div img, footer .app-support-section div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .app-head-info {
    display: flex;
    flex-direction: column;
}

footer .app-nav-lead a {
    text-decoration: none;
    font-size: 17px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .app-footer-disclaimer {
    font-size: 13px;
}

@media only screen and (max-width: 1200px) {
    footer .app-policy-links {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .app-nav-lead, footer .app-head-info, footer .app-policy-links {
        flex-direction: column;
    }

    footer .app-support-section {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.app-wrapper-template footer .app-head-info {
    flex-direction: row;
}

.app-wrapper-template footer .app-access-help {
    padding: 0;
    padding-top: 40px;
}

.app-wrapper-template footer {
    padding-top: 32px;
    padding-bottom: 48px;
}

.app-wrapper-template footer .app-nav-lead {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    min-width: unset;
}

.app-wrapper-template footer .app-nav-lead a {
    padding-bottom: 24px;
    border-bottom: 4px solid rgb(176,164,171);
    margin: 0 16px;
}

.app-wrapper-template footer .app-nav-lead a:hover {
    border-color: #ffffff;
}

.app-wrapper-template footer .app-footer-disclaimer {
    background: rgb(176,164,171);
    padding: 10px 0;
}

.app-wrapper-template footer .app-main-core svg, .app-wrapper-template footer .app-main-core img {
    margin: 0;
    height: 90px;
    width: 90px;
}

@media only screen and (max-width: 800px) {
    .app-wrapper-template footer .app-policy-links {
        align-items: center;
    }

    .app-wrapper-template footer .app-main-core svg, .app-wrapper-template footer .app-main-core img {
        margin-bottom: 20px;
        height: 70px;
        width: 70px;
    }

    .app-wrapper-template footer .app-enroll-info {
        text-align: center;
    }

    .app-wrapper-template footer {
        padding: 30px 0;
    }

    .app-wrapper-template footer .app-access-help {
        padding: 0;
    }
}.app-appSpot {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(210,202,207,0.5);
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.app-appSpot .container {
    width: 85%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    border-radius: 10px;
    border: 1px solid rgb(210,202,207);
    box-shadow: 0 0 20px rgb(210,202,207,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.app-appSpot h2 {
    font-size: 39px;
    font-weight: 700;
    color: rgb(210,202,207);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(210,202,207);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    position: relative;
    text-shadow: 0 0 10px rgb(210,202,207);
}
.app-appSpot p {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    margin-top: 20px;
    width: 100%;
    text-align: left;
    position: relative;
    text-shadow: 0 0 5px rgb(176,164,171);
}

@media only screen and (max-width: 800px) {
    .app-appSpot {
        padding: 20px 10px;
    }
    .app-appSpot .container {
        width: 95%;
        padding: 30px 20px;
    }
    .app-appSpot h2 {
        font-size: 28px;
    }
    .app-appSpot p {
        font-size: 18px;
    }
}
.app-title-welcome {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: #000000;
}

.app-title-welcome .app-mastery-center {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-title-welcome .app-course-entry {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.app-title-welcome .app-course-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #000000 0%,
        transparent 20%,
        transparent 80%,
        #000000 100%
    ), linear-gradient(
        0deg,
        #000000 0%,
        transparent 30%,
        transparent 70%,
        #000000 100%
    );
    opacity: 0.85;
    z-index: 2;
}

.app-title-welcome .app-course-entry::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.5) 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    opacity: 0.05;
    z-index: 2;
}

.app-title-welcome .app-edu-home {
    display: flex;
    height: 100%;
    width: fit-content;
    transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    animation: infinite-scroll 30s linear infinite;
}

.app-title-welcome .app-page-base {
    position: relative;
    height: 100%;
    overflow: hidden;
    width: 100vw;
}

.app-title-welcome .app-page-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 40%,
        rgb(210,202,207,0.5) 100%
    );
    mix-blend-mode: overlay;
    opacity: 0.3;
    z-index: 1;
}

.app-title-welcome .app-page-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgb(210,202,207,0.5) 0%,
        transparent 100%
    );
    opacity: 0.2;
    z-index: 1;
}

.app-title-welcome .app-page-base img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    filter: brightness(0.8) saturate(1.2);
    transition: transform 0.5s ease;
    animation: ken-burns 20s ease infinite alternate;
}

.app-title-welcome .app-text-clip {
    position: relative;
    z-index: 5;
    width: 85%;
    max-width: 750px;
    text-align: center;
    padding: 3rem;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

.app-title-welcome .app-text-clip::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgb(210,202,207,0.5);
    border-radius: 10px;
    opacity: 0.3;
    z-index: -1;
    transform: scale(0.97);
    animation: border-pulse 4s ease-in-out infinite;
}

.app-title-welcome .app-text-clip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 100%
    );
    z-index: -1;
    filter: blur(15px);
}

.app-title-welcome .app-text-clip h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.app-title-welcome .app-text-clip h2::before,
.app-title-welcome .app-text-clip h2::after {
    content: '';
    position: absolute;
    height: 3px;
    bottom: -8px;
    background: rgb(210,202,207);
}

.app-title-welcome .app-text-clip h2::before {
    left: 0;
    right: 75%;
    animation: line-grow-left 1.5s ease-out forwards;
}

.app-title-welcome .app-text-clip h2::after {
    right: 0;
    left: 75%;
    animation: line-grow-right 1.5s ease-out forwards;
}

.app-title-welcome .app-text-clip p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    animation: text-fade 1.5s ease-in forwards;
}

.app-title-welcome .app-text-clip .app-request-widget {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(
        to right,
        rgb(210,202,207) 0%,
        rgb(176,164,171) 50%,
        rgb(210,202,207) 100%
    );
    background-size: 200% auto;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: button-gradient 3s ease infinite;
    z-index: 1;
}

.app-title-welcome .app-text-clip .app-request-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    transform: scale(0);
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.app-title-welcome .app-text-clip .app-request-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.app-title-welcome .app-text-clip .app-request-widget:hover::before {
    transform: scale(1);
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / var(--slide-count, 2) * (var(--slide-count, 2) - 1)));
    }
}

@keyframes ken-burns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes border-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.97);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes line-grow-left {
    0% {
        right: 100%;
    }
    100% {
        right: 75%;
    }
}

@keyframes line-grow-right {
    0% {
        left: 100%;
    }
    100% {
        left: 75%;
    }
}

@keyframes text-fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes button-gradient {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

@media (max-width: 1200px) {
    .app-title-welcome {
        height: 90vh;
    }
    
    .app-title-welcome .app-text-clip {
        width: 90%;
        max-width: 700px;
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .app-title-welcome {
        height: 85vh;
    }
    
    .app-title-welcome .app-text-clip {
        padding: 2rem;
        max-width: 650px;
    }
    
    .app-title-welcome .app-text-clip h2 {
        font-size: calc(45px * 0.9);
        margin-bottom: 1.5rem;
    }
    
    .app-title-welcome .app-text-clip p {
        font-size: calc(15px * 0.95);
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .app-title-welcome .app-text-clip .app-request-widget {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 768px) {
    .app-title-welcome {
        height: 80vh;
        min-height: 550px;
    }
    
    .app-title-welcome .app-course-entry::before {
        background: linear-gradient(
            90deg,
            #000000 0%,
            transparent 15%,
            transparent 85%,
            #000000 100%
        ), linear-gradient(
            0deg,
            #000000 0%,
            transparent 25%,
            transparent 75%,
            #000000 100%
        );
        opacity: 0.9;
    }
    
    .app-title-welcome .app-text-clip {
        padding: 1.8rem;
        max-width: 90%;
    }
    
    .app-title-welcome .app-text-clip h2 {
        font-size: 38px;
        margin-bottom: 1.3rem;
    }
    
    .app-title-welcome .app-text-clip p {
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }
    
    .app-title-welcome .app-text-clip .app-request-widget {
        padding: 0.7rem 1.8rem;
        font-size: calc(20px * 0.95);
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
    }
}

@media (max-width: 576px) {
    .app-title-welcome {
        height: 70vh;
        min-height: 500px;
    }
    
    .app-title-welcome .app-course-entry::before {
        background: linear-gradient(
            90deg,
            #000000 0%,
            transparent 10%,
            transparent 90%,
            #000000 100%
        ), linear-gradient(
            0deg,
            #000000 0%,
            transparent 20%,
            transparent 80%,
            #000000 100%
        );
        opacity: 0.92;
    }
    
    .app-title-welcome .app-course-entry::after {
        background-size: 6px 6px;
    }
    
    .app-title-welcome .app-text-clip {
        padding: 1.5rem;
    }
    
    .app-title-welcome .app-text-clip::before {
        display: none;
    }
    
    .app-title-welcome .app-text-clip h2 {
        font-size: calc(38px * 0.9);
        margin-bottom: 1.1rem;
    }
    
    .app-title-welcome .app-text-clip h2::before,
    .app-title-welcome .app-text-clip h2::after {
        height: 2px;
        bottom: -6px;
    }
    
    .app-title-welcome .app-text-clip p {
        font-size: calc(15px * 0.9);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .app-title-welcome .app-text-clip .app-request-widget {
        padding: 0.6rem 1.5rem;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }
}

@media (max-width: 420px) {
    .app-title-welcome {
        height: 60vh;
        min-height: 450px;
    }
    
    .app-title-welcome .app-text-clip {
        padding: 1.2rem;
    }
    
    .app-title-welcome .app-text-clip h2 {
        font-size: calc(38px * 0.85);
        margin-bottom: 1rem;
    }
    
    .app-title-welcome .app-text-clip p {
        font-size: calc(15px * 0.85);
        margin-bottom: 1.2rem;
    }
    
    .app-title-welcome .app-text-clip .app-request-widget {
        padding: 0.5rem 1.3rem;
        font-size: calc(20px * 0.9);
    }
}

@media (max-height: 600px) {
    .app-title-welcome {
        height: auto;
        min-height: 450px;
    }
    
    .app-title-welcome .app-text-clip {
        padding: 1.5rem;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2px);
        }
    }
}

.app-title-welcome .app-page-base:nth-child(odd) img {
    animation-delay: -10s;
}

.app-title-welcome .app-edu-home {
    --slide-count: 2;
}

.app-title-welcome:has(.app-page-base:nth-child(3)) .app-edu-home {
    --slide-count: 3;
}

.app-title-welcome:has(.app-page-base:nth-child(4)) .app-edu-home {
    --slide-count: 4;
}

.app-title-welcome:has(.app-page-base:nth-child(5)) .app-edu-home {
    --slide-count: 5;
}

.app-title-welcome:has(.app-page-base:nth-child(n+6)) .app-edu-home {
    --slide-count: 5;
}.app-service-info {
    font-family: Ubuntu, sans-serif;
    background: linear-gradient(135deg, rgb(237,233,235), rgb(176,164,171));
    padding: 80px 0;
    color: #000000;
    position: relative;
    overflow: hidden;
}
.app-service-info .container {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 27px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}
.app-service-info .app-learn-ask {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.app-service-info .app-learn-ask h2 {
    font-size: 34px;
    color: rgb(210,202,207);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.app-service-info .app-mastery-center .info_holder>div span {
    margin-left: 8px;
}
.app-service-info .app-learn-ask h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgb(210,202,207), rgb(176,164,171));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}
.app-service-info .app-learn-ask h2:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.app-service-info .app-mastery-center {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 30px;
}
.app-service-info .app-mastery-center .app-instant-contact {
    grid-column: span 12;
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
}
.app-service-info .app-mastery-center .app-pic-img-wrap {
    grid-column: span 4;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 200px;
    height: auto;
    border-radius: 27px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.app-service-info .app-mastery-center .app-contact-faq {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.app-service-info .app-mastery-center .app-contact-faq > div {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgb(237,233,235), rgb(176,164,171,0.5));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.app-service-info .app-mastery-center .app-contact-faq > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(210,202,207,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.app-service-info .app-mastery-center .app-contact-faq > div:hover::before {
    opacity: 0.2;
}
.app-service-info .app-mastery-center .app-contact-faq > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.app-service-info .app-mastery-center .app-contact-faq svg {
    width: 24px;
    height: 24px;
    fill: rgb(210,202,207);
    margin-right: 15px;
}
.app-service-info .app-mastery-center .app-contact-faq a {
    color: #000000;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}
.app-service-info .app-mastery-center .app-contact-faq a:hover {
    color: rgb(210,202,207);
}
.app-service-info .app-edu-asknow {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.app-service-info .app-edu-asknow > div {
    background: linear-gradient(135deg, rgb(237,233,235), rgb(176,164,171,0.5));
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.app-service-info .app-mastery-center .app-contact-faq div.app-message-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.app-service-info .app-mastery-center .app-contact-faq > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.app-service-info .app-mastery-center .app-contact-faq > div > div {
    margin: 5px 0;
}
.app-service-info .app-edu-asknow > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(210,202,207,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.app-service-info .app-edu-asknow > div:hover::before {
    opacity: 0.2;
}
.app-service-info .app-edu-asknow > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.app-service-info .app-edu-asknow h4 {
    font-size: 20px;
    color: rgb(210,202,207);
    margin-bottom: 15px;
}
.app-service-info .app-edu-asknow p {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
}
@media only screen and (max-width: 1100px) {
    .app-service-info .container {
        padding: 40px;
    }
    .app-service-info .app-mastery-center .app-pic-img-wrap {
        margin: auto;
        grid-column: span 12;
        height: 300px;
    }
    .app-service-info .app-mastery-center .app-contact-faq {
        width: 100%;
        grid-column: span 12;
    }
}.app-contact-us {
    position: relative;
    background: rgb(237,233,235);
    padding: 90px 0;
    overflow: hidden;
}

.app-contact-us::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgb(210,202,207,0.5), rgb(176,164,171,0.5));
    filter: blur(70px);
    z-index: 1;
}

.app-contact-us::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(225deg, rgb(176,164,171,0.5), rgb(210,202,207,0.5));
    filter: blur(60px);
    z-index: 1;
}

.app-contact-us .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.app-contact-us h2 {
    font-size: 37px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.app-contact-us h2::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(210,202,207,0.5);
    top: -25px;
    left: calc(50% - 120px);
    z-index: -1;
}

.app-contact-us h2::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(176,164,171,0.5);
    bottom: -15px;
    right: calc(50% - 100px);
    z-index: -1;
}

.app-contact-us .app-help-inquiry {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: relative;
}

.app-contact-us .app-help-inquiry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 0% 0%,
        transparent 98%,
        rgb(210,202,207,0.5) 99%
    ), radial-gradient(
        circle at 100% 100%,
        transparent 98%,
        rgb(176,164,171,0.5) 99%
    );
    z-index: 0;
    pointer-events: none;
}

.app-contact-us .app-pic-img-wrap {
    flex: 0 0 45%;
    position: relative;
    min-height: 500px;
    transition: transform 0.5s ease;
}

.app-contact-us .app-pic-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.app-contact-us .app-pic-img-wrap::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    pointer-events: none;
}

.app-contact-us .app-feedback-reach {
    flex: 0 0 55%;
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-contact-us form {
    position: relative;
    z-index: 3;
}

.app-contact-us form h3 {
    font-size: 23px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 30px;
}

.app-contact-us form input[type="text"] {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 25px;
    border: none;
    background: rgb(237,233,235);
    border-radius: 12px;
    font-size: 17px;
    color: #000000;
    transition: all 0.3s ease;
}

.app-contact-us form input[type="text"]:focus {
    background: linear-gradient(rgb(237,233,235), rgb(237,233,235)) padding-box,
                linear-gradient(to right, rgb(210,202,207), rgb(176,164,171)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(rgb(210,202,207), 0.1);
    outline: none;
}

.app-contact-us form input[type="text"]::placeholder {
    color: rgba(#000000, 0.5);
}

.app-contact-us .app-feedback-links {
    margin-bottom: 30px;
    position: relative;
}

.app-contact-us .app-feedback-links input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.app-contact-us .app-feedback-links label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 12px;
    color: #000000;
}

.app-contact-us .app-feedback-links label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgb(237,233,235);
    transition: all 0.3s ease;
}

.app-contact-us .app-feedback-links input[type="checkbox"]:checked + label::before {
    background: linear-gradient(135deg, rgb(210,202,207), rgb(176,164,171));
}

.app-contact-us .app-feedback-links input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.app-contact-us .app-feedback-links label a {
    color: rgb(210,202,207);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.app-contact-us .app-feedback-links label a:hover {
    color: rgb(176,164,171);
}

.app-contact-us .app-request-widget {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, rgb(210,202,207), rgb(176,164,171));
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 1;
}

.app-contact-us .app-request-widget::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(176,164,171), rgb(210,202,207));
    z-index: -1;
    transition: transform 0.5s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.app-contact-us .app-request-widget:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.app-contact-us svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    stroke: rgb(210,202,207);
    fill: none;
    transition: all 0.3s ease;
}

.app-contact-us svg path {
    stroke: rgb(210,202,207);
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.app-contact-us svg:hover,
.app-contact-us svg:hover path {
    stroke: rgb(176,164,171);
}

@media (max-width: 1024px) {
    .app-contact-us {
        padding: 70px 0;
    }
    
    .app-contact-us .app-feedback-reach {
        padding: 45px;
    }
    
    .app-contact-us .app-pic-img-wrap {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .app-contact-us {
        padding: 60px 0;
    }
    
    .app-contact-us h2 {
        margin-bottom: 40px;
    }
    
    .app-contact-us .app-help-inquiry {
        flex-direction: column;
    }
    
    .app-contact-us .app-pic-img-wrap {
        flex: 0 0 300px;
        min-height: 300px;
        width: 100%;
    }
    
    .app-contact-us .app-feedback-reach {
        flex: 0 0 auto;
        padding: 40px 30px;
    }
    
    .app-contact-us form h3 {
        margin-bottom: 25px;
    }
    
    .app-contact-us form input[type="text"] {
        padding: 15px 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .app-contact-us {
        padding: 50px 0;
    }
    
    .app-contact-us h2 {
        font-size: calc(37px * 0.9);
        margin-bottom: 30px;
    }
    
    .app-contact-us .app-pic-img-wrap {
        min-height: 220px;
    }
    
    .app-contact-us .app-feedback-reach {
        padding: 30px 20px;
    }
    
    .app-contact-us form h3 {
        font-size: calc(23px * 0.9);
        margin-bottom: 20px;
    }
    
    .app-contact-us form input[type="text"] {
        padding: 14px 16px;
        margin-bottom: 16px;
        font-size: calc(17px * 0.95);
    }
    
    .app-contact-us .app-request-widget {
        padding: 16px;
    }
    
    .app-contact-us .app-feedback-links label {
        font-size: calc(12px * 0.95);
    }
}.app-privacy-vaulting {
    background-color: rgb(237,233,235);
    color: #000000;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-family: Ubuntu, sans-serif;
    transition: all 0.3s ease;
}
.app-privacy-vaulting:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.app-privacy-vaulting h1 {
    color: rgb(210,202,207);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.app-privacy-vaulting h2 {
    color: rgb(176,164,171);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}
.app-privacy-vaulting h3, .app-privacy-vaulting h4, .app-privacy-vaulting h5, .app-privacy-vaulting h6 {
    color: #000000;
    margin-bottom: 10px;
    font-weight: 400;
}
.app-privacy-vaulting h5 {
    font-size: 24px;
}
.app-privacy-vaulting h6 {
    font-size: 20px;
}
.app-privacy-vaulting ul, .app-privacy-vaulting ol {
    margin-left: 20px;
    margin-bottom: 20px;
}
.app-privacy-vaulting li {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
    font-size: 13px;
}
.app-privacy-vaulting li::before {
    content: '•';
    color: rgb(210,202,207);
    position: absolute;
    left: 0;
    top: 0;
}
.app-privacy-vaulting p, .app-privacy-vaulting span {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.app-privacy-vaulting p {
    text-align: justify;
}
.app-privacy-vaulting .container {
    max-width: 1200px;
    margin: 0 auto;
}
.app-privacy-vaulting .container div {
    margin-bottom: 30px;
}
@media only screen and (max-width: 800px) {
    .app-privacy-vaulting {
        padding: 20px;
        border-radius: 10px;
    }
    .app-privacy-vaulting h1 {
        font-size: calc(24px - 10px);
    }
    .app-privacy-vaulting h2 {
        font-size: calc(24px - 8px);
    }
    .app-privacy-vaulting p, .app-privacy-vaulting span {
        font-size: calc(13px - 2px);
    }
}
.app-privacy-vaulting a {
    color: rgb(210,202,207);
    text-decoration: none;
    border-bottom: 1px solid rgb(210,202,207,0.5);
    transition: all 0.3s ease;
}
.app-privacy-vaulting a:hover {
    color: rgb(176,164,171);
    border-bottom: 1px solid rgb(176,164,171);
}
.app-privacy-vaulting button {
    background-color: rgb(210,202,207);
    color: #ffffff;
    font-size: 17px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.app-privacy-vaulting button:hover {
    background-color: rgb(176,164,171);
}.app-training-specialist {
  background: linear-gradient(135deg, rgb(237,233,235) 0%, rgb(210,202,207,0.5) 35%, rgb(176,164,171,0.5) 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.app-training-specialist::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 225deg at 50% 50%, transparent 0deg, rgb(210,202,207,0.5) 120deg, transparent 180deg, rgb(176,164,171,0.5) 260deg, transparent 360deg);
  animation: rotate 20s linear infinite;
  opacity: 0.2;
  z-index: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.app-training-specialist .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  perspective: 1000px;
}

.app-training-specialist .app-review-opinions {
  display: grid;
  grid-template-areas:
    "photo quote"
    "name quote";
  grid-template-columns: minmax(220px, 1fr) 2fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 21px;
  padding: 2.5rem;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 5px 15px rgb(210,202,207,0.5);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-2deg);
  transition: transform 0.5s ease;
}

.app-training-specialist .app-review-opinions:hover {
  transform: rotateX(0) rotateY(0);
}

.app-training-specialist .app-pic-img-wrap {
  grid-area: photo;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 21px;
  box-shadow: 
    -5px 5px 0 rgb(176,164,171),
    -10px 10px 20px rgba(0, 0, 0, 0.5);
  transform: translateZ(20px);
  transition: transform 0.3s ease;
}

.app-training-specialist .app-review-opinions:hover .app-pic-img-wrap {
  transform: translateZ(30px) scale(1.05);
}

.app-training-specialist .name {
  grid-area: name;
  font-size: 24px;
  font-weight: 700;
  color: rgb(210,202,207);
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
  transform: translateZ(10px);
}

.app-training-specialist .name + span {
  grid-area: name;
  align-self: end;
  font-size: 12px;
  color: #000000;
  margin-top: 2rem;
  padding-left: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  transform: translateZ(5px);
}

.app-training-specialist .app-exp-timeline {
  grid-area: quote;
  font-size: calc(12px * 1.1);
  line-height: 1.7;
  color: #000000;
  background: linear-gradient(to right, #ffffff, rgb(237,233,235));
  padding: 2rem;
  border-radius: 21px;
  position: relative;
  transform: translateZ(15px);
  transition: transform 0.3s ease;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.app-training-specialist .app-exp-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(210,202,207,0.5) 0%, transparent 40%, transparent 60%, rgb(176,164,171,0.5) 100%);
  border-radius: 21px;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.app-training-specialist .app-review-opinions:hover .app-exp-timeline {
  transform: translateZ(25px);
}

@media (max-width: 992px) {
  .app-training-specialist .app-review-opinions {
    grid-template-areas:
      "app-pic-img-wrap"
      "name"
      "app-exp-timeline";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    transform: none;
  }
  
  .app-training-specialist .app-pic-img-wrap {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .app-training-specialist .name,
  .app-training-specialist .name + span {
    text-align: center;
    padding-left: 0;
  }
  
  .app-training-specialist .name + span {
    margin-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .app-training-specialist {
    padding: 4rem 1rem;
  }
  
  .app-training-specialist .app-review-opinions {
    padding: 1.5rem;
  }
  
  .app-training-specialist .app-exp-timeline {
    padding: 1.5rem;
  }
}