.exp-site-navbar {
    flex: 1 0 auto;
}

.container {
    max-width: 100%;
    margin: auto;
    width: 1152px;
}

.exp-content-wrapper {
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    display: flex;
}

.exp-interested-learners::after {
    position: absolute;
    opacity: 0.1;
    background: 
        repeating-linear-gradient(
            45deg,
            rgb(169,202,178,0.5) 0,
            rgb(169,202,178,0.5) 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(
            -45deg,
            rgb(124,171,138,0.5) 0,
            rgb(124,171,138,0.5) 1px,
            transparent 1px,
            transparent 20px
        );
    content: "";
    height: 100%;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 0;
}

.exp-interested-learners div {
    padding: 40px;
    background: #ffffff;
}

.exp-interested-learners div p:last-child {
    margin-bottom: 0;
}

.exp-interested-learners div p:hover {
    transform: translateX(5px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.exp-interested-learners div p:hover::before {
    width: 8px;
}

.exp-interested-learners div p svg {
    width: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    margin-right: 18px;
    min-width: 28px;
    height: 28px;
}

.exp-developer-experience .exp-rating-zone {
    display: flex;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
    justify-content: center;
    margin: 0 auto;
    max-width: 1000px;
    align-items: center;
}

.exp-developer-experience .exp-image-box-item:hover {
    box-shadow: 30px 30px 40px -10px rgba(0, 0, 0, 0.5);
    transform: 
        translateZ(80px) 
        rotateY(5deg) 
        rotateX(0deg);
    filter: brightness(1.1);
}

.exp-developer-experience .exp-job-tasks:hover {
    transform: 
        translateZ(40px) 
        rotateY(-5deg) 
        rotateX(0deg);
    box-shadow: 25px 25px 40px -5px rgba(0, 0, 0, 0.5);
}

.exp-developer-experience .name {
    font-size: 30px;
    margin-bottom: 0.7rem;
    opacity: 0;
    z-index: 2;
    transform: translateY(30px);
    color: rgb(169,202,178);
    font-weight: 700;
    position: relative;
    animation: slide-up 0.7s forwards 0.2s;
}



.exp-developer-experience .exp-rating-zone:hover .exp-image-box-item {
    animation: floating 6s ease-in-out infinite;
}

.exp-cost-plan .exp-discount-tier {
    flex-direction: column;
    display: flex;
}

.exp-cost-plan .exp-study-costs h2::after {
    background: linear-gradient(90deg, rgb(124,171,138), rgb(169,202,178));
    content: "";
    left: 0;
    border-radius: 2px;
    height: 4px;
    bottom: -10px;
    position: absolute;
    width: 80px;
}

.exp-cost-plan .exp-cost-fee:nth-child(2) {
    --i: 2;
}

.exp-cost-plan .exp-plan-fee {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15), 
              0 5px 15px -10px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.exp-cost-plan .exp-fee-plans {
    display: block;
    color: rgb(124,171,138);
    position: relative;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: calc(22px + 4px);
    margin: 20px 0;
}

.exp-cost-plan .exp-image-box-item::after {
    width: 100%;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: opacity 0.4s ease;
    z-index: 1;
    top: 0;
    opacity: 0.6;
    left: 0;
    height: 100%;
    position: absolute;
}

.exp-program-details .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 3;
    padding: 0 20px;
    position: relative;
}

.exp-program-details .exp-image-box-item::before {
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
    width: 100%;
    content: "";
}

.exp-program-details .exp-content-box::before {
    background: linear-gradient(to bottom, rgb(169,202,178), rgb(124,171,138));
    top: 0;
    content: "";
    height: 100%;
    left: 0;
    width: 4px;
    position: absolute;
}

.exp-program-details span.description {
    display: none;
}

.exp-contact .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}

.exp-contact h2::before {
    position: absolute;
    bottom: -15px;
    width: 60px;
    left: 50%;
    border-radius: 2px;
    transform: translateX(-50%);
    background: rgb(169,202,178);
    content: "";
    height: 4px;
}

.exp-contact .exp-inquiry-grid:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.exp-contact form input[type="text"] {
    border: none;
    width: 100%;
    color: #000000;
    padding: 16px 20px;
    font-family: Arial, sans-serif;
    background: rgb(212,229,215);
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.exp-contact .exp-feedback-message input[type="checkbox"]:checked + label::after {
    top: 6px;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    left: 8px;
    content: "";
    width: 6px;
    position: absolute;
    border-right: 2px solid #ffffff;
    height: 10px;
}

.exp-contact form .exp-request-map span {
    z-index: 1;
    position: relative;
}

.exp-contact svg path {
    transition: fill 0.3s ease;
    fill: rgb(169,202,178);
}



.exp-sign-up .exp-pro-program {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.exp-sign-up h3 {
    margin-bottom: 0;
    transform: translateX(-5%);
    position: relative;
    border-radius: 10px 10px 0 0;
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    font-size: 19px;
    color: #000000;
    font-weight: 700;
    z-index: 3;
    background: #ffffff;
}

.exp-sign-up input[type="submit"] {
    flex: 0 0 auto;
    background: rgb(169,202,178);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    cursor: pointer;
    overflow: hidden;
    font-size: 15px;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    z-index: 1;
    position: relative;
    border: none;
}

.exp-contacts {
    padding: 90px 0;
    position: relative;
    background: rgb(212,229,215);
    overflow: hidden;
}

.exp-contacts::before {
    z-index: 0;
    background: rgb(169,202,178,0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 25% 0, 35% 100%, 0% 100%);
}

.exp-contacts h2 {
    padding: 40px;
    font-size: 32px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 60px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
    background: rgb(169,202,178);
}

.exp-contacts .exp-contact-form:nth-child(2) {
    z-index: 2;
    margin-left: -5%;
    width: 105%;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.exp-contacts .exp-contact-form:hover::before {
    transform: translateX(0);
}

.exp-contacts .exp-contact-form:hover svg {
    transform: scale(1.3);
}

.exp-contacts .exp-contact-form:hover svg path {
    fill: #ffffff;
}

.exp-contacts p svg path {
    fill: rgb(169,202,178);
}

.exp-contacts .exp-contact-form:hover::after {
    animation: shimmer 1.5s infinite;
    opacity: 1;
}

header:after {
    width: 100%;
    left: 0;
    filter: blur(1px);
    height: 3px;
    background: linear-gradient(
        90deg,
        rgb(124,171,138) 0%,
        rgb(169,202,178) 50%,
        rgb(124,171,138) 100%
    );
    position: absolute;
    opacity: 0.8;
    bottom: 0;
    content: '';
}

header .exp-site-head {
    align-items: center;
    justify-content: space-between;
    display: flex;
    position: relative;
}

header .exp-main-primary:before {
    position: absolute;
    content: '';
    width: 100%;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    left: 0;
    height: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(-50%) scaleX(0.8);
    top: 50%;
}

header .exp-head-expert:hover {
    text-shadow: 0 0 5px #ffffff;
    color: #ffffff;
}

header .exp-head-expert:hover:after {
    transform: scaleY(1);
    opacity: 0.15;
}

header .exp-header-learn:hover:before {
    opacity: 0.15;
    animation: pulse 2s infinite;
}

header .exp-header-learn:hover:after {
    opacity: 0.7;
}

header .exp-header-learn svg {
    width: auto;
    height: 45px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 3px rgb(169,202,178,0.5));
}

header .top_plank .exp-top-area div svg, header .top_plank .exp-top-area div svg path {
    fill: #ffffff;
}

.exp-privacy-hedge {
    background-position: right bottom;
    background-size: 200% 100%;
    border: 2px solid rgb(169,202,178);
    background-color: #ffffff;
    background-image: linear-gradient(to right, rgb(169,202,178,0.5) 50%, rgb(124,171,138,0.5) 50%);
    height: auto;
    padding: 50px;
    width: 100%;
    box-shadow: inset 0 0 10px rgb(124,171,138,0.5), 0 0 20px rgba(0, 0, 0, 0.5);
}

.exp-privacy-hedge li::before {
    position: absolute;
    height: 10px;
    left: 0;
    width: 10px;
    border-radius: 50%;
    content: "";
    top: 5px;
    background-color: rgb(169,202,178);
}

.exp-give-it-a-try::before {
    z-index: 1;
    top: 0;
    height: 100%;
    content: "";
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    width: 100%;
    left: 0;
    position: absolute;
}

.exp-give-it-a-try h6 {
    text-align: center;
    transform: translateY(-10px);
    color: #ffffff;
    opacity: 0;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.015em;
    animation: slideUpFade 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    max-width: 800px;
    font-weight: 700;
    font-size: calc(21px * 1.25);
}

.exp-give-it-a-try .exp-request-map span {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    z-index: 1;
    position: relative;
}

.exp-our-mission::before {
    backdrop-filter: blur(3px);
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(169,202,178,0.5), rgba(20, 30, 60, 0.85), rgba(40, 50, 80, 0.82));
    left: 0;
    z-index: 1;
    content: "";
}

.exp-our-mission h2::after {
    height: 1px;
    content: "";
    left: 0;
    animation: expandWiderLine 2s forwards ease-out;
    background: rgb(255, 255, 255, 0.5);
    width: 80%;
    transform-origin: left;
    position: absolute;
    bottom: -10px;
}

.exp-our-mission .exp-content-box > div {
    position: relative;
}

.exp-our-mission .exp-content-box p {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: calc(22px * 1.1);
    font-weight: 600;
    display: inline-block;
    position: relative;
    transform: translateZ(0);
}

footer {
    z-index: 1;
    position: relative;
}

footer::before {
    top: 0;
    bottom: 0;
    opacity: 0.9;
    background: linear-gradient(145deg, rgb(212,229,215) 0%, rgb(169,202,178,0.5) 100%);
    content: "";
    left: 0;
    z-index: -2;
    right: 0;
    position: absolute;
}

.exp-program-foot .company_holder h3 {
    font-weight: 700;
    color: rgb(169,202,178);
    font-size: 35px;
    letter-spacing: 0.5px;
    margin: 0 0 1.5rem;
    position: relative;
}

.exp-program-foot .exp-access-help {
    border-left: 3px solid rgb(124,171,138);
    color: #000000;
    font-size: 12px;
    border-radius: 10px;
    background: rgb(212,229,215);
    padding: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.exp-program-foot .exp-main-primary .exp-head-know a {
    text-decoration: none;
    display: flex;
    transition: all 0.3s ease;
    position: relative;
    align-items: center;
    font-size: 12px;
    padding: 0.8rem 1.5rem;
    color: #000000;
}

.exp-program-foot .exp-main-primary .exp-head-know a:hover::after {
    opacity: 1;
}

.exp-biz-learnings .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-thxContent {
    isolation: isolate;
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgb(169,202,178,0.5), rgb(124,171,138), rgb(169,202,178));
    overflow: hidden;
}

.exp-thxContent .exp-pro-program {
    padding: 3.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    transform-origin: center bottom;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: perspective(1000px) rotateX(2deg);
}

.exp-thxContent a {
    position: relative;
    transition: all 0.3s ease;
    color: inherit;
    display: block;
    text-decoration: none;
}

.exp-thxContent a::before {
    background: rgb(169,202,178,0.5);
    right: 0;
    bottom: -10px;
    transform: scaleX(0);
    content: "";
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 2px;
    width: 30%;
    transform-origin: right center;
    position: absolute;
}

.exp-title-section .exp-main-intro {
    position: relative;
    flex-direction: column;
    max-width: 1200px;
    z-index: 2;
    transform: perspective(1000px) rotateX(2deg);
    display: flex;
    width: 90%;
    transform-origin: center center;
}

.exp-title-section .exp-main-intro > div:first-child p {
    margin: 0;
    max-width: 650px;
    font-weight: 600;
    font-size: calc(18px * 1.2);
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.exp-title-section .exp-class-experts > div::before {
    content: "";
    z-index: 1;
    width: 100%;
    top: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    height: 100%;
    left: 0;
    position: absolute;
}

.exp-title-section .exp-class-experts > div > div > div::after {
    right: 10px;
    animation: cornerGrow 1s ease 1.5s forwards;
    border-left: none;
    border-top: none;
    bottom: 10px;
}

.exp-title-section .title_style_header::after {
    left: 50%;
    width: 100px;
    position: absolute;
    border-radius: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    content: "";
    height: 4px;
    opacity: 0.8;
    bottom: -15px;
}

.exp-cookie-view {
    justify-content: space-between;
    display: flex;
    padding: 20px 5%;
    align-items: center;
    gap: 20px;
}

.exp-manage-cookies {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin-right: 15px;
    align-items: center;
    filter: drop-shadow(0 0 10px rgb(169,202,178));
}

.cookie_button.exp-data-control {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(124,171,138);
    color: #ffffff;
}

.exp-cookie-overlay-window p a:hover {
    color: rgb(124,171,138);
}


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media (max-width: 767px) {.exp-interested-learners {
    padding: 60px 0;
}.exp-interested-learners h4 {
    padding: 25px 20px;
    font-size: calc(29px - 4px);
}.exp-interested-learners div {
    padding: 25px 20px;
}.exp-interested-learners div p {
    padding: 12px 15px;
    margin-bottom: 12px;
}.exp-interested-learners div p svg {
    min-width: 20px;
    height: 20px;
    width: 20px;
    margin-right: 12px;
}
}



@media (max-width: 1199px) {.exp-cost-plan {
    padding: 80px 0;
}.exp-cost-plan .exp-study-costs {
    text-align: center;
    margin: 0 auto 50px;
    max-width: 800px;
}.exp-cost-plan .exp-study-costs h2::after {
    transform: translateX(-50%);
    left: 50%;
}
}



@media (hover: none) {.exp-cost-plan .exp-cost-fee:hover .exp-plan-fee {
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15),
                0 5px 15px -10px rgba(0, 0, 0, 0.05);
    transform: none;
}.exp-cost-plan .exp-cost-fee:hover .exp-qtr-cost h3 {
    transform: none;
}.exp-cost-plan .exp-cost-fee:hover .exp-fee-plans {
    transform: none;
}.exp-cost-plan .exp-cost-fee:hover .exp-image-box-item {
    transform: none;
}}



@media screen and (max-width: 1100px) {.exp-contact .exp-support-panel {
    grid-template-columns: 1fr 400px;
    gap: 30px;
}.exp-contact .exp-image-box-item {
    height: 500px;
}.exp-contact .exp-inquiry-grid {
    padding: 40px;
}
}



@media screen and (max-width: 576px) {.exp-contact {
    padding: 50px 0;
}.exp-contact h2 {
    font-size: calc(36px * 0.85);
}.exp-contact .exp-image-box-item {
    height: 250px;
}.exp-contact .exp-inquiry-grid {
    padding: 30px 25px;
}.exp-contact form h3 {
    font-size: calc(22px * 0.9);
}.exp-contact form .exp-request-map {
    width: 100%;
}}



@media (max-width: 767px) {.exp-contacts {
    padding: 50px 0;
}.exp-contacts h2 {
    font-size: calc(32px * 0.85);
    padding-bottom: 45px;
    padding: 25px;
}.exp-contacts p {
    font-size: calc(12px * 0.95);
    padding: 25px;
}.exp-contacts p:nth-last-child(2) {
    padding: 20px 25px;
}.exp-contacts .exp-connect-block {
    grid-template-columns: 1fr;
}.exp-contacts .exp-contact-form {
    height: 70px;
    clip-path: none !important;
    margin-left: 0 !important;
    width: 100% !important;
}.exp-contacts .exp-contact-form svg {
    height: 24px;
    width: 24px;
}.exp-contacts p svg {
    width: 20px;
    margin-right: 10px;
    height: 20px;
}}



@media (max-width: 768px) {.exp-give-it-a-try {
    padding: 4rem 0;
}.exp-give-it-a-try .container {
    padding: 0 1.5rem;
}.exp-give-it-a-try h6 {
    font-size: calc(21px * 0.95);
    max-width: 100%;
    margin-bottom: 2rem;
}.exp-give-it-a-try .exp-request-map {
    padding: 0.9rem 2rem;
}
}



@media (hover: none) {.exp-give-it-a-try div > span {
    transform: none !important;
}.exp-give-it-a-try .exp-request-map:hover {
    transform: none;
}.exp-give-it-a-try .exp-request-map:hover span {
    transform: none;
}}



@media (max-width: 767px) {.exp-our-mission {
    padding: 90px 0 60px;
}.exp-our-mission .container {
    padding: 0 15px;
}.exp-our-mission h2 {
    font-size: calc(38px * 0.9);
    margin-bottom: 30px;
}.exp-our-mission .exp-content-box {
    padding: 25px 20px;
    transform: perspective(800px) rotateY(-1deg);
}.exp-our-mission .exp-content-box p {
    font-size: 22px;
}.exp-our-mission .exp-content-box div div {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
}
}



@media (max-width: 576px) {.exp-program-foot {
    padding: 2.5rem 0 1rem;
}.exp-program-foot .container {
    gap: 1.5rem;
}.exp-program-foot .exp-main-primary {
    min-width: 100%;
    flex: 1 1 100%;
}.exp-program-foot .exp-head-know {
    gap: 1rem;
}.exp-program-foot .company_holder {
    padding: 1.5rem;
}.exp-program-foot .exp-access-help {
    padding: 1.2rem;
}.exp-biz-learnings {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
}
}



@media screen and (max-width: 576px) {.exp-thxContent {
    padding: 3rem 1rem;
}.exp-thxContent .exp-pro-program {
    padding: 1.75rem;
}.exp-thxContent .exp-pro-program::before {
    height: 3px;
}.exp-thxContent h5 {
    font-size: calc(19px * 0.8);
}.exp-thxContent p {
    line-height: 1.7;
    font-size: calc(14px * 0.9);
}.exp-thxContent .exp-pro-program > div:first-child {
    margin-bottom: 1.5rem;
}}


@media only screen and (max-width: 1200px) {.exp-cookie-overlay-window {
    padding: 15px 0;
}.exp-cookie-view {
    padding: 15px 5%;
}
}


@media only screen and (max-width: 800px) {.exp-manage-cookies {
    display: none;
}.exp-cookie-view {
    text-align: center;
    align-items: center;
    flex-direction: column;
}.exp-cookie-overlay-window h5 {
    font-size: 18px;
    margin-bottom: 5px;
}.exp-user-alert {
    margin-bottom: 15px;
}.exp-visitor-acceptance {
    margin: 10px 0;
    min-width: 100%;
}
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}



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



@keyframes glow {
    0%, 100% {
        opacity: 0.15;
        transform: rotate(-15deg) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: rotate(-15deg) scale(1.05);
    }
}



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



@keyframes cornerGrow {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }
  to {
    width: 20px;
    height: 20px;
    opacity: 0.7;
  }
}

