* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    width: 30px;
    height: 30px;
}@keyframes slide_scrollbar { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

::-webkit-scrollbar {
    width: 9px;
}::-webkit-scrollbar-track {
    background: rgb(129,138,185);
    border-radius: 4.6vh;
}::-webkit-scrollbar-track:active {
    background: #ffffff;
}::-webkit-scrollbar-thumb {
    box-shadow: -4px 2px 8px 2px rgba(0, 0, 0, 0.1);
    animation: slide_scrollbar 2.7s linear infinite;
    background: rgb(129,138,185);
}::-webkit-scrollbar-thumb:active {
    background: rgb(171,182,208,0.5);
}* {
    scrollbar-color: rgb(255, 255, 255, 0.5) rgb(171,182,208);
    scrollbar-width: auto;
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 6px;
}::-webkit-scrollbar-thumb {
    background: rgb(171,182,208);
}}

html,body {
    scroll-behavior: smooth;
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
    color: #000000;
}.module-end {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1131px;
}.site-main {
    flex: 1 0 auto;
}.outer-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.service-contact {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: rgb(171,182,208);
    z-index: 1;
}.service-contact::before {
    background: 
        linear-gradient(135deg, 
            rgb(129,138,185,0.5) 0%, 
            transparent 50%),
        radial-gradient(
            circle at 25% 25%, 
            rgb(129,138,185,0.5) 0%, 
            transparent 30%);
    top: 0;
    z-index: -1;
    width: 100%;
    left: 0;
    height: 100%;
    content: '';
    position: absolute;
}.service-contact::after {
    top: 0;
    width: 100%;
    background-size: 20px 20px;
    position: absolute;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    left: 0;
    z-index: -1;
    content: '';
    animation: gridMove 30s linear infinite;
    height: 100%;
}@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

.service-contact .container {
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.service-contact .ask-feedback {
    overflow: hidden;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    border-radius: 22px;
    position: relative;
    backdrop-filter: blur(10px);
}.service-contact .join-us {
    backdrop-filter: blur(8px);
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 22px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    gap: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
}.service-contact .join-us::before {
    left: 0;
    position: absolute;
    height: 5px;
    top: 0;
    background: linear-gradient(90deg, rgb(129,138,185), rgb(171,182,208,0.5));
    content: '';
    width: 100%;
    z-index: 1;
}.service-contact .join-us:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}.service-contact .join-us h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    font-size: 33px;
}.service-contact .join-us h2::after {
    border-radius: 1.5px;
    height: 3px;
    position: absolute;
    width: 3rem;
    bottom: 0;
    left: 0;
    background: rgb(129,138,185);
    content: '';
}.service-contact .join-us h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 19px;
}.service-contact .reach-block {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: calc(12px * 1.2);
}.service-contact .join-conversation {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
}.service-contact .join-us p {
    display: flex;
    opacity: 0.9;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
    color: #ffffff;
}.service-contact .join-us p span {
    font-weight: 600;
    opacity: 1;
}.service-contact .msg-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}.service-contact .message-panel {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}.service-contact .message-panel span {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    font-size: calc(12px * 0.9);
    color: #ffffff;
    transition: all 0.3s ease;
}.service-contact .message-panel span:hover {
    transform: translateY(-2px);
    background: rgb(129,138,185);
}.service-contact .join-us .img-overlay-box {
    border-radius: 22px;
    height: 100%;
    overflow: hidden;
    min-height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}.service-contact .join-us .img-overlay-box::before {
    z-index: 1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(171,182,208,0.5) 0%, transparent 100%);
    top: 0;
    left: 0;
}.service-contact .reach-us {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    background: rgb(129,138,185,0.5);
}.service-contact .reach-us a {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    gap: 0.5rem;
    position: relative;
    padding: 1rem;
    transition: all 0.3s ease;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
}.service-contact .reach-us a::before {
    transform: skewX(-15deg);
    height: 100%;
    left: 0;
    transition: all 0.6s ease;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    position: absolute;
    width: 0;
    top: 0;
}.service-contact .reach-us a:hover::before {
    width: 200%;
    left: -50%;
}.service-contact .reach-us a:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}.service-contact .reach-us a span {
    font-size: calc(12px * 0.9);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    opacity: 0.7;
    font-weight: 400;
    color: #ffffff;
}.service-contact .reach-us a p {
    font-size: 12px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}.service-contact svg {
    height: 20px;
    fill: none;
    width: 20px;
}.service-contact svg path {
    transition: fill 0.3s ease;
    fill: rgb(129,138,185);
}.service-contact .reach-us a:hover svg path {
    fill: #ffffff;
}

@media (max-width: 992px) {.service-contact .ask-feedback {
    grid-template-columns: 1fr 1fr;
}.service-contact .join-us:first-child {
    grid-column: span 2;
}.service-contact .join-us {
    padding: 2rem;
}.service-contact .join-us .img-overlay-box {
    min-height: 250px;
}
}

@media (max-width: 767px) {.service-contact {
    padding: 3rem 0;
}.service-contact .ask-feedback {
    grid-template-columns: 1fr;
}.service-contact .join-us:first-child {
    grid-column: span 1;
}.service-contact .join-us {
    padding: 1.5rem;
}.service-contact .join-us h2 {
    margin-bottom: 1rem;
    font-size: calc(33px * 0.9);
}.service-contact .join-conversation {
    margin-bottom: 1rem;
}.service-contact .msg-info {
    margin-top: 1rem;
    padding-top: 1rem;
}.service-contact .join-us .img-overlay-box {
    min-height: 200px;
}.service-contact .reach-us {
    gap: 1rem;
}.service-contact .reach-us a {
    padding: 0.75rem;
}
}

@media (max-width: 480px) {.service-contact {
    padding: 2rem 0;
}.service-contact .join-us {
    padding: 1.25rem;
}.service-contact .join-us h2 {
    font-size: calc(33px * 0.8);
}.service-contact .join-us .img-overlay-box {
    min-height: 180px;
}.service-contact .message-panel {
    gap: 0.5rem;
}.service-contact .message-panel span {
    font-size: calc(12px * 0.8);
    padding: 0.4rem 0.75rem;
}.service-contact .reach-us a {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}.service-contact .reach-us a span {
    font-size: calc(12px * 0.8);
}.service-contact .reach-us a p {
    font-size: calc(12px * 0.9);
}}.contact-panel {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, #ffffff 50%, rgb(212,215,233) 50%);
}.contact-panel::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 20%);
    content: "";
    left: 0;
    width: 100%;
    background-size: 60px 60px;
    z-index: 0;
    top: 0;
    height: 100%;
    position: absolute;
}.contact-panel .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
}.contact-panel h2 {
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 29px;
    color: rgb(171,182,208);
    text-align: center;
    position: relative;
}.contact-panel h2::after {
    height: 3px;
    width: 60px;
    background: rgb(171,182,208);
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: -15px;
    content: "";
}.contact-panel .feedback-form {
    display: flex;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: relative;
}.contact-panel .feedback-form::before {
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(171,182,208), rgb(129,138,185));
    left: 0;
    content: "";
    position: absolute;
}.contact-panel .img-overlay-box {
    position: relative;
    transition: all 0.5s ease;
    min-height: 550px;
    flex: 0 0 50%;
}.contact-panel .img-overlay-box::after {
    position: absolute;
    height: 100%;
    left: 0;
    background: linear-gradient(45deg, rgb(171,182,208,0.5), transparent);
    top: 0;
    content: "";
    width: 100%;
}.contact-panel .reach-support {
    background: #ffffff;
    flex: 0 0 50%;
    padding: 60px 50px;
    position: relative;
}.contact-panel .reach-support::before {
    height: 100%;
    left: 0;
    background: rgb(212,215,233);
    content: "";
    top: 0;
    width: 10px;
    position: absolute;
}.contact-panel #contact {
    flex-direction: column;
    display: flex;
    gap: 30px;
}.contact-panel h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #000000;
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 600;
}.contact-panel h3::after {
    left: 0;
    content: "";
    width: 100%;
    background: rgb(171,182,208,0.5);
    bottom: 0;
    height: 2px;
    position: absolute;
}.contact-panel input[type="text"] {
    border: 2px solid rgb(212,215,233);
    width: 100%;
    color: #000000;
    padding: 18px 20px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 10px;
    background: #ffffff;
}.contact-panel input[type="text"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: rgb(171,182,208);
    outline: none;
}.contact-panel input[type="text"]::placeholder {
    opacity: 0.6;
    color: #000000;
}.contact-panel .inquiry-info {
    margin-top: 10px;
    gap: 12px;
    align-items: flex-start;
    display: flex;
}.contact-panel .inquiry-info input[type="checkbox"] {
    height: 24px;
    margin-top: 2px;
    border-radius: 10px;
    border: 2px solid rgb(212,215,233);
    width: 24px;
    transition: all 0.3s ease;
    position: relative;
    appearance: none;
    cursor: pointer;
}.contact-panel .inquiry-info input[type="checkbox"]:checked {
    border-color: rgb(171,182,208);
    background: rgb(171,182,208);
}.contact-panel .inquiry-info input[type="checkbox"]:checked::after {
    content: "";
    width: 6px;
    border-bottom: 2px solid #ffffff;
    height: 10px;
    position: absolute;
    transform: rotate(45deg);
    top: 5px;
    left: 8px;
    border-right: 2px solid #ffffff;
}.contact-panel .inquiry-info label {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
}.contact-panel .inquiry-info a {
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    color: rgb(171,182,208);
}.contact-panel .inquiry-info a:hover {
    color: rgb(129,138,185);
}.contact-panel .reach-widget {
    margin-top: 20px;
    box-shadow: 0 8px 20px rgb(171,182,208,0.5);
    border: none;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 19px;
    position: relative;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 10px;
    background: rgb(171,182,208);
    cursor: pointer;
    overflow: hidden;
    font-weight: 600;
}.contact-panel .reach-widget::before {
    position: absolute;
    width: 100%;
    top: 0;
    transition: all 0.6s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 100%;
    content: "";
    left: -100%;
}.contact-panel .reach-widget:hover {
    transform: translateY(-3px);
    background: rgb(129,138,185);
    box-shadow: 0 10px 25px rgb(129,138,185,0.5);
}.contact-panel .reach-widget:hover::before {
    left: 100%;
}.contact-panel svg {
    width: 22px;
    height: 22px;
    fill: rgb(171,182,208);
    transition: all 0.3s ease;
}.contact-panel svg path {
    fill: rgb(171,182,208);
    transition: all 0.3s ease;
}.contact-panel svg:hover {
    fill: rgb(129,138,185);
    transform: translateY(-2px);
}.contact-panel svg:hover path {
    fill: rgb(129,138,185);
}

@media (max-width: 1200px) {.contact-panel {
    background: #ffffff;
}
}

@media (max-width: 992px) {.contact-panel {
    padding: 80px 0;
}.contact-panel .feedback-form {
    flex-direction: column-reverse;
}.contact-panel .img-overlay-box {
    min-height: 350px;
    flex: 0 0 auto;
}.contact-panel .reach-support {
    flex: 0 0 auto;
    padding: 50px 40px;
}.contact-panel .reach-support::before {
    left: 0;
    width: 100%;
    height: 10px;
    top: 0;
}
}

@media (max-width: 768px) {.contact-panel {
    padding: 60px 0;
}.contact-panel h2 {
    font-size: calc(29px - 4px);
    margin-bottom: 40px;
}.contact-panel .reach-support {
    padding: 40px 30px;
}.contact-panel #contact {
    gap: 25px;
}.contact-panel .img-overlay-box {
    min-height: 300px;
}
}

@media (max-width: 576px) {.contact-panel {
    padding: 50px 0;
}.contact-panel .container {
    padding: 0 15px;
}.contact-panel h2 {
    margin-bottom: 30px;
    font-size: calc(29px - 6px);
}.contact-panel .reach-support {
    padding: 35px 25px;
}.contact-panel #contact {
    gap: 20px;
}.contact-panel input[type="text"] {
    padding: 15px;
}.contact-panel .reach-widget {
    padding: 15px 25px;
    width: 100%;
}.contact-panel .img-overlay-box {
    min-height: 250px;
}}header .header-pagewrap {
    overflow: visible;
    border-bottom-right-radius: 0;
    background: linear-gradient(135deg, rgb(171,182,208,0.5) 0%, rgb(129,138,185) 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 29px;
    width: 100%;
    justify-content: space-between;
    z-index: 100;
    left: 0;
    position: relative;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}header .header-pagewrap .top-core {
    transform: skewX(5deg);
    position: relative;
    z-index: 2;
}header .header-pagewrap .top-core .header-learn {
    transition: transform 0.3s ease-in-out;
    display: block;
}header .header-pagewrap .top-core .header-learn:hover {
    transform: translateY(-8px) rotate(0deg);
}header .header-pagewrap .top-core svg {
    height: auto;
    width: 80px;
}header .header-pagewrap .main-bar {
    padding: 0;
    gap: 1rem;
    margin: 0;
    position: relative;
    display: flex;
    list-style: none;
}header .header-pagewrap .main-bar::before {
    top: -10px;
    height: calc(100% + 20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
    width: calc(100% + 40px);
    left: -20px;
    border-radius: 10px;
    content: "";
    position: absolute;
    opacity: 0;
    background: linear-gradient(45deg, transparent 0%, rgb(171,182,208,0.5) 100%);
}header .header-pagewrap .nav-master {
    position: relative;
    transition: transform 0.3s ease;
}header .header-pagewrap .nav-master a {
    text-decoration: none;
    font-family: Arial, sans-serif;
    position: relative;
    padding: 0.5rem 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
    display: block;
    font-size: 18px;
    font-weight: 600;
}header .header-pagewrap .nav-master a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    transform: scaleX(0) rotate(-2deg);
    height: 2px;
    width: 100%;
    background: rgb(129,138,185);
    transform-origin: right;
}header .header-pagewrap .nav-master a:hover {
    color: rgb(129,138,185);
}header .header-pagewrap .nav-master a:hover::before {
    transform: scaleX(1) rotate(-2deg);
    transform-origin: left;
}

@media (max-width: 992px) {header .header-pagewrap {
    width: 100vw;
    padding: 1rem;
    flex-direction: column;
    box-sizing: border-box;
    transform: skewX(0);
    margin-left: calc(-50vw + 50%);
}header .header-pagewrap .top-core {
    transform: skewX(0);
    margin-bottom: 1rem;
}header .header-pagewrap .main-bar {
    flex-wrap: wrap;
    justify-content: center;
    transform: skewX(0);
    width: 100%;
}header .header-pagewrap .main-bar::before {
    transform: skewX(0);
}header .header-pagewrap .main-bar:hover::before {
    transform: skewX(0);
}header .header-pagewrap .nav-master {
    margin: 0.25rem;
}header .header-pagewrap .nav-master:nth-child(odd),
  header .header-pagewrap .nav-master:nth-child(even) {
    transform: translateY(0);
}
}

@media (max-width: 576px) {header .header-pagewrap {
    padding: 0.75rem;
}header .header-pagewrap .main-bar {
    align-items: center;
    flex-direction: column;
}header .header-pagewrap .nav-master {
    text-align: center;
    width: 100%;
}header .header-pagewrap .top-core svg {
    width: 100px;
}}.learning-outcomes {
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, rgb(212,215,233) 100%);
    position: relative;
}.learning-outcomes::before {
    animation: float 15s infinite ease-in-out;
    top: -100px;
    background: linear-gradient(45deg, rgb(171,182,208,0.5), rgb(129,138,185,0.5));
    right: -100px;
    z-index: 0;
    height: 300px;
    border-radius: 50%;
    width: 300px;
    opacity: 0.2;
    filter: blur(80px);
    content: "";
    position: absolute;
}.learning-outcomes::after {
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(171,182,208,0.5), transparent);
    position: absolute;
    bottom: 0;
}.learning-outcomes h5 {
    transition: transform 0.5s ease;
    max-width: 80%;
    margin-bottom: 3rem;
    margin-left: auto;
    font-size: 21px;
    margin-right: auto;
    transform: perspective(1000px) rotateX(0deg);
    color: #000000;
    position: relative;
    z-index: 2;
    font-weight: 700;
    text-align: center;
}.learning-outcomes h5::after {
    width: 80px;
    left: 50%;
    border-radius: 2px;
    bottom: -12px;
    transform: translateX(-50%);
    height: 4px;
    background: linear-gradient(90deg, rgb(171,182,208), rgb(129,138,185));
    position: absolute;
    content: "";
}.learning-outcomes .container {
    z-index: 1;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.learning-outcomes .knowledge-guides {
    border-radius: 28px;
    flex-direction: column;
    transform: translateY(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    gap: 40px;
    overflow: hidden;
}.learning-outcomes .knowledge-guides:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}.learning-outcomes .img-overlay-box {
    object-fit: cover;
    position: relative;
    height: auto;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
    z-index: 1;
}.learning-outcomes .knowledge-guides:hover .img-overlay-box {
    transform: scale(1.05);
}.learning-outcomes .text-holder-wrap {
    padding: 0 30px 30px;
}.learning-outcomes ul {
    list-style: none;
    gap: 20px;
    display: grid;
    margin: 0;
    padding: 0;
}.learning-outcomes li {
    padding-left: 40px;
    transition: transform 0.3s ease;
    position: relative;
}.learning-outcomes li:hover {
    transform: translateX(5px);
}.learning-outcomes li::before {
    border-radius: 10px;
    content: "";
    background: linear-gradient(to bottom, rgb(171,182,208,0.5), rgb(129,138,185,0.5));
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
    transform: scaleY(0);
    height: calc(100% - 10px);
    top: 5px;
    opacity: 0;
    transform-origin: top;
    width: 6px;
    left: 10px;
}.learning-outcomes li:hover::before {
    opacity: 1;
    transform: scaleY(1);
}.learning-outcomes li p {
    display: flex;
    position: relative;
    line-height: 1.6;
    font-size: 17px;
    gap: 16px;
    z-index: 1;
    align-items: flex-start;
    color: #000000;
    margin: 0;
    font-weight: 400;
}.learning-outcomes li svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 22px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
    position: relative;
    z-index: 2;
    height: 22px;
}.learning-outcomes li:hover svg {
    transform: translateY(-3px) scale(1.1);
}.learning-outcomes li svg path {
    transition: fill 0.3s ease;
    fill: rgb(171,182,208);
}.learning-outcomes li:hover svg path {
    fill: rgb(129,138,185);
}.learning-outcomes li:nth-child(even) svg path:first-child {
    fill: rgb(129,138,185);
}.learning-outcomes li:nth-child(even):hover svg path:first-child {
    fill: rgb(171,182,208);
}.learning-outcomes li div {
    width: 100%;
    position: relative;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(20px) rotate(-5deg);
  }
}

@media (min-width: 768px) {.learning-outcomes .knowledge-guides {
    align-items: stretch;
    flex-direction: row;
}.learning-outcomes .knowledge-guides > div:first-child {
    overflow: hidden;
    flex: 0 0 45%;
}.learning-outcomes .img-overlay-box {
    object-position: center;
    height: 100%;
}.learning-outcomes .text-holder-wrap {
    display: flex;
    padding: 40px;
    flex: 0 0 55%;
    align-items: center;
}.learning-outcomes ul {
    grid-template-columns: repeat(2, 1fr);
}.learning-outcomes h5 {
    font-size: calc(21px * 1.2);
    max-width: 70%;
}.learning-outcomes li:nth-child(odd) {
    transform: translateY(-5px);
}.learning-outcomes li:nth-child(even) {
    transform: translateY(5px);
}.learning-outcomes li:hover {
    transform: translateX(5px) translateY(0);
}
}

@media (min-width: 992px) {.learning-outcomes {
    padding: 8rem 0;
}.learning-outcomes h5 {
    margin-bottom: 4rem;
}.learning-outcomes .knowledge-guides {
    gap: 0;
}.learning-outcomes .knowledge-guides > div:first-child {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}.learning-outcomes .text-holder-wrap {
    padding: 60px 60px 60px 40px;
}.learning-outcomes li {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
}

@media (max-width: 767px) {.learning-outcomes {
    padding: 4rem 0;
}.learning-outcomes h5 {
    font-size: calc(21px * 0.9);
    max-width: 100%;
    margin-bottom: 2rem;
}.learning-outcomes .img-overlay-box {
    max-height: 250px;
}.learning-outcomes .text-holder-wrap {
    padding: 20px 20px 30px;
}.learning-outcomes li {
    margin-bottom: 15px;
    padding-left: 30px;
}.learning-outcomes li p {
    font-size: calc(17px * 0.95);
    line-height: 1.5;
}.learning-outcomes li svg {
    height: 18px;
    width: 18px;
}}.secure-safe {
    background-color: #ffffff;
    height: auto;
    overflow: hidden;
    position: relative;
    padding: 50px;
    z-index: 1;
    margin: auto;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}.secure-safe::before {
    bottom: -10px;
    z-index: -1;
    border: 1px solid rgb(171,182,208);
    position: absolute;
    content: '';
    right: -10px;
    top: -10px;
    left: -10px;
}.secure-safe::after {
    top: 20px;
    left: 20px;
    border-radius: 10px;
    bottom: 20px;
    position: absolute;
    content: '';
    right: 20px;
    border: 1px dashed rgb(129,138,185);
    z-index: -1;
}.secure-safe h1 {
    padding-bottom: 15px;
    border-bottom: 3px double rgb(171,182,208);
    font-weight: 700;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 43px;
    margin-bottom: 30px;
    margin-top: 40px;
    letter-spacing: 1px;
    color: rgb(171,182,208);
}.secure-safe h2 {
    color: rgb(129,138,185);
    padding-bottom: 10px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    text-align: left;
    font-size: 33px;
    border-bottom: 2px dashed rgb(129,138,185);
}.secure-safe h3, .secure-safe h4, .secure-safe h5, .secure-safe h6 {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 21px;
    color: #000000;
    padding-left: 10px;
    margin-top: 25px;
    font-family: Arial, sans-serif;
    border-left: 4px solid #000000;
}.secure-safe ul, .secure-safe ol {
    font-family: Arial, sans-serif;
    padding: 15px 0;
    font-size: 12px;
    list-style: none;
    color: #000000;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    list-style-position: inside;
    padding-left: 20px;
    padding-left: 0;
    margin: 0;
}.secure-safe li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}.secure-safe li::before {
    height: 10px;
    transform: translateY(-50%);
    left: 0;
    content: "";
    border-radius: 50%;
    width: 10px;
    top: 50%;
    position: absolute;
    background-color: rgb(171,182,208);
}.secure-safe section {
    background: none;
}.secure-safe p, .secure-safe span, .secure-safe div {
    line-height: 1.75;
    font-size: 12px;
    padding-bottom: 10px;
    color: #000000;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {.secure-safe {
    width: 100%;
    padding: 30px;
}.secure-safe h1 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: calc(21px - 6px);
}.secure-safe h2 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: calc(21px - 6px);
}.secure-safe ul, .secure-safe ol {
    padding-left: 15px;
}.secure-safe li {
    padding-left: 20px;
}.secure-safe p, .secure-safe span, .secure-safe div {
    margin-bottom: 15px;
    padding-bottom: 8px;
}}.about-this {
    color: #ffffff;
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}.about-this::before {
    position: absolute;
    z-index: 1;
    left: 0;
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.85) 25%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.65) 100%);
}.about-this::after {
    height: 60%;
    right: -10%;
    background: rgb(171,182,208);
    z-index: 0;
    top: -10%;
    animation: floatBlob 20s infinite alternate ease-in-out;
    content: "";
    width: 60%;
    filter: blur(40px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
    position: absolute;
}.about-this .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    position: relative;
    padding: 0 30px;
}.about-this .text-holder-wrap {
    transform: translateX(0);
    position: relative;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 840px;
}.about-this h1 {
    transition: all 0.5s ease-out;
    font-size: 48px;
    position: relative;
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 50px;
}.about-this h1::after {
    animation: expandLine 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    background: linear-gradient(90deg, rgb(171,182,208) 0%, rgb(129,138,185) 100%);
    transform-origin: left;
    height: 4px;
    content: "";
    left: 0;
    position: absolute;
    bottom: -15px;
    width: 80px;
}.about-this ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.about-this li {
    margin-bottom: 20px;
}.about-this h4 {
    letter-spacing: 0.5px;
    font-size: calc(30px - 2px);
    margin: 0 0 15px 0;
    font-weight: 600;
    transform: translateX(0);
    position: relative;
    color: rgb(129,138,185);
    display: inline-block;
    transition: transform 0.4s ease;
}.about-this h4::before {
    height: 2px;
    transition: width 0.4s ease;
    left: 0;
    position: absolute;
    background: rgb(129,138,185);
    width: 0;
    content: "";
    bottom: -5px;
}.about-this h4:hover {
    transform: translateX(5px);
}.about-this h4:hover::before {
    width: 100%;
}.about-this span {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(0);
    font-size: 14px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    border-left: 3px solid rgb(171,182,208);
    transition: all 0.4s ease;
    line-height: 1.7;
}.about-this span:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}.about-this span::first-letter {
    margin-right: 8px;
    line-height: 1;
    font-weight: 700;
    color: rgb(171,182,208);
    float: left;
    font-size: 2.5em;
}

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

@keyframes floatBlob {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(5deg) translate(20px, 20px);
    }
    100% {
        transform: rotate(-5deg) translate(-20px, 20px);
    }
}

@media (max-width: 992px) {.about-this {
    padding: 90px 0;
}.about-this h1 {
    margin-bottom: 40px;
    font-size: calc(48px - 6px);
}.about-this h4 {
    font-size: calc(30px - 4px);
}.about-this span {
    padding: 25px;
    font-size: calc(14px - 1px);
}
}

@media (max-width: 768px) {.about-this {
    padding: 70px 0;
}.about-this .container {
    padding: 0 20px;
}.about-this h1 {
    margin-bottom: 35px;
    font-size: calc(48px - 10px);
}.about-this h4 {
    font-size: calc(30px - 6px);
}.about-this span {
    padding: 20px;
    line-height: 1.6;
}.about-this span::first-letter {
    font-size: 2em;
}.about-this::after {
    width: 80%;
    height: 50%;
}
}

@media (max-width: 576px) {.about-this {
    padding: 50px 0;
}.about-this .container {
    padding: 0 15px;
}.about-this h1 {
    margin-bottom: 30px;
    font-size: calc(48px - 14px);
}.about-this h1::after {
    height: 3px;
    bottom: -10px;
}.about-this h4 {
    font-size: calc(30px - 8px);
    margin-bottom: 10px;
}.about-this span {
    padding: 15px;
    line-height: 1.5;
    font-size: calc(14px - 2px);
}.about-this span::first-letter {
    margin-right: 5px;
    font-size: 1.8em;
}}.course-highlights {
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    background-color: rgb(212,215,233);
    min-height: 100vh;
}.course-highlights .container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 4rem 2rem;
    z-index: 10;
}.course-highlights .knowledge-guides {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-direction: column;
}.course-highlights .job-training {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}.course-highlights .job-training::before {
    opacity: 0.1;
    width: 150px;
    background-color: rgb(171,182,208);
    height: 150px;
    z-index: -1;
    content: '';
    top: -50px;
    left: -30px;
    border-radius: 50%;
    position: absolute;
}.course-highlights .job-training::after {
    position: absolute;
    height: 100px;
    z-index: -1;
    right: -20px;
    content: '';
    bottom: -30px;
    width: 100px;
    opacity: 0.1;
    background-color: rgb(129,138,185);
    border-radius: 50%;
}.course-highlights .job-training h3 {
    font-weight: 700;
    color: rgb(171,182,208);
    margin-bottom: 1.5rem;
    font-size: 39px;
    position: relative;
}.course-highlights .job-training h3::after {
    content: '';
    transform: translateX(-50%);
    background-color: rgb(171,182,208);
    left: 50%;
    position: absolute;
    width: 80px;
    height: 4px;
    bottom: -15px;
    border-radius: 2px;
}.course-highlights .job-training p {
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    line-height: 1.8;
    font-size: 14px;
    color: #000000;
}.course-highlights .job-training .reach-widget {
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    background-color: rgb(171,182,208);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
    font-size: 20px;
    padding: 1rem 2.5rem;
}.course-highlights .job-training .reach-widget::before {
    transition: transform 0.4s ease;
    transform: translateY(100%);
    border-radius: 50px;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgb(129,138,185);
}.course-highlights .job-training .reach-widget:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}.course-highlights .job-training .reach-widget:hover::before {
    transform: translateY(0);
}.course-highlights .learn-now {
    margin-top: 3rem;
    height: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}.course-highlights .learn-now::before {
    left: 0;
    content: '';
    background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                transparent 40%,
                transparent 60%,
                rgba(0, 0, 0, 0.4) 100%);
    height: 100%;
    position: absolute;
    width: 100%;
    pointer-events: none;
    z-index: 5;
    top: 0;
}.course-highlights .tech-training {
    width: 500%;
    animation: carousel-slide 25s ease-in-out infinite;
    height: 100%;
    display: flex;
}.course-highlights .learn-now:hover .tech-training {
    animation-play-state: paused;
}.course-highlights .learn-tools {
    width: 20%;
    height: 100%;
    position: relative;
}.course-highlights .learn-tools img {
    height: 100%;
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
}.course-highlights .learn-tools:hover img {
    transform: scale(1.05);
}.course-highlights .feature-item {
    border-radius: 10px;
    text-align: center;
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: calc(33.333% - 20px);
    background-color: #ffffff;
}.course-highlights .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-20%);
    }
    45% {
        transform: translateX(-20%);
    }
    50% {
        transform: translateX(-40%);
    }
    70% {
        transform: translateX(-40%);
    }
    75% {
        transform: translateX(-60%);
    }
    95% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(-80%);
    }
}

@media (max-width: 991px) {.course-highlights .learn-now {
    height: 350px;
}.course-highlights .job-training h3 {
    font-size: calc(39px * 0.9);
}.course-highlights .feature-item {
    width: calc(50% - 15px);
}
}

@media (max-width: 767px) {.course-highlights .container {
    padding: 3rem 1.5rem;
}.course-highlights .learn-now {
    margin-top: 2rem;
    height: 300px;
}.course-highlights .job-training h3 {
    font-size: calc(39px * 0.8);
}.course-highlights .feature-item {
    padding: 20px;
    min-width: 100%;
}.course-highlights .tech-training {
    animation-duration: 20s;
    width: 600%;
}.course-highlights .learn-tools {
    width: 16.6667%;
}
    
    @keyframes carousel-slide {
        0%, 12% {
            transform: translateX(0);
        }
        16%, 28% {
            transform: translateX(-16.6667%);
        }
        32%, 44% {
            transform: translateX(-33.3334%);
        }
        48%, 60% {
            transform: translateX(-50%);
        }
        64%, 76% {
            transform: translateX(-66.6667%);
        }
        80%, 92% {
            transform: translateX(-83.3334%);
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 480px) {.course-highlights .learn-now {
    height: 250px;
}.course-highlights .job-training .reach-widget {
    padding: 0.8rem 2rem;
}}.interested-learners {
    background: rgb(212,215,233);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}.interested-learners::before {
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(171,182,208,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(129,138,185,0.5) 0%, transparent 40%);
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    opacity: 0.2;
    content: "";
    height: 100%;
}.interested-learners .container {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 1200px;
}.interested-learners .knowledge-guides {
    background: rgb(212,215,233);
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.1),
        -20px -20px 60px rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 50px;
    border-radius: 23px;
}.interested-learners h4 {
    color: #000000;
    margin-bottom: 50px;
    font-size: 30px;
    text-align: center;
    position: relative;
    font-weight: 700;
}.interested-learners h4::after {
    height: 4px;
    border-radius: 2px;
    left: 50%;
    content: "";
    background: linear-gradient(90deg, rgb(171,182,208), rgb(129,138,185));
    bottom: -15px;
    transform: translateX(-50%);
    position: absolute;
    width: 80px;
}.interested-learners div {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
}.interested-learners div p {
    font-size: 17px;
    background: rgb(212,215,233);
    line-height: 1.6;
    border-radius: 23px;
    margin: 0;
    color: #000000;
    overflow: hidden;
    display: flex;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    transition: all 0.3s ease;
    padding: 25px;
    align-items: center;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.05),
        -8px -8px 16px rgba(255, 255, 255, 0.8),
        inset 1px 1px 1px rgba(255, 255, 255, 0.3);
    position: relative;
}.interested-learners div p:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 1px 1px 1px rgba(255, 255, 255, 0.4);
}.interested-learners div p::before {
    left: 0;
    position: absolute;
    height: 100%;
    content: "";
    width: 5px;
    border-radius: 5px 0 0 5px;
    top: 0;
    opacity: 0.7;
    background: linear-gradient(180deg, rgb(171,182,208), rgb(129,138,185));
}.interested-learners div p svg {
    transition: all 0.3s ease;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.1),
        -4px -4px 8px rgba(255, 255, 255, 0.8);
    margin-right: 20px;
    padding: 8px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgb(212,215,233);
    border-radius: 50%;
}.interested-learners div p:hover svg {
    transform: rotate(10deg);
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.15),
        -6px -6px 12px rgba(255, 255, 255, 0.9),
        inset 1px 1px 1px rgba(255, 255, 255, 0.4);
}.interested-learners div p svg path {
    transition: fill 0.3s ease;
    fill: rgb(171,182,208);
}.interested-learners div p:hover svg path {
    fill: rgb(129,138,185);
}

@media (max-width: 1100px) {.interested-learners div p {
    flex: 1 1 calc(50% - 15px);
}
}

@media (max-width: 991px) {.interested-learners {
    padding: 80px 0;
}.interested-learners .knowledge-guides {
    padding: 40px 30px;
}.interested-learners h4 {
    font-size: calc(30px - 2px);
    margin-bottom: 40px;
}.interested-learners div {
    gap: 20px;
}.interested-learners div p {
    padding: 20px;
}.interested-learners div p svg {
    height: 35px;
    width: 35px;
    margin-right: 15px;
    min-width: 35px;
}
}

@media (max-width: 767px) {.interested-learners {
    padding: 60px 0;
}.interested-learners .knowledge-guides {
    padding: 30px 20px;
}.interested-learners h4 {
    font-size: calc(30px - 4px);
    margin-bottom: 35px;
}.interested-learners div p {
    flex: 1 1 100%;
    padding: 18px;
}.interested-learners div p svg {
    width: 30px;
    height: 30px;
    padding: 6px;
    min-width: 30px;
    margin-right: 15px;
}
}

@media (max-width: 479px) {.interested-learners {
    padding: 40px 0;
}.interested-learners .knowledge-guides {
    padding: 25px 15px;
}.interested-learners h4 {
    font-size: calc(30px - 6px);
    margin-bottom: 30px;
}.interested-learners div {
    gap: 15px;
}.interested-learners div p {
    padding: 15px;
    font-size: calc(17px - 1px);
}.interested-learners div p svg {
    min-width: 26px;
    width: 26px;
    padding: 5px;
    height: 26px;
    margin-right: 12px;
}}.module-end {
    position: relative;
    z-index: 1;
    font-family: Arial, sans-serif;
    padding: 80px 0 40px;
    color: #ffffff;
}@keyframes pulseLine {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.module-end .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}.module-end .company_holder {
    position: relative;
    padding-right: 30px;
    flex: 0 0 30%;
}.module-end .company_holder::after {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgb(171,182,208), transparent);
    height: 80%;
    right: 0;
    top: 10%;
    content: '';
    position: absolute;
}.module-end .company_holder h3 {
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    font-size: calc(33px * 0.9);
    font-weight: 700;
    text-shadow: 0 0 10px rgb(171,182,208,0.5);
    color: #ffffff;
}.module-end .company_holder h3::after {
    background: rgb(171,182,208);
    left: 0;
    height: 2px;
    width: 40%;
    position: absolute;
    content: '';
    bottom: -5px;
    transition: width 0.3s ease-in-out;
}.module-end .company_holder h3:hover::after {
    width: 100%;
}.module-end .equity-info {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #ffffff;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    backdrop-filter: blur(5px);
    transform: translateZ(0);
    background: rgba(255, 255, 255, 0.08);
    font-size: 18px;
}.module-end .equity-info:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px) translateZ(0);
}.module-end .footer-disclaimer {
    justify-content: space-between;
    position: relative;
    flex: 0 0 65%;
    display: flex;
}.module-end .site-study {
    justify-content: space-between;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}.module-end .main-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    flex: 0 0 45%;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-radius: 17px;
}.module-end .main-bar::before {
    transform: translateX(-100%);
    content: '';
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}.module-end .main-bar:hover::before {
    transform: translateX(100%);
}.module-end .main-bar h5 {
    position: relative;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 10px;
}.module-end .main-bar h5::after {
    left: 0;
    bottom: 0;
    content: '';
    width: 40px;
    background: rgb(171,182,208);
    height: 2px;
    position: absolute;
    transition: width 0.3s ease, box-shadow 0.3s ease;
}.module-end .main-bar:hover h5::after {
    box-shadow: 0 0 8px rgb(171,182,208), 0 0 16px rgb(171,182,208,0.5);
    width: 70px;
}.module-end .main-bar .site-study {
    flex-direction: column;
    gap: 12px;
    display: flex;
}.module-end .main-bar .site-study a {
    position: relative;
    padding-left: 0;
    opacity: 0.85;
    color: #ffffff;
    font-size: calc(18px * 0.95);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}.module-end .main-bar .site-study a::before {
    width: 0;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(171,182,208), transparent);
    height: 1px;
    left: 0;
    position: absolute;
    content: '';
    bottom: -2px;
    transition: width 0.3s ease, transform 0.3s ease;
}.module-end .main-bar .site-study a:hover {
    opacity: 1;
    color: #ffffff;
    padding-left: 5px;
}.module-end .main-bar .site-study a:hover::before {
    box-shadow: 0 0 5px rgb(171,182,208,0.5);
    width: 100%;
}.achieve-cta {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}.achieve-cta::before {
    position: absolute;
    height: 1px;
    left: 0;
    top: 0;
    right: 0;
    content: '';
    background: linear-gradient(90deg, transparent, rgb(171,182,208,0.5), transparent);
}.achieve-cta .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.achieve-cta .donate-btn {
    letter-spacing: 0.5px;
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
    text-align: center;
    transition: opacity 0.3s ease;
}.achieve-cta .donate-btn:hover {
    opacity: 1;
}

@media (max-width: 991px) {.module-end {
    padding: 60px 0 30px;
}.module-end .container {
    flex-direction: column;
}.module-end .company_holder {
    padding-right: 0;
    flex: 0 0 100%;
    margin-bottom: 40px;
}.module-end .company_holder::after {
    display: none;
}.module-end .footer-disclaimer {
    flex: 0 0 100%;
}.module-end .main-bar {
    margin-bottom: 20px;
    flex: 0 0 calc(50% - 20px);
}
}

@media (max-width: 768px) {.module-end {
    padding: 40px 0 20px;
}.module-end .site-study {
    flex-direction: column;
}.module-end .main-bar {
    margin-bottom: 20px;
    flex: 0 0 100%;
}.module-end .company_holder h3 {
    font-size: calc(33px * 0.8);
}.module-end .main-bar h5 {
    font-size: calc(18px * 0.9);
}.achieve-cta .donate-btn {
    font-size: calc(14px * 0.9);
}
}

@media (max-width: 576px) {.module-end {
    padding: 30px 0 15px;
}.module-end .company_holder {
    margin-bottom: 30px;
}.module-end .company_holder h3 {
    font-size: calc(33px * 0.7);
}.module-end .main-bar h5 {
    font-size: calc(18px * 0.8);
}.achieve-cta {
    padding: 10px 0;
}.achieve-cta .donate-btn {
    font-size: calc(14px * 0.8);
}}


footer {
    position: relative;
}footer::after {
    background-size: 50px 50px;
    opacity: 0.3;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent);
    position: absolute;
    z-index: 0;
}.module-end .company_holder h3 {
    overflow: hidden;
    position: relative;
}.module-end .company_holder h3::before {
    content: '';
    height: 100%;
    position: absolute;
    transition: 0.5s;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
    top: 0;
    width: 100%;
    left: -100%;
}.module-end .company_holder h3:hover::before {
    left: 100%;
}.thanksPoint {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(212,215,233), rgba(245, 247, 250, 0.95));
    padding: 5rem 0;
}.thanksPoint::before {
    content: "";
    height: 100%;
    opacity: 0.15;
    width: 50%;
    background: linear-gradient(to bottom right, rgb(171,182,208,0.5), transparent);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    transform: skewX(-15deg) translateX(20%);
}.thanksPoint::after {
    width: 100%;
    bottom: 0;
    position: absolute;
    z-index: 2;
    content: "";
    left: 0;
    background: linear-gradient(90deg, 
    transparent, 
    rgb(129,138,185), 
    rgb(171,182,208), 
    transparent);
    height: 3px;
}.thanksPoint .container {
    padding: 0 2rem;
    position: relative;
    margin: 0 auto;
    z-index: 3;
    max-width: 1200px;
}.thanksPoint h2 {
    font-weight: 700;
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateX(-1rem);
    max-width: 85%;
    position: relative;
    font-size: 35px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 2.5rem;
    animation: slideTitle 0.8s ease-out forwards 0.3s;
}.thanksPoint h2::after {
    bottom: -0.8rem;
    width: 5rem;
    background: rgb(171,182,208);
    transform: scaleX(0);
    transform-origin: left;
    height: 3px;
    position: absolute;
    left: 0;
    animation: growLine 1s ease-out forwards 0.8s;
    content: "";
}.thanksPoint .knowledge-guides {
    animation: slideUp 0.8s ease-out forwards 0.5s;
    transform: translateY(1rem);
    padding: 3rem;
    border-left: 4px solid rgb(171,182,208);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    opacity: 0;
}.thanksPoint .knowledge-guides::before {
    content: "";
    border-radius: 50%;
    opacity: 0.12;
    right: 2rem;
    position: absolute;
    z-index: 0;
    height: 8rem;
    top: 2rem;
    background: linear-gradient(135deg, rgb(129,138,185,0.5), transparent);
    width: 8rem;
}.thanksPoint ul {
    padding: 0;
    list-style: none;
    position: relative;
    margin: 0;
    z-index: 2;
}.thanksPoint li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}.thanksPoint li:last-child {
    margin-bottom: 0;
}.thanksPoint li::before {
    width: 0.5rem;
    left: 0;
    top: 0.6rem;
    position: absolute;
    background: rgb(171,182,208);
    animation: growBox 0.6s ease-out forwards 1.2s;
    height: 0.5rem;
    content: "";
    transform: rotate(45deg) scale(0);
}.thanksPoint li span {
    transform: translateX(0.5rem);
    color: #000000;
    line-height: 1.7;
    display: block;
    opacity: 0;
    font-size: 15px;
    font-family: Arial, sans-serif;
    animation: fadeIn 0.8s ease-out forwards 0.7s;
}

@keyframes slideTitle {
  from {
    transform: translateX(-1rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes slideUp {
  from {
    transform: translateY(1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes growBox {
  from {
    transform: rotate(45deg) scale(0);
  }
  to {
    transform: rotate(45deg) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (hover: hover) {.thanksPoint .knowledge-guides:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.thanksPoint .knowledge-guides:hover::before {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}
}

@media (max-width: 991px) {.thanksPoint {
    padding: 4rem 0;
}.thanksPoint h2 {
    font-size: calc(35px * 0.9);
    max-width: 95%;
}.thanksPoint .knowledge-guides {
    padding: 2.5rem;
}
}

@media (max-width: 767px) {.thanksPoint {
    padding: 3rem 0;
}.thanksPoint::before {
    width: 70%;
}.thanksPoint .container {
    padding: 0 1.5rem;
}.thanksPoint h2 {
    margin-bottom: 2rem;
    font-size: calc(35px * 0.8);
    max-width: 100%;
}.thanksPoint .knowledge-guides {
    padding: 2rem 1.5rem;
}.thanksPoint .knowledge-guides::before {
    height: 6rem;
    top: 1.5rem;
    right: 1.5rem;
    width: 6rem;
}
}

@media (max-width: 480px) {.thanksPoint {
    padding: 2.5rem 0;
}.thanksPoint h2 {
    line-height: 1.4;
    font-size: calc(35px * 0.7);
}.thanksPoint h2::after {
    width: 4rem;
}.thanksPoint .knowledge-guides {
    padding: 1.75rem 1.25rem;
    border-left-width: 3px;
}.thanksPoint li {
    padding-left: 1.25rem;
}.thanksPoint li span {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
}}.cookieAlertPromptPanel {
    position: fixed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    background: rgb(212,215,233);
    border-radius: 10px;
    align-items: center;
    z-index: 1050;
    text-align: center;
    flex-direction: column;
    display: flex;
    transform: translateX(-50%);
    padding: 20px;
    width: 90%;
    left: 50%;
    max-width: 600px;
    bottom: 20px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}.cookie-customize {
    z-index: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
}.cookie-box {
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}.cookie-box svg, .cookie-box svg path, .cookie-box img {
    height: 80px;
    fill: rgb(171,182,208);
    width: 80px;
}@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.cookieAlertPromptPanel h5 {
    font-weight: 700;
    color: rgb(171,182,208);
    font-size: 21px;
    margin-bottom: 10px;
}.cookieAlertPromptPanel p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #000000;
}.data-consent {
    font-size: 17px;
    text-align: center;
    margin: 5px;
    display: inline-block;
    background: rgb(171,182,208);
    padding: 10px 20px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    width: calc(50% - 10px);
    cursor: pointer;
    color: #ffffff;
    border-radius: 10px;
}.data-consent:hover {
    background: rgb(129,138,185);
    transform: translateY(-3px);
}.cookie_button.cookie-apply {
    background: rgba(0, 0, 0, 0.5);
}.cookie_button.cookie-apply:hover {
    background: rgb(129,138,185,0.5);
}.cookieAlertPromptPanel p a {
    transition: color 0.3s ease-in-out;
    color: rgb(171,182,208);
    text-decoration: underline;
}.cookieAlertPromptPanel p a:hover {
    color: rgb(129,138,185);
}
@media only screen and (max-width: 600px) {.cookieAlertPromptPanel {
    bottom: 0;
    transform: none;
    left: 0;
    border-radius: 0;
    width: 100%;
}.cookie-customize {
    padding: 15px;
}.cookie-box svg {
    width: 50px;
    height: 50px;
}.cookieAlertPromptPanel h5 {
    font-size: calc(21px - 2px);
}.cookieAlertPromptPanel p {
    font-size: calc(14px - 2px);
}.data-consent {
    padding: 8px 16px;
    font-size: calc(17px - 2px);
    width: calc(100% - 10px);
}}
#cookieNoticeOverlay {
    display: none;
}#cookieNoticeOverlay:checked ~ .cookieAlertPromptPanel {
    visibility: hidden;
    opacity: 0;
}.title-portal {
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}.title-portal::before {
    z-index: 1;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(3px);
}.title-portal::after {
    content: "";
    background: linear-gradient(180deg, 
    rgb(171,182,208,0.5) 0%, 
    transparent 30%, 
    rgb(129,138,185,0.5) 100%);
    pointer-events: none;
    top: 0;
    bottom: 0;
    position: absolute;
    left: 0;
    mix-blend-mode: overlay;
    right: 0;
    z-index: 2;
}.title-portal > div {
    gap: calc(40px * 0.75);
    max-width: 1200px;
    align-items: center;
    z-index: 3;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
              0 5px 15px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    display: flex;
    position: relative;
    justify-content: center;
    transform-origin: center bottom;
    animation: float 8s infinite ease-in-out;
    flex-direction: column;
    padding: 3rem;
    background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
    transform: perspective(1000px) rotateX(1deg);
}.title-portal > div > div:first-child {
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    padding: 1.5rem 0;
}.title-portal > div > div:first-child::before {
    transform-origin: left center;
    position: absolute;
    width: 50%;
    animation: lineExpand 3s ease-in-out infinite alternate;
    left: 25%;
    background: linear-gradient(
    90deg,
    transparent,
    rgb(129,138,185),
    transparent
  );
    height: 3px;
    bottom: 0;
    content: "";
}.title-portal > div > div:first-child::after {
    position: absolute;
    background: linear-gradient(
    90deg,
    transparent,
    rgb(171,182,208),
    transparent
  );
    transform-origin: right center;
    top: 0;
    height: 3px;
    animation: lineExpand 3s ease-in-out infinite alternate-reverse;
    left: 35%;
    content: "";
    width: 30%;
}.title-portal .title_style_header {
    background-clip: text !important;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(
    135deg,
    #ffffff 20%,
    rgb(129,138,185) 80%
  );
    -webkit-background-clip: text !important;
    line-height: 1.2;
    opacity: 0;
    font-size: clamp(2.5rem, 5vw, 40px);
    animation: fadeSlideUp 1s forwards 0.3s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    color: transparent;
}.title-portal .start-hero {
    gap: 1.5rem;
    display: flex;
    padding: 2rem;
    width: 100%;
    flex-direction: column;
    animation: fadeSlideUp 1s forwards 0.6s ease-out;
    opacity: 0;
    position: relative;
}.title-portal .start-hero::before {
    z-index: -1;
    content: "";
    background: linear-gradient(
    135deg,
    rgba(rgb(171,182,208), 0.08) 0%,
    rgba(rgb(129,138,185), 0.05) 100%
  );
    transform: perspective(1000px) rotateY(-1deg);
    inset: 0;
    position: absolute;
}.title-portal .path-creators {
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}.title-portal .path-creators::before {
    animation: borderGrow 1.2s forwards 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    top: 0;
    transform-origin: top center;
    transform: scaleY(0);
    background: linear-gradient(
    to bottom,
    rgb(171,182,208),
    rgb(129,138,185)
  );
    width: 4px;
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
}.title-portal .path-creators h3 {
    line-height: 1.4;
    padding-left: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}.title-portal .start-hero > div:last-child {
    animation: floatUp 5s infinite alternate ease-in-out;
    position: relative;
    padding: 1rem 1.5rem;
    transform: translateY(10px);
    overflow: hidden;
}.title-portal .start-hero > div:last-child::before {
    opacity: 0.4;
    background: radial-gradient(
    circle,
    rgb(129,138,185,0.5) 0%,
    transparent 70%
  );
    transform: translate(40%, 40%);
    border-radius: 50%;
    width: 80px;
    bottom: 0;
    height: 80px;
    position: absolute;
    right: 0;
    content: "";
}.title-portal .start-hero > div:last-child span {
    position: relative;
    display: block;
}.title-portal .start-hero > div:last-child p {
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.02em;
    font-size: clamp(1rem, 2vw, 17px);
}

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

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

@keyframes float {
  0%, 100% {
    transform: perspective(1000px) rotateX(1deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateX(1deg) translateY(-10px);
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
}

@keyframes lineExpand {
  0% {
    transform: scaleX(0.6);
    opacity: 0.5;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 992px) {.title-portal > div {
    padding: 2.5rem 2rem;
    gap: calc(40px * 0.5);
    width: 95%;
}.title-portal .start-hero {
    padding: 1.5rem;
}
}

@media (max-width: 768px) {.title-portal > div {
    gap: 1.5rem;
    transform: perspective(800px) rotateX(0.5deg);
    padding: 2rem 1.5rem;
}.title-portal .start-hero {
    padding: 1rem;
}.title-portal .path-creators h3 {
    padding-left: 1rem;
}
}

@media (max-width: 576px) {.title-portal > div {
    transform: none;
    padding: 1.5rem 1rem;
}.title-portal .title_style_header {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
}.title-portal .start-hero {
    padding: 0.8rem;
}.title-portal .path-creators::before {
    width: 3px;
}.title-portal .path-creators h3 {
    font-size: clamp(1rem, 5vw, 1.2rem);
}.title-portal .start-hero > div:last-child {
    padding: 0.8rem 1rem;
}
}

@media (prefers-reduced-motion) {.title-portal > div,
  .title-portal .title_style_header,
  .title-portal .start-hero,
  .title-portal .path-creators::before,
  .title-portal .start-hero > div:last-child {
    animation: none;
    transform: none;
}.title-portal > div > div:first-child::before,
  .title-portal > div > div:first-child::after {
    animation: none;
}.title-portal .title_style_header,
  .title-portal .start-hero {
    opacity: 1;
}.title-portal .path-creators::before {
    transform: scaleY(1);
}}.training-structure {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    overflow: hidden;
    background: linear-gradient(150deg, rgb(212,215,233) 45%, rgb(171,182,208,0.5) 100%);
}.training-structure::before {
    content: "";
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    top: 0;
    animation: backgroundPulse 15s infinite alternate ease-in-out;
    width: 100%;
    background-size: 50% 50%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(135deg, transparent 20px, rgba(255,255,255,0.03) 0) top left,
        linear-gradient(225deg, transparent 20px, rgba(255,255,255,0.03) 0) top right,
        linear-gradient(315deg, transparent 20px, rgba(255,255,255,0.03) 0) bottom right,
        linear-gradient(45deg, transparent 20px, rgba(255,255,255,0.03) 0) bottom left;
    opacity: 0.7;
}.training-structure::after {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: -1;
    right: -5%;
    height: 70%;
    opacity: 0.05;
    animation: floatElement 20s infinite alternate ease-in-out;
    width: 40%;
    filter: blur(40px);
    top: -10%;
    background: rgb(129,138,185,0.5);
    position: absolute;
    content: "";
    transform: rotate(15deg);
}.training-structure .knowledge-guides {
    grid-template-columns: 1fr;
    position: relative;
    max-width: 1200px;
    gap: 3rem;
    z-index: 2;
    margin: 0 auto;
    display: grid;
}.training-structure h2 {
    font-size: 30px;
    animation: slideInText 0.8s 0.2s forwards ease-out;
    transform: translateX(-20px);
    font-weight: 700;
    position: relative;
    margin-bottom: 2rem;
    color: rgb(171,182,208);
    opacity: 0;
}.training-structure h2::before {
    content: "";
    background: rgb(129,138,185);
    bottom: -15px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 1s 0.6s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    height: 3px;
    width: 80px;
    left: 0;
}.training-structure .text-holder-wrap {
    overflow: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
    animation: fadeUpIn 1s 0.4s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
    background: linear-gradient(140deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05), 
                inset 0 0 0 1px rgba(255,255,255,0.1);
    opacity: 0;
    padding: 2.5rem;
    position: relative;
}.training-structure .text-holder-wrap::before {
    background: linear-gradient(to bottom, rgb(171,182,208), rgb(129,138,185));
    left: 0;
    content: "";
    animation: growVertical 0.7s 0.8s forwards ease-in-out;
    position: absolute;
    height: 0;
    top: 0;
    width: 4px;
}.training-structure .text-holder-wrap::after {
    bottom: 0;
    height: 25%;
    z-index: -1;
    position: absolute;
    width: 25%;
    background: linear-gradient(135deg, transparent 50%, rgba(rgb(129,138,185,0.5), 0.1) 50%);
    content: "";
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    right: 0;
}.training-structure p {
    margin: 0;
    z-index: 2;
    font-size: 17px;
    position: relative;
    line-height: 1.8;
    color: #000000;
    transform: translateZ(0);
}.training-structure p::first-letter {
    font-weight: 600;
    color: rgb(171,182,208);
    font-size: 1.5em;
}

@keyframes slideInText {
    0% { transform: translateX(-20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes expandLine {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

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

@keyframes growVertical {
    0% { height: 0; }
    100% { height: 100%; }
}

@keyframes backgroundPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.7; }
    100% { opacity: 0.6; }
}

@keyframes floatElement {
    0% { transform: translate(0, 0) rotate(15deg); }
    50% { transform: translate(10px, -10px) rotate(18deg); }
    100% { transform: translate(-5px, 5px) rotate(12deg); }
}

@media (min-width: 768px) {.training-structure {
    padding: 10rem 4rem;
}.training-structure .knowledge-guides {
    grid-template-columns: 1fr;
    gap: 4rem;
}.training-structure h2 {
    margin-bottom: 3rem;
    font-size: calc(30px * 1.2);
}.training-structure h2::before {
    bottom: -20px;
    height: 4px;
    width: 120px;
}.training-structure .text-holder-wrap {
    transition: transform 0.4s ease-out;
    padding: 3.5rem;
    width: 90%;
    margin-left: 5%;
}.training-structure .text-holder-wrap:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.08), 
                    inset 0 0 0 1px rgba(255,255,255,0.15);
    transform: translateY(-5px);
}.training-structure p {
    max-width: 90%;
    font-size: calc(17px * 1.05);
}
}

@media (min-width: 1024px) {.training-structure {
    padding: 12rem 5rem;
}.training-structure::before {
    background-size: 25% 25%;
}.training-structure .knowledge-guides {
    gap: 2rem;
    align-items: center;
    grid-template-columns: 0.4fr 0.6fr;
}.training-structure h2 {
    margin-bottom: 0;
    font-size: calc(30px * 1.3);
}.training-structure h2::before {
    bottom: -25px;
    width: 140px;
}.training-structure .text-holder-wrap {
    width: 100%;
    padding: 4rem;
    margin-left: 0;
}.training-structure p {
    max-width: 100%;
}
}

@media (min-width: 1440px) {.training-structure {
    padding: 14rem 6rem;
}.training-structure .knowledge-guides {
    grid-template-columns: 0.35fr 0.65fr;
    gap: 3rem;
}.training-structure h2 {
    font-size: calc(30px * 1.4);
}.training-structure .text-holder-wrap {
    padding: 5rem;
}.training-structure p {
    line-height: 1.9;
    font-size: calc(17px * 1.1);
}
}

@media (prefers-reduced-motion: reduce) {.training-structure::before,
    .training-structure::after,
    .training-structure h2,
    .training-structure h2::before,
    .training-structure .text-holder-wrap,
    .training-structure .text-holder-wrap::before {
    transition: none;
    opacity: 1;
    animation: none;
    transform: none;
}.training-structure .text-holder-wrap::before {
    height: 100%;
}
}

@media (max-width: 767px) {.training-structure {
    padding: 6rem 1.5rem;
}.training-structure .knowledge-guides {
    gap: 2rem;
}.training-structure h2 {
    margin-bottom: 2rem;
    font-size: calc(30px * 0.9);
}.training-structure .text-holder-wrap {
    padding: 2rem;
}.training-structure p {
    line-height: 1.7;
    font-size: calc(17px * 0.95);
}}header .top_plank {
    background: rgb(171,182,208);
    color:  #ffffff;
}header .top_plank .nav-utils div svg, header .top_plank .nav-utils div svg path {
    fill: #ffffff;
}header .top_plank .nav-utils div span {
    color: #ffffff;
}header .top_plank .nav-utils {
    padding: 15px 0 10px 0;
    display: flex;
    line-height: 21px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    width: 100%;
}header .top_plank .nav-utils div {
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
    display: flex;
}header .top_plank .nav-utils div img, header .top_plank .nav-utils div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}.client-comments {
    background: linear-gradient(120deg, rgb(212,215,233), #ffffff);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}.client-comments::before {
    left: 0;
    opacity: 0.6;
    content: "";
    background: 
        radial-gradient(ellipse at top left, rgb(171,182,208,0.5) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgb(129,138,185,0.5) 0%, transparent 50%);
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
    height: 100%;
}.client-comments::after {
    content: "";
    height: 100%;
    background-size: 100px 100px;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
    opacity: 0.03;
    background: 
        linear-gradient(45deg, rgb(171,182,208,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(171,182,208,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(171,182,208,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(171,182,208,0.5) 75%);
    width: 100%;
}.client-comments .knowledge-guides {
    position: relative;
    padding: 0 20px;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}.client-comments h4 {
    color: #000000;
    font-size: 33px;
    text-align: center;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 80px;
}.client-comments h4::before {
    height: 2px;
    width: 100px;
    position: absolute;
    background: rgb(171,182,208);
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    content: "";
}.client-comments h4::after {
    content: "";
    width: 12px;
    background: rgb(171,182,208);
    border-radius: 50%;
    height: 12px;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    position: absolute;
}.client-comments .learning-ratings {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}.client-comments .learner-ratings {
    cursor: pointer;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(33.33% - 40px);
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 120px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 16px;
    overflow: hidden;
    margin: 0 20px 40px;
}.client-comments .learner-ratings:hover {
    height: 280px;
    z-index: 2;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}.client-comments .learner-ratings::before {
    left: 0;
    content: "";
    border-radius: inherit;
    width: 100%;
    top: 0;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.4) 0%, 
            rgba(255, 255, 255, 0) 100%);
    height: 100%;
    position: absolute;
    z-index: -1;
}.client-comments .learner-ratings::after {
    top: 15px;
    opacity: 0.3;
    z-index: 0;
    width: 30px;
    position: absolute;
    height: 30px;
    transition: all 0.4s ease;
    border: 2px solid rgb(171,182,208,0.5);
    content: "";
    right: 15px;
    border-radius: 50%;
}.client-comments .learner-ratings:hover::after {
    opacity: 0.6;
    transform: scale(0.8);
}.client-comments .img-overlay-box {
    float: left;
    width: 70px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 70px;
    margin: 25px 20px;
    z-index: 1;
    position: relative;
    border-radius: 50%;
}.client-comments .learner-ratings:hover .img-overlay-box {
    border-color: rgb(171,182,208,0.5);
    margin-bottom: 10px;
    transform: scale(1.1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}.client-comments .learner-ratings span {
    margin-top: 40px;
    text-overflow: ellipsis;
    color: #000000;
    font-size: calc(12px * 1.1);
    white-space: nowrap;
    display: block;
    font-weight: 600;
    overflow: hidden;
    padding-right: 60px;
    transition: all 0.4s ease;
}.client-comments .learner-ratings:hover span {
    white-space: normal;
    margin-left: 20px;
    color: rgb(171,182,208);
    margin-top: 15px;
}.client-comments .learner-ratings p {
    transition: all 0.5s ease;
    -webkit-line-clamp: 5;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0;
    -webkit-box-orient: vertical;
    max-height: 0;
    overflow: hidden;
    display: -webkit-box;
    color: #000000;
    margin: 0 20px;
}.client-comments .learner-ratings:hover p {
    margin-top: 15px;
    opacity: 1;
    max-height: 150px;
}.client-comments .learner-ratings:nth-child(3n+1) {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
}.client-comments .learner-ratings:nth-child(3n+2) {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(rgb(171,182,208,0.5), 0.05) 100%
    );
}.client-comments .learner-ratings:nth-child(3n+3) {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(rgb(129,138,185,0.5), 0.05) 100%
    );
}

@media (max-width: 1200px) {.client-comments .learner-ratings {
    margin: 0 15px 30px;
    width: calc(50% - 30px);
}
}

@media (max-width: 992px) {.client-comments .learner-ratings {
    height: 100px;
}.client-comments .learner-ratings:hover {
    height: 250px;
}.client-comments .img-overlay-box {
    margin: 20px 15px;
    width: 60px;
    height: 60px;
}.client-comments .learner-ratings span {
    font-size: 12px;
    margin-top: 32px;
}
}

@media (max-width: 768px) {.client-comments {
    padding: 70px 0;
}.client-comments h4 {
    margin-bottom: 60px;
}.client-comments .learner-ratings {
    margin: 0 auto 25px;
    max-width: 400px;
    width: 100%;
    height: auto;
    min-height: 100px;
}.client-comments .learner-ratings:hover {
    height: auto;
    min-height: 250px;
}.client-comments .learner-ratings:last-child {
    margin-bottom: 0;
}.client-comments .learner-ratings::after {
    top: 10px;
    right: 10px;
}.client-comments .img-overlay-box {
    margin: 15px;
}.client-comments .learner-ratings span {
    margin-top: 28px;
}.client-comments .learner-ratings:hover span {
    margin-top: 10px;
}.client-comments .learner-ratings:hover p {
    margin-top: 10px;
}}.offer-selection {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(212,215,233) 0%, rgb(171,182,208,0.5) 100%);
    position: relative;
    padding: 100px 0;
}.offer-selection::before {
    height: 100%;
    pointer-events: none;
    position: absolute;
    left: 0;
    z-index: 0;
    width: 100%;
    top: 0;
    background: radial-gradient(circle at 30% 70%, rgb(129,138,185,0.5) 0%, transparent 60%);
    content: "";
}.offer-selection .container {
    padding: 0 15px;
    z-index: 1;
    position: relative;
    margin: 0 auto;
    max-width: 1320px;
}.offer-selection .group-rates {
    display: flex;
    position: relative;
    gap: 60px;
    flex-direction: column-reverse;
}.offer-selection .pricing-tiers {
    backdrop-filter: blur(10px);
    max-width: 100%;
    border-left: 3px solid rgb(171,182,208);
    background: linear-gradient(145deg, #ffffff 0%, rgb(255, 255, 255, 0.5) 90%);
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 30px;
}.offer-selection .pricing-tiers:hover {
    transform: perspective(1000px) rotateX(2deg);
}.offer-selection .pricing-tiers h2 {
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-size: 35px;
    color: transparent;
    transform: translateZ(0);
    font-weight: 700;
    background: linear-gradient(90deg, rgb(171,182,208), rgb(129,138,185));
    background-clip: text !important;
    -webkit-background-clip: text !important;
}.offer-selection .pricing-tiers .payment-pricing {
    overflow-wrap: break-word;
    color: #000000;
    line-height: 1.6;
    max-width: 700px;
    word-break: break-word;
    font-size: 15px;
    margin-bottom: 0;
}.offer-selection .pricing-pack {
    gap: 30px;
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
}.offer-selection .learning-cost {
    text-decoration: none;
    border-radius: 4px;
    display: block;
    transform: translateY(0);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}.offer-selection .learning-cost:hover {
    z-index: 5;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.offer-selection .learn-sub {
    position: relative;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, rgb(255, 255, 255, 0.5) 95%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    flex-direction: column;
}.offer-selection .learn-sub::before {
    height: 5px;
    content: "";
    transition: transform 0.4s ease-out;
    transform: scaleX(0.8);
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(171,182,208), rgb(129,138,185));
    width: 100%;
}.offer-selection .learning-cost:hover .learn-sub::before {
    transform: scaleX(1);
}.offer-selection .rate-choices {
    flex-direction: column;
    position: relative;
    flex: 1;
    z-index: 1;
    display: flex;
    padding: 30px;
}.offer-selection .rate-choices h3 {
    color: #000000;
    text-overflow: ellipsis;
    transition: transform 0.3s ease;
    overflow: hidden;
    font-size: calc(23px + 2px);
    transform-origin: left;
    white-space: nowrap;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}.offer-selection .learning-cost:hover .rate-choices h3 {
    transform: translateX(5px) scale(1.03);
    color: rgb(171,182,208);
}.offer-selection .skill-plans {
    position: relative;
    margin-bottom: 20px;
    color: rgb(129,138,185);
    font-size: calc(23px + 4px);
    display: inline-block;
    font-weight: 700;
}.offer-selection .skill-plans::after {
    content: "";
    height: 3px;
    position: absolute;
    width: 50px;
    transform: scaleX(0.5);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform-origin: left;
    left: 0;
    background: rgb(171,182,208);
    bottom: -5px;
}.offer-selection .learning-cost:hover .skill-plans::after {
    transform: scaleX(1);
}.offer-selection .rate-choices p {
    font-size: 15px;
    -webkit-box-orient: vertical;
    word-break: break-word;
    flex: 1;
    -webkit-line-clamp: 5;
    color: #000000;
    display: -webkit-box;
    line-height: 1.6;
    margin-bottom: 0;
    overflow: hidden;
    overflow-wrap: break-word;
}.offer-selection .img-overlay-box {
    position: relative;
    height: 200px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}.offer-selection .img-overlay-box::after {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    pointer-events: none;
    top: 0;
    left: 0;
}.offer-selection .learning-cost:hover .img-overlay-box {
    transform: scale(1.05);
}

@media (min-width: 768px) {.offer-selection .pricing-pack {
    grid-template-columns: repeat(2, 1fr);
}.offer-selection .pricing-tiers {
    padding: 40px;
}.offer-selection .rate-choices {
    padding: 30px 35px;
}.offer-selection .img-overlay-box {
    height: 240px;
}
}

@media (min-width: 992px) {.offer-selection .group-rates {
    gap: 40px;
    align-items: stretch;
    flex-direction: row;
}.offer-selection .pricing-tiers {
    display: flex;
    width: 30%;
    justify-content: center;
    padding: 50px 40px;
    flex-direction: column;
}.offer-selection .pricing-pack {
    grid-template-columns: repeat(2, 1fr);
    width: 70%;
}.offer-selection .rate-choices {
    padding: 30px;
}.offer-selection .rate-choices p {
    -webkit-line-clamp: 6;
}
}

@media (min-width: 1200px) {.offer-selection {
    padding: 120px 0;
}.offer-selection .pricing-pack {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.offer-selection .pricing-tiers h2 {
    font-size: calc(35px + 4px);
}.offer-selection .rate-choices h3 {
    font-size: calc(23px + 4px);
}.offer-selection .skill-plans {
    font-size: calc(23px + 8px);
}.offer-selection .img-overlay-box {
    height: 280px;
}
}

@media (min-width: 1400px) {.offer-selection .pricing-pack {
    grid-template-columns: repeat(2, 1fr);
}.offer-selection .rate-choices p {
    -webkit-line-clamp: 7;
}
}

@media (hover: hover) {.offer-selection .learning-cost {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.offer-selection .learning-cost:hover {
    transform: translateY(-10px) scale(1.02);
}}.data-statistics {
    background: linear-gradient(170deg, rgb(212,215,233), rgba(0, 0, 0, 0.5));
    --item-transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease-out, background 0.4s ease;
    overflow: hidden;
    --stat-hover-bg: linear-gradient(135deg, rgb(171,182,208), rgb(129,138,185,0.5));
    padding: 5rem 0;
    --stat-bg: linear-gradient(135deg, rgb(171,182,208,0.5), rgb(129,138,185,0.5));
    position: relative;
}.data-statistics::before {
    right: -5%;
    position: absolute;
    width: 30%;
    filter: blur(30px);
    opacity: 0.6;
    transform: rotate(-15deg);
    top: -10%;
    content: "";
    height: 60%;
    z-index: 0;
    background: linear-gradient(45deg, transparent, rgb(171,182,208,0.5), transparent);
}.data-statistics::after {
    width: 40%;
    transform: rotate(25deg);
    position: absolute;
    background: linear-gradient(135deg, transparent, rgb(129,138,185,0.5), transparent);
    opacity: 0.4;
    content: "";
    height: 70%;
    z-index: 0;
    left: -5%;
    filter: blur(40px);
    bottom: -20%;
}.data-statistics .container {
    margin: 0 auto;
    position: relative;
    max-width: 1280px;
    padding: 0 1.5rem;
    z-index: 1;
}.data-statistics h4 {
    margin-top: 3rem;
    letter-spacing: 0.05em;
    animation: fadeUp 0.8s ease-out 1.2s forwards;
    transform: translateY(1rem);
    color: #ffffff;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    opacity: 0;
}.data-statistics ul {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 0;
    list-style: none;
    padding: 0;
}.data-statistics .statistics-edge {
    border-left: 3px solid rgb(171,182,208);
    transform: translateY(30px);
    background: var(--stat-bg);
    backdrop-filter: blur(8px);
    justify-content: center;
    animation-delay: calc(0.15s * var(--i, 0));
    transition: var(--item-transition);
    opacity: 0;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    height: 160px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: staggerIn 0.6s cubic-bezier(0.17, 0.67, 0.4, 1) forwards;
}.data-statistics .statistics-edge:nth-child(1) {
    --i: 1;
}.data-statistics .statistics-edge:nth-child(2) {
    --i: 2;
}.data-statistics .statistics-edge:nth-child(3) {
    --i: 3;
}.data-statistics .statistics-edge:nth-child(4) {
    --i: 4;
}.data-statistics .statistics-edge:nth-child(5) {
    --i: 5;
}.data-statistics .statistics-edge:nth-child(6) {
    --i: 6;
}.data-statistics .statistics-edge:nth-child(7) {
    --i: 7;
}.data-statistics .statistics-edge::before {
    transition: opacity 0.5s ease;
    content: "";
    z-index: 0;
    width: 100%;
    background: linear-gradient(45deg, transparent, rgb(129,138,185,0.5) 80%);
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
    height: 100%;
}.data-statistics .statistics-edge:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px) scale(1.02);
    background: var(--stat-hover-bg);
}.data-statistics .statistics-edge:hover::before {
    opacity: 0.4;
}.data-statistics .statistics-edge div {
    z-index: 2;
    position: relative;
}.data-statistics .statistics-edge p {
    color: #ffffff;
    display: inline-block;
    margin: 0 0 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    line-height: 1;
}.data-statistics .statistics-edge p::after {
    position: absolute;
    top: 5px;
    content: "+";
    right: -15px;
    font-size: 1.5rem;
    color: rgb(171,182,208);
}.data-statistics .statistics-edge span {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    transition: padding 0.3s ease;
    line-height: 1.4;
    padding-left: 0;
    max-width: 90%;
    font-weight: 400;
}.data-statistics .statistics-edge:hover span {
    padding-left: 10px;
}.data-statistics .statistics-edge span::before {
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    transition: width 0.3s ease;
    left: 0;
    position: absolute;
    width: 0;
    background: rgb(171,182,208);
    content: "";
}.data-statistics .statistics-edge:hover span::before {
    width: 6px;
}

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

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

@media (max-width: 992px) {.data-statistics {
    padding: 4rem 0;
}.data-statistics ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}.data-statistics .statistics-edge {
    height: 140px;
    padding: 1.25rem;
}.data-statistics .statistics-edge p {
    font-size: 2.5rem;
}.data-statistics .statistics-edge p::after {
    font-size: 1.25rem;
    right: -12px;
    top: 4px;
}
}

@media (max-width: 768px) {.data-statistics {
    padding: 3rem 0;
}.data-statistics ul {
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}.data-statistics .statistics-edge {
    height: 130px;
    padding: 1rem;
}.data-statistics .statistics-edge p {
    font-size: 2.25rem;
}.data-statistics h4 {
    margin-top: 2rem;
}
}

@media (max-width: 576px) {.data-statistics {
    padding: 2.5rem 0;
}.data-statistics ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}.data-statistics .statistics-edge {
    height: 120px;
}.data-statistics .statistics-edge p {
    font-size: 2rem;
}.data-statistics .statistics-edge span {
    font-size: 0.85rem;
    max-width: 100%;
}.data-statistics h4 {
    font-size: calc(19px * 0.9);
}
}

@media (max-width: 400px) {.data-statistics ul {
    grid-template-columns: 1fr;
}.data-statistics .statistics-edge {
    min-height: 100px;
    height: auto;
}}.academic-experience {
    position: relative;
    background: linear-gradient(135deg, rgb(212,215,233), rgb(171,182,208,0.5));
    padding: 5rem 2rem;
    overflow: hidden;
}.academic-experience::before {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: repeating-linear-gradient(45deg, rgb(129,138,185,0.5) 0px, transparent 2px, transparent 10px);
    content: "";
    left: 0;
    opacity: 0.1;
}.academic-experience .learner-ratings {
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    display: flex;
    padding: 0;
    gap: 4rem;
    background: #ffffff;
    border-radius: 11px;
    margin: 0 auto;
    position: relative;
    align-items: center;
    overflow: hidden;
}.academic-experience .img-overlay-box {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    width: 40%;
    position: relative;
    height: 450px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}.academic-experience .img-overlay-box::after {
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.5;
    background: linear-gradient(135deg, rgb(171,182,208,0.5), transparent);
    position: absolute;
    content: "";
}.academic-experience .experience-profile {
    position: relative;
    width: 60%;
    padding: 3rem;
}.academic-experience .name {
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    font-size: 29px;
    display: inline-block;
}.academic-experience .name::after {
    content: "";
    left: 0;
    bottom: -8px;
    height: 3px;
    position: absolute;
    transition: width 0.3s ease;
    background: rgb(171,182,208);
    width: 50%;
}.academic-experience .experience-profile > div:nth-child(2) {
    color: rgb(129,138,185);
    font-weight: 600;
    font-size: 21px;
    padding-left: 2px;
    margin-bottom: 1.5rem;
}.academic-experience .job-tasks {
    font-family: Arial, sans-serif;
    color: #000000;
    position: relative;
    font-size: 18px;
    padding-left: 1.5rem;
    line-height: 1.6;
}.academic-experience .job-tasks::before {
    left: -1rem;
    content: "";
    top: -2rem;
    font-size: 4rem;
    opacity: 0.4;
    position: absolute;
    color: rgb(171,182,208,0.5);
}.academic-experience .learner-ratings:hover .img-overlay-box {
    transform: scale(1.03);
}.academic-experience .learner-ratings:hover .name::after {
    width: 100%;
}

@media (max-width: 992px) {.academic-experience .learner-ratings {
    flex-direction: column;
    gap: 2rem;
}.academic-experience .img-overlay-box {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    width: 100%;
    height: 350px;
}.academic-experience .experience-profile {
    padding: 0 2rem 2rem;
    width: 100%;
}
}

@media (max-width: 576px) {.academic-experience {
    padding: 3rem 1rem;
}.academic-experience .img-overlay-box {
    height: 280px;
}.academic-experience .experience-profile {
    padding: 0 1.5rem 1.5rem;
}.academic-experience .name {
    font-size: calc(29px * 0.85);
}.academic-experience .job-tasks {
    font-size: calc(18px * 0.95);
}
}