* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}html,body {
    min-height: 100%;
    color: #000000;
    height: 100%;
    font-family: Arial, sans-serif;
}.outer-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}a {
    text-decoration: none;
    color: inherit;
}.intern_opp {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}header,footer {
    width: 100%;
}.container {
    margin: auto;
    width: 1219px;
    max-width: 100%;
}.main_header {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.our_story {
    color: #ffffff;
    background: linear-gradient(135deg, rgb(165,187,213) 0%, #000000 100%);
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}.our_story::before {
    width: 200%;
    z-index: 1;
    content: "";
    position: absolute;
    animation: rotate-slow 120s linear infinite;
    left: -50%;
    background: repeating-conic-gradient(
        #000000 0deg 10deg,
        rgba(0, 0, 0, 0.5) 10deg 15deg
    );
    height: 200%;
    top: -50%;
    opacity: 0.1;
}.our_story::after {
    z-index: 2;
    top: 0;
    width: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 70%);
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
}@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.our_story .container {
    z-index: 5;
    position: relative;
}.our_story h2 {
    text-align: center;
    letter-spacing: 5px;
    font-size: 45px;
    font-weight: 700;
    position: relative;
    margin-bottom: 80px;
    color: rgb(165,187,213);
    text-transform: uppercase;
}.our_story h2::before {
    height: 1px;
    left: 50%;
    background-color: rgb(165,187,213);
    position: absolute;
    content: "";
    bottom: -20px;
    width: 100px;
    transform: translateX(-50%);
}.our_story .impact_facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    position: relative;
}.our_story .edu_beliefs {
    overflow: hidden;
    flex: 0 0 50%;
    perspective: 1000px;
    position: relative;
    padding: 20px;
}.our_story .edu_beliefs:first-child {
    animation: card-in-left 1s ease-out forwards;
    transform-origin: right center;
}.our_story .edu_beliefs:last-child {
    animation: card-in-right 1s ease-out forwards;
    transform-origin: left center;
}@keyframes card-in-left {
    0% {
        transform: translateX(-100%) rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
}

@keyframes card-in-right {
    0% {
        transform: translateX(100%) rotateY(-90deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
}

.our_story .edu_beliefs h3 {
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    font-size: 22px;
}.our_story .edu_beliefs p {
    color: #ffffff;
    padding: 0 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 0;
    position: relative;
    font-size: 12px;
    opacity: 1;
    line-height: 1.8;
}.our_story .edu_beliefs::before {
    z-index: -1;
    top: 0;
    transition: transform 0.5s ease;
    position: absolute;
    height: 100%;
    left: 0;
    content: "";
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    transform: skewY(0deg);
}.our_story .edu_beliefs:hover::before {
    transform: skewY(-2deg);
}.our_story .edu_beliefs::after {
    content: "";
    width: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgb(165,187,213,0.5) 0%, transparent 100%);
    left: 0;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    top: 0;
    transition: opacity 0.5s ease;
}.our_story .edu_beliefs:hover::after {
    opacity: 0.2;
}.our_story .edu_beliefs h3::before {
    width: 30px;
    height: 1px;
    position: absolute;
    transform: translateX(-50%);
    bottom: -10px;
    content: "";
    background-color: rgb(118,154,188);
    left: 50%;
}.our_story .edu_beliefs:first-child::before {
    border-right: 1px solid rgb(165,187,213,0.5);
}.our_story .edu_beliefs:last-child::before {
    border-left: 1px solid rgb(118,154,188,0.5);
}.our_story .impact_facts::before {
    transform: translate(-50%, -50%);
    height: 40px;
    animation: pulse-circle 2s infinite;
    content: "";
    top: 50%;
    border-radius: 50%;
    width: 40px;
    position: absolute;
    box-shadow: 0 0 20px rgb(165,187,213,0.5);
    left: 50%;
    background-color: rgb(165,187,213);
    z-index: 10;
}.our_story .impact_facts::after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    background-color: rgb(118,154,188);
    top: 50%;
    position: absolute;
    z-index: 11;
}@keyframes pulse-circle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.our_story .container::before {
    border: 1px solid rgb(165,187,213,0.5);
    top: -100px;
    opacity: 0.2;
    height: 200px;
    width: 200px;
    content: "";
    transform: rotate(45deg);
    border-radius: 20px;
    position: absolute;
    animation: float-element 10s ease-in-out infinite;
    left: -100px;
}.our_story .container::after {
    border: 1px solid rgb(118,154,188,0.5);
    width: 200px;
    height: 200px;
    right: -100px;
    position: absolute;
    animation: float-element 10s ease-in-out infinite reverse;
    opacity: 0.2;
    border-radius: 20px;
    content: "";
    bottom: -100px;
    transform: rotate(45deg);
}

@keyframes float-element {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(60deg) translate(20px, 20px);
    }
}

@media screen and (max-width: 992px) {.our_story {
    padding: 100px 0;
}.our_story .edu_beliefs {
    padding: 40px 0;
    flex: 0 0 100%;
}.our_story .edu_beliefs:first-child {
    animation: card-in-top 1s ease-out forwards;
}.our_story .edu_beliefs:last-child {
    animation: card-in-bottom 1s ease-out forwards;
}@keyframes card-in-top {
        0% {
            transform: translateY(-100%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes card-in-bottom {
        0% {
            transform: translateY(100%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .our_story .impact_facts::before,
    .our_story .impact_facts::after {
    display: none;
}.our_story .edu_beliefs:first-child::before {
    border-right: none;
    border-bottom: 1px solid rgb(165,187,213,0.5);
}.our_story .edu_beliefs:last-child::before {
    border-left: none;
    border-top: 1px solid rgb(118,154,188,0.5);
}
}

@media screen and (max-width: 768px) {.our_story {
    padding: 80px 0;
}.our_story h2 {
    letter-spacing: 3px;
    margin-bottom: 60px;
    font-size: calc(45px * 0.8);
}.our_story .edu_beliefs h3 {
    font-size: calc(22px * 0.9);
    letter-spacing: 1px;
}.our_story .edu_beliefs p {
    padding: 0 30px;
}.our_story .container::before,
    .our_story .container::after {
    width: 150px;
    height: 150px;
}
}

@media screen and (max-width: 576px) {.our_story {
    padding: 60px 0;
}.our_story h2 {
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-size: calc(45px * 0.7);
}.our_story h2::before {
    bottom: -15px;
    width: 80px;
}.our_story .edu_beliefs {
    padding: 30px 0;
}.our_story .edu_beliefs h3 {
    margin-bottom: 15px;
    font-size: calc(22px * 0.85);
}.our_story .edu_beliefs h3::before {
    width: 25px;
    bottom: -8px;
}.our_story .edu_beliefs p {
    line-height: 1.6;
    padding: 0 20px;
    font-size: calc(12px * 0.9);
}.our_story .container::before,
    .our_story .container::after {
    height: 100px;
    width: 100px;
}}.service_plan {
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
    background: rgb(210,219,235);
}.service_plan::before {
    filter: blur(60px);
    right: -50px;
    width: 300px;
    z-index: 0;
    top: -50px;
    background: linear-gradient(135deg, rgb(118,154,188,0.5), rgb(165,187,213,0.5));
    height: 300px;
    border-radius: 50%;
    position: absolute;
    content: "";
}.service_plan::after {
    height: 250px;
    width: 250px;
    background: linear-gradient(225deg, rgb(165,187,213,0.5), rgb(118,154,188,0.5));
    z-index: 0;
    filter: blur(50px);
    content: "";
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    position: absolute;
}.service_plan .container {
    z-index: 1;
    position: relative;
}.service_plan .pricing_levels {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
}.service_plan .rate_list {
    padding: 0 1rem;
    max-width: 800px;
    position: relative;
    text-align: center;
    margin: 0 auto;
}.service_plan .rate_list h2 {
    font-size: calc(29px * 1.1);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
    display: inline-block;
    color: #000000;
}.service_plan .rate_list h2::after {
    background: linear-gradient(90deg, rgb(165,187,213), rgb(118,154,188));
    height: 3px;
    transform: translateX(-50%);
    left: 50%;
    width: 80px;
    bottom: -10px;
    position: absolute;
    content: "";
}.service_plan .tuition_plans {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 1rem;
    color: #000000;
}.service_plan .learning_fees {
    gap: 2rem;
    perspective: 1000px;
    grid-template-columns: 1fr;
    display: grid;
}.service_plan .learn_pricing {
    text-decoration: none;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
    position: relative;
}.service_plan .learn_pricing:hover {
    transform: translateY(-10px);
}.service_plan .annual_fee {
    background: #ffffff;
    transition: all 0.4s ease;
    flex-direction: column;
    display: flex;
    min-height: 430px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    justify-content: space-between;
    overflow: hidden;
}.service_plan .learn_pricing:hover .annual_fee {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}.service_plan .package_deal {
    z-index: 2;
    position: relative;
    padding: 2rem;
    flex: 1;
}.service_plan .learn_pricing h3 {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: #000000;
    font-size: calc(20px * 1.1);
}.service_plan .learn_pricing h3::before {
    content: "";
    width: 40px;
    position: absolute;
    left: 0;
    background: rgb(165,187,213);
    transition: width 0.3s ease;
    height: 2px;
    bottom: -5px;
}.service_plan .learn_pricing:hover h3::before {
    width: 100%;
}.service_plan .enroll_cost {
    display: block;
    position: relative;
    font-weight: 700;
    margin: 1.5rem 0;
    color: rgb(118,154,188);
    font-size: calc(20px * 1.4);
}.service_plan .enroll_cost::after {
    height: 20px;
    background: rgb(165,187,213);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    border-radius: 3px;
    left: -10px;
    content: "";
    width: 3px;
}.service_plan .learn_pricing p {
    margin-bottom: 1rem;
    font-size: 16px;
    hyphens: auto;
    overflow-wrap: break-word;
    color: #000000;
    word-wrap: break-word;
    line-height: 1.6;
}.service_plan .img_card_item {
    height: 180px;
    position: relative;
}.service_plan .img_card_item::before {
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    inset: 0;
    content: "";
    position: absolute;
}.service_plan .learn_pricing:nth-child(1) .annual_fee {
    border-top: 4px solid rgb(165,187,213);
}.service_plan .learn_pricing:nth-child(2) .annual_fee {
    border-top: 4px solid rgb(118,154,188);
}.service_plan .learn_pricing:nth-child(3) .annual_fee {
    border-top: 4px solid #6c5ce7;
}.service_plan .learn_pricing:nth-child(4) .annual_fee {
    border-top: 4px solid #00b894;
}

@media (min-width: 768px) {.service_plan .learning_fees {
    grid-template-columns: repeat(2, 1fr);
}.service_plan .annual_fee {
    min-height: 480px;
}.service_plan .rate_list {
    padding: 0 2rem;
}.service_plan .rate_list h2 {
    font-size: calc(29px * 1.2);
}
}

@media (min-width: 992px) {.service_plan .pricing_levels {
    align-items: center;
    gap: 4rem;
    flex-direction: row;
}.service_plan .learning_fees {
    grid-template-columns: repeat(2, 1fr);
    flex: 2;
}.service_plan .rate_list {
    padding-right: 3rem;
    text-align: left;
    flex: 1;
}.service_plan .rate_list h2::after {
    transform: none;
    left: 0;
}.service_plan .annual_fee {
    min-height: 500px;
}
}

@media (min-width: 1200px) {.service_plan .learning_fees {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.service_plan .learn_pricing {
    transform: perspective(1000px) rotateY(0);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.service_plan .learn_pricing:hover {
    transform: perspective(1000px) translateY(-15px) rotateY(2deg);
}.service_plan .annual_fee {
    min-height: 520px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}.service_plan .img_card_item {
    height: 200px;
}.service_plan .enroll_cost {
    font-size: calc(20px * 1.6);
}.service_plan .rate_list h2 {
    font-size: calc(29px * 1.3);
}}footer {
    perspective: 1000px;
    z-index: 1;
    position: relative;
}footer::before {
    z-index: -2;
    left: 0;
    bottom: 0;
    opacity: 0.9;
    top: 0;
    content: "";
    position: absolute;
    right: 0;
    background: linear-gradient(135deg, rgb(118,154,188,0.5) 0%, rgb(165,187,213,0.5) 100%);
}footer::after {
    left: 0;
    content: "";
    top: 0;
    right: 0;
    background: 
        radial-gradient(circle at 20% 20%, transparent 0, transparent 80px, rgba(255, 255, 255, 0.03) 81px),
        radial-gradient(circle at 80% 40%, transparent 0, transparent 120px, rgba(255, 255, 255, 0.03) 121px),
        radial-gradient(circle at 40% 70%, transparent 0, transparent 100px, rgba(255, 255, 255, 0.03) 101px);
    position: absolute;
    z-index: -1;
    bottom: 0;
}.intern_opp {
    position: relative;
    padding: 5rem 0 2.5rem;
    color: #ffffff;
}.intern_opp::before {
    width: 100%;
    position: absolute;
    top: 0;
    background: repeating-linear-gradient(
        90deg,
        rgb(165,187,213) 0px,
        rgb(165,187,213) 40px,
        rgb(118,154,188) 40px,
        rgb(118,154,188) 80px
    );
    height: 20px;
    left: 0;
    content: "";
}.intern_opp .container {
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
    position: relative;
    gap: 4rem;
}.intern_opp .company_holder {
    border-bottom: 6px solid rgb(165,187,213);
    transform: rotateX(5deg);
    transform-style: preserve-3d;
    position: relative;
    border-radius: 0;
    background: rgb(165,187,213,0.5);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    flex: 1 1 380px;
}.intern_opp .company_holder:hover {
    transform: rotateX(0deg);
}.intern_opp .company_holder h3 {
    position: relative;
    letter-spacing: 1px;
    font-weight: 700;
    transform: translateZ(20px);
    display: inline-block;
    margin: 0 0 1.5rem;
    color: #ffffff;
    font-size: 36px;
}.intern_opp .company_holder h3::before {
    left: -10px;
    height: 30px;
    border-left: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    content: "";
    top: -10px;
    position: absolute;
    width: 30px;
}.intern_opp .company_holder h3::after {
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    height: 30px;
    width: 30px;
    bottom: -10px;
    position: absolute;
    right: -10px;
    content: "";
}.intern_opp .edu_global {
    line-height: 1.6;
    color: #ffffff;
    transform: translateZ(10px);
    font-size: 12px;
    border-radius: 10px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
}.intern_opp .eco_foot {
    min-width: 400px;
    flex: 1 1 calc(100% - 480px);
}.intern_opp .header_know {
    flex-wrap: wrap;
    display: flex;
    gap: 3rem;
}.intern_opp .head_pro {
    flex: 1 1 calc(50% - 1.5rem);
    transition: all 0.4s ease;
    position: relative;
    transform: rotateX(-5deg);
    min-width: 220px;
    transform-style: preserve-3d;
}.intern_opp .head_pro:hover {
    transform: rotateX(0deg);
}.intern_opp .head_pro h5 {
    position: relative;
    font-weight: 600;
    display: inline-block;
    padding: 1rem 1.5rem;
    background: rgb(118,154,188,0.5);
    color: #ffffff;
    margin: 0 0 1.5rem;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    transform: translateZ(15px);
    font-size: 21px;
    min-width: 200px;
}.intern_opp .head_pro h5::after {
    bottom: -5px;
    left: 0;
    height: 5px;
    right: 0;
    content: "";
    position: absolute;
    background: rgb(118,154,188);
}.intern_opp .head_pro .header_know {
    background: rgba(255, 255, 255, 0.1);
    transform: translateZ(5px);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 10px;
    gap: 1rem;
}.intern_opp .head_pro .header_know a {
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    border-radius: 10px;
    color: #ffffff;
    position: relative;
    display: block;
    font-size: 12px;
    transform: translateZ(10px);
    padding: 0.7rem 1rem;
}.intern_opp .head_pro .header_know a::before {
    top: 0;
    width: 100%;
    left: -100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: all 0.5s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.intern_opp .head_pro .header_know a:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgb(118,154,188,0.5);
    color: #ffffff;
}.intern_opp .head_pro .header_know a:hover::before {
    left: 100%;
}.design_res {
    position: relative;
    perspective: 1000px;
    margin-top: 3rem;
    transform-style: preserve-3d;
    padding: 2rem 0;
    background: rgb(118,154,188,0.5);
}.design_res::before {
    transform-origin: bottom;
    width: 100%;
    transform: rotateX(45deg);
    left: 0;
    top: -20px;
    content: "";
    position: absolute;
    background: rgb(118,154,188);
    height: 20px;
}.design_res .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.design_res .blog_ref {
    padding: 0.8rem 2rem;
    transform: translateZ(5px);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    text-align: center;
}

@media (max-width: 1200px) {.intern_opp .container {
    gap: 3rem;
}.intern_opp .company_holder {
    flex: 1 1 350px;
}.intern_opp .eco_foot {
    flex: 1 1 calc(100% - 430px);
    min-width: 350px;
}.intern_opp .header_know {
    gap: 2rem;
}
}

@media (max-width: 992px) {.intern_opp {
    padding: 4rem 0 2rem;
}.intern_opp .container {
    flex-direction: column;
    gap: 3rem;
}.intern_opp .company_holder,
    .intern_opp .eco_foot {
    flex: 1 1 100%;
    min-width: 100%;
}.intern_opp .head_pro {
    min-width: 220px;
    flex: 1 1 calc(50% - 1.5rem);
}.intern_opp .company_holder,
    .intern_opp .head_pro {
    transform: none;
}
}

@media (max-width: 768px) {.intern_opp {
    padding: 3.5rem 0 1.5rem;
}.intern_opp .header_know {
    gap: 1.5rem;
}.intern_opp .company_holder h3 {
    font-size: calc(36px - 2px);
}.intern_opp .company_holder h3::before,
    .intern_opp .company_holder h3::after {
    width: 20px;
    height: 20px;
}.design_res {
    margin-top: 2rem;
}.design_res::before {
    height: 15px;
    top: -15px;
}
}

@media (max-width: 576px) {.intern_opp {
    padding: 3rem 0 1rem;
}.intern_opp .head_pro {
    flex: 1 1 100%;
    min-width: 100%;
}.intern_opp .header_know {
    gap: 0.7rem;
}.intern_opp .head_pro .header_know a {
    padding: 0.6rem 0.8rem;
}.design_res {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}.design_res::before {
    display: none;
}
}

@media (max-width: 420px) {.intern_opp::before {
    height: 10px;
}.intern_opp .company_holder h3::before,
    .intern_opp .company_holder h3::after {
    display: none;
}.intern_opp .head_pro h5 {
    width: 100%;
    min-width: auto;
}.design_res .blog_ref {
    width: 90%;
    padding: 0.7rem 1.5rem;
}}.confidential_zone {
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #000000;
    background-color: rgb(210,219,235);
}.confidential_zone h1 {
    padding-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 47px;
    border-bottom: 2px solid rgb(165,187,213,0.5);
    font-weight: 700;
    font-family: Arial, sans-serif;
    color: rgb(165,187,213);
}.confidential_zone h2 {
    text-transform: capitalize;
    border-left: 4px solid rgb(118,154,188,0.5);
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding-left: 10px;
    font-size: 32px;
    color: rgb(118,154,188);
}.confidential_zone h3,
.confidential_zone h4,
.confidential_zone h5,
.confidential_zone h6 {
    margin-bottom: 10px;
    font-weight: 400;
    color: #000000;
    font-family: Arial, sans-serif;
}.confidential_zone ul,
.confidential_zone ol {
    margin-left: 20px;
    list-style-position: inside;
}.confidential_zone li {
    font-size: 18px;
    margin-bottom: 10px;
}.confidential_zone section {
    margin-top: 30px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgb(210,219,235);
}.confidential_zone p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: Arial, sans-serif;
}.confidential_zone span {
    color: rgb(165,187,213);
    font-weight: 600;
}.confidential_zone div {
    margin-bottom: 20px;
}.confidential_zone a {
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 1px solid rgb(165,187,213,0.5);
    color: rgb(165,187,213);
}.confidential_zone a:hover {
    border-color: rgb(118,154,188,0.5);
    color: rgb(118,154,188);
}.confidential_zone button {
    font-weight: 700;
    color: #ffffff;
    transition: background-color 0.3s, transform 0.3s;
    padding: 10px 20px;
    background-color: rgb(165,187,213);
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 10px;
}.confidential_zone button:hover {
    transform: scale(1.05);
    background-color: rgb(118,154,188);
}
@media only screen and (max-width: 800px) {.confidential_zone {
    padding: 20px;
}.confidential_zone h1 {
    font-size: calc(23px - 4px);
}.confidential_zone h2 {
    font-size: calc(23px - 4px);
}.confidential_zone p {
    font-size: calc(18px - 2px);
}.confidential_zone button {
    font-size: calc(20px - 2px);
    padding: 8px 16px;
}}.contact_form_box {
    background: rgb(210,219,235);
    overflow: hidden;
    position: relative;
    padding: 90px 0;
}.contact_form_box::before {
    width: 100%;
    content: "";
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(rgb(165,187,213), 0.05) 49%, rgba(rgb(165,187,213), 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(rgb(118,154,188), 0.05) 49%, rgba(rgb(118,154,188), 0.05) 51%, transparent 52%);
    height: 100%;
    top: 0;
    left: 0;
    background-size: 40px 40px;
    z-index: 0;
}.contact_form_box .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
    position: relative;
}.contact_form_box h2 {
    font-size: 29px;
    margin-bottom: 50px;
    position: relative;
    border-bottom: 3px solid rgb(165,187,213);
    display: inline-block;
    padding-bottom: 15px;
    color: #000000;
    font-weight: 700;
}.contact_form_box .support_list {
    background: #ffffff;
    overflow: hidden;
    border-radius: 21px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    position: relative;
}.contact_form_box .img_card_item {
    position: relative;
    flex: 0 0 45%;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    min-height: 550px;
}.contact_form_box .query_map {
    padding: 60px;
    flex: 0 0 55%;
    background: #ffffff;
    position: relative;
}.contact_form_box .query_map::before {
    opacity: 0.1;
    z-index: -1;
    position: absolute;
    left: 0;
    background-position: 0 0, 15px 15px;
    background: 
        linear-gradient(135deg, #ffffff 0%, #ffffff 50%, transparent 50%, transparent 100%),
        linear-gradient(-135deg, #ffffff 0%, #ffffff 50%, transparent 50%, transparent 100%);
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
    top: 0;
    content: "";
}.contact_form_box #contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}.contact_form_box h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    color: rgb(165,187,213);
}.contact_form_box input[type="text"] {
    background: rgb(210,219,235);
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid rgb(165,187,213);
    border-radius: 0 10px 10px 0;
    font-size: 13px;
    width: 100%;
    color: #000000;
    border: none;
}.contact_form_box input[type="text"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    outline: none;
    border-left-color: rgb(118,154,188);
    background: #ffffff;
}.contact_form_box input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.7;
}.contact_form_box .inquiry_reach {
    align-items: flex-start;
    margin-top: 10px;
    gap: 12px;
    display: flex;
}.contact_form_box .inquiry_reach input[type="checkbox"] {
    background: rgb(210,219,235);
    border-radius: 4px;
    cursor: pointer;
    height: 22px;
    position: relative;
    width: 22px;
    margin-top: 3px;
    appearance: none;
    transition: all 0.3s ease;
    border: 2px solid rgb(210,219,235);
}.contact_form_box .inquiry_reach input[type="checkbox"]:checked {
    border-color: rgb(165,187,213);
    background: rgb(165,187,213);
}.contact_form_box .inquiry_reach input[type="checkbox"]:checked::after {
    height: 10px;
    position: absolute;
    content: "";
    transform: translate(-50%, -50%) rotate(45deg);
    left: 50%;
    width: 5px;
    border-bottom: 2px solid #ffffff;
    top: 40%;
    border-right: 2px solid #ffffff;
}.contact_form_box .inquiry_reach label {
    line-height: 1.6;
    font-size: 13px;
    color: #000000;
}.contact_form_box .inquiry_reach a {
    position: relative;
    color: rgb(165,187,213);
    text-decoration: none;
    transition: all 0.3s ease;
}.contact_form_box .inquiry_reach a:hover {
    color: rgb(118,154,188);
}.contact_form_box .inquiry_reach a::after {
    bottom: -2px;
    width: 100%;
    background: rgb(165,187,213);
    height: 1px;
    transition: all 0.3s ease;
    position: absolute;
    content: "";
    left: 0;
}.contact_form_box .inquiry_reach a:hover::after {
    background: rgb(118,154,188);
    height: 2px;
}.contact_form_box .contact_feedbackaOe {
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 15px 35px;
    color: #ffffff;
    align-self: flex-start;
    background: rgb(165,187,213);
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}.contact_form_box .contact_feedbackaOe::after {
    background: rgba(255, 255, 255, 0.1);
    width: 0;
    content: "";
    top: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    position: absolute;
    left: 50%;
    transition: all 0.6s ease;
    border-radius: 50%;
}.contact_form_box .contact_feedbackaOe:hover {
    background: rgb(118,154,188);
}.contact_form_box .contact_feedbackaOe:hover::after {
    height: 300%;
    width: 300%;
}.contact_form_box svg {
    height: 20px;
    transition: all 0.3s ease;
    fill: rgb(165,187,213);
    width: 20px;
}.contact_form_box svg path {
    transition: all 0.3s ease;
    fill: rgb(165,187,213);
}.contact_form_box svg:hover {
    fill: rgb(118,154,188);
}.contact_form_box svg:hover path {
    fill: rgb(118,154,188);
}

@media (max-width: 992px) {.contact_form_box {
    padding: 70px 0;
}.contact_form_box .support_list {
    flex-direction: column;
}.contact_form_box .img_card_item {
    flex: 0 0 auto;
    min-height: 300px;
}.contact_form_box .query_map {
    padding: 40px 30px 50px;
    flex: 0 0 auto;
}
}

@media (max-width: 768px) {.contact_form_box {
    padding: 60px 0;
}.contact_form_box h2 {
    margin-bottom: 40px;
    font-size: calc(29px - 4px);
}.contact_form_box .query_map {
    padding: 35px 25px 45px;
}.contact_form_box #contact {
    gap: 20px;
}.contact_form_box .img_card_item {
    min-height: 250px;
}
}

@media (max-width: 576px) {.contact_form_box {
    padding: 50px 0;
}.contact_form_box .container {
    padding: 0 15px;
}.contact_form_box h2 {
    font-size: calc(29px - 6px);
    margin-bottom: 30px;
}.contact_form_box .query_map {
    padding: 30px 20px 40px;
}.contact_form_box .contact_feedbackaOe {
    width: 100%;
}.contact_form_box .img_card_item {
    min-height: 200px;
}}header {
    z-index: 99;
    width: 100%;
    background: linear-gradient(135deg, rgb(165,187,213,0.5) 0%, rgb(118,154,188) 100%);
    position: relative;
    overflow: visible;
}header::before {
    background: linear-gradient(145deg, rgb(118,154,188,0.5) 0%, transparent 70%);
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
}header .first_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 20px 15px;
    position: relative;
    transform: none;
    z-index: 5;
}header .first_section .header_site {
    transform: translateX(0);
    margin-right: 10px;
    transition: transform 0.4s ease;
}header .first_section .header_site:hover {
    transform: scale(1.05);
}header .first_section .header_site .main_pagebar {
    display: inline-block;
}header .first_section .header_site .main_pagebar svg {
    width: auto;
    height: 50px;
}header .first_section .head_pro {
    border-radius: 28px;
    padding: 0;
    position: relative;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
    transform: none;
}header .first_section .head_pro::before {
    border-radius: 28px;
    left: 0;
    content: "";
    transform: rotate(-2deg) scale(1.03);
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}header .first_section .head_pro .top_pagebar {
    position: relative;
    margin: 0 12px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}header .first_section .head_pro .top_pagebar:hover {
    transform: translateY(-3px) scale(1.05);
}header .first_section .head_pro .top_pagebar a {
    position: relative;
    text-decoration: none;
    overflow: hidden;
    font-weight: 600;
    display: block;
    padding: 8px 5px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    font-size: 16px;
}header .first_section .head_pro .top_pagebar a::after {
    bottom: 0;
    width: 100%;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgb(118,154,188), transparent);
    left: 0;
    transition: transform 0.4s ease;
    content: "";
    position: absolute;
    height: 2px;
}header .first_section .head_pro .top_pagebar:hover a::after {
    transform: translateX(0);
}

@media (max-width: 992px) {header .first_section {
    flex-direction: column;
    align-items: center;
}header .first_section .header_site {
    margin-right: 0;
    margin-bottom: 15px;
}header .first_section .head_pro {
    padding: 15px;
    width: 100%;
    justify-content: center;
}header .first_section .head_pro .top_pagebar {
    margin: 5px 15px 5px 0;
}header .first_section .head_pro .top_pagebar a {
    font-size: calc(16px - 2px);
    padding: 5px;
}}.title_section {
    position: relative;
    justify-content: center;
    background: linear-gradient(135deg, rgb(118,154,188) 0%, rgb(165,187,213) 100%);
    align-items: center;
    min-height: 100vh;
    display: flex;
    padding: 3rem 1.5rem;
    overflow: hidden;
}.title_section::before {
    background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 40%);
    position: absolute;
    left: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    pointer-events: none;
}.title_section::after {
    right: -50%;
    position: absolute;
    transform: rotate(-15deg) scale(2);
    content: "";
    z-index: 0;
    width: 100%;
    height: 100%;
    animation: rotateGlow 15s infinite alternate ease-in-out;
    background: radial-gradient(ellipse at center, rgb(118,154,188,0.5) 0%, transparent 70%);
    top: -50%;
}.title_section .page_home {
    width: 100%;
    display: grid;
    transform: translateY(0);
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    grid-template-columns: 1fr;
    max-width: 1200px;
    gap: 3rem;
}.title_section .page_home:hover {
    transform: translateY(-10px);
}.title_section .page_home > div:first-child {
    border: 1px solid rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.08);
}.title_section .page_home > div:first-child:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
}.title_section h3 {
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
    font-size: calc(24px * 1.05);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0;
    position: relative;
    color: #ffffff;
}.title_section .page_home > div:nth-child(2) {
    position: relative;
}.title_section .knowledge_guides {
    background: linear-gradient(to bottom right, #000000, rgba(0, 0, 0, 0.5));
    display: flex;
    border-radius: 10px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3rem;
    position: relative;
    box-shadow: 
    0 40px 80px rgba(0,0,0,0.15),
    0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(0);
    overflow: hidden;
    gap: 2rem;
    flex-direction: column;
}.title_section .knowledge_guides:hover {
    transform: translateX(10px);
}.title_section .knowledge_guides::before {
    width: 6px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    transition: width 0.3s ease;
    top: 0;
    background: linear-gradient(to bottom, rgb(165,187,213), rgb(118,154,188));
}.title_section .knowledge_guides:hover::before {
    width: 10px;
}.title_section h1 {
    position: relative;
    line-height: 1.2;
    font-weight: 700;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 38px);
    color: #ffffff;
    transform: translateY(0);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}.title_section .knowledge_guides:hover h1 {
    transform: translateY(-5px);
}.title_section .knowledge_guides > div {
    overflow: hidden;
    position: relative;
    background-position: center center !important;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 10px;
}.title_section .knowledge_guides > div::before {
    left: 0;
    z-index: 1;
    height: 100%;
    background: linear-gradient(135deg, 
    rgba(var(--primary-color-rgb), 0.85), 
    rgba(var(--secondary-color-rgb), 0.85));
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
}.title_section .knowledge_guides > div:hover {
    transform: scale(1.02);
}.title_section p {
    margin: 0;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    z-index: 2;
    position: relative;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    font-size: calc(17px * 1.1);
}

@keyframes rotateGlow {
  0% {
    transform: rotate(-15deg) scale(2);
    opacity: 0.5;
  }
  100% {
    transform: rotate(-5deg) scale(2.2);
    opacity: 0.7;
  }
}

@media (min-width: 768px) {.title_section {
    padding: 5rem;
}.title_section .page_home {
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}.title_section .page_home > div:first-child {
    margin-top: 4rem;
    transform: perspective(1000px) rotateX(5deg) rotateY(-2deg);
}.title_section .page_home > div:first-child:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg) translateY(-10px);
}.title_section h3 {
    font-size: calc(24px * 1.2);
}.title_section .knowledge_guides {
    transform: translateX(-20px);
}.title_section .knowledge_guides:hover {
    transform: translateX(-10px);
}
}

@media (min-width: 992px) {.title_section h1 {
    font-size: calc(38px * 1.2);
}.title_section .knowledge_guides {
    padding: 4rem;
}.title_section .knowledge_guides > div {
    padding: 3rem;
    margin-left: -2rem;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 2rem;
}.title_section .knowledge_guides > div:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
}.title_section p {
    font-size: calc(17px * 1.2);
}.title_section h3 {
    max-width: 90%;
}
}

@media (max-width: 767px) {.title_section {
    padding: 2rem 1rem;
}.title_section h1 {
    font-size: calc(29px * 1.1);
}.title_section h3 {
    font-size: 24px;
}.title_section .knowledge_guides {
    padding: 2rem;
}.title_section .knowledge_guides > div {
    padding: 1.5rem;
}.title_section p {
    font-size: 17px;
}}.contact {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    backdrop-filter: blur(10px);
    background: linear-gradient(120deg, rgb(165,187,213,0.5) 0%, rgb(210,219,235) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}.contact::before {
    bottom: 0;
    position: absolute;
    top: 0;
    background: 
        linear-gradient(90deg, transparent 95%, rgb(118,154,188,0.5) 95%) 0 0 / 20px 100%,
        linear-gradient(180deg, transparent 95%, rgb(165,187,213,0.5) 95%) 0 0 / 100% 20px;
    animation: gridMove 25s linear infinite;
    left: 0;
    content: '';
    right: 0;
    opacity: 0.2;
}.contact::after {
    left: -50%;
    right: -50%;
    background: radial-gradient(circle at center, rgb(118,154,188) 0%, transparent 50%);
    bottom: -50%;
    opacity: 0.03;
    z-index: 0;
    position: absolute;
    content: '';
    animation: pulseEffect 10s ease-in-out infinite;
    top: -50%;
}@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}
@keyframes pulseEffect {
    0%, 100% {
        transform: scale(1);
        opacity: 0.03;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.05;
    }
}
.contact .container {
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}.contact .connect_block {
    border-radius: 17px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 5px 15px rgba(0, 0, 0, 0.05) inset;
    padding: 50px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    backdrop-filter: blur(15px);
}.contact .connect_block::before {
    background-size: 200% 100%;
    background: linear-gradient(90deg, rgb(165,187,213), rgb(118,154,188), rgb(165,187,213));
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    content: '';
    animation: gradientFlow 3s linear infinite;
    height: 3px;
}@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}
.contact .connect_block::after {
    background: rgb(165,187,213,0.5);
    top: -75px;
    right: -75px;
    content: '';
    z-index: -1;
    height: 150px;
    position: absolute;
    opacity: 0.2;
    border-radius: 50%;
    width: 150px;
}.contact h3 {
    font-size: 35px;
    color: rgb(165,187,213);
    margin-bottom: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}.contact h3::after {
    content: '';
    left: 0;
    width: 50px;
    height: 2px;
    bottom: 0;
    background: rgb(165,187,213);
    transition: width 0.3s ease;
    position: absolute;
    box-shadow: 0 0 8px rgb(165,187,213);
}.contact .connect_block:hover h3::after {
    width: 100px;
}.contact .message_page {
    position: relative;
    padding: 15px;
    font-size: calc(13px + 0.05rem);
    line-height: 1.8;
    color: #000000;
    border-left: 3px solid rgb(118,154,188);
    border-radius: 10px;
    background: rgb(210,219,235);
    font-weight: 400;
    margin-bottom: 40px;
}.contact .message_panel {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    position: relative;
    display: grid;
}.contact .message_panel::before {
    content: '';
    height: 1px;
    top: -20px;
    left: 0;
    background: rgb(165,187,213);
    position: absolute;
    width: 30%;
    box-shadow: 0 0 5px rgb(165,187,213);
}.contact .message_panel::after {
    background: linear-gradient(to right, rgb(165,187,213), transparent);
    right: 0;
    top: -20px;
    position: absolute;
    content: '';
    height: 1px;
    width: 60%;
}.contact .message_panel span {
    flex-direction: column;
    padding: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    display: flex;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    background: #ffffff;
}.contact .message_panel span::before {
    width: 300%;
    background: linear-gradient(135deg, rgb(210,219,235) 0%, #ffffff 100%);
    z-index: -1;
    height: 300%;
    content: '';
    transition: transform 0.6s ease;
    left: -100%;
    transform: translateX(0) translateY(0) rotate(45deg);
    top: -100%;
    position: absolute;
}.contact .message_panel span:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 0 4px rgb(165,187,213,0.5);
}.contact .message_panel span p {
    color: #000000;
    line-height: 1.5;
    font-weight: 600;
    display: flex;
    margin: 0 0 5px 0;
    font-size: 13px;
    align-items: center;
}.contact .message_panel span svg {
    transition: all 0.3s ease;
    width: 20px;
    margin-right: 10px;
    height: 20px;
    fill: rgb(165,187,213);
}.contact .message_panel span:hover svg {
    transform: scale(1.2);
    fill: rgb(118,154,188);
}.contact .message_panel span svg path {
    stroke-linecap: round;
    transition: all 0.3s ease;
    stroke: #ffffff;
    stroke-width: 0.5;
    stroke-linejoin: round;
}.contact .message_panel span:hover svg path {
    stroke-width: 1;
    stroke: rgb(165,187,213);
}.contact .message_panel span span {
    padding: 0;
    margin: 5px 0 0 0;
    font-weight: 400;
    box-shadow: none;
    display: inline-block;
    color: #000000;
    background: transparent;
}.contact .message_panel span span::before {
    display: none;
}.contact .message_panel span span a {
    text-decoration: none;
    align-items: center;
    color: rgb(165,187,213);
    transition: all 0.3s ease;
    padding: 2px 5px;
    display: flex;
    border-radius: 10px;
    position: relative;
}.contact .message_panel span span a svg {
    height: 16px;
    width: 16px;
    opacity: 0.8;
    margin-right: 5px;
}.contact .message_panel span span a::before {
    height: 1px;
    position: absolute;
    background: rgb(165,187,213);
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    bottom: 0;
    content: '';
    transition: transform 0.3s ease;
}.contact .reach_block {
    position: relative;
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-top: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    grid-column: 1 / -1;
    border-radius: 17px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}.contact .reach_block::before {
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 98%, rgb(165,187,213,0.5) 98%) 0 0 / 20px 20px,
        linear-gradient(-45deg, transparent 98%, rgb(118,154,188,0.5) 98%) 0 0 / 20px 20px;
    content: '';
    height: 100%;
    opacity: 0.3;
    left: 0;
    width: 100%;
    top: 0;
}.contact .reach_block h4 {
    font-size: 21px;
    letter-spacing: 0.5px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    align-items: center;
    color: rgb(165,187,213);
    display: flex;
    padding-left: 15px;
}.contact .reach_block h4::before {
    height: 100%;
    position: absolute;
    border-radius: 10px;
    left: 0;
    content: '';
    background: rgb(165,187,213);
    width: 4px;
    top: 0;
}.contact .reach_block h4 svg {
    height: 22px;
    margin-right: 10px;
    fill: rgb(165,187,213);
    width: 22px;
}.contact .reach_block h4 svg path {
    stroke-width: 0.5;
    stroke: #ffffff;
}.contact .reach_block span {
    align-items: center;
    display: flex;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 10px;
    font-size: 13px;
    color: #000000;
    margin-bottom: 8px;
    overflow: hidden;
    background: rgb(210,219,235);
    z-index: 1;
    padding: 12px 15px;
}.contact .reach_block span svg {
    margin-right: 8px;
    height: 16px;
    width: 16px;
    fill: rgb(118,154,188);
    transition: all 0.3s ease;
}.contact .reach_block span svg path {
    stroke-width: 0.3;
    stroke: #ffffff;
}
@media (max-width: 991px) {.contact {
    padding: 70px 0;
}.contact .connect_block {
    padding: 40px;
}.contact h3 {
    font-size: calc(35px - 0.2rem);
}.contact .message_panel {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.contact .reach_block {
    padding: 25px;
}.contact .message_panel span svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
}
@media (max-width: 767px) {.contact {
    padding: 50px 0;
}.contact .connect_block {
    padding: 30px;
}.contact h3 {
    font-size: calc(35px - 0.3rem);
}.contact .message_page {
    margin-bottom: 30px;
    padding: 12px;
}.contact .message_panel {
    grid-template-columns: 1fr;
    gap: 15px;
}.contact .message_panel span {
    padding: 15px;
}.contact .reach_block span {
    padding: 10px 12px;
}.contact .message_panel span svg {
    width: 16px;
    margin-right: 6px;
    height: 16px;
}
}
@media (max-width: 480px) {.contact {
    padding: 40px 0;
    border-radius: 10px;
}.contact .container {
    padding: 0 15px;
}.contact .connect_block {
    padding: 25px 20px;
}.contact h3 {
    margin-bottom: 20px;
    font-size: calc(35px - 0.4rem);
}.contact .message_page {
    padding: 10px;
    margin-bottom: 25px;
    font-size: 13px;
}.contact .message_panel span {
    padding: 12px;
}.contact .reach_block {
    margin-top: 15px;
    padding: 20px 15px;
}.contact .reach_block h4 {
    margin-bottom: 15px;
}.contact .reach_block span {
    margin-bottom: 6px;
    padding: 8px 10px;
}.contact .message_panel span svg {
    margin-right: 5px;
    height: 14px;
    width: 14px;
}.contact .reach_block h4 svg {
    margin-right: 8px;
    height: 18px;
    width: 18px;
}.contact .reach_block span svg {
    margin-right: 6px;
    width: 14px;
    height: 14px;
}}.program_offerings {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(210,219,235) 0%, rgba(245, 247, 250, 0.95) 100%);
    overflow: hidden;
    position: relative;
}.program_offerings::before {
    top: -5%;
    transform: rotate(-15deg) skewX(-15deg);
    height: 70%;
    right: -10%;
    z-index: 1;
    position: absolute;
    animation: float 15s infinite alternate ease-in-out;
    opacity: 0.07;
    width: 35%;
    filter: blur(20px);
    background: linear-gradient(145deg, rgb(165,187,213,0.5) 10%, rgb(118,154,188,0.5) 90%);
    content: "";
}.program_offerings::after {
    z-index: 1;
    bottom: -5%;
    position: absolute;
    animation: float 18s infinite alternate-reverse ease-in-out;
    left: -5%;
    width: 25%;
    content: "";
    filter: blur(15px);
    opacity: 0.05;
    background: linear-gradient(215deg, rgb(118,154,188,0.5) 10%, rgb(165,187,213,0.5) 90%);
    height: 50%;
    transform: rotate(10deg) skewX(10deg);
}.program_offerings .container {
    z-index: 5;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.program_offerings .training_flow {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    gap: 3rem;
}.program_offerings .img_card_item {
    transform: perspective(1000px) rotateY(-3deg) translateZ(0);
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    position: relative;
    border: 1px solid rgba(var(--dark-color-rgb), 0.08);
    box-shadow: 0 25px 50px -12px rgba(var(--dark-color-rgb), 0.1);
    min-height: 350px;
}.program_offerings .img_card_item::before {
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(var(--dark-color-rgb), 0) 60%, rgba(var(--dark-color-rgb), 0.5) 100%);
}.program_offerings .img_card_item::after {
    animation: shine 10s infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    content: "";
    transform: skewX(-25deg);
    width: 50%;
    z-index: 3;
    top: 0;
    height: 100%;
    left: -100%;
    position: absolute;
}.program_offerings .text_pod {
    position: relative;
    padding: 1.5rem 0;
    transform: translateZ(0);
}.program_offerings h3 {
    position: relative;
    font-size: calc(21px * 1.1);
    color: #000000;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}.program_offerings h3::before {
    transition: transform 0.4s ease;
    width: 3px;
    content: "";
    height: 85%;
    background: linear-gradient(to bottom, rgb(165,187,213), rgb(118,154,188));
    left: 0;
    transform: scaleY(0.7);
    position: absolute;
    top: 0.2em;
}.program_offerings p.description {
    overflow-y: auto;
    margin-bottom: 2rem;
    padding-right: 1rem;
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    position: relative;
    max-height: 300px;
    display: block;
}.program_offerings p.description::-webkit-scrollbar {
    width: 4px;
}.program_offerings p.description::-webkit-scrollbar-track {
    background: rgba(var(--dark-color-rgb), 0.05);
}.program_offerings p.description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(118,154,188,0.5);
}.program_offerings span.description {
    display: none;
}.program_offerings .text_pod div {
    position: relative;
}.program_offerings .text_pod div::after {
    background: linear-gradient(to top, rgb(210,219,235) 20%, transparent);
    right: 0;
    content: "";
    position: absolute;
    bottom: 0;
    opacity: 0.8;
    pointer-events: none;
    width: 25%;
    height: 30px;
}

@media (min-width: 768px) {.program_offerings {
    padding: 8rem 0;
}.program_offerings .training_flow {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}.program_offerings .img_card_item {
    min-height: 450px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    transform: perspective(1200px) rotateY(-3deg) translateZ(0);
}.program_offerings h3 {
    margin-bottom: 2rem;
    font-size: calc(21px * 1.3);
    padding-left: 1.5rem;
}.program_offerings h3::before {
    width: 5px;
}.program_offerings p.description {
    max-height: 380px;
    padding-right: 2rem;
}
}

@media (min-width: 992px) {.program_offerings {
    padding: 10rem 0;
}.program_offerings .training_flow {
    gap: 5rem;
    grid-template-columns: 0.85fr 1.15fr;
}.program_offerings .img_card_item {
    min-height: 500px;
    transform: perspective(1500px) rotateY(-5deg) translateZ(0);
}.program_offerings .img_card_item:hover {
    transform: perspective(1500px) rotateY(0deg) translateZ(10px);
}.program_offerings h3 {
    padding-left: 2rem;
    font-size: calc(21px * 1.4);
}.program_offerings h3::before {
    width: 6px;
}
}

@media (min-width: 1200px) {.program_offerings .training_flow {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
}.program_offerings .img_card_item {
    min-height: 550px;
}.program_offerings h3 {
    font-size: calc(21px * 1.5);
}}

@keyframes float {
    0% {
        transform: rotate(-15deg) skewX(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-12deg) skewX(-12deg) translateY(-20px);
    }
    100% {
        transform: rotate(-18deg) skewX(-18deg) translateY(20px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}.thxZone {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(210,219,235) 0%, rgb(118,154,188,0.5) 100%);
}.thxZone::before {
    top: 0;
    left: 0;
    animation: pulse 8s infinite alternate ease-in-out;
    background: radial-gradient(circle at 70% 30%, rgb(165,187,213,0.5) 0%, transparent 60%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    content: "";
    position: absolute;
}.thxZone::after {
    bottom: -10%;
    z-index: 0;
    opacity: 0.3;
    content: "";
    position: absolute;
    width: 40%;
    height: 40%;
    transform: rotate(15deg);
    filter: blur(50px);
    right: -5%;
    background: linear-gradient(225deg, rgb(118,154,188) 0%, transparent 80%);
}.thxZone .container {
    position: relative;
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
}.thxZone .skill_program {
    background-color: rgba(255, 255, 255, 0.95);
    gap: 30px;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 0 0 1px rgba(0, 0, 0, 0.02), 
                0 4px 6px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    display: flex;
    padding: 50px;
    transform: perspective(1000px) rotateX(2deg);
}.thxZone .skill_program:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(0, 0, 0, 0.04), 
                0 8px 12px rgba(0, 0, 0, 0.06);
}.thxZone .skill_program::before {
    top: -2px;
    animation: gradientMove 6s linear infinite;
    left: 0;
    background: linear-gradient(90deg, 
        rgb(165,187,213) 0%, 
        rgb(118,154,188) 50%, 
        rgb(165,187,213) 100%);
    width: 100%;
    height: 4px;
    position: absolute;
    background-size: 200% 100%;
    content: "";
}.thxZone .skill_program > div:first-child {
    position: relative;
    padding-bottom: 20px;
}.thxZone .skill_program > div:first-child::after {
    content: "";
    background-color: rgb(165,187,213);
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: lineExtend 1.5s ease-out forwards;
    width: 80px;
    transform-origin: left;
}.thxZone h5 {
    transform: translateY(10px);
    font-weight: 700;
    position: relative;
    opacity: 0;
    line-height: 1.4;
    font-size: 19px;
    margin: 0;
    animation: fadeSlideUp 0.8s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
    color: #000000;
}.thxZone .skill_program > div:last-child {
    transform: translateY(20px);
    opacity: 0;
    position: relative;
    animation: fadeSlideUp 0.8s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
}.thxZone a {
    position: relative;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}.thxZone a:hover {
    transform: translateX(5px);
}.thxZone a::before {
    content: "";
    height: 0;
    width: 4px;
    left: -20px;
    background-color: rgb(118,154,188);
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    top: 0;
    position: absolute;
}.thxZone a:hover::before {
    height: 100%;
}.thxZone p {
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    position: relative;
    line-height: 1.8;
    margin: 0;
}

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

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

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@media (min-width: 768px) {.thxZone .skill_program {
    padding: 60px 70px;
    gap: 40px;
}.thxZone h5 {
    font-size: calc(19px * 1.2);
}.thxZone p {
    font-size: calc(16px * 1.05);
}
}

@media (max-width: 767px) {.thxZone {
    padding: 60px 0;
}.thxZone .skill_program {
    gap: 25px;
    padding: 35px 25px;
}.thxZone .skill_program > div:first-child::after {
    width: 60px;
}.thxZone h5 {
    font-size: calc(19px * 0.9);
}.thxZone a::before {
    left: -10px;
}
}

@media (max-width: 480px) {.thxZone {
    padding: 50px 0;
}.thxZone .skill_program {
    transform: perspective(1000px) rotateX(1deg);
    padding: 30px 20px;
}.thxZone h5 {
    font-size: calc(19px * 0.85);
}.thxZone p {
    font-size: calc(16px * 0.95);
}.thxZone .skill_program > div:first-child {
    padding-bottom: 15px;
}}.training_benefits {
    overflow: hidden;
    background: linear-gradient(135deg, rgba(rgb(118,154,188,0.5), 0.03) 0%, rgba(rgb(165,187,213,0.5), 0.07) 100%);
    padding: 120px 0;
    position: relative;
}.training_benefits::before {
    background: linear-gradient(45deg, rgb(165,187,213), rgb(118,154,188));
    z-index: 0;
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    width: 300px;
    position: absolute;
    opacity: 0.05;
    height: 300px;
    left: -100px;
    content: "";
    top: -50px;
    animation: float 15s ease-in-out infinite alternate;
}.training_benefits::after {
    content: "";
    bottom: -50px;
    z-index: 0;
    opacity: 0.05;
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 18s ease-in-out infinite alternate-reverse;
    width: 200px;
    right: -50px;
    height: 200px;
    background: linear-gradient(135deg, rgb(118,154,188), rgb(165,187,213));
}.training_benefits .container {
    gap: 60px;
    position: relative;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    perspective: 1000px;
    z-index: 1;
    display: grid;
}.training_benefits .img_card_item {
    position: relative;
    width: 100%;
    box-shadow: 
        20px 20px 60px rgba(rgba(0, 0, 0, 0.5), 0.12),
        -5px -5px 30px rgba(rgb(255, 255, 255, 0.5), 0.8);
    object-fit: cover;
    border-radius: 2px;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    transform: rotateY(-5deg) translateZ(20px);
    z-index: 2;
    height: auto;
}.training_benefits .img_card_item:hover {
    transform: rotateY(0deg) translateZ(30px) scale(1.02);
}.training_benefits .skill_program {
    z-index: 2;
    transform: translateZ(0);
    position: relative;
}.training_benefits .text_pod {
    padding: 20px 0 20px 30px;
    position: relative;
}.training_benefits .text_pod::before {
    animation: grow 3s ease-out forwards;
    height: 100%;
    transform: scaleY(0.95);
    background: linear-gradient(to bottom, rgb(165,187,213), rgb(118,154,188));
    width: 3px;
    left: 0;
    position: absolute;
    content: "";
    top: 0;
    transform-origin: top;
}.training_benefits h1 {
    font-weight: 700;
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.5s ease-out;
    color: #000000;
    transform: translateX(0);
}.training_benefits h1::after {
    transform-origin: left;
    bottom: -10px;
    content: "";
    position: absolute;
    background: rgb(165,187,213);
    width: 80px;
    height: 3px;
    left: 0;
    transition: transform 0.5s ease-out;
    transform: scaleX(0.7);
}.training_benefits .text_pod:hover h1 {
    transform: translateX(5px);
}.training_benefits .text_pod:hover h1::after {
    transform: scaleX(1);
}.training_benefits ul {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    display: grid;
}.training_benefits li {
    padding: 16px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.05),
        0 1px 3px rgba(rgba(0, 0, 0, 0.5), 0.1);
    transform: translateY(0);
    background: rgba(rgb(255, 255, 255, 0.5), 0.7);
}.training_benefits li:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(rgba(0, 0, 0, 0.5), 0.07),
        0 2px 5px rgba(rgba(0, 0, 0, 0.5), 0.1);
}.training_benefits li p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    gap: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}.training_benefits svg {
    transition: transform 0.3s ease;
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}.training_benefits li:hover svg {
    transform: scale(1.1) translateY(-2px);
}.training_benefits svg path {
    fill: rgb(165,187,213);
    transition: fill 0.3s ease;
}.training_benefits li:hover svg path {
    fill: rgb(118,154,188);
}

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

@keyframes grow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(0.95);
    }
}

@media screen and (max-width: 1200px) {.training_benefits {
    padding: 100px 0;
}.training_benefits .container {
    padding: 0 30px;
}.training_benefits h1 {
    font-size: calc(46px * 0.9);
}
}

@media screen and (max-width: 992px) {.training_benefits .container {
    gap: 40px;
    grid-template-columns: 1fr;
}.training_benefits .img_card_item {
    margin: 0 auto;
    transform: rotateY(-3deg) translateZ(10px);
    max-width: 80%;
}.training_benefits ul {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}.training_benefits h1 {
    text-align: center;
    margin-bottom: 40px;
}.training_benefits h1::after {
    transform: translateX(-50%) scaleX(0.7);
    left: 50%;
}.training_benefits .text_pod {
    padding: 20px 0;
}.training_benefits .text_pod::before {
    transform: scaleX(0.95);
    top: 0;
    width: 100%;
    height: 3px;
}.training_benefits .text_pod:hover h1 {
    transform: translateY(-5px);
}.training_benefits .text_pod:hover h1::after {
    transform: translateX(-50%) scaleX(1);
}
}

@media screen and (max-width: 768px) {.training_benefits {
    padding: 80px 0;
}.training_benefits .img_card_item {
    max-width: 100%;
}.training_benefits h1 {
    font-size: calc(46px * 0.8);
    line-height: 1.4;
}.training_benefits li {
    padding: 15px;
}.training_benefits li p {
    font-size: calc(14px * 0.95);
}
}

@media screen and (max-width: 576px) {.training_benefits {
    padding: 60px 0;
}.training_benefits .container {
    padding: 0 20px;
    gap: 30px;
}.training_benefits h1 {
    font-size: calc(46px * 0.7);
    margin-bottom: 30px;
}.training_benefits ul {
    gap: 15px;
    grid-template-columns: 1fr;
}.training_benefits svg {
    height: 20px;
    width: 20px;
}.training_benefits li p {
    font-size: calc(14px * 0.9);
    gap: 10px;
}}.cookie_overlay_panel {
    border-top: 3px solid rgb(165,187,213);
    padding: 15px 20px;
    background: rgb(118,154,188);
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    bottom: 0;
    position: fixed;
    z-index: 90;
}.track_prefs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}.edu_cookies {
    margin-right: 20px;
    flex-shrink: 0;
}.edu_cookies svg {
    height: 50px;
    width: 50px;
    fill: rgb(165,187,213);
}.cookie_customize {
    justify-content: center;
    flex-direction: column;
    max-width: 600px;
    display: flex;
}.cookie_overlay_panel h5 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
    font-size: 18px;
}.cookie_overlay_panel p {
    line-height: 1.5;
    color: #000000;
    font-size: 17px;
}.cookie_ack {
    min-width: 150px;
    padding: 10px 20px;
    background: rgb(165,187,213);
    margin-left: 10px;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 18px;
    color: #ffffff;
    border: 2px solid rgb(165,187,213);
    transition: none;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}.cookie_ack:hover {
    border-color: rgb(165,187,213,0.5);
    background: rgb(165,187,213,0.5);
}.cookie_overlay_panel p a {
    color: rgb(165,187,213);
    border-bottom: 2px solid rgb(165,187,213);
    text-decoration: none;
}.cookie_overlay_panel p a:hover {
    color: rgb(118,154,188);
    border-bottom-color: rgb(118,154,188);
}
@media only screen and (max-width: 1200px) {.cookie_overlay_panel {
    padding: 15px;
}
}
@media only screen and (max-width: 800px) {.edu_cookies {
    display: none;
}.track_prefs {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.cookie_overlay_panel h5, .cookie_overlay_panel p {
    text-align: center;
}.cookie_customize {
    margin-bottom: 15px;
}.cookie_ack {
    margin-left: 0;
    margin-top: 10px;
}}
#cookieUsageMessage {
    display: none;
}#cookieUsageMessage:checked ~ .cookie_overlay_panel {
    opacity: 0;
    visibility: hidden;
}.mentorship_experience {
    position: relative;
    padding: 5rem 2rem;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgb(210,219,235), rgb(165,187,213,0.5) 120%);
}.mentorship_experience::before {
    background: repeating-linear-gradient(
        -45deg,
        rgb(118,154,188,0.5) 0,
        rgb(118,154,188,0.5) 2px,
        transparent 2px,
        transparent 10px
    );
    top: 0;
    opacity: 0.3;
    width: 100%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    z-index: 1;
}.mentorship_experience .alumni_testimonials {
    z-index: 2;
    flex-direction: column;
    transform: translateY(0);
    position: relative;
    margin: 0 auto;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    max-width: 500px;
}.mentorship_experience .alumni_testimonials:hover {
    transform: translateY(-15px);
}.mentorship_experience .img_card_item {
    margin: 0 auto;
    height: 350px;
    width: 80%;
    transition: all 0.5s ease;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}.mentorship_experience .img_card_item::after {
    border-radius: 15px 15px 0 0;
    background: linear-gradient(to bottom, 
                transparent 50%, 
                rgb(165,187,213,0.5) 100%);
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
}.mentorship_experience .alumni_testimonials:hover .img_card_item {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 95%);
}.mentorship_experience .work_timeline {
    border-radius: 15px;
    padding: 70px 2rem 2rem;
    transform: translateZ(0);
    margin-top: -50px;
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
    background: #ffffff;
}.mentorship_experience .work_timeline::before {
    border-radius: 10px 10px 0 0;
    animation: gradient-shift 8s infinite alternate;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, 
                rgb(165,187,213), 
                rgb(118,154,188), 
                rgb(165,187,213));
    background-size: 200% 100%;
    height: 6px;
    content: "";
    right: 0;
    left: 0;
}.mentorship_experience .work_timeline::after {
    content: "";
    bottom: 20px;
    background: rgb(118,154,188,0.5);
    animation: float-blob 10s infinite alternate;
    width: 60px;
    position: absolute;
    filter: blur(15px);
    opacity: 0.2;
    right: 20px;
    border-radius: 20% 40% 50% 30%;
    height: 60px;
}.mentorship_experience .name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: rgb(165,187,213);
    opacity: 0.9;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: 37px;
    transform: translateY(0);
}.mentorship_experience .work_timeline > div:nth-child(2) {
    transition: all 0.4s ease 0.1s;
    padding-bottom: 1rem;
    font-size: 16px;
    font-weight: 600;
    color: rgb(118,154,188);
    opacity: 0.8;
    transform: translateY(0);
    position: relative;
    margin-bottom: 1.5rem;
}.mentorship_experience .work_timeline > div:nth-child(2)::after {
    position: absolute;
    bottom: 0;
    width: 40px;
    left: 0;
    transition: width 0.4s ease;
    background: rgb(118,154,188,0.5);
    height: 3px;
    content: "";
}.mentorship_experience .alumni_testimonials:hover .work_timeline > div:nth-child(2)::after {
    width: 100px;
}.mentorship_experience .exp_list {
    border-left: 3px solid rgb(118,154,188,0.5);
    font-style: italic;
    line-height: 1.7;
    padding: 1rem 0 0 1.5rem;
    opacity: 0.7;
    transition: all 0.5s ease 0.2s;
    font-size: 15px;
    color: #000000;
    transform: translateY(10px);
    position: relative;
}.mentorship_experience .alumni_testimonials:hover .exp_list {
    opacity: 1;
    transform: translateY(0);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes float-blob {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    100% {
        transform: translateY(10px) rotate(360deg);
    }
}

@media (max-width: 768px) {.mentorship_experience .img_card_item {
    height: 250px;
    width: 100%;
}}.future_learners {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}.future_learners::before {
    opacity: 0.03;
    content: "";
    background-size: 40px 40px;
    position: absolute;
    background-image: linear-gradient(rgb(165,187,213,0.5) 1px, transparent 1px), 
                     linear-gradient(90deg, rgb(165,187,213,0.5) 1px, transparent 1px);
    height: 100%;
    z-index: 0;
    left: 0;
    width: 100%;
    top: 0;
}.future_learners .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}.future_learners .skill_program {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}.future_learners h4 {
    padding-left: 20px;
    line-height: 1.3;
    color: #000000;
    font-size: 35px;
    margin-bottom: 60px;
    border-left: 4px solid rgb(165,187,213);
    position: relative;
    font-weight: 600;
}.future_learners div {
    flex-direction: column;
    display: flex;
    gap: 30px;
    counter-reset: item;
}.future_learners div p {
    line-height: 1.6;
    counter-increment: item;
    display: flex;
    padding: 0 0 0 70px;
    align-items: center;
    color: #000000;
    font-size: 12px;
    margin: 0;
    position: relative;
    min-height: 50px;
}.future_learners div p::before {
    position: absolute;
    color: rgb(165,187,213);
    background: rgb(210,219,235);
    content: counter(item);
    font-weight: 700;
    border-radius: 50%;
    justify-content: center;
    top: 50%;
    height: 50px;
    display: flex;
    width: 50px;
    transition: all 0.3s ease;
    left: 0;
    border: 1px solid rgba(rgb(165,187,213), 0.1);
    align-items: center;
    transform: translateY(-50%);
}.future_learners div p:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(rgb(165,187,213), 0.3);
    color: #ffffff;
    background: rgb(165,187,213);
}.future_learners div p::after {
    position: absolute;
    width: 1px;
    content: "";
    left: 25px;
    height: calc(100% - 25px);
    opacity: 0.3;
    top: 75px;
    background: rgb(165,187,213,0.5);
}.future_learners div p:last-child::after {
    display: none;
}.future_learners div p svg {
    z-index: 1;
    width: 24px;
    height: 24px;
    left: 13px;
    transition: all 0.3s ease;
    position: absolute;
    opacity: 0;
    top: 13px;
}.future_learners div p:hover svg {
    opacity: 1;
    transform: rotate(15deg);
}.future_learners div p svg path {
    fill: #ffffff;
}.future_learners div p:hover {
    color: #000000;
    transform: translateX(5px);
}

@media (max-width: 991px) {.future_learners {
    padding: 100px 0;
}.future_learners h4 {
    margin-bottom: 50px;
    font-size: calc(35px - 2px);
}.future_learners div {
    gap: 25px;
}
}

@media (max-width: 767px) {.future_learners {
    padding: 80px 0;
}.future_learners h4 {
    font-size: calc(35px - 4px);
    margin-bottom: 40px;
}.future_learners div {
    gap: 20px;
}.future_learners div p {
    padding-left: 60px;
}.future_learners div p::before {
    width: 45px;
    height: 45px;
}.future_learners div p::after {
    top: 67px;
    left: 22px;
}.future_learners div p svg {
    height: 21px;
    left: 12px;
    top: 12px;
    width: 21px;
}
}

@media (max-width: 479px) {.future_learners {
    padding: 60px 0;
}.future_learners h4 {
    padding-left: 15px;
    font-size: calc(35px - 6px);
    margin-bottom: 35px;
}.future_learners div {
    gap: 15px;
}.future_learners div p {
    font-size: calc(12px - 1px);
    padding-left: 55px;
}.future_learners div p::before {
    width: 40px;
    height: 40px;
}.future_learners div p::after {
    top: 60px;
    left: 20px;
}.future_learners div p svg {
    height: 20px;
    left: 10px;
    width: 20px;
    top: 10px;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
