* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}svg {
    width: 30px;
    height: 30px;
}.level-up {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}.wrapper-bundle {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}.container {
    width: 1161px;
    margin: auto;
    max-width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.top-header {
    flex: 1 0 auto;
}html,body {
    font-family: Arial, sans-serif;
    height: 100%;
    color: #000000;
    scroll-behavior: smooth;
    min-height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.user-testimonials {
    background: linear-gradient(135deg, 
        rgb(169,214,175) 0%, 
        rgb(98,142,105,0.5) 50%, 
        rgb(169,214,175) 100%);
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
}.user-testimonials::before {
    height: 100%;
    left: 0;
    width: 100%;
    background: radial-gradient(ellipse at top right, 
        rgb(98,142,105,0.5) 0%, 
        transparent 70%);
    content: '';
    top: 0;
    z-index: 0;
    position: absolute;
}.user-testimonials::after {
    bottom: -5%;
    background: radial-gradient(circle, 
        rgb(134,178,141,0.5) 0%, 
        transparent 70%);
    height: 35%;
    content: '';
    right: -5%;
    width: 35%;
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}.user-testimonials h2.container {
    transform: perspective(1000px) translateZ(10px);
    z-index: 2;
    margin-bottom: 4rem;
    position: relative;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000000;
    font-weight: 700;
    font-size: 37px;
}.user-testimonials h2.container::after {
    background: linear-gradient(90deg, 
        transparent, 
        rgb(134,178,141), 
        transparent);
    height: 3px;
    bottom: -15px;
    content: '';
    position: absolute;
    width: 80px;
    transform: translateX(-50%);
    left: 50%;
}.user-testimonials .container.instructor-bio {
    max-width: 95%;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.user-testimonials .opinion-spot {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    gap: 2.5rem;
    perspective: 1000px;
}.user-testimonials .feedback-carousel {
    flex-direction: column;
    z-index: 1;
    background: #ffffff;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), 
                box-shadow 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
}.user-testimonials .feedback-carousel::before {
    left: 0;
    z-index: -1;
    width: 5px;
    content: '';
    height: 100%;
    background: linear-gradient(to bottom, rgb(134,178,141), rgb(98,142,105));
    top: 0;
    position: absolute;
}.user-testimonials .feedback-carousel::after {
    opacity: 0.15;
    right: 20px;
    color: rgb(98,142,105,0.5);
    font-size: 8rem;
    position: absolute;
    content: '"';
    z-index: -1;
    font-family: Arial, sans-serif;
    top: -20px;
}.user-testimonials .feedback-carousel:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.user-testimonials .feedback-carousel h3 {
    position: relative;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
    display: inline-block;
    font-size: calc(19px + 0.1rem);
}.user-testimonials .feedback-carousel h3::after {
    width: 0;
    height: 2px;
    background: rgb(134,178,141);
    left: 0;
    content: '';
    position: absolute;
    transition: width 0.3s ease;
    bottom: -5px;
}.user-testimonials .feedback-carousel:hover h3::after {
    width: 100%;
}.user-testimonials .feedback-carousel .description {
    z-index: 1;
    color: #000000;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 17px;
    line-height: 1.6;
}.user-testimonials .feedback-carousel div {
    align-self: flex-end;
    transform: translateZ(5px);
    margin-top: auto;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: transform 0.4s ease;
    border: 3px solid #ffffff;
    width: 80px;
    height: 80px;
}.user-testimonials .feedback-carousel:hover div {
    transform: scale(1.05) translateZ(10px);
}.user-testimonials .feedback-carousel div img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.5s ease;
    width: 100%;
}.user-testimonials .feedback-carousel:hover div img {
    transform: scale(1.1);
}.user-testimonials .feedback-carousel:nth-child(odd) {
    animation: fadeInLeft 0.8s both;
    animation-delay: calc(0.1s * var(--i, 0));
}.user-testimonials .feedback-carousel:nth-child(even) {
    animation: fadeInRight 0.8s both;
    animation-delay: calc(0.1s * var(--i, 0));
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(5px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(5px) rotate(-360deg);
    }
}

@media (max-width: 991px) {.user-testimonials {
    padding: 4rem 0;
}.user-testimonials h2.container {
    font-size: calc(37px - 0.15rem);
    margin-bottom: 3rem;
}.user-testimonials .opinion-spot {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}.user-testimonials .feedback-carousel {
    padding: 1.75rem;
}
}

@media (max-width: 768px) {.user-testimonials {
    padding: 3.5rem 0;
}.user-testimonials h2.container {
    font-size: calc(37px - 0.25rem);
    margin-bottom: 2.5rem;
}.user-testimonials .opinion-spot {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.75rem;
}.user-testimonials .feedback-carousel {
    padding: 1.5rem;
}.user-testimonials .feedback-carousel div {
    height: 70px;
    width: 70px;
}
}

@media (max-width: 576px) {.user-testimonials {
    padding: 3rem 0;
}.user-testimonials h2.container {
    margin-bottom: 2rem;
    font-size: calc(37px - 0.35rem);
}.user-testimonials .opinion-spot {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.user-testimonials .feedback-carousel {
    padding: 1.25rem;
}.user-testimonials .feedback-carousel h3 {
    font-size: 19px;
}.user-testimonials .feedback-carousel div {
    height: 60px;
    width: 60px;
}}.cookie-overlay-banner {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards;
    position: fixed;
    padding: 20px 0;
    width: 100%;
    background: rgb(98,142,105);
    z-index: 90;
    transition: transform 0.3s ease-in-out;
    bottom: 0;
    border-top: 3px solid rgb(98,142,105);
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
#cookieNoticeMessage {
    display: none;
}#cookieNoticeMessage:checked ~ .cookie-overlay-banner {
    visibility: hidden;
    opacity: 0;
}.cookies-tech {
    gap: 20px;
    display: flex;
    padding: 20px 5%;
    align-items: center;
    justify-content: space-between;
}.cookie-overlay-banner h5 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
}.cookie-overlay-banner p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}.cookie-compl {
    filter: drop-shadow(0 0 10px rgb(134,178,141));
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    display: flex;
    flex-shrink: 0;
}.cookie-compl svg {
    width: 80px;
    transition: transform 0.3s ease-in-out;
    height: 80px;
    fill: rgb(134,178,141);
}.cookie-compl:hover svg {
    transform: scale(1.1);
}.consent-track {
    font-size: 18px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 140px;
    color: #000000;
    margin-left: 10px;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 0 15px rgb(134,178,141);
    padding: 10px 20px;
    white-space: nowrap;
    line-height: 40px;
    background: linear-gradient(90deg, rgb(134,178,141), rgb(98,142,105));
}.consent-track:hover {
    box-shadow: 0 0 20px rgb(98,142,105);
}.cookie_button.cookie-panel {
    color: #ffffff;
    border: 2px solid rgb(98,142,105);
    background: rgba(0, 0, 0, 0.5);
}.cookie_button.cookie-panel:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgb(98,142,105);
}.cookie-overlay-banner p a {
    color: rgb(134,178,141);
    text-decoration: none;
    transition: color 0.3s ease;
}.cookie-overlay-banner p a:hover {
    color: rgb(98,142,105);
}
@media only screen and (max-width: 1200px) {.cookie-overlay-banner {
    padding: 15px 0;
}.cookies-tech {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.cookie-compl {
    display: none;
}.cookies-tech {
    align-items: center;
    text-align: center;
    flex-direction: column;
}.cookie-overlay-banner h5 {
    margin-bottom: 5px;
    font-size: 19px;
}.track-accept {
    margin-bottom: 15px;
}.consent-track {
    min-width: 100%;
    margin: 10px 0;
}}
.contact-section {
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    background: linear-gradient(125deg, rgb(169,214,175) 0%, rgb(98,142,105,0.5) 50%, rgb(169,214,175) 100%);
}.contact-section::before {
    top: 0;
    position: absolute;
    z-index: -1;
    content: '';
    height: 100%;
    opacity: 0.7;
    width: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px);
    left: 0;
}.contact-section::after {
    opacity: 0.2;
    background: 
        conic-gradient(
            from 0deg at 50% 50%,
            transparent 0%,
            rgb(134,178,141,0.5) 5%,
            transparent 10%,
            transparent 90%,
            rgb(98,142,105,0.5) 95%,
            transparent 100%
        );
    z-index: -1;
    position: absolute;
    left: -50%;
    height: 200%;
    top: -50%;
    animation: rotate 120s linear infinite;
    width: 200%;
    content: '';
}.contact-section .picture-gallery {
    position: absolute;
    width: 100%;
    filter: contrast(120%) brightness(110%) blur(5px);
    height: 100%;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    top: 0;
    mix-blend-mode: luminosity;
}.contact-section .container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    position: relative;
}.contact-section h3 {
    font-weight: 700;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #000000;
    margin-bottom: 50px;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}.contact-section h3::before {
    background: rgb(134,178,141);
    top: -15px;
    height: 4px;
    left: 50%;
    border-radius: 10px;
    position: absolute;
    content: '';
    width: 40px;
    transform: translateX(-50%);
}.contact-section h3::after {
    left: 50%;
    border-radius: 10px;
    transform: translateX(-50%);
    height: 4px;
    content: '';
    position: absolute;
    background: rgb(134,178,141);
    width: 80px;
    bottom: -15px;
}.contact-section .support-card {
    position: relative;
    overflow: hidden;
    border-radius: 21px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.01);
}.contact-section .support-card::before {
    inset: 0;
    background: linear-gradient(135deg, 
        transparent 20%, 
        rgba(255, 255, 255, 0.05) 40%, 
        rgba(255, 255, 255, 0.1) 60%, 
        transparent 80%);
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 0;
}.contact-section .support-card::after {
    box-shadow: 0 0 25px rgb(134,178,141,0.5);
    pointer-events: none;
    inset: 0;
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    border-radius: 21px;
    animation: pulse-border 4s infinite alternate;
}.contact-section .reach-message {
    padding: 50px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    flex: 1 1 60%;
}.contact-section .reach-message::before {
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 25%);
    top: 0;
    width: 100%;
    position: absolute;
    content: '';
    z-index: 0;
    height: 100%;
}.contact-section .reach-message::after {
    width: 150px;
    border-radius: 0 0 0 150px;
    content: '';
    right: 0;
    z-index: 0;
    height: 150px;
    background: 
        linear-gradient(135deg, transparent 40%, rgb(134,178,141,0.5) 100%);
    position: absolute;
    top: 0;
    opacity: 0.5;
}.contact-section .reach-message #contact {
    position: relative;
    z-index: 2;
}.contact-section .reach-message h3 {
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    font-size: 19px;
    text-transform: uppercase;
}.contact-section .reach-message h3::before {
    display: none;
}.contact-section .reach-message h3::after {
    transform: none;
    left: 0;
    width: 60px;
    bottom: -10px;
    background: rgb(134,178,141);
}.contact-section .reach-message input[type="text"],
.contact-section .reach-message textarea {
    margin-bottom: 25px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    color: #000000;
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03) inset;
    width: 100%;
    padding: 18px 25px;
    transition: all 0.3s ease;
}.contact-section .reach-message input[type="text"]:focus,
.contact-section .reach-message textarea:focus {
    border-color: rgb(134,178,141);
    background-color: #ffffff;
    box-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.03) inset,
        0 0 0 3px rgb(134,178,141,0.5);
    outline: none;
}.contact-section .reach-message textarea {
    resize: vertical;
    height: 150px;
}.contact-section .reach-message .reach-panel {
    align-items: flex-start;
    margin-bottom: 30px;
    display: flex;
}.contact-section .reach-message .reach-panel input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact-section .reach-message .reach-panel label {
    line-height: 1.5;
    padding-left: 38px;
    font-size: calc(16px - 2px);
    cursor: pointer;
    color: #000000;
    position: relative;
}.contact-section .reach-message .reach-panel label::before {
    top: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    left: 0;
    width: 24px;
    content: '';
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset;
    transition: all 0.3s ease;
    height: 24px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.02);
}.contact-section .reach-message .reach-panel label::after {
    left: 5px;
    background-color: rgb(134,178,141);
    content: '';
    top: 2px;
    height: 15px;
    transition: all 0.3s ease;
    border-radius: calc(10px - 2px);
    transform: scale(0.6);
    opacity: 0;
    width: 15px;
    position: absolute;
}.contact-section .reach-message .reach-panel input[type="checkbox"]:checked + label::before {
    border-color: rgb(134,178,141);
}.contact-section .reach-message .reach-panel input[type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}.contact-section .reach-message .reach-panel a {
    color: rgb(134,178,141);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    position: relative;
}.contact-section .reach-message .reach-panel a::after {
    content: '';
    left: 0;
    bottom: -2px;
    transition: transform 0.3s ease;
    height: 1px;
    width: 100%;
    background-color: rgb(134,178,141);
    transform-origin: right;
    transform: scaleX(0);
    position: absolute;
}.contact-section .reach-message .reach-panel a:hover {
    color: rgb(98,142,105);
}.contact-section .reach-message .reach-panel a:hover::after {
    transform-origin: left;
    background-color: rgb(98,142,105);
    transform: scaleX(1);
}.contact-section .reach-message .message-box {
    position: relative;
    letter-spacing: 1px;
    font-size: 18px;
    border-radius: 21px;
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, rgb(134,178,141) 0%, rgb(98,142,105) 100%);
    overflow: hidden;
    border: none;
    box-shadow: 
        0 5px 15px rgb(134,178,141,0.5),
        0 0 0 1px rgb(134,178,141,0.5) inset;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
}.contact-section .reach-message .message-box::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    position: absolute;
    transition: all 0.5s ease;
    width: 100%;
    top: 0;
    content: '';
    height: 100%;
    left: -100%;
}.contact-section .reach-message .message-box::after {
    content: '';
    opacity: 0.5;
    animation: glow 2s infinite;
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    bottom: 0;
    width: 100%;
    left: 0;
}.contact-section .reach-message .message-box:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgb(134,178,141,0.5),
        0 0 0 1px rgb(134,178,141) inset;
    background: linear-gradient(135deg, rgb(98,142,105) 0%, rgb(134,178,141) 100%);
}.contact-section .reach-message .message-box:hover::before {
    left: 100%;
}.contact-section .inquiry-card {
    position: relative;
    overflow: hidden;
    flex: 1 1 40%;
    background: linear-gradient(135deg, rgb(134,178,141) 0%, rgb(98,142,105) 100%);
    padding: 50px;
}.contact-section .inquiry-card::before {
    position: absolute;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    width: 100%;
    content: '';
    z-index: 0;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}.contact-section .inquiry-card::after {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    content: '';
    position: absolute;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 25%, rgba(255, 255, 255, 0.05) 50%, transparent 75%);
    animation: shine 8s infinite linear;
}.contact-section .inquiry-card h4 {
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
    color: #ffffff;
    font-size: 19px;
    z-index: 1;
    font-weight: 600;
}.contact-section .inquiry-card h4::after {
    content: '';
    left: 0;
    background: #ffffff;
    height: 3px;
    position: absolute;
    width: 60px;
    bottom: -10px;
    border-radius: 10px;
}.contact-section .inquiry-card .connect-panel {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1;
}.contact-section .inquiry-card .connect-panel li {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
}.contact-section .inquiry-card .connect-panel li:not(:last-child)::after {
    height: 1px;
    left: 0;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    bottom: 0;
    position: absolute;
    width: 100%;
}.contact-section .inquiry-card .connect-panel li svg {
    height: 26px;
    margin-right: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    width: 26px;
    position: relative;
    flex-shrink: 0;
}.contact-section .inquiry-card .connect-panel li svg path {
    transition: fill 0.3s ease;
    fill: #ffffff;
}.contact-section .inquiry-card .connect-panel li:hover svg {
    transition: transform 0.3s ease;
    transform: scale(1.1);
}.contact-section .inquiry-card .connect-panel li:hover svg path {
    fill: rgba(255, 255, 255, 0.9);
}.contact-section .inquiry-card .connect-panel li span {
    line-height: 1.5;
    color: #ffffff;
    position: relative;
    font-size: 16px;
}.contact-section .inquiry-card .connect-panel li a {
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}.contact-section .inquiry-card .connect-panel li a::after {
    transform: scaleX(0);
    position: absolute;
    transition: transform 0.3s ease;
    width: 100%;
    transform-origin: right;
    height: 1px;
    background-color: #ffffff;
    bottom: -2px;
    left: 0;
    content: '';
}.contact-section .inquiry-card .connect-panel li a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}.contact-section .inquiry-card .connect-panel li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 15px rgb(134,178,141,0.5);
    }
    50% {
        box-shadow: 0 0 25px rgb(98,142,105,0.5);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@media (max-width: 992px) {.contact-section {
    padding: 80px 0;
}.contact-section .container {
    padding: 0 20px;
}.contact-section .support-card {
    flex-direction: column;
}.contact-section .reach-message,
    .contact-section .inquiry-card {
    flex: 1 1 100%;
}.contact-section .reach-message {
    padding: 40px;
}.contact-section .inquiry-card {
    padding: 40px;
}
}

@media (max-width: 768px) {.contact-section {
    padding: 60px 0;
}.contact-section h3 {
    margin-bottom: 40px;
    font-size: calc(30px - 4px);
}.contact-section .reach-message h3,
    .contact-section .inquiry-card h4 {
    margin-bottom: 30px;
    font-size: calc(19px - 2px);
}.contact-section .reach-message input[type="text"],
    .contact-section .reach-message textarea {
    margin-bottom: 20px;
    padding: 15px 20px;
}.contact-section .reach-message textarea {
    height: 120px;
}.contact-section .reach-message .message-box {
    padding: 14px 30px;
    font-size: calc(18px - 1px);
}.contact-section .inquiry-card .connect-panel li {
    margin-bottom: 25px;
    padding-bottom: 15px;
}.contact-section .inquiry-card .connect-panel li svg {
    height: 22px;
    width: 22px;
    margin-right: 15px;
}
}

@media (max-width: 576px) {.contact-section {
    padding: 40px 0;
}.contact-section .reach-message,
    .contact-section .inquiry-card {
    padding: 30px 20px;
}.contact-section h3 {
    margin-bottom: 30px;
    font-size: calc(30px - 6px);
}.contact-section .reach-message .reach-panel label {
    font-size: calc(16px - 3px);
}.contact-section .inquiry-card .connect-panel li:not(:last-child) {
    padding-bottom: 12px;
    margin-bottom: 20px;
}}.our-story {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.our-story::before {
    opacity: 0.85;
    z-index: 1;
    width: 100%;
    top: 0;
    content: "";
    height: 100%;
    background: #000000;
    position: absolute;
    left: 0;
}.our-story::after {
    position: absolute;
    content: "";
    z-index: 2;
    filter: blur(40px);
    background: rgb(134,178,141);
    border-radius: 50%;
    right: -50px;
    opacity: 0.15;
    animation: float 10s ease-in-out infinite;
    height: 250px;
    bottom: -50px;
    width: 250px;
}.our-story .container {
    background: rgba(255, 255, 255, 0.08);
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    padding: 40px;
    position: relative;
    border-radius: 10px;
}.our-story h2 {
    color: #ffffff;
    font-size: 37px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}.our-story h2::after {
    border-radius: 10px;
    transition: width 0.5s ease;
    content: "";
    width: 60px;
    background: rgb(134,178,141);
    position: absolute;
    left: 0;
    height: 4px;
    bottom: -10px;
    box-shadow: 0 0 15px rgb(134,178,141);
}.our-story:hover h2::after {
    width: 100%;
}.our-story .text-frame-item {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.05),
        inset -2px -2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}.our-story .text-frame-item:hover {
    transform: translateY(-10px);
}.our-story .text-frame-item > div {
    width: 100%;
    padding: 30px;
}.our-story .text-frame-item p {
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 20px;
    -webkit-background-clip: text !important;
    color: #ffffff;
    font-size: calc(16px * 1.4);
    background: linear-gradient(135deg, #ffffff, rgb(98,142,105));
    font-weight: 600;
    position: relative;
}.our-story .text-frame-item p::before {
    position: absolute;
    content: "";
    background: rgb(134,178,141);
    width: 4px;
    border-radius: 10px;
    left: -10px;
    top: 0;
    height: 100%;
}.our-story .text-frame-item div div {
    position: relative;
    box-shadow: 
        inset 5px 5px 10px rgba(0, 0, 0, 0.2),
        inset -5px -5px 10px rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: justify;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-size: 16px;
    color: rgb(255, 255, 255, 0.5);
}.our-story .text-frame-item div div::first-letter {
    line-height: 1;
    font-weight: 700;
    float: left;
    color: rgb(134,178,141);
    margin-right: 10px;
    font-size: calc(16px * 2.5);
}

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

@media (min-width: 768px) {.our-story {
    padding: 150px 0;
}.our-story .container {
    transform: perspective(1000px) rotateX(2deg);
    padding: 60px;
}.our-story h2 {
    font-size: calc(37px * 1.2);
    margin-bottom: 50px;
}.our-story .text-frame-item {
    display: flex;
    flex-direction: row;
    box-shadow: 
            inset 3px 3px 7px rgba(255, 255, 255, 0.05),
            inset -3px -3px 7px rgba(0, 0, 0, 0.25),
            10px 10px 20px rgba(0, 0, 0, 0.1);
}.our-story .text-frame-item > div {
    padding: 40px;
}.our-story .text-frame-item p {
    margin-bottom: 30px;
    font-size: calc(16px * 1.8);
}.our-story .text-frame-item div div {
    padding: 30px;
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid rgba(255, 255, 255, 0.1);
}
}

@media (max-width: 767px) {.our-story {
    padding: 80px 0;
}.our-story .container {
    padding: 30px;
    transform: perspective(1000px) rotateX(1deg);
}.our-story h2 {
    font-size: 37px;
    margin-bottom: 30px;
}.our-story .text-frame-item > div {
    padding: 20px;
}.our-story .text-frame-item p {
    font-size: calc(16px * 1.2);
    margin-bottom: 15px;
}.our-story .text-frame-item div div {
    padding: 15px;
    font-size: calc(16px * 0.9);
}
}

@media (max-width: 480px) {.our-story {
    padding: 60px 0;
}.our-story .container {
    padding: 20px;
    transform: none;
}.our-story h2 {
    margin-bottom: 20px;
    font-size: calc(37px * 0.9);
}.our-story .text-frame-item > div {
    padding: 15px;
}.our-story .text-frame-item p {
    font-size: 16px;
    margin-bottom: 10px;
}.our-story .text-frame-item div div {
    font-size: calc(16px * 0.85);
    padding: 10px;
}}.tySection {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(169,214,175) 0%, rgb(134,178,141,0.5) 100%);
    position: relative;
    padding: 5rem 0;
}.tySection::before {
    animation: pulse 15s infinite alternate ease-in-out;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    content: "";
    width: 100%;
    top: 0;
    background: radial-gradient(circle at 70% 30%, rgb(98,142,105,0.5) 0%, transparent 60%);
    opacity: 0.4;
}.tySection::after {
    transform: rotate(-5deg);
    bottom: -10px;
    width: 40%;
    content: "";
    background: linear-gradient(225deg, rgb(134,178,141) 0%, transparent 80%);
    height: 40%;
    z-index: 0;
    right: -10px;
    position: absolute;
    opacity: 0.05;
    filter: blur(20px);
}.tySection .container {
    transform: translateY(20px);
    animation: slideUp 0.8s forwards 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    position: relative;
}.tySection h2 {
    line-height: 1.3;
    margin-right: auto;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    position: relative;
    font-weight: 700;
    margin-left: auto;
    max-width: 900px;
    font-size: 38px;
}.tySection h2::after {
    left: 50%;
    background: linear-gradient(90deg, rgb(134,178,141), rgb(98,142,105));
    border-radius: 10px;
    transform: translateX(-50%);
    content: "";
    height: 3px;
    bottom: -15px;
    width: 80px;
    position: absolute;
}.tySection .instructor-bio {
    transform: translateY(0);
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 
                0 5px 10px rgba(0, 0, 0, 0.05),
                0 1px 3px rgba(0, 0, 0, 0.03);
    padding: 3rem;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    background: #ffffff;
}.tySection .instructor-bio::before {
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, rgb(134,178,141), rgb(98,142,105));
    content: "";
}.tySection .instructor-bio::after {
    opacity: 0.2;
    z-index: 0;
    content: "";
    background: radial-gradient(circle, rgb(134,178,141,0.5) 0%, transparent 70%);
    right: 10px;
    top: 10px;
    position: absolute;
    border-radius: 50%;
    height: 120px;
    width: 120px;
}.tySection .instructor-bio:hover {
    transform: translateY(-5px);
}.tySection ul {
    padding: 0;
    list-style: none;
    position: relative;
    margin: 0;
    z-index: 1;
}.tySection li {
    position: relative;
    padding-left: 2rem;
}.tySection li::before {
    content: "";
    top: 8px;
    left: 0;
    width: 8px;
    animation: appearDot 0.4s forwards 1s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 50%;
    height: 8px;
    position: absolute;
    opacity: 0;
    background: rgb(134,178,141);
    transform: scale(0);
}.tySection li span {
    line-height: 1.8;
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateY(10px);
    position: relative;
    display: block;
    font-size: 13px;
    animation: fadeIn 0.8s forwards 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    color: #000000;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes appearDot {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
}

@media (max-width: 991px) {.tySection {
    padding: 4rem 0;
}.tySection h2 {
    margin-bottom: 2.5rem;
    font-size: calc(38px * 0.9);
}.tySection .instructor-bio {
    padding: 2.5rem;
}
}

@media (max-width: 767px) {.tySection {
    padding: 3rem 0;
}.tySection h2 {
    margin-bottom: 2rem;
    font-size: calc(38px * 0.8);
    line-height: 1.4;
}.tySection h2::after {
    bottom: -12px;
    width: 60px;
}.tySection .instructor-bio {
    padding: 2rem 1.5rem;
}.tySection .instructor-bio::after {
    width: 80px;
    height: 80px;
}.tySection li {
    padding-left: 1.5rem;
}
}

@media (max-width: 480px) {.tySection {
    padding: 2.5rem 0;
}.tySection .container {
    padding: 0 1.25rem;
}.tySection h2 {
    margin-bottom: 1.5rem;
    font-size: calc(38px * 0.7);
}.tySection h2::after {
    bottom: -10px;
    height: 2px;
    width: 50px;
}.tySection .instructor-bio {
    padding: 1.5rem 1.25rem;
}.tySection li span {
    font-size: calc(13px * 0.95);
    line-height: 1.7;
}}.title-welcome {
    min-height: 700px;
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
    height: 100vh;
    grid-template-rows: 1fr;
    width: 100%;
    overflow: hidden;
}.title-welcome .picture-gallery {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
}.title-welcome .picture-gallery::after {
    background: linear-gradient(135deg, 
        rgba(94, 170, 168, 0.9) 0%, 
        rgba(94, 170, 168, 0.7) 30%, 
        rgba(94, 170, 168, 0.5) 60%, 
        rgba(94, 170, 168, 0.3) 100%);
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(3px);
    left: 0;
    content: '';
    top: 0;
}.title-welcome .instructor-bio {
    position: relative;
    margin: 0 auto;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    width: 100%;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
    display: flex;
    justify-content: center;
    padding: 3rem;
    transition: transform 0.5s ease-out;
    backdrop-filter: blur(10px);
    flex-direction: column;
}.title-welcome .instructor-bio:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}.title-welcome h1 {
    transform: translateX(-20px);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 44px;
    opacity: 0;
    animation: slideInTitle 0.8s ease-out forwards 0.3s;
}.title-welcome h1::after {
    position: absolute;
    animation: expandLine 0.8s ease-out forwards 1s;
    transform: scaleX(0);
    content: '';
    background: #ffffff;
    left: 0;
    bottom: -10px;
    transform-origin: left;
    height: 4px;
    width: 80px;
}.title-welcome .text-frame-item {
    opacity: 0;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards 0.6s;
}.title-welcome p {
    font-size: calc(14px * 1.2);
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}.title-welcome .start-open {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}.title-welcome svg {
    transform: translateY(0);
    height: 150px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    width: 150px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}.title-welcome svg:hover {
    transform: translateY(-10px) scale(1.05);
}.title-welcome svg path {
    fill: rgb(94, 170, 168);
    transition: fill 0.3s ease;
}.title-welcome svg:hover path {
    fill: #ffffff;
}.title-welcome svg text {
    opacity: 0.9;
    font-family: Arial, sans-serif;
    transition: fill 0.3s ease, opacity 0.3s ease;
    letter-spacing: 0.5px;
}.title-welcome svg:hover text {
    fill: #ffffff;
    opacity: 1;
}.title-welcome h6 {
    justify-content: flex-start;
    display: flex;
    margin-top: 1rem;
}.title-welcome .message-box {
    position: relative;
    font-size: 16px;
    border: 2px solid #ffffff;
    display: inline-block;
    padding: 1rem 2rem;
    overflow: hidden;
    transform: translateZ(0);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    z-index: 1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}.title-welcome .message-box::before {
    height: 100%;
    background: #ffffff;
    top: 0;
    position: absolute;
    width: 0;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
    z-index: -1;
    content: '';
}.title-welcome .message-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: rgb(94, 170, 168);
    transform: translateY(-5px);
}.title-welcome .message-box:hover::before {
    width: 100%;
}

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

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

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

@media screen and (min-width: 768px) {.title-welcome .instructor-bio {
    grid-template-columns: 1fr 1fr;
    padding: 4rem;
}.title-welcome h1 {
    font-size: calc(44px * 1.2);
}.title-welcome .text-frame-item {
    grid-template-columns: 2fr 1fr;
}.title-welcome svg {
    height: 180px;
    width: 180px;
}
}

@media screen and (min-width: 992px) {.title-welcome .instructor-bio {
    padding: 5rem;
    grid-template-columns: 1fr 1fr;
}.title-welcome h1 {
    margin-bottom: 3rem;
    font-size: calc(44px * 1.4);
}.title-welcome p {
    font-size: calc(14px * 1.4);
}.title-welcome svg {
    width: 200px;
    height: 200px;
}.title-welcome .message-box {
    font-size: calc(16px * 1.1);
    padding: 1.2rem 2.5rem;
}
}

@media screen and (max-width: 767px) {.title-welcome {
    min-height: 100vh;
    height: auto;
}.title-welcome .instructor-bio {
    padding: 2rem;
}.title-welcome h1 {
    font-size: calc(44px * 0.9);
    margin-bottom: 1.5rem;
}.title-welcome p {
    font-size: 14px;
}.title-welcome .text-frame-item {
    gap: 1rem;
}.title-welcome svg {
    height: 120px;
    width: 120px;
}.title-welcome .message-box {
    padding: 0.8rem 1.5rem;
}
}

@media screen and (max-width: 480px) {.title-welcome .instructor-bio {
    padding: 1.5rem;
}.title-welcome h1 {
    font-size: calc(44px * 0.8);
}.title-welcome p {
    font-size: calc(14px * 0.9);
}.title-welcome svg {
    width: 100px;
    height: 100px;
}.title-welcome .message-box {
    padding: 0.7rem 1.2rem;
    font-size: calc(16px * 0.9);
}}.pricing-plan {
    overflow: hidden;
    position: relative;
    color: #ffffff;
    padding: 100px 0;
}.pricing-plan::before {
    left: 0;
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
}.pricing-plan .container {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    padding: 0 15px;
}.pricing-plan .skill-plans {
    position: relative;
}.pricing-plan h2 {
    position: relative;
    opacity: 0;
    font-size: calc(34px * 1.2);
    transform: translateY(10px);
    text-align: center;
    color: #ffffff;
    animation: fadeInUp 0.8s forwards 0.3s;
    margin-bottom: 20px;
    font-weight: 700;
}.pricing-plan .learning-fee {
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
    color: rgb(255, 255, 255, 0.5);
    animation: fadeInUp 0.8s forwards 0.5s;
    transform: translateY(10px);
    font-size: calc(13px * 1.1);
    opacity: 0;
    max-width: 700px;
}.pricing-plan .cost-deals {
    list-style: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    margin: 0;
    gap: 30px;
    padding: 0;
}.pricing-plan .cost-deals li {
    opacity: 0;
    height: 100%;
    animation: fadeInUp 0.8s forwards;
    transform: translateY(20px);
    animation-delay: calc(0.6s + (0.15s * var(--i, 0)));
}.pricing-plan .cost-deals li:nth-child(1) {
    --i: 1;
}.pricing-plan .cost-deals li:nth-child(2) {
    --i: 2;
}.pricing-plan .cost-deals li:nth-child(3) {
    --i: 3;
}.pricing-plan .cost-deals li:nth-child(4) {
    --i: 4;
}.pricing-plan .cost-fee {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
}.pricing-plan .cost-fee:hover {
    transform: translateY(-10px);
}.pricing-plan .cost-breakdown {
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    border-radius: 3px;
    border-left: 3px solid rgb(134,178,141);
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.03) 0%, 
        rgba(255,255,255,0.08) 100%);
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 30px;
    height: 100%;
}.pricing-plan .cost-fee:hover .cost-breakdown {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.05) 0%, 
        rgba(255,255,255,0.1) 100%);
}.pricing-plan .cost-breakdown::before {
    transform: scaleX(0);
    height: 5px;
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    background: linear-gradient(to right, 
        rgb(134,178,141), 
        rgb(98,142,105));
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    top: 0;
}.pricing-plan .cost-fee:hover .cost-breakdown::before {
    transform: scaleX(1);
}.pricing-plan .fee-schemes {
    flex-direction: column;
    display: flex;
    height: 100%;
}.pricing-plan .fee-schemes h4 {
    font-size: calc(21px * 1.1);
    margin: 0 0 20px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 15px;
    position: relative;
}.pricing-plan .fee-schemes h4::after {
    left: 0;
    height: 3px;
    position: absolute;
    content: "";
    transition: width 0.4s ease;
    bottom: 0;
    background: rgb(134,178,141);
    width: 40px;
}.pricing-plan .cost-fee:hover .fee-schemes h4::after {
    width: 60px;
}.pricing-plan .fee-schemes p {
    flex-grow: 1;
    overflow-wrap: break-word;
    word-break: break-word;
    color: rgb(255, 255, 255, 0.5);
    margin: 0 0 25px;
    line-height: 1.6;
    font-size: 13px;
}.pricing-plan .payment-pricing {
    transition: color 0.3s ease;
    display: block;
    margin-top: auto;
    font-size: calc(21px * 1.2);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgb(98,142,105);
    padding-top: 15px;
    position: relative;
    font-weight: 700;
}.pricing-plan .cost-fee:hover .payment-pricing {
    color: rgb(134,178,141);
}

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

@media (max-width: 991px) {.pricing-plan {
    padding: 80px 0;
}.pricing-plan h2 {
    font-size: 34px;
}.pricing-plan .learning-fee {
    margin-bottom: 30px;
    font-size: 13px;
}.pricing-plan .cost-deals {
    gap: 20px;
}.pricing-plan .cost-breakdown {
    padding: 25px;
}
}

@media (max-width: 767px) {.pricing-plan {
    padding: 60px 0;
}.pricing-plan .cost-deals {
    max-width: 500px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}.pricing-plan .fee-schemes h4 {
    font-size: 21px;
}.pricing-plan .payment-pricing {
    font-size: 21px;
}
}

@media (max-width: 480px) {.pricing-plan {
    padding: 50px 0;
}.pricing-plan h2 {
    font-size: calc(34px * 0.9);
}.pricing-plan .learning-fee {
    font-size: calc(13px * 0.9);
}.pricing-plan .cost-breakdown {
    padding: 20px;
}}.teaching-experience {
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(169,214,175) 0%, #ffffff 100%);
}.teaching-experience::before {
    top: -50px;
    position: absolute;
    content: "";
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    width: 200px;
    left: -50px;
    z-index: 1;
    background: rgb(134,178,141,0.5);
    transform: rotate(-15deg);
    height: 200px;
}.teaching-experience::after {
    background: rgb(98,142,105,0.5);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    content: "";
    width: 250px;
    transform: rotate(15deg);
    position: absolute;
    right: -50px;
    z-index: 1;
    bottom: -50px;
    height: 250px;
}.teaching-experience .container {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}.teaching-experience .feedback-carousel {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    grid-template-columns: 1fr;
    display: grid;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    position: relative;
    gap: 2rem;
    padding: 2.5rem;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}.teaching-experience .feedback-carousel:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}.teaching-experience .feedback-carousel > div:first-child {
    position: relative;
    transform: translateZ(0);
    overflow: hidden;
}.teaching-experience .feedback-carousel .picture-gallery {
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    height: 300px;
    width: 100%;
    position: relative;
}.teaching-experience .feedback-carousel:hover .picture-gallery {
    transform: scale(1.02);
}.teaching-experience .feedback-carousel .picture-gallery::after {
    transition: opacity 0.5s ease;
    top: 0;
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    opacity: 0;
}.teaching-experience .feedback-carousel:hover .picture-gallery::after {
    opacity: 1;
}.teaching-experience .feedback-carousel > div:nth-child(2) {
    transform: translateX(0);
    position: relative;
    border-left: 3px solid rgb(134,178,141);
    padding-left: 20px;
    transition: transform 0.4s ease;
}.teaching-experience .feedback-carousel:hover > div:nth-child(2) {
    transform: translateX(5px);
}.teaching-experience .name {
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    position: relative;
    color: #000000;
    margin: 0 0 0.5rem;
}.teaching-experience .name::after {
    content: "";
    position: absolute;
    left: 0;
    background: rgb(134,178,141);
    transition: width 0.4s ease-out;
    width: 0;
    bottom: -3px;
    height: 2px;
}.teaching-experience .feedback-carousel:hover .name::after {
    width: 100%;
}.teaching-experience .feedback-carousel > div:nth-child(2) > div {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(98,142,105);
    opacity: 0.85;
    font-size: calc(16px * 0.95);
    font-style: italic;
}.teaching-experience .emp-exp {
    position: relative;
    font-family: Arial, sans-serif;
    color: #000000;
    padding-left: 1.5rem;
    font-size: 16px;
    margin: 0;
    line-height: 1.7;
}.teaching-experience .emp-exp::before {
    position: absolute;
    content: "";
    line-height: 1;
    font-size: 60px;
    color: rgb(134,178,141,0.5);
    top: -10px;
    font-family: serif;
    left: 0;
}

@media (min-width: 768px) {.teaching-experience {
    padding: 7rem 0;
}.teaching-experience .feedback-carousel {
    padding: 3rem;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
}.teaching-experience .feedback-carousel:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
}.teaching-experience .feedback-carousel > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}.teaching-experience .feedback-carousel > div:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
}
}

@media (min-width: 992px) {.teaching-experience .feedback-carousel {
    gap: 2.5rem 4rem;
    grid-template-rows: auto 1fr;
    grid-template-columns: 350px 1fr;
}.teaching-experience .picture-gallery {
    height: 400px;
}.teaching-experience .emp-exp {
    font-size: calc(16px * 1.05);
    padding-left: 2rem;
}.teaching-experience .emp-exp::before {
    font-size: 80px;
}
}

@media (min-width: 1200px) {.teaching-experience .feedback-carousel {
    padding: 4rem;
    grid-template-columns: 400px 1fr;
}.teaching-experience .picture-gallery {
    height: 450px;
}.teaching-experience .name {
    font-size: calc(20px * 1.1);
}.teaching-experience .feedback-carousel > div:nth-child(2) > div {
    font-size: 16px;
}.teaching-experience .emp-exp {
    line-height: 1.8;
}
}

@media (max-width: 767px) {.teaching-experience {
    padding: 4rem 0;
}.teaching-experience .feedback-carousel {
    padding: 1.5rem;
}.teaching-experience .picture-gallery {
    margin-bottom: 1.5rem;
    height: 250px;
}.teaching-experience .name {
    font-size: calc(20px * 0.95);
}.teaching-experience .emp-exp {
    line-height: 1.6;
    font-size: calc(16px * 0.95);
}}.future-members {
    z-index: 1;
    background: rgb(169,214,175);
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
}.future-members::before {
    left: 0;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(rgb(98,142,105,0.5), 0.05) 25%, 
        transparent 35%,
        rgba(rgb(134,178,141,0.5), 0.05) 50%,
        transparent 65%,
        rgba(rgb(98,142,105,0.5), 0.05) 75%,
        transparent 100%
    );
    width: 100%;
    z-index: -1;
    height: 100%;
    content: "";
    top: 0;
    position: absolute;
}.future-members::after {
    height: 100%;
    opacity: 0.5;
    content: "";
    background-position: 0 0, 25px 25px;
    width: 100%;
    background-size: 50px 50px, 100px 100px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: 
        radial-gradient(rgba(rgb(134,178,141,0.5), 0.15) 2px, transparent 2px),
        radial-gradient(rgba(rgb(98,142,105,0.5), 0.1) 2px, transparent 2px);
    z-index: -1;
}.future-members .instructor-bio {
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
    padding: 0 2rem;
}.future-members h3 {
    position: relative;
    color: rgb(98,142,105);
    margin-bottom: 3rem;
    font-size: 35px;
    padding-left: 2rem;
    font-weight: 700;
    text-align: left;
}.future-members h3::before {
    left: 0;
    top: 0;
    content: "";
    background: linear-gradient(
        to bottom,
        rgb(98,142,105),
        rgb(134,178,141)
    );
    border-radius: 10px;
    width: 5px;
    position: absolute;
    height: 100%;
}.future-members ul {
    gap: 2rem 1.5rem;
    padding: 0;
    list-style: none;
    margin: 0;
    display: grid;
    position: relative;
    grid-template-columns: repeat(2, 1fr);
}.future-members ul::before {
    left: 50%;
    position: absolute;
    z-index: -1;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(rgb(134,178,141,0.5), 0.3),
        transparent
    );
    content: "";
    width: 1px;
    top: 0;
}.future-members li {
    position: relative;
    align-items: flex-start;
    display: flex;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(rgb(98,142,105,0.5), 0.1);
    transition: all 0.3s ease;
    background: rgba(rgb(98,142,105,0.5), 0.03);
    border-radius: 25px;
    padding: 1.5rem;
}.future-members li::before {
    border-radius: 10px 10px 0 0;
    position: absolute;
    left: 0;
    content: "";
    right: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(rgb(134,178,141,0.5), 0.5),
        transparent
    );
    top: 0;
    height: 4px;
}.future-members li::after {
    border-radius: 50%;
    left: -10px;
    height: 40px;
    top: -10px;
    content: "";
    width: 40px;
    z-index: -1;
    position: absolute;
    background: radial-gradient(
        circle,
        rgba(rgb(134,178,141,0.5), 0.15) 0%,
        transparent 70%
    );
}.future-members li:hover {
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(rgb(134,178,141,0.5), 0.2);
    transform: translateY(-5px);
    background: rgba(rgb(98,142,105,0.5), 0.05);
}.future-members li:hover::before {
    opacity: 1;
}.future-members li:nth-child(odd)::after {
    left: auto;
    animation: pulseEven 3s infinite alternate ease-in-out;
    right: -10px;
}.future-members li:nth-child(even)::after {
    animation: pulseOdd 3s infinite alternate-reverse ease-in-out;
}.future-members li svg {
    position: relative;
    height: 32px;
    margin-right: 1rem;
    fill: rgb(134,178,141);
    width: 32px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}.future-members li svg::after {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background: radial-gradient(
        circle,
        rgba(rgb(134,178,141,0.5), 0.3) 0%,
        transparent 70%
    );
}.future-members li svg path {
    fill: rgb(134,178,141);
    transition: fill 0.3s ease;
}.future-members li:hover svg {
    animation: pulse 2s infinite;
    transform: scale(1.1);
}.future-members li:hover svg path {
    fill: rgb(134,178,141);
}.future-members li {
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 2px rgba(rgb(134,178,141,0.5), 0.5));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(rgb(134,178,141,0.5), 0.8));
    }
    100% {
        filter: drop-shadow(0 0 2px rgba(rgb(134,178,141,0.5), 0.5));
    }
}

@keyframes pulseOdd {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes pulseEven {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

@media (max-width: 992px) {.future-members {
    padding: 4rem 0;
}.future-members h3 {
    margin-bottom: 2.5rem;
    font-size: calc(35px * 0.9);
}.future-members ul {
    gap: 1.5rem 1.2rem;
}
}

@media (max-width: 768px) {.future-members {
    padding: 3.5rem 0;
}.future-members .instructor-bio {
    padding: 0 1.5rem;
}.future-members h3 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: calc(35px * 0.8);
    padding-left: 0;
}.future-members h3::before {
    transform: translateX(-50%);
    top: auto;
    left: 50%;
    bottom: -12px;
    height: 4px;
    width: 80px;
}.future-members ul {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.future-members ul::before {
    display: none;
}
}

@media (max-width: 480px) {.future-members {
    padding: 3rem 0;
}.future-members .instructor-bio {
    padding: 0 1rem;
}.future-members h3 {
    margin-bottom: 1.8rem;
    font-size: calc(35px * 0.7);
}.future-members h3::before {
    width: 60px;
    height: 3px;
}.future-members li {
    padding: 1.2rem;
}.future-members li svg {
    height: 28px;
    width: 28px;
    margin-right: 0.8rem;
}.future-members li::after {
    width: 30px;
    height: 30px;
    top: -8px;
    left: -8px;
}}header {
    position: relative;
    z-index: 99;
    width: 100%;
    overflow: visible;
    background: linear-gradient(to bottom, rgb(169,214,175), rgba(0, 0, 0, 0.5));
}header::before {
    content: "";
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.1;
    position: absolute;
    top: 0;
}header .site-nav {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}header .site-nav::before {
    background: linear-gradient(to right, transparent, rgb(134,178,141), transparent);
    position: absolute;
    width: 80%;
    content: "";
    bottom: 0;
    left: 10%;
    height: 1px;
}header .site-nav .site-study {
    z-index: 2;
    margin-right: 40px;
    position: relative;
}header .site-nav .site-study .header-tutor {
    padding: 5px;
    display: block;
    position: relative;
}header .site-nav .site-study .header-tutor::before {
    content: "";
    z-index: -1;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    right: -5px;
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
    bottom: -5px;
    top: -5px;
    opacity: 0;
    border-radius: 10px;
    left: -5px;
}header .site-nav .site-study .header-tutor:hover::before {
    opacity: 0.1;
    transform: scale(1);
}header .site-nav .site-study .header-tutor svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    width: auto;
    height: 45px;
}header .site-nav .head-base {
    list-style: none;
    display: flex;
    perspective: 1000px;
    padding: 0;
    margin: 0;
}header .site-nav .head-base .head-edu {
    position: relative;
    transform-style: preserve-3d;
    margin: 0;
}header .site-nav .head-base .head-edu a {
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 600;
    font-size: 12px;
    transition: color 0.3s ease, transform 0.3s ease;
    background: linear-gradient(to bottom, transparent, transparent);
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    display: block;
    padding: 12px 20px;
    font-family: Arial, sans-serif;
    transform-style: preserve-3d;
}header .site-nav .head-base .head-edu a::before,
header .site-nav .head-base .head-edu a::after {
    left: 0;
    top: 0;
    pointer-events: none;
    content: "";
    position: absolute;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
}header .site-nav .head-base .head-edu a::before {
    background: linear-gradient(to bottom, rgb(134,178,141,0.5), transparent);
    opacity: 0;
    transform-origin: top center;
    transform: translateZ(-1px) rotateX(10deg);
}header .site-nav .head-base .head-edu a::after {
    background: linear-gradient(to top, rgb(98,142,105,0.5), transparent);
    transform: translateZ(-2px) rotateX(-10deg);
    opacity: 0;
    transform-origin: bottom center;
}header .site-nav .head-base .head-edu:hover a {
    transform: translateZ(10px);
    color: rgb(134,178,141);
}header .site-nav .head-base .head-edu:hover a::before,
header .site-nav .head-base .head-edu:hover a::after {
    opacity: 0.1;
}header .site-nav .head-base .head-edu:hover a::before {
    transform: translateZ(-5px) rotateX(15deg);
}header .site-nav .head-base .head-edu:hover a::after {
    transform: translateZ(-10px) rotateX(-15deg);
}

@media (max-width: 992px) {header .site-nav {
    padding: 15px;
    flex-direction: column;
}header .site-nav .site-study {
    margin: 0 0 15px 0;
}header .site-nav .head-base {
    perspective: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}header .site-nav .head-base .head-edu a {
    transform-style: flat;
    padding: 10px 15px;
    font-size: calc(12px - 1px);
}header .site-nav .head-base .head-edu:hover a {
    transform: none;
}header .site-nav .head-base .head-edu a::before,
    header .site-nav .head-base .head-edu a::after {
    display: none;
}
}

@media (max-width: 767px) {header .site-nav .head-base .head-edu a {
    padding: 8px 12px;
    font-size: calc(12px - 2px);
}}.course-overview {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: rgb(169,214,175);
}.course-overview::before {
    background-size: 20px 20px;
    position: absolute;
    opacity: 0.15;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    background: 
        linear-gradient(0deg, transparent 95%, rgb(134,178,141,0.5) 100%),
        linear-gradient(90deg, transparent 95%, rgb(134,178,141,0.5) 100%);
    top: 0;
    left: 0;
    animation: gridMove 40s linear infinite;
}.course-overview::after {
    background: 
        radial-gradient(circle at 20% 20%, rgb(134,178,141,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(98,142,105,0.5) 0%, transparent 40%);
    position: absolute;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    width: 100%;
    content: "";
    top: 0;
    left: 0;
}@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

.course-overview .container {
    align-items: center;
    position: relative;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
}.course-overview .tech-learn {
    position: relative;
    max-width: 900px;
    align-items: center;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}.course-overview .text-frame-item {
    padding: 40px;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
    border-radius: 28px;
}.course-overview .text-frame-item::before {
    height: 100%;
    width: 100%;
    opacity: 0.3;
    pointer-events: none;
    border-radius: 28px;
    left: 0;
    top: 0;
    position: absolute;
    border: 1px solid rgb(134,178,141,0.5);
    content: "";
}.course-overview .text-frame-item::after {
    left: calc(50% - 30px);
    background: linear-gradient(to right, rgb(134,178,141), rgb(98,142,105));
    content: "";
    width: 60px;
    height: 3px;
    top: -15px;
    position: absolute;
}.course-overview .text-frame-item h2 {
    position: relative;
    margin-bottom: 25px;
    color: #000000;
    display: inline-block;
    font-size: 31px;
    font-weight: 700;
}.course-overview .text-frame-item h2::after {
    width: 80px;
    position: absolute;
    left: calc(50% - 40px);
    background: rgb(134,178,141,0.5);
    height: 2px;
    bottom: -10px;
    content: "";
}.course-overview .text-frame-item .description {
    color: #000000;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.7;
    max-width: 800px;
}.course-overview .text-frame-item .description:last-child {
    margin-bottom: 0;
}.course-overview .picture-gallery {
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    z-index: 2;
    height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
}.course-overview .container::before {
    position: absolute;
    opacity: 0.05;
    background-image: 
        linear-gradient(to right, rgb(134,178,141,0.5) 0.5px, transparent 1px),
        linear-gradient(to bottom, rgb(134,178,141,0.5) 0.5px, transparent 1px),
        radial-gradient(circle at 50px 50px, rgb(134,178,141,0.5) 2px, transparent 2px),
        radial-gradient(circle at 150px 150px, rgb(98,142,105,0.5) 2px, transparent 2px),
        radial-gradient(circle at 250px 250px, rgb(134,178,141,0.5) 2px, transparent 2px);
    content: "";
    animation: circuitPulse 8s infinite alternate;
    background-size: 50px 50px, 50px 50px, 200px 200px, 200px 200px, 200px 200px;
    height: 100%;
    top: 0;
    z-index: 0;
    width: 100%;
    left: 0;
}@keyframes circuitPulse {
    0% {
        opacity: 0.03;
    }
    100% {
        opacity: 0.07;
    }
}

.course-overview .tech-learn::before {
    top: -100px;
    opacity: 0.2;
    background-image: 
        radial-gradient(circle at 100px 100px, rgb(134,178,141,0.5) 1px, transparent 1px),
        radial-gradient(circle at 200px 200px, rgb(98,142,105,0.5) 1px, transparent 1px),
        radial-gradient(circle at 300px 300px, rgb(134,178,141,0.5) 1px, transparent 1px),
        radial-gradient(circle at 400px 100px, rgb(98,142,105,0.5) 1px, transparent 1px),
        radial-gradient(circle at 500px 200px, rgb(134,178,141,0.5) 1px, transparent 1px);
    z-index: 0;
    background-size: 600px 600px;
    left: -100px;
    position: absolute;
    width: calc(100% + 200px);
    animation: floatParticles 40s linear infinite;
    height: calc(100% + 200px);
    content: "";
}@keyframes floatParticles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 600px 600px;
    }
}

.course-overview .tech-learn::after {
    height: 2px;
    position: absolute;
    background: linear-gradient(to right, transparent, rgb(98,142,105,0.5), transparent);
    left: calc(50% - 50px);
    bottom: -30px;
    content: "";
    width: 100px;
}.course-overview .container::after {
    content: "";
    left: 0;
    animation: hexMove 60s linear infinite;
    z-index: 0;
    background-image: 
        repeating-linear-gradient(60deg, rgb(134,178,141,0.5) 0, rgb(134,178,141,0.5) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(120deg, rgb(134,178,141,0.5) 0, rgb(134,178,141,0.5) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(180deg, rgb(134,178,141,0.5) 0, rgb(134,178,141,0.5) 1px, transparent 1px, transparent 30px);
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.03;
    position: absolute;
    background-size: 50px 86.6px;
}@keyframes hexMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 86.6px;
    }
}

@keyframes techPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.course-overview .picture-gallery::after {
    animation: borderGlow 4s infinite alternate;
}@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes reveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-overview .text-frame-item h2 {
    animation: reveal 0.8s forwards;
}.course-overview .text-frame-item .description:nth-child(2) {
    animation: reveal 0.8s 0.2s forwards;
}.course-overview .text-frame-item .description:nth-child(3) {
    animation: reveal 0.8s 0.4s forwards;
}

@keyframes scanLines {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 450px;
    }
}

@media (min-width: 992px) {.course-overview .tech-learn {
    gap: 40px;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
}.course-overview .text-frame-item {
    z-index: 4;
    margin-top: -80px;
    grid-row: 2;
}.course-overview .picture-gallery {
    grid-row: 1;
    height: 500px;
}
}

@media (max-width: 991px) {.course-overview {
    padding: 80px 0;
}.course-overview .tech-learn {
    gap: 40px;
}.course-overview .text-frame-item {
    padding: 30px;
}.course-overview .picture-gallery {
    height: 400px;
}
}

@media (max-width: 768px) {.course-overview {
    padding: 60px 0;
}.course-overview .text-frame-item {
    padding: 25px;
}.course-overview .picture-gallery {
    height: 350px;
}.course-overview .text-frame-item h2 {
    font-size: calc(31px * 0.9);
}
}

@media (max-width: 576px) {.course-overview {
    padding: 50px 0;
}.course-overview .text-frame-item {
    padding: 20px;
}.course-overview .picture-gallery {
    height: 300px;
}.course-overview .text-frame-item h2 {
    font-size: calc(31px * 0.8);
}.course-overview .text-frame-item .description {
    font-size: calc(12px * 0.95);
}
}

@media (min-width: 992px) {.course-overview .text-frame-item:hover {
    transition: transform 0.3s ease;
    transform: translateY(-5px);
}.course-overview .text-frame-item:hover::before {
    border-color: rgb(134,178,141);
    opacity: 0.5;
    transition: all 0.3s ease;
}.course-overview .picture-gallery:hover::after {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}}
.secure-nook {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgb(169,214,175) 0%, rgba(rgb(134,178,141,0.5), 0.05) 100%);
    overflow: hidden;
    padding: 5rem 2rem;
    position: relative;
}.secure-nook::before {
    position: absolute;
    top: 0;
    left: 0;
    animation: slidein 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: left center;
    height: 5px;
    background: linear-gradient(90deg, rgb(134,178,141) 0%, rgb(98,142,105) 100%);
    content: "";
    width: 100%;
}.secure-nook::after {
    right: 0;
    top: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
    position: absolute;
    height: 100%;
    width: 30%;
    background: linear-gradient(to bottom, rgba(rgb(134,178,141,0.5), 0.03), transparent);
    content: "";
    z-index: 0;
}.secure-nook .container {
    margin: 0 auto;
    position: relative;
    max-width: 1140px;
    z-index: 1;
}.secure-nook h1 {
    animation: fadeup 0.5s ease-out 0.2s forwards;
    letter-spacing: -0.5px;
    font-size: 39px;
    position: relative;
    margin-bottom: 2.5rem;
    transform: translateY(10px);
    color: #000000;
    opacity: 0;
    font-weight: 700;
}.secure-nook h1::after {
    transform: scaleX(0);
    animation: scaleIn 0.6s ease-out 0.6s forwards;
    height: 3px;
    width: 60px;
    position: absolute;
    background: rgb(134,178,141);
    transform-origin: left;
    bottom: -12px;
    content: "";
    left: 0;
}.secure-nook h2 {
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    animation: fadeup 0.5s ease-out 0.3s forwards;
    opacity: 0;
    font-size: 29px;
    color: #000000;
    padding-left: 1rem;
    transform: translateY(10px);
    position: relative;
}.secure-nook h2::before {
    opacity: 0.8;
    position: absolute;
    width: 3px;
    background: rgb(98,142,105);
    left: 0;
    content: "";
    transform: scaleY(0.7);
    height: 100%;
    top: 0;
}.secure-nook h3 {
    animation: fadeup 0.5s ease-out 0.3s forwards;
    font-weight: 600;
    transform: translateY(10px);
    opacity: 0;
    font-size: calc(29px * 0.85);
    color: #000000;
    margin: 2rem 0 1rem;
}.secure-nook h4 {
    opacity: 0.85;
    font-size: calc(29px * 0.75);
    animation: fadeup 0.5s ease-out 0.3s forwards;
    opacity: 0;
    color: #000000;
    transform: translateY(10px);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}.secure-nook p {
    max-width: 95%;
    color: #000000;
    opacity: 0;
    font-size: 15px;
    animation: fadeup 0.5s ease-out 0.4s forwards;
    transform: translateY(10px);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}.secure-nook p strong {
    position: relative;
    color: #000000;
    display: inline-block;
    font-weight: 600;
}.secure-nook p strong::after {
    position: absolute;
    bottom: -2px;
    width: 100%;
    content: "";
    opacity: 0.5;
    height: 1px;
    background: rgb(134,178,141);
    left: 0;
}.secure-nook span {
    line-height: 1.75;
    color: #000000;
    animation: fadeup 0.5s ease-out 0.4s forwards;
    display: block;
    transform: translateY(10px);
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 15px;
    padding-left: 1rem;
    opacity: 0;
}.secure-nook span::before {
    content: "";
    width: 3px;
    top: 0.5rem;
    height: calc(100% - 1rem);
    left: 0;
    opacity: 0.3;
    position: absolute;
    background: rgb(98,142,105);
}.secure-nook ul {
    padding-left: 0;
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid rgb(134,178,141);
    transform: translateX(-10px);
    position: relative;
    opacity: 0;
    border-radius: 0 10px 10px 0;
    background: rgba(rgb(255, 255, 255, 0.5), 0.5);
    animation: slidein 0.6s ease-out 0.5s forwards;
}.secure-nook ul::before {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(rgb(134,178,141,0.5), 0.05), transparent);
    content: "";
    height: 100%;
    z-index: -1;
}.secure-nook li {
    color: #000000;
    font-size: 15px;
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    line-height: 1.6;
}.secure-nook li:last-child {
    margin-bottom: 0;
}.secure-nook li::before {
    height: 8px;
    transform: rotate(45deg);
    position: absolute;
    border-radius: 1px;
    content: "";
    top: 0.5rem;
    left: 0;
    background: rgb(98,142,105);
    width: 8px;
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slidein {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (min-width: 768px) {.secure-nook {
    padding: 6rem 3rem;
}.secure-nook h1 {
    font-size: calc(39px * 1.15);
    margin-bottom: 3rem;
}.secure-nook h1::after {
    width: 80px;
}.secure-nook p, .secure-nook span {
    max-width: 85%;
}.secure-nook ul {
    margin-left: 1rem;
    max-width: 90%;
}
}

@media (min-width: 992px) {.secure-nook {
    padding: 7rem 4rem;
}.secure-nook::after {
    width: 40%;
}.secure-nook h1 {
    font-size: calc(39px * 1.3);
}.secure-nook h2 {
    padding-left: 1.5rem;
}.secure-nook p, .secure-nook span {
    font-size: calc(15px * 1.05);
    max-width: 80%;
}.secure-nook ul {
    padding: 2rem 2.5rem;
}.secure-nook li {
    font-size: calc(15px * 1.05);
}
}

@media (max-width: 767px) {.secure-nook {
    padding: 4rem 1.5rem;
}.secure-nook h1 {
    font-size: calc(39px * 0.9);
}.secure-nook h2 {
    font-size: calc(29px * 0.9);
}.secure-nook h3 {
    font-size: calc(29px * 0.8);
}.secure-nook h4 {
    font-size: calc(29px * 0.7);
}.secure-nook p, .secure-nook span {
    max-width: 100%;
}.secure-nook ul {
    padding: 1.25rem 1.5rem;
}}footer {
    width: 100%;
    position: relative;
}footer .level-up {
    padding: 80px 0 30px;
    position: relative;
    color: #ffffff;
    background-color: rgb(98,142,105);
    font-family: Arial, sans-serif;
}footer .level-up::before {
    opacity: 0.05;
    position: absolute;
    background-size: 80px 140px;
    background-image: 
        linear-gradient(30deg, rgb(98,142,105) 12%, transparent 12.5%, transparent 87%, rgb(98,142,105) 87.5%, rgb(98,142,105)),
        linear-gradient(150deg, rgb(98,142,105) 12%, transparent 12.5%, transparent 87%, rgb(98,142,105) 87.5%, rgb(98,142,105)),
        linear-gradient(30deg, rgb(98,142,105) 12%, transparent 12.5%, transparent 87%, rgb(98,142,105) 87.5%, rgb(98,142,105)),
        linear-gradient(150deg, rgb(98,142,105) 12%, transparent 12.5%, transparent 87%, rgb(98,142,105) 87.5%, rgb(98,142,105)),
        linear-gradient(60deg, rgb(134,178,141,0.5) 25%, transparent 25.5%, transparent 75%, rgb(134,178,141,0.5) 75%, rgb(134,178,141,0.5)),
        linear-gradient(60deg, rgb(134,178,141,0.5) 25%, transparent 25.5%, transparent 75%, rgb(134,178,141,0.5) 75%, rgb(134,178,141,0.5));
    width: 100%;
    pointer-events: none;
    content: "";
    left: 0;
    height: 100%;
    top: 0;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}footer .level-up::after {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(134,178,141), rgb(98,142,105));
    pointer-events: none;
    content: "";
}footer .enroll-info {
    z-index: 1;
    position: relative;
}footer .connect-block {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    display: flex;
}footer .info_item {
    max-width: 300px;
    justify-content: center;
    display: flex;
    align-items: center;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    min-width: 200px;
    padding: 20px 25px;
    min-height: 60px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.03);
    flex: 0 1 auto;
}footer .info_item::before {
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    right: 3px;
    top: 3px;
    content: "";
    bottom: 3px;
    z-index: -1;
    position: absolute;
    left: 3px;
    background-color: rgb(98,142,105);
    pointer-events: none;
}footer .info_item:hover {
    background-color: rgb(134,178,141);
    transform: translateY(-5px);
}footer .info_item svg {
    width: 20px;
    flex-shrink: 0;
    fill: rgb(134,178,141);
    margin-right: 12px;
    transition: fill 0.3s ease;
    height: 20px;
}footer .info_item:hover svg {
    fill: #ffffff;
}footer .info_item p,
footer .info_item a {
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    font-size: 14px;
    width: 100%;
    text-decoration: none;
    height: 100%;
    text-overflow: ellipsis;
    z-index: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
}footer .text_main_holder {
    grid-template-columns: 1fr;
    position: relative;
    padding-top: 40px;
    display: grid;
    gap: 50px;
}footer .text_main_holder::before {
    height: 1px;
    position: absolute;
    content: "";
    width: 80%;
    left: 10%;
    pointer-events: none;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}footer .site-study {
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    align-items: center;
    text-align: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    margin: 0 auto;
    justify-content: center;
    position: relative;
    display: flex;
    max-width: 350px;
    padding: 20px;
}footer .site-study::before {
    top: 3px;
    background-color: rgb(98,142,105);
    pointer-events: none;
    position: absolute;
    right: 3px;
    left: 3px;
    content: "";
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -1;
    bottom: 3px;
}footer .site-study svg {
    width: auto;
    margin-bottom: 20px;
    height: 45px;
    filter: brightness(0) invert(1);
}footer .faculty-info {
    line-height: 1.6;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}footer .head-base {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 17px;
    padding: 30px;
    position: relative;
}footer .head-base h5 {
    font-size: 22px;
    position: relative;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 700;
    margin-bottom: 25px;
}footer .head-base h5::after {
    position: absolute;
    width: 50px;
    content: "";
    background-color: rgb(134,178,141);
    left: 0;
    bottom: 0;
    height: 2px;
    pointer-events: none;
}footer .nav-teach {
    margin-bottom: 20px;
    gap: 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}footer .nav-teach a {
    background-color: rgba(255, 255, 255, 0.03);
    font-size: 14px;
    padding: 12px 15px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    align-items: center;
    display: flex;
    color: rgba(255, 255, 255, 0.7);
}footer .nav-teach a::before {
    border-top: 4px solid transparent;
    border-left: 4px solid rgb(134,178,141);
    pointer-events: none;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    transform: translateY(-50%);
    left: 5px;
    content: "";
    top: 50%;
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}footer .nav-teach a:hover {
    padding-left: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}footer .nav-teach a:hover::before {
    opacity: 1;
}footer .subscribe_holder {
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 30px;
    border-radius: 17px;
}footer .subscribe_holder::before {
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 17px;
    pointer-events: none;
    content: "";
    top: 0;
    position: absolute;
    background-image: 
        linear-gradient(-45deg, transparent 48%, rgb(134,178,141,0.5) 49%, rgb(134,178,141,0.5) 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgb(134,178,141,0.5) 49%, rgb(134,178,141,0.5) 51%, transparent 52%);
    opacity: 0.05;
    background-size: 20px 20px;
}footer .subscribe_holder h5 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
}footer .subscribe_holder p {
    line-height: 1.6;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}footer .input_holder {
    z-index: 5;
    width: 100%;
    flex-direction: column;
    display: flex;
    position: relative;
    gap: 15px;
}footer .input_holder input[type="email"] {
    transition: all 0.3s ease;
    cursor: text;
    color: #ffffff;
    -webkit-appearance: none;
    z-index: 5;
    font-size: 14px;
    appearance: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}footer .input_holder input[type="email"]:focus {
    border-color: rgb(134,178,141);
    background-color: rgba(255, 255, 255, 0.08);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}footer .knowledge-quest {
    background-color: rgb(134,178,141);
    padding: 14px 20px;
    z-index: 5;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    border: none;
    color: #ffffff;
}footer .knowledge-quest:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgb(98,142,105);
    transform: translateY(-3px);
}footer .study-group {
    text-align: center;
    position: relative;
    margin-top: 50px;
}footer .res-connect {
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    display: inline-block;
    position: relative;
}footer .res-connect::before,
footer .res-connect::after {
    pointer-events: none;
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
    width: 20px;
    top: 50%;
    height: 1px;
}footer .res-connect::before {
    transform: rotate(-45deg);
    left: -10px;
}footer .res-connect::after {
    transform: rotate(45deg);
    right: -10px;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
}footer .knowledge-quest {
    min-width: 150px;
    width: auto;
    flex-shrink: 0;
}footer .input_holder input[type="email"] {
    min-width: 0;
    flex: 1;
}
}

@media (max-width: 991px) {footer .nav-teach {
    grid-template-columns: 1fr;
}
}

@media (max-width: 767px) {footer .level-up {
    padding: 60px 0 30px;
}footer .connect-block {
    margin-bottom: 40px;
}footer .info_item {
    min-width: 150px;
    padding: 15px 20px;
}footer .head-base, footer .subscribe_holder {
    padding: 25px 20px;
}footer .site-study {
    margin-bottom: 20px;
    padding: 15px;
}footer .study-group {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .level-up {
    padding: 50px 0 20px;
}footer .info_item {
    min-width: 100%;
}footer .head-base h5, footer .subscribe_holder h5 {
    font-size: calc(22px - 2px);
    margin-bottom: 20px;
}footer .head-base, footer .subscribe_holder {
    padding: 20px 15px;
}footer .input_holder input[type="email"],
    footer .knowledge-quest {
    padding: 12px;
}
}