﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
header,footer {
    width: 100%;
}
.main-guide {
    flex: 1 0 auto;
}
a {
    color: inherit;
    text-decoration: none;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Merriweather, sans-serif;
    color: #000000;
}
.footer {
    flex: 0 0 auto;
}
.container {
    margin: auto;
    width: 1266px;
    max-width: 100%;
}

.wrapper-segment {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
section {
    background-color: rgb(239,234,238);
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}footer {
    background: rgb(179,161,175);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    padding: 60px 0;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(212,198,210) 0%, rgb(179,161,175) 100%);
    clip-path: circle(30% at 0% 100%);
    transition: clip-path 0.5s ease;
    z-index: 1;
}
footer:hover::before {
    clip-path: circle(75% at 50% 50%);
}
footer .container {
    position: relative;
    z-index: 2;
}
footer h5 {
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(212,198,210);
    transition: width 0.3s ease;
}
footer .top-edu a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}
footer .top-edu a:hover {
    color: rgb(212,198,210);
    transform: translateX(10px);
}
footer .help-help div svg, footer .help-help div svg path {
    fill: rgb(212,198,210);
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease, transform 0.3s ease;
}
footer .help-help div span {
    color: #ffffff;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s ease;
}
footer .help-help div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
footer .help-help div:hover svg {
    fill: rgb(179,161,175);
    transform: scale(1.2);
}
footer .help-help div:hover span {
    color: rgb(212,198,210);
}
footer .nav-master svg, footer .nav-master svg path {
    fill: #ffffff;
    width: 80px;
    height: 80px;
    transition: fill 0.6s ease, transform 0.3s ease;
}
footer .academy-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 20px;
}
footer .transcript {
    margin-top: 20px;
    font-size: 18px;
    color: var(--white-color_opacity);
    text-align: right;
    margin-bottom: 10px;
}
footer .skill-links {
    background: rgb(212,198,210);
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    transition: background 0.3s ease, color 0.3s ease;
}
footer .ranking-bar a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}
footer .ranking-bar a:hover {
    color: rgb(212,198,210);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {
    footer .academy-info {
        padding: 0 20px;
        flex-direction: column;
    }
    footer .transcript {
        text-align: left;
    }
    footer .top-edu, footer .header-start {
        flex-direction: column;
    }
    footer .help-help {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer h5 {
        margin-top: 10px;
    }
    footer .help-help {
        margin-top: 10px;
    }
}
.developer-experience {
    padding: 100px 20px;
    background: rgb(179,161,175,0.5);
    position: relative;
}

.developer-experience .pedagogy-way {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.developer-experience .client-views {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.developer-experience .client-views:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.developer-experience .img-center-align {
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    transition: transform 0.3s;
}

.developer-experience .client-views:hover .img-center-align {
    transform: scale(1.1);
}

.developer-experience .emp-highlights {
    padding: 20px;
    text-align: center;
}

.developer-experience .client-views .name {
    color: rgb(212,198,210);
    font-family: Merriweather, sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
}

.developer-experience .client-views span {
    color: rgb(179,161,175);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.developer-experience .client-views .exp-achievements {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
}

@media only screen and (max-width: 1200px) {
    .developer-experience {
        padding: 80px 10px;
    }

    .developer-experience .pedagogy-way {
        flex-direction: column;
        align-items: center;
    }

    .developer-experience .client-views {
        max-width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .developer-experience {
        padding: 60px 5px;
    }

    .developer-experience .img-center-align {
        height: 200px;
    }

    .developer-experience .client-views .name {
        font-size: 20px;
    }

    .developer-experience .client-views span, .developer-experience .client-views .exp-achievements {
        font-size: 18px;
    }
}

.wrapper-segment .developer-experience .pedagogy-way {
    justify-content: center;
    align-items: center;
}

.wrapper-segment .developer-experience .client-views {
    width: auto;
    border-left: 10px solid rgb(212,198,210);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    position: relative;
}


.wrapper-segment .developer-experience .img-center-align {
    z-index: 1;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.wrapper-segment .developer-experience .emp-highlights {
    padding: 20px;
    position: relative;
    z-index: 1;
    width: auto;
}

.wrapper-segment .developer-experience .client-views .name {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.wrapper-segment .developer-experience .client-views span {
    font-size: 16px;
    font-weight: 600;
    color: rgb(212,198,210);
}

.wrapper-segment .developer-experience .client-views .exp-achievements {
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

@media only screen and (max-width: 800px) {
    .wrapper-segment .developer-experience .client-views {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .wrapper-segment .developer-experience .client-views::after {
        width: 100%;
        height: 140px;
        bottom: 0;
        top: unset;
    }

    .wrapper-segment .developer-experience .emp-highlights {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .wrapper-segment .developer-experience .img-center-align {
        width: 240px;
        height: 240px;
        margin-top: 20px;
    }

    .wrapper-segment .developer-experience .client-views .name {
        font-size: 20px;
        margin-top: 20px;
    }

    .wrapper-segment .developer-experience .client-views span, 
    .wrapper-segment .developer-experience .client-views .exp-achievements {
        font-size: 18px;
    }
}
.company-info {
    position: relative;
    padding: 140px 0;
    isolation: isolate;
    overflow: hidden;
}

.company-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(rgb(212,198,210), 0.85);
    z-index: 1;
}

.company-info::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
    animation: gridMove 15s linear infinite;
}

.company-info .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.company-info .details-box {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
}

.company-info .details-box h3 {
    grid-column: 1;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding: 30px;
    border-left: 4px solid rgb(212,198,210);
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.8) 90%, 
        rgba(0, 0, 0, 0.7) 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.company-info .details-box h3::before {
    content: attr(data-text);
    position: absolute;
    left: 30px;
    top: -20px;
    font-size: calc(48px * 2);
    color: rgb(212,198,210);
    opacity: 0.15;
    font-weight: 700;
    white-space: nowrap;
    z-index: -1;
}

.company-info .details-box span {
    grid-column: 1;
    font-size: 19px;
    color: rgb(179,161,175);
    font-weight: 600;
    margin-top: -30px;
    margin-left: 30px;
    padding: 10px 20px;
    background: linear-gradient(90deg, 
        rgb(239,234,238) 0%, 
        var(--section-bg-color_opacity) 90%, 
        transparent 100%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    border-left: 2px solid rgb(179,161,175);
}

.company-info .details-box p {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    position: relative;
    padding: 40px;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.75) 80%, 
        rgba(0, 0, 0, 0.6) 100%);
    border-radius: 22px 0 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-info .details-box p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(to bottom, 
        rgb(212,198,210), 
        rgb(179,161,175));
}

.company-info .details-box p::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 100px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(
        circle, 
        rgb(212,198,210,0.5) 0%, 
        transparent 70%);
    filter: blur(8px);
    animation: orbitLight 6s infinite linear;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

@keyframes orbitLight {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
        opacity: 0.8;
    }
}

@media (max-width: 1200px) {
    .company-info .details-box {
        width: 120%;
        margin-left: -10%;
        gap: 30px;
    }
    
    .company-info .details-box h3 {
        font-size: calc(48px * 0.9);
        padding: 25px;
    }
    
    .company-info .details-box span {
        margin-left: 25px;
        font-size: calc(19px * 0.9);
    }
    
    .company-info .details-box p {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .company-info {
        padding: 100px 0;
    }
    
    .company-info .details-box {
        width: 110%;
        margin-left: -5%;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-info .details-box h3 {
        grid-column: 1;
        padding: 20px;
        font-size: calc(48px * 0.8);
    }
    
    .company-info .details-box span {
        grid-column: 1;
        grid-row: 2;
        margin-top: -10px;
        margin-left: 20px;
    }
    
    .company-info .details-box p {
        grid-column: 1;
        grid-row: 3;
        padding: 30px;
    }
    
    .company-info .details-box h3::before {
        font-size: calc(48px * 1.5);
        top: -15px;
    }
}

@media (max-width: 768px) {
    .company-info {
        padding: 80px 0;
    }
    
    .company-info .details-box {
        width: 100%;
        margin-left: 0;
    }
    
    .company-info .details-box h3 {
        font-size: calc(48px * 0.7);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    }
    
    .company-info .details-box span {
        font-size: calc(19px * 0.8);
        padding: 8px 15px;
    }
    
    .company-info .details-box p {
        font-size: calc(15px * 0.95);
        line-height: 1.7;
        padding: 25px;
        border-radius: 10px 0 0 10px;
    }
    
    .company-info .details-box p::after {
        right: 50px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .company-info {
        padding: 60px 0;
    }
    
    .company-info .details-box h3 {
        font-size: calc(48px * 0.6);
        padding: 15px;
        clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
    }
    
    .company-info .details-box h3::before {
        display: none;
    }
    
    .company-info .details-box span {
        font-size: calc(19px * 0.7);
        margin-left: 15px;
        padding: 6px 12px;
    }
    
    .company-info .details-box p {
        font-size: calc(15px * 0.9);
        line-height: 1.6;
        padding: 20px;
    }
    
    .company-info .details-box p::before {
        height: 60%;
    }
    
    .company-info .details-box p::after {
        width: 20px;
        height: 20px;
        top: 15px;
        right: 30px;
    }
}.client-feedback {
    background: rgb(179,161,175,0.5);
    padding: 80px 0;
    border-top: 5px solid rgb(212,198,210);
}

.client-feedback h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.client-feedback h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: rgb(212,198,210);
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.client-feedback .feedback-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.client-feedback .feedback-carousel .client-views {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.client-feedback .feedback-carousel .client-views .img-center-align {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.client-feedback .feedback-carousel .client-views .text {
    font-style: italic;
    font-size: 16px;
    color: #000000;
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 25px;
    background: rgb(239,234,238);
}

.client-feedback .feedback-carousel .client-views .text::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid rgb(239,234,238);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    bottom: -20px;
    left: calc(50% - 20px);
}

.client-feedback .feedback-carousel .client-views .text p {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin: 5px 0;
}

.client-feedback .feedback-carousel .client-views .text span {
    display: block;
    color: #000000;
    font-size: 16px;
    margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
    .client-feedback .feedback-carousel {
        grid-template-columns: 1fr;
    }
}
.ty-div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(239,234,238);
    padding: 50px 20px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}
.ty-div .container {
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ty-div h2 {
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 700;
    color: rgb(212,198,210);
    border-bottom: 2px solid rgb(179,161,175);
    padding-bottom: 10px;
    width: 100%;
}
.ty-div p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    background-color: rgb(239,234,238);
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 800px) {
    .ty-div {
        padding: 20px 10px;
    }
    .ty-div .container {
        padding: 20px;
    }
    .ty-div h2 {
        font-size: 24px;
        padding-bottom: 8px;
    }
    .ty-div p {
        font-size: 19px;
        padding: 15px;
    }
}
.confidential-armory {
    padding: 60px;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgb(179,161,175) 25%, rgb(212,198,210) 75%);

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    color: var(--white-color_opacity);
}

.confidential-armory h1 {
    grid-column: span 2;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 42px;
    font-family: Merriweather, sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgb(212,198,210);
    padding: 10px;
    border-radius: 10px;
}

.confidential-armory h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 36px;
    font-family: Merriweather, sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    background: rgb(179,161,175);
    padding: 10px;
    border-radius: 10px;
}

.confidential-armory h3, .confidential-armory h4, .confidential-armory h5, .confidential-armory h6 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 23px;
    font-family: Merriweather, sans-serif;
    font-weight: 400;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    text-align: left;
    border-left: 4px solid rgb(212,198,210);
}

.confidential-armory ul, .confidential-armory ol {
    list-style-position: inside;
    padding-left: 20px;
    margin: 15px 0;
    font-family: Merriweather, sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    list-style: none;
}

.confidential-armory li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.confidential-armory li::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: rgb(179,161,175);
    border-radius: 50%;
    box-shadow: 0 0 0 2px #ffffff;
}

.confidential-armory section {
    background: rgb(239,234,238);
    padding: 20px;
    border-radius: 10px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .confidential-armory {
        padding: 30px;
        grid-template-columns: 1fr;
    }

    .confidential-armory h1 {
        font-size: calc(23px - 8px);
    }

    .confidential-armory h2 {
        font-size: calc(23px - 6px);
    }

    .confidential-armory h3, .confidential-armory h4, .confidential-armory h5, .confidential-armory h6 {
        font-size: calc(23px - 4px);
    }

    .confidential-armory ul, .confidential-armory ol {
        padding-left: 15px;
        font-size: calc(13px - 2px);
    }

    .confidential-armory section {
        grid-template-columns: 1fr;
    }
}.educational-yield {
    position: relative;
    background: rgb(239,234,238);
    padding: 120px 0;
    overflow: hidden;
}

.educational-yield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgb(212,198,210,0.5) 1px, transparent 1px),
                      radial-gradient(rgb(179,161,175,0.5) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.1;
    transform: rotate(-5deg) scale(1.2);
}

.educational-yield .container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.educational-yield .pedagogy-way {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.educational-yield .img-center-align {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    position: relative;
    height: 700px;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(15deg);
    transition: transform 0.6s ease;
}

.educational-yield .img-center-align:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.educational-yield .img-center-align::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid rgb(212,198,210);
    transform: translateZ(-50px);
    filter: blur(2px);
    opacity: 0.3;
}

.educational-yield .details-box {
    grid-column: 6 / 13;
    grid-row: 1 / 2;
    position: relative;
    padding: 50px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgb(239,234,238) 100%
    );
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.educational-yield .details-box::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(0, 0, 0, 0.5);
    clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
    z-index: -1;
}

.educational-yield .details-box h2 {
    font-size: 29px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.educational-yield .details-box ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    list-style: none;
    padding: 0;
}

.educational-yield .details-box ul li {
    position: relative;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.7;
    padding: 25px;
    background: linear-gradient(
        135deg,
        rgb(212,198,210,0.5) 0%,
        transparent 100%
    );
    border-left: 3px solid rgb(212,198,210);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.educational-yield .details-box ul li:hover {
    background: linear-gradient(
        135deg,
        rgb(179,161,175,0.5) 0%,
        transparent 100%
    );
    border-left-color: rgb(179,161,175);
    transform: translateX(5px);
}

.educational-yield .details-box ul li svg {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    padding: 8px;
    fill: #ffffff;
    background: rgb(212,198,210);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.educational-yield .details-box ul li:hover svg {
    background: rgb(179,161,175);
    transform: rotate(360deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.educational-yield .details-box ul li:nth-child(odd) {
    animation: float 5s infinite ease-in-out;
}

.educational-yield .details-box ul li:nth-child(even) {
    animation: float 5s infinite ease-in-out reverse;
}

@media (max-width: 1200px) {
    .educational-yield .pedagogy-way {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .educational-yield .img-center-align {
        grid-column: auto;
        grid-row: auto;
        height: 500px;
        transform: none;
    }

    .educational-yield .details-box {
        grid-column: auto;
        grid-row: auto;
        padding: 40px;
    }

    .educational-yield .details-box ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .educational-yield {
        padding: 100px 0;
    }

    .educational-yield .details-box {
        padding: 35px;
    }

    .educational-yield .details-box h2 {
        font-size: calc(48px * 0.85);
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .educational-yield {
        padding: 80px 0;
    }

    .educational-yield .container {
        padding: 0 20px;
    }

    .educational-yield .img-center-align {
        height: 400px;
    }

    .educational-yield .details-box {
        padding: 30px;
    }

    .educational-yield .details-box ul {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .educational-yield .details-box ul li {
        padding: 20px;
        font-size: calc(13px * 0.95);
    }
}

@media (max-width: 480px) {
    .educational-yield {
        padding: 60px 0;
    }

    .educational-yield .img-center-align {
        height: 300px;
    }

    .educational-yield .details-box {
        padding: 25px;
        clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    }

    .educational-yield .details-box::before {
        clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
    }

    .educational-yield .details-box h2 {
        font-size: calc(48px * 0.7);
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .educational-yield .details-box ul {
        gap: 25px;
    }

    .educational-yield .details-box ul li {
        padding: 15px;
        font-size: calc(13px * 0.9);
        border-left-width: 2px;
    }

    .educational-yield .details-box ul li svg {
        width: 30px;
        height: 30px;
        padding: 6px;
        top: -10px;
        left: -10px;
    }
}.primary-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: rgb(179,161,175);
}

.primary-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, #000000 0%, transparent 100%),
        radial-gradient(circle at 20% 80%, rgb(212,198,210,0.5) 0%, transparent 40%);
    z-index: 1;
}

.primary-page .pedagogy-way {
    position: relative;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    z-index: 2;
}

.primary-page .learn-entry {
    position: relative;
    grid-column: 1 / 3;
    grid-row: 1;
    width: 100%;
    height: 100%;
}

.primary-page .learn-entry input {
    display: none;
}

.primary-page .skill-expertise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.primary-page .tech-track {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 1.2s ease, transform 1.2s ease;
    z-index: 1;
}

.primary-page .tech-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(1.1);
}

.primary-page .learn-entry input:nth-child(1):checked ~ .skill-expertise .tech-track:nth-child(1),
.primary-page .learn-entry input:nth-child(2):checked ~ .skill-expertise .tech-track:nth-child(2),
.primary-page .learn-entry input:nth-child(3):checked ~ .skill-expertise .tech-track:nth-child(3),
.primary-page .learn-entry input:nth-child(4):checked ~ .skill-expertise .tech-track:nth-child(4),
.primary-page .learn-entry input:nth-child(5):checked ~ .skill-expertise .tech-track:nth-child(5),
.primary-page .learn-entry input:nth-child(6):checked ~ .skill-expertise .tech-track:nth-child(6),
.primary-page .learn-entry input:nth-child(7):checked ~ .skill-expertise .tech-track:nth-child(7),
.primary-page .learn-entry input:nth-child(8):checked ~ .skill-expertise .tech-track:nth-child(8),
.primary-page .learn-entry input:nth-child(9):checked ~ .skill-expertise .tech-track:nth-child(9),
.primary-page .learn-entry input:nth-child(10):checked ~ .skill-expertise .tech-track:nth-child(10) {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.primary-page .course-page {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.primary-page .course-page label {
    display: block;
    width: 35px;
    height: 5px;
    background: #ffffff;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.primary-page .course-page label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgb(212,198,210);
    transition: width 0.5s ease;
}

.primary-page .learn-entry input:nth-child(1):checked ~ .course-page label:nth-child(1)::before,
.primary-page .learn-entry input:nth-child(2):checked ~ .course-page label:nth-child(2)::before,
.primary-page .learn-entry input:nth-child(3):checked ~ .course-page label:nth-child(3)::before,
.primary-page .learn-entry input:nth-child(4):checked ~ .course-page label:nth-child(4)::before,
.primary-page .learn-entry input:nth-child(5):checked ~ .course-page label:nth-child(5)::before,
.primary-page .learn-entry input:nth-child(6):checked ~ .course-page label:nth-child(6)::before,
.primary-page .learn-entry input:nth-child(7):checked ~ .course-page label:nth-child(7)::before,
.primary-page .learn-entry input:nth-child(8):checked ~ .course-page label:nth-child(8)::before,
.primary-page .learn-entry input:nth-child(9):checked ~ .course-page label:nth-child(9)::before,
.primary-page .learn-entry input:nth-child(10):checked ~ .course-page label:nth-child(10)::before {
    width: 100%;
}

.primary-page .learn-entry input:nth-child(1):checked ~ .course-page label:nth-child(1),
.primary-page .learn-entry input:nth-child(2):checked ~ .course-page label:nth-child(2),
.primary-page .learn-entry input:nth-child(3):checked ~ .course-page label:nth-child(3),
.primary-page .learn-entry input:nth-child(4):checked ~ .course-page label:nth-child(4),
.primary-page .learn-entry input:nth-child(5):checked ~ .course-page label:nth-child(5),
.primary-page .learn-entry input:nth-child(6):checked ~ .course-page label:nth-child(6),
.primary-page .learn-entry input:nth-child(7):checked ~ .course-page label:nth-child(7),
.primary-page .learn-entry input:nth-child(8):checked ~ .course-page label:nth-child(8),
.primary-page .learn-entry input:nth-child(9):checked ~ .course-page label:nth-child(9),
.primary-page .learn-entry input:nth-child(10):checked ~ .course-page label:nth-child(10) {
    opacity: 1;
    width: 50px;
}

.primary-page .details-box {
    position: absolute;
    left: 10%;
    bottom: 15%;
    width: 45%;
    z-index: 5;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-left: 4px solid rgb(212,198,210);
}

.primary-page .details-box .container {
    width: 100%;
    padding: 0;
}

.primary-page .details-box h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-page .details-box h3 {
    color: rgb(212,198,210);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.primary-page .details-box p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 0;
}

.primary-page .tech-track::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 60%,
        rgb(179,161,175,0.5) 100%
    );
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.primary-page .details-box h2 {
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.primary-page .details-box h3 {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.primary-page .details-box p {
    animation: fadeInUp 0.6s ease-out 0.9s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.primary-page .details-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgb(212,198,210);
    border-right: 2px solid rgb(212,198,210);
}

.primary-page .details-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid rgb(212,198,210);
    border-left: 2px solid rgb(212,198,210);
}

@media (max-width: 1200px) {
    .primary-page .details-box {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .primary-page .details-box {
        width: 60%;
        left: 5%;
        padding: 30px;
    }
    
    .primary-page .details-box h2 {
        font-size: calc(38px * 0.9);
    }
    
    .primary-page .course-page {
        right: 30px;
    }
    
    .primary-page .course-page label {
        width: 30px;
    }
    
    .primary-page .learn-entry input:checked ~ .course-page label {
        width: 45px;
    }
}

@media (max-width: 768px) {
    .primary-page .pedagogy-way {
        display: block;
    }
    
    .primary-page .details-box {
        width: 80%;
        left: 50%;
        bottom: 10%;
        transform: translateX(-50%);
        padding: 25px;
    }
    
    .primary-page .details-box h2 {
        font-size: calc(38px * 0.8);
    }
    
    .primary-page .details-box h3 {
        font-size: calc(24px * 0.9);
        margin-bottom: 15px;
    }
    
    .primary-page .course-page {
        top: auto;
        right: auto;
        bottom: 25%;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
}

@media (max-width: 576px) {
    .primary-page .details-box {
        width: 90%;
        padding: 20px;
        bottom: 15%;
    }
    
    .primary-page .details-box h2 {
        font-size: calc(38px * 0.7);
        margin-bottom: 10px;
    }
    
    .primary-page .details-box h3 {
        font-size: calc(24px * 0.8);
        margin-bottom: 10px;
    }
    
    .primary-page .details-box p {
        font-size: calc(13px * 0.9);
        line-height: 1.5;
    }
    
    .primary-page .course-page {
        bottom: 30%;
        gap: 8px;
    }
    
    .primary-page .course-page label {
        width: 25px;
        height: 4px;
    }
    
    .primary-page .learn-entry input:checked ~ .course-page label {
        width: 35px;
    }
    
    .primary-page .details-box::before,
    .primary-page .details-box::after {
        width: 15px;
        height: 15px;
    }
}

.primary-page .learn-entry input:checked ~ .skill-expertise .tech-track img {
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}.location-info {
    position: relative;
    background: rgb(239,234,238);
    padding: 100px 0;
    overflow: hidden;
}

.location-info::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgb(212,198,210,0.5);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 0;
}

.location-info::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, rgb(212,198,210) 0%, rgb(179,161,175) 100%);
    z-index: 1;
}

.location-info .container {
    position: relative;
    z-index: 2;
}

.location-info .assist-team {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.location-info .online-form {
    background: #ffffff;
    border-radius: 29px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-info .online-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-info .online-form h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.location-info .online-form h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: rgb(212,198,210);
    border-radius: 10px;
}

.location-info .message-us {
    font-size: calc(14px * 1.2);
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}

.location-info .send-message {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 30px;
}

.location-info .online-form p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.location-info .online-form p span {
    display: inline-block;
    margin-left: 10px;
    color: #000000;
    font-weight: 400;
}

.location-info .message-page {
    margin-top: 30px;
    background: rgb(239,234,238);
    padding: 25px;
    border-radius: 10px;
}

.location-info .message-page h3 {
    font-size: 22px;
    color: rgb(212,198,210);
    margin-bottom: 20px;
    font-weight: 600;
}

.location-info .feedback-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-info .feedback-form span {
    font-size: 14px;
    color: #000000;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-info .online-form .img-center-align {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 29px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-info .get-assist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.location-info .get-assist a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid rgb(179,161,175);
}

.location-info .get-assist a:hover {
    border-left-color: rgb(212,198,210);
    background: rgb(239,234,238);
}

.location-info .get-assist a span {
    font-size: 14px;
    color: rgb(212,198,210);
    margin-bottom: 8px;
    font-weight: 600;
}

.location-info .get-assist a p {
    font-size: 14px;
    color: #000000;
    margin: 0;
    font-weight: 600;
}

.location-info svg {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    fill: rgb(212,198,210);
}

.location-info svg path {
    fill: rgb(212,198,210);
    transition: fill 0.3s ease;
}

.location-info .get-assist a:hover svg,
.location-info .get-assist a:hover svg path {
    fill: rgb(179,161,175);
}

@media screen and (max-width: 1200px) {
    .location-info {
        padding: 80px 0;
    }
    
    .location-info .online-form {
        padding: 30px;
    }
}

@media screen and (max-width: 992px) {
    .location-info .assist-team {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .location-info .online-form:nth-child(1) {
        grid-column: span 2;
    }
    
    .location-info .online-form .img-center-align {
        min-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .location-info {
        padding: 60px 0;
    }
    
    .location-info .assist-team {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-info .online-form:nth-child(1) {
        grid-column: auto;
    }
    
    .location-info .online-form .img-center-align {
        min-height: 250px;
    }
}

@media screen and (max-width: 576px) {
    .location-info {
        padding: 40px 0;
    }
    
    .location-info .online-form {
        padding: 25px;
    }
    
    .location-info .online-form h2 {
        font-size: calc(28px * 0.9);
    }
    
    .location-info .get-assist a {
        padding: 15px;
    }
    
    .location-info .message-page {
        padding: 20px;
    }
    
    .location-info .online-form .img-center-align {
        min-height: 200px;
    }
}header .page-header {
    background: rgb(212,198,210);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgb(179,161,175,0.5);
    transition: all 0.3s ease-in-out;
}
header .nav-master svg, header .nav-master svg path, header .nav-master img {
    fill: #ffffff;
}
header .top-edu a {
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}
header .top-edu a:hover {
    color: rgb(179,161,175);
}
header .top-edu a.active {
    border-bottom: 3px solid rgb(179,161,175);
}
header .top-edu a.active:hover {
    color: #ffffff;
    background: rgb(179,161,175);
}
header .top-lesson {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
header .nav-master {
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .nav-master .nav-primary svg, header .nav-master .nav-primary img {
    height: 60px;
    width: 60px;
}
header .top-edu {
    display: flex;
}
header .top-edu a {
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}
header .top-edu a:hover::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgb(179,161,175);
}
body .wrapper-segment header .main-bar {
    display: flex;
}
@media only screen and (max-width: 1200px) {
    header .top-lesson {
        flex-direction: column;
        align-items: flex-start;
    }
    header .top-edu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 30px;
        width: 100%;
        background: rgb(212,198,210);
    }
    header .top-edu a {
        width: 100%;
        padding: 10px 20px;
    }
}
.wrapper-segment header .top-lesson {
    padding: 10px 20px;
}
.wrapper-segment header .nav-master {
    background: rgb(179,161,175,0.5);
    border-radius: 13px;
    padding: 5px 20px;
}
.wrapper-segment header .top-edu {
    padding-right: 35px;
}
.wrapper-segment header .top-edu a {
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.wrapper-segment header .top-edu a:hover {
    color: rgb(179,161,175);
}
.wrapper-segment header .top-edu a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background-color: rgb(179,161,175);
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
}
.wrapper-segment header .top-edu a:hover::before {
    width: 100%;
}
@media only screen and (max-width: 800px) {
    .wrapper-segment header .top-edu {
        padding: 10px;
        align-items: center;
        border-radius: 10px;
    }
    .wrapper-segment header .top-lesson {
        border-radius: 10px;
        align-items: center;
        padding: 0;
    }
    .wrapper-segment header .nav-master {
        display: flex;
        justify-content: center;
    }
    .wrapper-segment header .top-edu a {
        padding: 10px 0;
        text-align: center;
    }
}.program-information {
    position: relative;
    background-color: rgb(239,234,238);
    padding: 120px 0;
    overflow: hidden;
}

.program-information::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(212,198,210,0.5) 0%, transparent 50%, rgb(179,161,175,0.5) 100%);
    z-index: 1;
}

.program-information::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgb(212,198,210,0.5);
    filter: blur(80px);
    z-index: 0;
    animation: floatAnimation 15s infinite alternate ease-in-out;
}

.program-information .training-track {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.program-information .details-box {
    width: 80%;
    position: relative;
    margin: 0 auto 60px;
}

.program-information .details-box::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(212,198,210), rgb(179,161,175));
    top: -20px;
    left: 0;
    border-radius: 10px;
}

.program-information .details-box h2 {
    font-size: 34px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    transform: translateX(0);
    transition: transform 0.5s ease;
    background-image: repeating-linear-gradient(45deg, rgb(212,198,210,0.5) 0px, rgb(212,198,210,0.5) 2px, transparent 2px, transparent 8px);
    padding: 15px;
    border-radius: 10px;
}

.program-information .details-box h2:hover {
    transform: translateX(10px);
}

.program-information .details-box .knowledge-track {
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgb(212,198,210);
}

.program-information .details-box .knowledge-track:last-child {
    margin-top: 30px;
    padding: 30px 40px;
    border-left: none;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-information .img-center-align {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.program-information .training-track:hover .img-center-align {
    opacity: 0.3;
    transform: scale(1.05);
}

.program-information .img-center-align::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(212,198,210,0.5) 0%, transparent 80%);
    z-index: 1;
}

.program-information .img-center-align::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 40%;
    background: linear-gradient(225deg, rgb(179,161,175,0.5) 0%, transparent 100%);
    z-index: 1;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 20px) scale(1.2);
    }
    50% {
        transform: translate(0, 40px) scale(0.8);
    }
    75% {
        transform: translate(-30px, 20px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes pulseAnimation {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.4;
    }
}

.program-information .training-track::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgb(179,161,175,0.5);
    border-radius: 50%;
    filter: blur(100px);
    bottom: -100px;
    left: -50px;
    z-index: -1;
    animation: pulseAnimation 10s infinite ease-in-out;
}

.program-information .training-track::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid rgb(212,198,210,0.5);
    border-radius: 10px;
    top: 40px;
    right: -20px;
    z-index: -1;
    animation: rotateAnimation 20s infinite linear;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.program-information .details-box::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed rgb(212,198,210,0.5);
    top: -40px;
    right: -60px;
    z-index: -1;
    animation: rotateAnimation 30s infinite linear reverse;
}

.program-information .details-box .knowledge-track:first-of-type {
    position: relative;
    overflow: hidden;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgb(239,234,238) 10px,
        rgb(239,234,238) 12px
    );
    padding: 20px;
    border-radius: 10px;
    border-left: none;
}

.program-information .details-box .knowledge-track:first-of-type::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgb(212,198,210), transparent);
}

.program-information .details-box .knowledge-track:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 17px;
    z-index: -1;
    background: url('$variable_for_links$<?php echo $arData["img"];?>') no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) contrast(1.2);
}

@media (max-width: 1024px) {
    .program-information {
        padding: 80px 0;
    }
    
    .program-information .details-box {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .program-information {
        padding: 60px 0;
    }
    
    .program-information .details-box {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .program-information .details-box h2 {
        font-size: calc(34px * 0.9);
        margin-bottom: 20px;
    }
    
    .program-information .details-box .knowledge-track:last-child {
        padding: 25px 30px;
    }
}

@media (max-width: 576px) {
    .program-information {
        padding: 40px 0;
    }
    
    .program-information .details-box h2 {
        font-size: calc(34px * 0.8);
    }
    
    .program-information .details-box .knowledge-track {
        font-size: calc(17px * 0.95);
    }
    
    .program-information .details-box .knowledge-track:last-child {
        padding: 20px;
    }
    
    .program-information::after,
    .program-information .training-track::before,
    .program-information .details-box::after {
        display: none;
    }
    
    .program-information .details-box::before {
        width: 60px;
    }
}

.program-information .training-track .details-box .knowledge-track strong {
    color: rgb(179,161,175);
    font-weight: 600;
}

.program-information .container::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(212,198,210,0.5), transparent);
    bottom: -40px;
    left: -25%;
}

.program-information .details-box h2::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(212,198,210,0.5);
    top: -15px;
    left: -15px;
    z-index: -1;
    filter: blur(15px);
}.take-a-spin {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(239,234,238) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-top: 6px solid rgb(212,198,210);
    border-bottom: 6px solid rgb(212,198,210);
    position: relative;
    overflow: hidden;
}

.take-a-spin::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.1), transparent);
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.take-a-spin .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.take-a-spin .pedagogy-way {
    padding: 40px;
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform, box-shadow;
}

.take-a-spin .pedagogy-way::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 0;
    opacity: 0.2;
    transform: rotate(-15deg);
    transition: opacity 0.4s ease-in-out;
}

.take-a-spin .pedagogy-way:hover::before {
    opacity: 0.3;
}

.take-a-spin .pedagogy-way svg, .take-a-spin .pedagogy-way svg path {
    fill: rgb(212,198,210);
    width: 80px;
    height: 80px;
    transition: fill 0.4s ease-in-out;
    flex-shrink: 0;
}

.take-a-spin .pedagogy-way:hover svg, .take-a-spin .pedagogy-way:hover svg path {
    fill: rgb(179,161,175);
}

.take-a-spin .pedagogy-way h2 {
    font-size: 37px;
    margin: 0 20px;
    font-weight: 600;
    color: rgb(212,198,210);
    position: relative;
    z-index: 1;
    text-align: center;
    transition: color 0.4s ease-in-out;
}

.take-a-spin .pedagogy-way h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60%;
    height: 3px;
    background: rgb(212,198,210);
    transition: width 0.4s ease-in-out;
    transform: translateX(-50%);
}

.take-a-spin .pedagogy-way:hover h2::after {
    width: 100%;
}

.take-a-spin .pedagogy-way .query-links {
    padding: 15px 30px;
    background: rgb(212,198,210);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
    z-index: 1;
    will-change: transform, background;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.take-a-spin .pedagogy-way .query-links::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    transition: transform 0.4s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.take-a-spin .pedagogy-way .query-links:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.take-a-spin .pedagogy-way .query-links:hover {
    background: rgb(179,161,175);
    transform: translateY(-2px);
    text-decoration: underline;
}

.take-a-spin .pedagogy-way .query-links:focus {
    outline: 3px solid rgb(212,198,210);
    outline-offset: 4px;
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
    .take-a-spin {
        padding: 70px 0;
    }
    .take-a-spin .pedagogy-way {
        flex-direction: row;
        padding: 30px;
    }
    .take-a-spin .pedagogy-way h2 {
        font-size: 37px;
        margin: 0 15px;
    }
    .take-a-spin .pedagogy-way .query-links {
        padding: 12px 24px;
        font-size: calc(16px * 0.7);
        white-space: nowrap;
    }
    .take-a-spin .pedagogy-way svg, .take-a-spin .pedagogy-way svg path {
        width: 120px;
        height: 120px;
    }
}

@media only screen and (max-width: 600px) {
    .take-a-spin {
        padding: 60px 0;
    }
    .take-a-spin .pedagogy-way {
        flex-direction: column; 
        padding: 20px;
    }
    .take-a-spin .pedagogy-way h2 {
        font-size: 37px;
        margin: 0 10px;
    }
    .take-a-spin .pedagogy-way .query-links {
        padding: 10px 20px;
        font-size: calc(16px * 0.8);
        width: 100%;
        text-align: center;
        white-space: normal;
    }
    .take-a-spin .pedagogy-way svg, .take-a-spin .pedagogy-way svg path {
        width: 120px;
        height: 120px;
    }
}
.connect-form {
    position: relative;
    background: linear-gradient(
        135deg, 
        rgb(179,161,175,0.5) 0%, 
        rgb(212,198,210,0.5) 100%
    );
    padding: 6rem 0;
    overflow: hidden;
    isolation: isolate;
}

.connect-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center, 
        rgba(255,255,255,0.05) 0%, 
        transparent 70%
    );
    animation: subtle-pulse 12s infinite alternate;
    z-index: 1;
}

.connect-form::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at center, 
        rgba(255,255,255,0.03) 0%, 
        transparent 60%
    );
    animation: subtle-wave 15s infinite alternate-reverse;
    z-index: 1;
}

.connect-form .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.connect-form h2 {
    color: #ffffff;
    font-size: 41px;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
}

.connect-form h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(
        to right, 
        transparent, 
        rgb(212,198,210), 
        transparent
    );
}

.connect-form .request-panel {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.05);
    border-radius: 26px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.connect-form .img-center-align {
    flex: 0 0 40%;
    position: relative;
    min-height: 500px;
}

.connect-form .img-center-align::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgb(179,161,175,0.5) 0%, 
        rgb(212,198,210,0.5) 100%
    );
    opacity: 0.6;
    mix-blend-mode: color-dodge;
}

.connect-form .inquiry-box {
    flex: 0 0 60%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.connect-form .inquiry-box form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.connect-form .inquiry-box h3 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.connect-form .inquiry-box input:not([type="checkbox"]):not([type="submit"]) {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 17px;
    transition: all 0.3s ease;
    outline: none;
}

.connect-form .inquiry-box input:not([type="checkbox"]):not([type="submit"]):focus {
    border-color: rgb(212,198,210);
    box-shadow: 0 0 15px rgba(rgb(212,198,210), 0.3);
}

.connect-form .inquiry-box .reach-request {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.connect-form .inquiry-box .reach-request input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    margin-right: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-form .inquiry-box .reach-request input[type="checkbox"]:checked {
    background: rgb(212,198,210);
    border-color: rgb(212,198,210);
}

.connect-form .inquiry-box .reach-request input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.8rem;
}

.connect-form .inquiry-box .reach-request label {
    color: #ffffff;
    font-size: 17px;
    display: flex;
    align-items: center;
}

.connect-form .inquiry-box .reach-request a {
    color: rgb(212,198,210);
    text-decoration: none;
    margin-left: 0.3rem;
    transition: color 0.3s ease;
}

.connect-form .inquiry-box .reach-request a:hover {
    text-decoration: underline;
}

.connect-form .inquiry-box .query-links {
    width: 100%;
    padding: 1rem;
    background: rgb(212,198,210);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-form .inquiry-box .query-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    transition: all 0.3s ease;
}

.connect-form .inquiry-box .query-links:hover::before {
    left: 100%;
}

.connect-form .inquiry-box .query-links:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@keyframes subtle-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes subtle-wave {
    0% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        transform: rotate(5deg) scale(1.02);
    }
}

@media screen and (max-width: 1024px) {
    .connect-form .request-panel {
        flex-direction: column;
    }
    
    .connect-form .img-center-align {
        flex: 0 0 100%;
        min-height: 300px;
    }
    
    .connect-form .inquiry-box {
        flex: 0 0 100%;
        padding: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .connect-form {
        padding: 3rem 0;
    }
    
    .connect-form h2 {
        font-size: calc(41px * 0.8);
        margin-bottom: 2rem;
    }
    
    .connect-form .inquiry-box h3 {
        font-size: calc(36px * 0.9);
    }
    
    .connect-form .inquiry-box input:not([type="checkbox"]):not([type="submit"]) {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .connect-form .inquiry-box .reach-request {
        align-items: flex-start;
    }
    
    .connect-form .inquiry-box .reach-request input[type="checkbox"] {
        margin-top: 0.2rem;
    }
}

@media screen and (max-width: 480px) {
    .connect-form .request-panel {
        border-radius: 0;
    }
    
    .connect-form .img-center-align {
        min-height: 250px;
    }
    
    .connect-form .inquiry-box {
        padding: 2rem 1.5rem;
    }
}