﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
svg {
    width: 30px;
    height: 30px;
}
.css-pitch-comp {
    flex: 0 0 auto;
}
.css-nav-master {
    flex: 1 0 auto;
}
.css-wrapper-capsule {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
header,footer {
    width: 100%;
}
.container {
    margin: auto;
    width: 1130px;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}
.css-contact {
    position: relative;
    overflow: hidden;
    background: rgb(231,230,242);
    padding: 120px 0;
    z-index: 1;
}

.css-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-radial-gradient(
            circle at 0% 0%,
            transparent 0,
            transparent 40px,
            rgba(0, 0, 0, 0.03) 40px,
            rgba(0, 0, 0, 0.03) 80px
        ),
        repeating-radial-gradient(
            circle at 100% 100%,
            transparent 0,
            transparent 40px,
            rgba(0, 0, 0, 0.03) 40px,
            rgba(0, 0, 0, 0.03) 80px
        );
    background-blend-mode: multiply;
    opacity: 0.5;
    z-index: 0;
}

.css-contact .css-photo-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.07;
    filter: contrast(1.2) saturate(0.8);
}

.css-contact .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.css-contact h3 {
    color: #000000;
    font-size: 36px;
    font-family: Arial, sans-serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    letter-spacing: 1px;
}

.css-contact .css-query-info {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.css-contact .css-support-form {
    flex: 1 1 55%;
    padding: 80px;
    position: relative;
    background: #ffffff;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.css-contact .css-support-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.01) 0, transparent 100px),
        radial-gradient(circle at 70% 65%, rgba(0, 0, 0, 0.01) 0, transparent 100px);
    z-index: -1;
}

.css-contact .css-support-form #contact {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.css-contact .css-support-form h3 {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    color: #000000;
    text-align: center;
}

.css-contact .css-support-form input[type="text"],
.css-contact .css-support-form textarea {
    width: 100%;
    padding: 20px 25px;
    margin-bottom: 30px;
    border: none;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.03);
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #000000;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.css-contact .css-support-form textarea {
    border-radius: 25px;
    height: 150px;
    resize: vertical;
    padding-top: 25px;
}

.css-contact .css-support-form input[type="text"]:focus,
.css-contact .css-support-form textarea:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.015);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 0 3px rgb(200,199,217,0.5);
}

.css-contact .css-support-form .css-request-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    justify-content: center;
}

.css-contact .css-support-form .css-request-message input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.css-contact .css-support-form .css-request-message label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: calc(13px - 2px);
    line-height: 1.5;
    color: #000000;
}

.css-contact .css-support-form .css-request-message label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.css-contact .css-support-form .css-request-message input[type="checkbox"]:checked + label::before {
    background-color: rgb(200,199,217);
    border-color: rgb(200,199,217);
}

.css-contact .css-support-form .css-request-message input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
}

.css-contact .css-support-form .css-request-message a {
    color: rgb(200,199,217);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.css-contact .css-support-form .css-request-message a:hover {
    color: rgb(164,163,185);
}

.css-contact .css-support-form .css-message-support {
    display: block;
    padding: 18px;
    background: rgb(200,199,217);
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.css-contact .css-support-form .css-message-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0)
    );
    transition: all 0.6s ease;
}

.css-contact .css-support-form .css-message-support:hover {
    background: rgb(164,163,185);
    box-shadow: 0 5px 15px rgb(200,199,217,0.5);
    transform: translateY(-2px);
}

.css-contact .css-support-form .css-message-support:hover::before {
    left: 100%;
}

.css-contact .css-message-feedback {
    flex: 1 1 45%;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgb(200,199,217) 0%, rgb(164,163,185) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.css-contact .css-message-feedback::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(
            circle at center,
            transparent 0,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 150px,
            transparent 150px,
            transparent
        );
    background-size: 250px 250px;
    opacity: 0.7;
    z-index: 0;
}

.css-contact .css-message-feedback h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.css-contact .css-message-feedback .css-reach-card {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.css-contact .css-message-feedback .css-reach-card li {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
    transition: transform 0.3s ease;
}

.css-contact .css-message-feedback .css-reach-card li:last-child {
    margin-bottom: 0;
}

.css-contact .css-message-feedback .css-reach-card li:hover {
    transform: translateX(5px);
}

.css-contact .css-message-feedback .css-reach-card li svg {
    width: 22px;
    height: 22px;
    margin-right: 20px;
    flex-shrink: 0;
    opacity: 0.9;
}

.css-contact .css-message-feedback .css-reach-card li svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.css-contact .css-message-feedback .css-reach-card li span {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
}

.css-contact .css-message-feedback .css-reach-card li span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease;
}

.css-contact .css-message-feedback .css-reach-card li:hover span::after {
    width: 100%;
}

.css-contact .css-message-feedback .css-reach-card li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.css-contact .css-message-feedback .css-reach-card li a:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .css-contact {
        padding: 80px 0;
    }

    .css-contact .css-query-info {
        flex-direction: column;
    }

    .css-contact .css-support-form,
    .css-contact .css-message-feedback {
        flex: 1 1 100%;
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .css-contact {
        padding: 60px 0;
    }

    .css-contact h3 {
        font-size: calc(36px - 4px);
        margin-bottom: 50px;
    }

    .css-contact .css-support-form h3,
    .css-contact .css-message-feedback h4 {
        font-size: calc(22px - 2px);
        margin-bottom: 30px;
    }

    .css-contact .css-support-form input[type="text"],
    .css-contact .css-support-form textarea {
        padding: 16px 20px;
        margin-bottom: 20px;
    }

    .css-contact .css-support-form textarea {
        height: 120px;
    }

    .css-contact .css-support-form .css-message-support {
        padding: 16px;
    }

    .css-contact .css-message-feedback .css-reach-card li {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .css-contact {
        padding: 50px 0;
    }

    .css-contact .css-support-form,
    .css-contact .css-message-feedback {
        padding: 40px 25px;
    }

    .css-contact h3 {
        font-size: calc(36px - 6px);
    }

    .css-contact .css-support-form .css-request-message label {
        font-size: calc(13px - 3px);
    }
    
    .css-contact .css-query-info {
        border-radius: 20px;
    }
    
    .css-contact .css-support-form input[type="text"],
    .css-contact .css-support-form textarea {
        border-radius: 25px;
    }
    
    .css-contact .css-support-form textarea {
        border-radius: 20px;
    }
}.css-thanksSpot {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, rgb(200,199,217), rgb(164,163,185));
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}
.css-thanksSpot .container {
    background: linear-gradient(145deg, rgb(164,163,185), rgb(200,199,217));
    padding: 50px;
    border-radius: 23px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
}
.css-thanksSpot .container::before,
.css-thanksSpot .container::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
}
.css-thanksSpot .container::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}
.css-thanksSpot .container::after {
    bottom: -10px;
    right: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}
.css-thanksSpot h2 {
    font-size: 43px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(164,163,185);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.css-thanksSpot p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    position: relative;
    padding: 20px 0;
}
.css-thanksSpot p::before,
.css-thanksSpot p::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: rgb(200,199,217);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.css-thanksSpot p::after {
    bottom: 0;
    top: auto;
}
@media only screen and (max-width: 800px) {
    .css-thanksSpot {
        padding: 20px;
    }
    .css-thanksSpot .container {
        padding: 30px;
    }
    .css-thanksSpot h2 {
        font-size: 38px;
    }
    .css-thanksSpot p {
        font-size: 16px;
    }
}
.css-benefits-summary {
    position: relative;
    background: linear-gradient(135deg, rgb(231,230,242) 0%, rgb(200,199,217,0.5) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.css-benefits-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgb(164,163,185,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    transform: rotate(-5deg) scale(1.2);
    z-index: 0;
}

.css-benefits-summary h3 {
    font-family: Arial, sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    transform: skewX(-5deg);
    position: relative;
    padding-left: 2rem;
}

.css-benefits-summary h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 70%;
    background: linear-gradient(to bottom, rgb(200,199,217), rgb(164,163,185));
    transform: translateY(-50%);
    border-radius: 10px;
}

.css-benefits-summary .css-skill-upgrade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    transform: perspective(1000px) rotateX(2deg);
}

.css-benefits-summary .css-extra-study {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: #ffffff;
    border-radius: 29px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
    transform: translateY(0) rotate(0);
}

.css-benefits-summary .css-extra-study:nth-child(odd) {
    transform: translateY(20px) rotate(-1deg);
}

.css-benefits-summary .css-extra-study:nth-child(even) {
    transform: translateY(-20px) rotate(1deg);
}

.css-benefits-summary .css-extra-study::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgb(164,163,185,0.5) 50%);
    z-index: -1;
    transition: all 0.4s ease;
}

.css-benefits-summary .css-extra-study:hover {
    transform: translateY(-10px) scale(1.03) rotate(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.css-benefits-summary .css-extra-study:hover::before {
    width: 120px;
    height: 120px;
}

.css-benefits-summary .css-extra-study svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 10px rgb(200,199,217,0.5));
    transition: all 0.4s ease;
}

.css-benefits-summary .css-extra-study:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.css-benefits-summary .css-extra-study svg path {
    fill: rgb(200,199,217);
    transition: all 0.4s ease;
}

.css-benefits-summary .css-extra-study:hover svg path {
    fill: rgb(164,163,185);
}

.css-benefits-summary .css-extra-study span {
    font-family: Arial, sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: #000000;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.css-benefits-summary .css-extra-study span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, rgb(200,199,217), rgb(164,163,185));
    transition: width 0.4s ease;
}

.css-benefits-summary .css-extra-study:hover span::after {
    width: 100%;
}

@media (max-width: 991px) {
    .css-benefits-summary {
        padding: 4rem 0;
    }
    
    .css-benefits-summary h3 {
        font-size: calc(35px * 0.9);
        text-align: center;
        padding-left: 0;
        transform: skewX(0);
    }
    
    .css-benefits-summary h3::before {
        left: 50%;
        top: -15px;
        width: 50px;
        height: 4px;
        transform: translateX(-50%);
    }
    
    .css-benefits-summary .css-skill-upgrade {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        transform: perspective(0) rotateX(0);
    }
    
    .css-benefits-summary .css-extra-study,
    .css-benefits-summary .css-extra-study:nth-child(odd),
    .css-benefits-summary .css-extra-study:nth-child(even) {
        transform: none;
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .css-benefits-summary {
        padding: 3rem 0;
    }
    
    .css-benefits-summary h3 {
        font-size: calc(35px * 0.8);
        margin-bottom: 2rem;
    }
    
    .css-benefits-summary .css-skill-upgrade {
        grid-template-columns: 1fr;
    }
    
    .css-benefits-summary .css-extra-study svg {
        width: 50px;
        height: 50px;
    }
    
    .css-benefits-summary .css-extra-study span {
        font-size: calc(23px * 0.9);
    }
}.css-training-structure {
    position: relative;
    background: linear-gradient(135deg, rgb(200,199,217,0.5) 0%, rgb(164,163,185) 100%);
    padding: 8rem 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-training-structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(200,199,217) 0%, transparent 8%),
        radial-gradient(circle at 80% 70%, rgb(164,163,185) 0%, transparent 8%),
        radial-gradient(circle at 40% 80%, rgb(200,199,217) 0%, transparent 6%),
        radial-gradient(circle at 60% 20%, rgb(164,163,185) 0%, transparent 6%);
    z-index: 1;
    animation: pulsate 12s infinite alternate;
}

@keyframes pulsate {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.css-training-structure::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(
        45deg,
        rgb(164,163,185,0.5) 0,
        rgb(164,163,185,0.5) 1px,
        transparent 1px,
        transparent 30px
    );
    z-index: 1;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    100% {
        transform: rotate(360deg) translateY(0);
    }
}

.css-training-structure .css-growth-path {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 5;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.css-training-structure .css-growth-path:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2), 0 15px 25px rgba(0, 0, 0, 0.1);
}

.css-training-structure .css-text-box-content {
    padding: 4rem;
    position: relative;
    z-index: 2;
}

.css-training-structure .css-text-box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 50%;
    background: linear-gradient(to bottom, rgb(200,199,217), transparent);
    border-radius: 10px;
}

.css-training-structure .css-text-box-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5px;
    height: 50%;
    background: linear-gradient(to top, rgb(164,163,185), transparent);
    border-radius: 10px;
}

.css-training-structure h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgb(200,199,217), rgb(164,163,185));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
    transform: perspective(500px) translateZ(0);
    transition: transform 0.3s ease;
}

.css-training-structure .css-growth-path:hover h2 {
    transform: perspective(500px) translateZ(20px);
}

.css-training-structure p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: perspective(500px) translateZ(0);
    transition: transform 0.3s ease;
}

.css-training-structure .css-growth-path:hover p {
    transform: perspective(500px) translateZ(10px);
}

@media (max-width: 992px) {
    .css-training-structure {
        padding: 6rem 0;
        min-height: auto;
    }
    
    .css-training-structure .css-text-box-content {
        padding: 3rem;
    }
    
    .css-training-structure h2 {
        font-size: calc(38px * 0.9);
    }
}

@media (max-width: 768px) {
    .css-training-structure {
        padding: 4rem 0;
    }
    
    .css-training-structure .css-growth-path {
        width: 95%;
    }
    
    .css-training-structure .css-text-box-content {
        padding: 2rem;
    }
    
    .css-training-structure h2 {
        font-size: calc(38px * 0.8);
        margin-bottom: 1.5rem;
    }
    
    .css-training-structure p {
        font-size: calc(16px * 0.95);
    }
}

@media (max-width: 576px) {
    .css-training-structure {
        padding: 3rem 0;
    }
    
    .css-training-structure .css-text-box-content {
        padding: 1.5rem;
    }
    
    .css-training-structure h2 {
        font-size: calc(38px * 0.7);
        margin-bottom: 1rem;
    }
    
    .css-training-structure p {
        font-size: calc(16px * 0.9);
        margin-bottom: 1rem;
    }
    
    .css-training-structure::before,
    .css-training-structure::after {
        opacity: 0.6;
    }
}.css-mentorship-experience {
    position: relative;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgb(231,230,242) 0%, rgb(200,199,217,0.5) 100%);
    overflow: hidden;
    min-height: 400px;
}

.css-mentorship-experience::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgb(164,163,185,0.5);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.css-mentorship-experience::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgb(200,199,217,0.5);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    animation: float 6s ease-in-out infinite reverse;
}

.css-mentorship-experience .css-client-feedback {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    transform: rotate(-3deg);
    z-index: 1;
    transition: all 0.5s ease;
}

.css-mentorship-experience .css-client-feedback:hover {
    transform: rotate(0deg) scale(1.02);
}

.css-mentorship-experience .css-photo-card {
    position: relative;
    width: 280px;
    height: 350px;
    border-radius: 16px;
    box-shadow: 15px 15px 0 rgb(164,163,185,0.5);
    transform: translateY(20px);
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 10%, 85% 100%, 0% 90%);
}

.css-mentorship-experience .css-client-feedback:hover .css-photo-card {
    box-shadow: 20px 20px 0 rgb(164,163,185);
    transform: translateY(0);
}

.css-mentorship-experience .css-career-exp {
    flex: 1;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    transform: translateX(-30px) rotate(3deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 280px;
}

.css-mentorship-experience .css-client-feedback:hover .css-career-exp {
    transform: translateX(0) rotate(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.css-mentorship-experience .name {
    font-size: 33px;
    color: rgb(200,199,217);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.css-mentorship-experience .name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgb(164,163,185) 0%, transparent 100%);
    border-radius: 2px;
}

.css-mentorship-experience .css-career-exp > div:nth-child(2) {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.8;
}

.css-mentorship-experience .css-career-area {
    font-size: calc(18px + 2px);
    font-style: italic;
    line-height: 1.6;
    color: #000000;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgb(164,163,185,0.5);
}

.css-mentorship-experience .css-career-area::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -20px;
    font-size: 80px;
    opacity: 0.1;
    color: rgb(200,199,217);
    font-family: Arial, sans-serif;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@media (max-width: 991px) {
    .css-mentorship-experience {
        padding: 40px 20px;
    }
    
    .css-mentorship-experience .css-client-feedback {
        flex-direction: column;
        gap: 20px;
    }
    
    .css-mentorship-experience .css-photo-card {
        width: 220px;
        height: 280px;
        margin: 0 auto;
        transform: translateY(0) rotate(-3deg);
    }
    
    .css-mentorship-experience .css-career-exp {
        transform: translateX(0) rotate(0);
        margin-top: -30px;
    }
    
    .css-mentorship-experience .css-client-feedback:hover .css-photo-card {
        transform: translateY(-10px) rotate(0);
    }
}

@media (max-width: 767px) {
    .css-mentorship-experience {
        padding: 30px 15px;
    }
    
    .css-mentorship-experience .css-photo-card {
        width: 180px;
        height: 220px;
    }
    
    .css-mentorship-experience .css-career-exp {
        padding: 20px;
    }
    
    .css-mentorship-experience .name {
        font-size: calc(33px - 4px);
    }
    
    .css-mentorship-experience .css-career-area {
        font-size: 18px;
    }
}header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(120deg, 
        rgb(200,199,217) 0%, 
        rgb(200,199,217,0.5) 100%
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.1;
    pointer-events: none;
}

header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(to right, 
            transparent 20%, 
            rgba(255, 255, 255, 0.05) 40%, 
            rgba(255, 255, 255, 0.05) 60%, 
            transparent 80%
        ),
        linear-gradient(to bottom, 
            transparent 20%, 
            rgba(255, 255, 255, 0.05) 40%, 
            rgba(255, 255, 255, 0.05) 60%, 
            transparent 80%
        );
    background-size: 100px 100px;
    pointer-events: none;
}

header .css-nav-start {
    position: relative;
}

header .css-nav-start:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -1px;
    left: 0;
    background: linear-gradient(to right, 
        transparent, 
        #ffffff, 
        transparent
    );
    opacity: 0.3;
}

header .css-nav-start:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0.5;
    pointer-events: none;
    filter: blur(8px);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    position: relative;
}

header .container:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 30px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-image: 
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%),
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
    background-size: 6px 2px, 6px 2px;
    background-position: 0 0, 0 10px;
    background-repeat: repeat-x;
    opacity: 0.5;
    pointer-events: none;
}

header .css-head-site {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .css-head-site:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.5;
}

header .css-head-site:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.5;
}

header .css-site-start {
    display: flex;
    gap: 30px;
    position: relative;
    align-items: center;
}

header .css-site-start:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: -10px;
    left: 0;
    background: linear-gradient(to right, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

header .css-site-start:hover:before {
    opacity: 0.7;
}

header .css-head-mainwrap {
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

header .css-head-mainwrap:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

header .css-head-mainwrap:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    top: 50%;
    left: -30px;
    transform: translateY(-50%) scaleX(0);
    background: rgba(255, 255, 255, 0.5);
    transform-origin: right;
    transition: all 0.3s ease;
}

header .css-head-mainwrap:hover {
    color: #ffffff;
    transform: translateX(5px);
}

header .css-head-mainwrap:hover:before {
    opacity: 1;
    left: -20px;
}

header .css-head-mainwrap:hover:after {
    transform: translateY(-50%) scaleX(1);
}

header .css-head-skill {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 5px;
    transition: all 0.3s ease;
}

header .css-head-skill:before {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

header .css-head-skill:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    top: -5px;
    left: -5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

header .css-head-skill:hover:before {
    opacity: 1;
}

header .css-head-skill:hover:after {
    opacity: 1;
    animation: circuit 3s infinite;
}

header .css-head-skill svg {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

header .css-head-skill:hover svg {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@keyframes circuit {
    0%, 100% {
        top: -5px;
        left: -5px;
    }
    25% {
        top: -5px;
        left: calc(100% - 5px);
    }
    50% {
        top: calc(100% - 5px);
        left: calc(100% - 5px);
    }
    75% {
        top: calc(100% - 5px);
        left: -5px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    header .container {
        padding: 12px 20px;
    }
    
    header .css-site-start {
        gap: 20px;
    }
    
    header .css-head-skill svg {
        height: 35px;
    }
}

@media (max-width: 767px) {
    header .css-site-start {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: rgb(200,199,217);
        padding: 80px 30px 30px;
        gap: 25px;
        z-index: 1001;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    header .css-site-start:before {
        width: 80%;
        left: 10%;
        bottom: auto;
        top: 60px;
    }
    
    header .css-site-start:after {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        pointer-events: none;
    }
    
    header .menu.active {
        right: 0;
    }
    
    header .css-head-mainwrap {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    header .css-head-mainwrap:hover {
        transform: translateX(0);
    }
    
    header .css-head-mainwrap:last-child {
        border-bottom: none;
    }
    
    header .css-head-skill {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 10px 15px;
    }
    
    header .css-head-skill svg {
        height: 30px;
    }
}footer {
    width: 100%;
    position: relative;
}

footer .css-pitch-comp {
    background: linear-gradient(135deg, #000000 0%, rgb(200,199,217) 100%);
    position: relative;
    padding: 80px 0 30px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

footer .css-pitch-comp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.05;
    z-index: -1;
}

footer .css-pitch-comp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgb(200,199,217) 0%, 
        rgb(164,163,185) 50%, 
        rgb(200,199,217) 100%);
    animation: glowBorder 3s infinite linear;
}

@keyframes glowBorder {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

footer .css-pitch-comp .container {
    position: relative;
    z-index: 2;
}

footer .css-academy-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

footer .css-contact-feedback {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
}

footer .css-contact-feedback::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(164,163,185,0.5) 50%, 
        transparent 100%);
}

footer .info_item {
    flex: 1;
    min-width: 200px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    transform: translateY(0);
}

footer .info_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

footer .info_item p,
footer .info_item a {
    color: #ffffff;
    font-size: 18px;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .info_item svg {
    width: 20px;
    height: 20px;
    fill: rgb(164,163,185);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

footer .info_item:hover svg {
    transform: scale(1.2);
}

footer .info_item:hover a,
footer .info_item:hover p {
    color: rgb(164,163,185);
}

footer .text_main_holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

footer .css-head-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

footer .css-head-nav svg {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 0 5px rgb(200,199,217,0.5));
}

footer .css-eco-foot {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    max-width: 300px;
    font-weight: 300;
    line-height: 1.5;
}

footer .css-site-start {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .css-site-start h5 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

footer .css-site-start h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(164,163,185);
    border-radius: 10px;
}

footer .css-main-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

footer .css-main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    opacity: 0.8;
}

footer .css-main-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(164,163,185);
    opacity: 0.7;
    transition: all 0.3s ease;
}

footer .css-main-nav a:hover {
    color: rgb(164,163,185);
    transform: translateX(5px);
    opacity: 1;
}

footer .css-main-nav a:hover::before {
    opacity: 1;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 10px rgb(164,163,185);
}

footer .subscribe_holder {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 27px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

footer .subscribe_holder:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

footer .subscribe_holder h5 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 5px;
}

footer .subscribe_holder p {
    color: #ffffff;
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

footer .input_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

footer .input_holder input[type="email"] {
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

footer .input_holder input[type="email"]:focus {
    border-color: rgb(164,163,185);
    box-shadow: 0 0 15px rgb(164,163,185,0.5);
}

footer .css-email-submit {
    padding: 12px 24px;
    background: linear-gradient(45deg, rgb(164,163,185) 0%, rgb(200,199,217) 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

footer .css-email-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.6s;
}

footer .css-email-submit:hover::before {
    left: 100%;
}

footer .css-email-submit:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

footer .css-debate-club {
    text-align: center;
    padding-top: 30px;
    position: relative;
}

footer .css-debate-club::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(164,163,185,0.5) 50%, 
        transparent 100%);
}

footer .css-campus-links {
    color: #ffffff;
    font-size: 12px;
    opacity: 0.7;
    font-weight: 300;
}

@media (max-width: 992px) {
    footer .css-pitch-comp {
        padding: 60px 0 30px;
    }
    
    footer .text_main_holder {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    footer .subscribe_holder {
        grid-column: span 2;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    footer .css-contact-feedback {
        gap: 20px;
    }
    
    footer .info_item {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    footer .css-pitch-comp {
        padding: 50px 0 30px;
    }
    
    footer .text_main_holder {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    footer .subscribe_holder {
        grid-column: span 1;
    }
    
    footer .css-site-start {
        gap: 15px;
    }
    
    footer .css-contact-feedback {
        flex-direction: column;
        gap: 15px;
    }
    
    footer .info_item {
        width: 100%;
        margin-bottom: 0;
    }
    
    footer .input_holder {
        flex-direction: column;
    }
    
    footer .css-email-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    footer .css-pitch-comp {
        padding: 40px 0 30px;
    }
    
    footer .css-head-nav {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    
    footer .css-eco-foot {
        text-align: center;
        margin: 0 auto;
    }
    
    footer .css-site-start h5 {
        text-align: center;
    }
    
    footer .css-site-start h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .css-main-nav {
        align-items: center;
    }
    
    footer .css-main-nav a {
        text-align: center;
    }
    
    footer .subscribe_holder {
        padding: 20px;
        text-align: center;
    }
    
    footer .subscribe_holder h5,
    footer .subscribe_holder p {
        text-align: center;
    }
}.css-enroll-instantly {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(170deg, rgb(200,199,217) 0%, rgb(164,163,185) 100%);
    overflow: hidden;
    z-index: 1;
}

.css-enroll-instantly::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(#ffffff 1px, transparent 1px),
        linear-gradient(to right, #ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: -1;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    animation: gridMove 20s linear infinite;
}

.css-enroll-instantly::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 30%,
        rgb(164,163,185) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 70%,
        rgb(200,199,217) 0%,
        transparent 50%
    );
    opacity: 0.1;
    z-index: -1;
    filter: blur(60px);
    animation: colorShift 15s ease-in-out infinite alternate;
}

.css-enroll-instantly .css-growth-path {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.css-enroll-instantly .css-growth-path::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    animation: orbitRotate 20s linear infinite;
}

.css-enroll-instantly .css-growth-path::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    animation: orbitRotate 15s linear infinite reverse;
}

.css-enroll-instantly h3 {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 33px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 55px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 15px #ffffff;
    animation: textPulse 4s ease-in-out infinite alternate;
}

.css-enroll-instantly h3::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: -2px;
    width: 100%;
    height: 100%;
    color: rgb(164,163,185);
    text-shadow: none;
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px);
    animation: glitchText 3s infinite linear alternate;
}

.css-enroll-instantly h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        #ffffff,
        transparent
    );
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #ffffff;
    opacity: 0.7;
    animation: barPulse 2s ease-in-out infinite;
}

.css-enroll-instantly .css-get-contactbox {
    position: relative;
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #ffffff;
    border-radius: 21px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.css-enroll-instantly .css-get-contactbox::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: #ffffff;
    transition: all 0.4s ease;
    z-index: -1;
}

.css-enroll-instantly .css-get-contactbox::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        -45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 50%,
        transparent 75%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 10px 10px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: patternMove 3s linear infinite;
}

.css-enroll-instantly .css-get-contactbox:hover {
    color: rgb(200,199,217);
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.4);
}

.css-enroll-instantly .css-get-contactbox:hover::before {
    left: 0;
}

.css-enroll-instantly .css-get-contactbox:hover::after {
    opacity: 0.3;
}

@media screen and (max-width: 992px) {
    .css-enroll-instantly {
        padding: 80px 0;
    }
    
    .css-enroll-instantly .css-growth-path::before {
        width: 150px;
        height: 150px;
        top: -75px;
        right: -75px;
    }
    
    .css-enroll-instantly .css-growth-path::after {
        width: 120px;
        height: 120px;
        bottom: -60px;
        left: -60px;
    }
    
    .css-enroll-instantly h3 {
        font-size: calc(33px * 0.9);
        margin-bottom: 45px;
    }
    
    .css-enroll-instantly .css-get-contactbox {
        padding: 16px 42px;
    }
}

@media screen and (max-width: 768px) {
    .css-enroll-instantly {
        padding: 70px 0;
    }
    
    .css-enroll-instantly .css-growth-path::before {
        width: 100px;
        height: 100px;
        top: -50px;
        right: -50px;
    }
    
    .css-enroll-instantly .css-growth-path::after {
        width: 80px;
        height: 80px;
        bottom: -40px;
        left: -40px;
    }
    
    .css-enroll-instantly h3 {
        font-size: calc(33px * 0.8);
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .css-enroll-instantly h3::after {
        width: 40px;
        bottom: -15px;
    }
    
    .css-enroll-instantly .css-get-contactbox {
        padding: 14px 36px;
        font-size: calc(17px * 0.95);
    }
}

@media screen and (max-width: 576px) {
    .css-enroll-instantly {
        padding: 60px 0;
    }
    
    .css-enroll-instantly .css-growth-path::before {
        width: 70px;
        height: 70px;
        top: -35px;
        right: -35px;
    }
    
    .css-enroll-instantly .css-growth-path::after {
        width: 50px;
        height: 50px;
        bottom: -25px;
        left: -25px;
    }
    
    .css-enroll-instantly h3 {
        font-size: calc(33px * 0.7);
        margin-bottom: 35px;
        letter-spacing: 1px;
    }
    
    .css-enroll-instantly h3::after {
        width: 30px;
        height: 2px;
        bottom: -12px;
    }
    
    .css-enroll-instantly .css-get-contactbox {
        padding: 12px 30px;
        font-size: calc(17px * 0.9);
        letter-spacing: 1px;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 30px;
    }
}

@keyframes colorShift {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.1;
    }
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes textPulse {
    0% {
        text-shadow: 0 0 10px #ffffff;
    }
    50% {
        text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff;
    }
    100% {
        text-shadow: 0 0 10px #ffffff;
    }
}

@keyframes glitchText {
    0% {
        left: -2px;
        filter: blur(1px);
    }
    25% {
        left: 2px;
        filter: blur(0);
    }
    50% {
        left: -1px;
        filter: blur(1px);
    }
    75% {
        left: 1px;
        filter: blur(0);
    }
    100% {
        left: -2px;
        filter: blur(1px);
    }
}

@keyframes barPulse {
    0%, 100% {
        opacity: 0.7;
        width: 50px;
    }
    50% {
        opacity: 1;
        width: 70px;
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 10px 10px;
    }
}.css-title-intro {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: rgb(231,230,242);
}

.css-title-intro .css-growth-path {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.css-title-intro .css-page-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.css-title-intro .css-page-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        225deg,
        #000000 0%,
        rgb(200,199,217,0.5) 30%,
        rgba(0, 0, 0, 0.5) 70%,
        rgb(164,163,185,0.5) 100%
    );
    opacity: 0.65;
    z-index: 2;
}

.css-title-intro .css-page-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        #000000 0%,
        rgba(0, 0, 0, 0.5) 25%,
        transparent 50%,
        rgba(0, 0, 0, 0.5) 75%,
        #000000 100%
    );
    opacity: 0.8;
    z-index: 2;
}

.css-title-intro .css-learn-hero {
    height: 100%;
    display: flex;
    animation: slide-sequence 35s linear infinite;
}

.css-title-intro .css-edu-skill {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.css-title-intro .css-edu-skill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-pan 30s ease alternate infinite;
    filter: saturate(1.1) contrast(1.05);
}

.css-title-intro .css-edu-skill:nth-child(2n) img {
    animation-direction: alternate-reverse;
}

.css-title-intro .css-edu-skill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    mix-blend-mode: multiply;
    opacity: 0.3;
    z-index: 1;
}

.css-title-intro .css-text-box-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 750px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(3px);
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgb(200,199,217,0.5) 80%,
        rgba(0, 0, 0, 0.5) 100%
    );
    opacity: 0.85;
    border-radius: 26px;
    box-shadow: 0 10px 30px #000000;
    border: 1px solid #000000;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.css-title-intro .css-text-box-content::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(
        45deg,
        #000000 0%,
        rgb(200,199,217,0.5) 50%,
        #000000 100%
    );
    border-radius: calc(26px + 3px);
    z-index: -1;
    opacity: 0.4;
    animation: border-glow 6s ease-in-out infinite alternate;
}

.css-title-intro .css-text-box-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.css-title-intro .css-text-box-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgb(200,199,217,0.5),
        transparent
    );
}

.css-title-intro .css-text-box-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.css-title-intro .css-text-box-content .css-message-support {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(
        90deg,
        rgb(200,199,217) 0%,
        #000000 100%
    );
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px #000000;
    z-index: 1;
}

.css-title-intro .css-text-box-content .css-message-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #000000 0%,
        rgb(200,199,217) 100%
    );
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
}

.css-title-intro .css-text-box-content .css-message-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px #000000;
}

.css-title-intro .css-text-box-content .css-message-support:hover::before {
    opacity: 1;
}

@keyframes slide-sequence {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% * var(--image-count, 5)));
    }
}

@keyframes zoom-pan {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    25% {
        transform: scale(1.1) translate(5px, -5px);
    }
    50% {
        transform: scale(1.15) translate(0, 0);
    }
    75% {
        transform: scale(1.1) translate(-5px, 5px);
    }
    100% {
        transform: scale(1.05) translate(0, 0);
    }
}

@keyframes border-glow {
    0% {
        opacity: 0.2;
        filter: blur(3px);
    }
    100% {
        opacity: 0.4;
        filter: blur(1px);
    }
}

@media (max-width: 1200px) {
    .css-title-intro .css-text-box-content {
        max-width: 700px;
        padding: 2.5rem;
    }
    
    .css-title-intro .css-text-box-content h2 {
        font-size: calc(42px * 0.9);
    }
}

@media (max-width: 992px) {
    .css-title-intro .css-text-box-content {
        max-width: 600px;
        padding: 2rem;
    }
    
    .css-title-intro .css-text-box-content h2 {
        font-size: 32px;
    }
    
    .css-title-intro .css-text-box-content p {
        font-size: calc(16px * 0.95);
    }
    
}

@media (max-width: 768px) {
    .css-title-intro {
        height: 90vh;
    }
    
    .css-title-intro .css-text-box-content {
        width: 85%;
        max-width: 500px;
        padding: 1.8rem;
    }
    
    .css-title-intro .css-text-box-content h2 {
        margin-bottom: 1.2rem;
    }
    
    .css-title-intro .css-text-box-content h2::after {
        bottom: -8px;
    }
    
    .css-title-intro .css-text-box-content p {
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }
    
    .css-title-intro .css-text-box-content .css-message-support {
        padding: 0.7rem 2rem;
    }

}

@media (max-width: 576px) {
    .css-title-intro {
        height: 80vh;
    }
    
    .css-title-intro .css-text-box-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .css-title-intro .css-text-box-content h2 {
        font-size: calc(32px * 0.9);
        margin-bottom: 1rem;
    }
    
    .css-title-intro .css-text-box-content h2::after {
        bottom: -6px;
        height: 1px;
    }
    
    .css-title-intro .css-text-box-content p {
        font-size: calc(16px * 0.9);
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .css-title-intro .css-text-box-content .css-message-support {
        padding: 0.6rem 1.8rem;
        font-size: calc(15px * 0.95);
    }
}

@media (max-width: 420px) {
    .css-title-intro {
        height: 70vh;
    }
    
    .css-title-intro .css-text-box-content {
        padding: 1.2rem;
    }
    
    .css-title-intro .css-text-box-content h2 {
        font-size: calc(32px * 0.8);
    }
    
    .css-title-intro .css-text-box-content p {
        font-size: calc(16px * 0.85);
        margin-bottom: 1rem;
    }
    
    .css-title-intro .css-text-box-content .css-message-support {
        padding: 0.5rem 1.5rem;
        font-size: calc(15px * 0.9);
    }
    
}

@media (max-height: 600px) {
    .css-title-intro {
        height: auto;
        min-height: 450px;
    }
    
    .css-title-intro .css-text-box-content {
        padding: 1.5rem;
    }
    
    .css-title-intro .css-text-box-content h2 {
        margin-bottom: 0.8rem;
    }
    
    .css-title-intro .css-text-box-content p {
        margin-bottom: 1rem;
    }
}

@supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {
    .css-title-intro .css-text-box-content {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgb(200,199,217,0.5) 80%,
            rgba(0, 0, 0, 0.5) 100%
        );
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
}

.css-title-intro .css-learn-hero {
    --image-count: 5;
    animation-duration: calc(var(--image-count, 5) * 7s);
}

.css-title-intro:has(.css-edu-skill:nth-child(2)) .css-learn-hero {
    --image-count: 2;
}

.css-title-intro:has(.css-edu-skill:nth-child(3)):not(.css-edu-skill:nth-child(4)) .css-learn-hero {
    --image-count: 3;
}

.css-title-intro:has(.css-edu-skill:nth-child(4)):not(.css-edu-skill:nth-child(5)) .css-learn-hero {
    --image-count: 4;
}

.css-title-intro:has(.css-edu-skill:nth-child(5)) .css-learn-hero {
    --image-count: 5;
}.css-privacy-corner {
    padding: 50px;
    width: 100%;
    overflow: hidden;
    height: auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.css-privacy-corner h1 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 41px;
    font-weight: 700;
    color: rgb(200,199,217);
    text-align: center;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(200,199,217);
    padding-bottom: 10px;
}

.css-privacy-corner h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 600;
    color: rgb(164,163,185);
    text-transform: uppercase;
    text-align: left;
    padding-left: 10px;
    border-left: 4px solid rgb(200,199,217);
}

.css-privacy-corner ul, .css-privacy-corner ol {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding: 20px 0;
}

.css-privacy-corner ul li, .css-privacy-corner ol li {
    margin-bottom: 15px;
    font-size: 13px;
    color: #000000;
    padding-left: 20px;
    position: relative;
}

.css-privacy-corner ul li::before, .css-privacy-corner ol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgb(200,199,217);
    border-radius: 50%;
}

.css-privacy-corner p, .css-privacy-corner span, .css-privacy-corner div {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.css-privacy-corner div.container {
    max-width: 1000px;
    margin: 0 auto;
}

@media only screen and (max-width: 800px) {
    .css-privacy-corner {
        padding: 30px;
        border-radius: 10px;
    }

    .css-privacy-corner h1 {
        font-size: calc(19px - 5px);
    }

    .css-privacy-corner h2 {
        font-size: calc(19px - 5px);
    }

    .css-privacy-corner ul, .css-privacy-corner ol {
        padding: 10px 0;
        margin: 10px 0;
    }

    .css-privacy-corner ul li, .css-privacy-corner ol li {
        font-size: 13px;
        padding-left: 15px;
    }
}.css-user-testimonials {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(231,230,242) 0%, rgb(200,199,217,0.5) 100%);
    overflow: hidden;
}

.css-user-testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgb(164,163,185,0.5) 0px, transparent 10px, transparent 20px);
    z-index: 1;
    opacity: 0.15;
}

.css-user-testimonials .container {
    position: relative;
    z-index: 2;
}

.css-user-testimonials h2 {
    font-size: 37px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3.5rem;
    transform: skew(-5deg);
    position: relative;
    display: inline-block;
}

.css-user-testimonials h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, rgb(200,199,217) 0%, transparent 100%);
    transform: translateX(10%);
}

.css-user-testimonials .css-success-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    transform: rotate(-2deg);
}

.css-user-testimonials .css-client-feedback {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    transform: rotate(2deg);
    overflow: hidden;
}

.css-user-testimonials .css-client-feedback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(200,199,217), rgb(164,163,185));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.css-user-testimonials .css-client-feedback:hover {
    transform: rotate(0) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.css-user-testimonials .css-client-feedback:hover::before {
    transform: scaleY(1);
}

.css-user-testimonials .css-client-feedback:nth-child(odd) {
    transform: rotate(4deg) translateY(20px);
}

.css-user-testimonials .css-client-feedback:nth-child(odd):hover {
    transform: rotate(0) translateY(10px);
}

.css-user-testimonials .css-client-feedback:nth-child(3n+2) {
    transform: rotate(-3deg) translateY(-10px);
}

.css-user-testimonials .css-client-feedback:nth-child(3n+2):hover {
    transform: rotate(0) translateY(-20px);
}

.css-user-testimonials .css-client-feedback img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.css-user-testimonials .css-client-feedback:hover img {
    transform: translateX(0) scale(1.05);
    border-color: rgb(200,199,217,0.5);
}

.css-user-testimonials .css-client-feedback p {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #000000;
    font-weight: 600;
    font-size: calc(16px * 1.1);
    transition: all 0.3s ease;
}

.css-user-testimonials .css-client-feedback .css-coding-class {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    margin-top: 0.5rem;
    position: relative;
    padding-top: 1rem;
}

.css-user-testimonials .css-client-feedback .css-coding-class::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(164,163,185,0.5);
    transition: all 0.3s ease;
}

.css-user-testimonials .css-client-feedback:hover .css-coding-class::before {
    width: 80px;
    background: rgb(200,199,217);
}

@media (max-width: 991px) {
    .css-user-testimonials {
        padding: 4rem 0;
    }
    
    .css-user-testimonials h2 {
        text-align: center;
        width: 100%;
        transform: skew(0);
    }
    
    .css-user-testimonials h2::after {
        width: 60%;
        left: 20%;
        transform: none;
    }
    
    .css-user-testimonials .css-success-testimonials {
        transform: rotate(0);
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .css-user-testimonials {
        padding: 3rem 0;
    }
    
    .css-user-testimonials h2 {
        font-size: calc(37px * 0.9);
        margin-bottom: 2.5rem;
    }
    
    .css-user-testimonials .css-success-testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .css-user-testimonials .css-client-feedback,
    .css-user-testimonials .css-client-feedback:nth-child(odd),
    .css-user-testimonials .css-client-feedback:nth-child(3n+2) {
        transform: rotate(0);
        padding: 1.5rem;
    }
    
    .css-user-testimonials .css-client-feedback:hover,
    .css-user-testimonials .css-client-feedback:nth-child(odd):hover,
    .css-user-testimonials .css-client-feedback:nth-child(3n+2):hover {
        transform: translateY(-5px);
    }
    
    .css-user-testimonials .css-client-feedback img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .css-user-testimonials h2 {
        font-size: calc(37px * 0.8);
    }
    
    .css-user-testimonials .css-client-feedback {
        padding: 1.25rem;
    }
}.css-training-benefits {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(120deg, rgb(231,230,242) 0%, #ffffff 100%);
    overflow: hidden;
}

.css-training-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(200,199,217,0.5) 0,
        rgb(200,199,217,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.1;
    animation: patternShift 20s linear infinite;
}

.css-training-benefits .css-growth-path {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.css-training-benefits h2 {
    font-size: 29px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.css-training-benefits h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: rgb(200,199,217);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.css-training-benefits .css-text-box-content {
    width: 100%;
    margin-bottom: 3rem;
}

.css-training-benefits .text_main_holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.css-training-benefits .text_main_holder > div {
    background: #ffffff;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.css-training-benefits .text_main_holder > div::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgb(200,199,217,0.5) 0%,
        transparent 70%
    );
    opacity: 0;
    z-index: -1;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.css-training-benefits .text_main_holder > div:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.css-training-benefits .text_main_holder > div:hover::before {
    opacity: 0.8;
    transform: scale(1);
}

.css-training-benefits .text_main_holder svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgb(231,230,242);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.css-training-benefits .text_main_holder > div:hover svg {
    transform: scale(1.1);
    background: rgb(200,199,217,0.5);
}

.css-training-benefits .text_main_holder svg path {
    fill: rgb(200,199,217);
    transition: fill 0.3s ease;
}

.css-training-benefits .text_main_holder > div:hover svg path {
    fill: rgb(164,163,185);
}

.css-training-benefits .text_main_holder p {
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.css-training-benefits .css-photo-card {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.css-training-benefits .css-photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom right,
        rgb(200,199,217,0.5) 0%,
        transparent 50%,
        rgb(164,163,185,0.5) 100%
    );
    z-index: 1;
}

@keyframes patternShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media (max-width: 992px) {
    .css-training-benefits .text_main_holder {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .css-training-benefits {
        padding: 5rem 0;
    }
    
    .css-training-benefits .text_main_holder {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .css-training-benefits h2 {
        font-size: calc(29px * 0.9);
        margin-bottom: 3rem;
    }
    
    .css-training-benefits .css-photo-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .css-training-benefits {
        padding: 4rem 0;
    }
    
    .css-training-benefits .css-growth-path {
        padding: 0 1.5rem;
    }
    
    .css-training-benefits .text_main_holder > div {
        padding: 1.5rem;
    }
    
    .css-training-benefits .text_main_holder svg {
        width: 3.5rem;
        height: 3.5rem;
        padding: 0.8rem;
    }
    
    .css-training-benefits .css-photo-card {
        height: 250px;
    }
}.css-potential-learners {
    position: relative;
    background-color: rgb(231,230,242);
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
}

.css-potential-learners::before,
.css-potential-learners::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 20%, 
        rgb(200,199,217) 50%, 
        transparent 80%);
    opacity: 0;
    z-index: -1;
    animation: beamScan 8s infinite ease-out;
}

.css-potential-learners::before {
    left: 25%;
    animation-delay: 0s;
}

.css-potential-learners::after {
    right: 25%;
    animation-delay: 4s;
}

.css-potential-learners .css-growth-path {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.css-potential-learners .css-growth-path::before,
.css-potential-learners .css-growth-path::after {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, 
        transparent 10%, 
        rgb(164,163,185) 50%, 
        transparent 90%);
    opacity: 0;
    z-index: -1;
    animation: horizontalBeam 10s infinite ease-out;
}

.css-potential-learners .css-growth-path::before {
    top: 30%;
    animation-delay: 2s;
}

.css-potential-learners .css-growth-path::after {
    bottom: 30%;
    animation-delay: 6s;
}

.css-potential-learners h3 {
    font-size: 31px;
    font-weight: 600;
    color: rgb(200,199,217);
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    letter-spacing: 1px;
}

.css-potential-learners h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 2px;
    background: rgb(200,199,217);
    transform: translateX(-50%) scaleX(0.3);
    opacity: 0.7;
    animation: pulseLine 4s infinite ease-in-out;
}

.css-potential-learners ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.css-potential-learners 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;
}

.css-potential-learners ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, 
        rgb(164,163,185,0.5), 
        rgb(200,199,217,0.5));
    opacity: 0.5;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.css-potential-learners ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(200,199,217,0.5) 20%, 
        transparent 80%);
    opacity: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.css-potential-learners ul li:hover {
    color: #000000;
    background-color: rgba(255, 255, 255, 0.05);
}

.css-potential-learners ul li:hover::before {
    transform: scaleY(1);
}

.css-potential-learners ul li:hover::after {
    opacity: 0.15;
    transform: translateX(100%);
}

.css-potential-learners ul li svg {
    width: 28px;
    height: 28px;
    margin-right: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.css-potential-learners ul li:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.css-potential-learners ul li svg path {
    fill: rgb(200,199,217);
    transition: fill 0.4s ease;
}

.css-potential-learners ul li:hover svg path {
    fill: rgb(164,163,185);
    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);
    }
}

.css-potential-learners::before :nth-child(1) {
    animation-delay: 1s;
}

.css-potential-learners::before :nth-child(2) {
    animation-delay: 3s;
}

.css-potential-learners::before :nth-child(3) {
    animation-delay: 5s;
}

.css-potential-learners ul::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid rgb(200,199,217,0.5);
    border-radius: 50%;
    opacity: 0.2;
}

.css-potential-learners ul::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    border: 1px solid rgb(164,163,185,0.5);
    border-radius: 50%;
    opacity: 0.2;
}

@media (max-width: 992px) {
    .css-potential-learners {
        padding: 4rem 0;
    }
    
    .css-potential-learners h3 {
        font-size: calc(31px * 0.9);
    }
    
    .css-potential-learners ul {
        gap: 1rem;
    }
    
    .css-potential-learners ul li {
        padding: 1.1rem 1.3rem;
    }
}

@media (max-width: 576px) {
    .css-potential-learners {
        padding: 3rem 0;
    }
    
    .css-potential-learners .css-growth-path {
        padding: 0 1.5rem;
    }
    
    .css-potential-learners h3 {
        font-size: calc(31px * 0.8);
        margin-bottom: 2.5rem;
    }
    
    .css-potential-learners ul {
        gap: 0.8rem;
    }
    
    .css-potential-learners ul li {
        padding: 1rem;
    }
    
    .css-potential-learners ul li svg {
        width: 24px;
        height: 24px;
        margin-right: 1rem;
    }
}.css-program-offerings {
    position: relative;
    background: rgb(231,230,242);
    overflow: hidden;
    padding: 120px 0;
    perspective: 1000px;
}

.css-program-offerings::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(200,199,217,0.5) 0,
        rgb(200,199,217,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.05;
    animation: shiftLines 20s linear infinite;
}

@keyframes shiftLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.css-program-offerings .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

.css-program-offerings .css-knowledge-track {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    min-height: 550px;
}

.css-program-offerings .css-text-box-content {
    grid-row: 2;
    grid-column: 1;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    margin-top: -80px;
    margin-left: 50px;
    margin-right: 50px;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.css-program-offerings .css-text-box-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
                rgba(255, 255, 255, 0.8) 0%, 
                rgba(255, 255, 255, 0.95) 100%);
    border-radius: 18px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.css-program-offerings .css-text-box-content::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgb(200,199,217) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    animation: pulsate 5s ease-in-out infinite;
}

@keyframes pulsate {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.css-program-offerings .css-text-box-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.css-program-offerings .css-text-box-content h2::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 4px;
    background: rgb(200,199,217);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.css-program-offerings .css-text-box-content:hover h2::before {
    width: 100%;
}

.css-program-offerings .css-text-box-content .css-coding-class {
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.css-program-offerings .css-text-box-content .css-coding-class:last-child {
    margin-bottom: 0;
}

.css-program-offerings .css-photo-card {
    grid-row: 1;
    grid-column: 1;
    height: 450px;
    position: relative;
    border-radius: 18px;
    z-index: 3;
    overflow: hidden;
    transform: rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.css-program-offerings .css-photo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
                transparent 0%, 
                rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.css-program-offerings .css-photo-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 20%,
        rgb(200,199,217,0.5) 0%,
        transparent 60%
    );
    z-index: 1;
    mix-blend-mode: overlay;
}

.css-program-offerings:hover .css-photo-card {
    transform: rotateX(2deg) translateY(-10px);
}

.css-program-offerings:hover .css-text-box-content {
    transform: translateY(-10px);
}

.css-program-offerings .container::before,
.css-program-offerings .container::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgb(164,163,185,0.5);
    opacity: 0.1;
    z-index: 1;
}

.css-program-offerings .container::before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -50px;
    animation: float 20s ease-in-out infinite;
}

.css-program-offerings .container::after {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -30px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(0, -40px);
    }
    75% {
        transform: translate(-20px, -20px);
    }
}

.css-program-offerings .css-knowledge-track::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgb(200,199,217,0.5) 20px,
        rgb(200,199,217,0.5) 21px
    );
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

@media screen and (max-width: 1024px) {
    .css-program-offerings {
        padding: 80px 0;
    }
    
    .css-program-offerings .css-knowledge-track {
        min-height: 400px;
    }
    
    .css-program-offerings .css-photo-card {
        height: 350px;
    }
    
    .css-program-offerings .css-text-box-content {
        padding: 30px;
        margin-left: 30px;
        margin-right: 30px;
        margin-top: -60px;
    }
    
    .css-program-offerings .container::before {
        width: 150px;
        height: 150px;
    }
    
    .css-program-offerings .container::after {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 767px) {
    .css-program-offerings {
        padding: 60px 0;
    }
    
    .css-program-offerings .css-knowledge-track {
        min-height: auto;
    }
    
    .css-program-offerings .css-photo-card {
        height: 250px;
        transform: none;
    }
    
    .css-program-offerings .css-text-box-content {
        padding: 25px;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: -40px;
        transform: none;
    }
    
    .css-program-offerings .css-text-box-content h2 {
        font-size: calc(32px * 0.85);
        margin-bottom: 20px;
    }
    
    .css-program-offerings .css-text-box-content .css-coding-class {
        font-size: calc(17px * 0.95);
    }
    
    .css-program-offerings:hover .css-photo-card,
    .css-program-offerings:hover .css-text-box-content {
        transform: none;
    }
    
    .css-program-offerings .container::before,
    .css-program-offerings .container::after {
        display: none;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.css-program-offerings .css-photo-card {
    animation: slideUp 0.8s ease-out forwards;
}

.css-program-offerings .css-text-box-content {
    animation: slideUp 1s 0.3s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@media (prefers-color-scheme: dark) {
    .css-program-offerings {
        background: rgb(200,199,217);
    }
    
    .css-program-offerings .css-text-box-content::before {
        background: linear-gradient(120deg, 
                    rgba(30, 30, 30, 0.9) 0%, 
                    rgba(50, 50, 50, 0.95) 100%);
    }
    
    .css-program-offerings .css-text-box-content h2 {
        color: #ffffff;
    }
    
    .css-program-offerings .css-text-box-content .css-coding-class {
        color: #ffffff;
        opacity: 0.9;
    }
}

@media (prefers-contrast: more) {
    .css-program-offerings .css-text-box-content {
        background: #ffffff;
    }
    
    .css-program-offerings .css-text-box-content h2 {
        color: #000000;
    }
    
    .css-program-offerings .css-text-box-content .css-coding-class {
        color: #000000;
    }
    
    .css-program-offerings .css-photo-card::before {
        opacity: 0.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .css-program-offerings::before,
    .css-program-offerings .container::before,
    .css-program-offerings .container::after,
    .css-program-offerings .css-text-box-content::after,
    .css-program-offerings:hover .css-photo-card,
    .css-program-offerings:hover .css-text-box-content {
        animation: none;
        transform: none;
    }
    
    .css-program-offerings .css-photo-card,
    .css-program-offerings .css-text-box-content {
        animation: none;
        opacity: 1;
    }
}

.css-program-offerings .css-photo-card,
.css-program-offerings .css-text-box-content {
    will-change: transform;
    transform: translateZ(0);
}

@media (hover: hover) {
    .css-program-offerings .css-text-box-content:hover h2::before {
        width: 100%;
    }
    
    .css-program-offerings:hover .css-photo-card {
        transform: rotateX(2deg) translateY(-10px);
    }
    
    .css-program-offerings:hover .css-text-box-content {
        transform: translateY(-10px);
    }
}.css-company-info {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, rgb(231,230,242) 100%);
    padding: 120px 0;
    overflow: hidden;
}

.css-company-info::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(200,199,217,0.5) 0,
        rgb(200,199,217,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    opacity: 0.05;
    z-index: 1;
}

.css-company-info::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(164,163,185,0.5) 0,
        rgb(164,163,185,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    opacity: 0.05;
    z-index: 1;
}

.css-company-info .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.css-company-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    display: inline-block;
}

.css-company-info h2::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -15px;
    width: 60px;
    height: 4px;
    background: rgb(200,199,217);
}

.css-company-info h2::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -15px;
    width: 120px;
    height: 4px;
    background: rgb(200,199,217,0.5);
    z-index: -1;
}

.css-company-info .css-team-profile {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 0;
}

.css-company-info .css-corp-culture:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    padding: 60px 40px 60px 20px;
    position: relative;
    z-index: 3;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.css-company-info .css-corp-culture:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
    padding: 60px 20px 60px 60px;
    position: relative;
    z-index: 2;
    background: rgb(200,199,217);
    color: #ffffff;
    margin-left: -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.css-company-info .css-corp-culture:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03));
    z-index: -1;
}

.css-company-info .css-corp-culture:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(270deg, transparent, rgba(0, 0, 0, 0.1));
    z-index: -1;
}

.css-company-info .css-corp-culture:nth-child(1)::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 80px;
    height: 80px;
    background: rgb(200,199,217,0.5);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.css-company-info .css-corp-culture:nth-child(1):hover::after {
    top: -10%;
    left: -10%;
    width: 150px;
    height: 150px;
}

.css-company-info .css-corp-culture h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.css-company-info .css-corp-culture:nth-child(1) h3 {
    color: #000000;
}

.css-company-info .css-corp-culture:nth-child(2) h3 {
    color: #ffffff;
}

.css-company-info .css-corp-culture h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
}

.css-company-info .css-corp-culture:nth-child(1) h3::after {
    background: rgb(200,199,217);
}

.css-company-info .css-corp-culture:nth-child(2) h3::after {
    background: #ffffff;
}

.css-company-info .css-corp-culture p {
    font-size: 13px;
    line-height: 1.8;
    position: relative;
    margin-bottom: 0;
}

.css-company-info .css-corp-culture:nth-child(1) p {
    color: #000000;
}

.css-company-info .css-corp-culture:nth-child(2) p {
    color: rgba(255, 255, 255, 0.9);
}

.css-company-info .css-corp-culture:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.css-company-info .css-corp-culture:nth-child(2):hover::after {
    transform: rotate(315deg);
    width: 100px;
    height: 100px;
}

.css-company-info .container::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgb(164,163,185,0.5);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.05;
    filter: blur(50px);
}

.css-company-info .container::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgb(200,199,217,0.5);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.05;
    filter: blur(60px);
}

@media screen and (max-width: 991px) {
    .css-company-info {
        padding: 90px 0;
    }
    
    .css-company-info h2 {
        margin-bottom: 60px;
    }
    
    .css-company-info .css-corp-culture:nth-child(1) {
        padding: 50px 30px 50px 20px;
    }
    
    .css-company-info .css-corp-culture:nth-child(2) {
        padding: 50px 20px 50px 50px;
    }
}

@media screen and (max-width: 768px) {
    .css-company-info {
        padding: 70px 0;
    }
    
    .css-company-info h2 {
        margin-bottom: 50px;
        font-size: calc(35px + 0.1rem);
    }
    
    .css-company-info .css-team-profile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .css-company-info .css-corp-culture:nth-child(1),
    .css-company-info .css-corp-culture:nth-child(2) {
        clip-path: none;
        margin-left: 0;
        padding: 40px 30px;
    }
    
    .css-company-info .css-corp-culture:nth-child(2)::before {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .css-company-info {
        padding: 60px 0;
    }
    
    .css-company-info h2 {
        margin-bottom: 40px;
        font-size: 35px;
    }
    
    .css-company-info .css-corp-culture:nth-child(1),
    .css-company-info .css-corp-culture:nth-child(2) {
        padding: 30px 20px;
    }
    
    .css-company-info .css-corp-culture h3 {
        font-size: calc(21px + 0.1rem);
        margin-bottom: 15px;
    }
    
    .css-company-info .css-corp-culture p {
        font-size: calc(13px - 0.05rem);
    }
}