﻿* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}


.program_overview {
    min-height: 600px;
    background-color: #ffffff;
    overflow: hidden;
    max-height: 900px;
    height: 100vh;
    position: relative;
}

.program_overview .skill_explorer {
    animation: carousel-slide 30s infinite linear;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    display: flex;
    width: 500%;
}

.program_overview .grow_skills:hover img {
    transform: scale(1.2);
}

.program_overview .who_mentors {
    width: 100%;
    padding-left: 3%;
    max-width: 750px;
}

.program_overview .knowledge_route h3 {
    font-weight: 700;
    color: #000000;
    font-size: 38px;
    margin-bottom: 1.5rem;
}

.program_overview .knowledge_route .reach_reach::before {
    opacity: 0;
    left: 0;
    height: 100%;
    content: '';
    z-index: -1;
    position: absolute;
    width: 100%;
    top: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(to right, rgb(118,112,113), rgb(149,145,145));
}



.mentorship_profile .container {
    padding: 0 15px;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}

.mentorship_profile .pic_card {
    border-radius: 20px;
    transform: rotate(-5deg);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    width: 260px;
    z-index: 3;
    position: relative;
    box-shadow: 
        25px 25px 50px rgba(0, 0, 0, 0.12),
        -25px -25px 50px rgba(255, 255, 255, 0.7),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    height: 260px;
    margin-bottom: 30px;
}

.mentorship_profile .name::after {
    bottom: 0;
    width: 80px;
    background: linear-gradient(
        to right,
        rgb(149,145,145) 0%,
        rgb(118,112,113) 100%
    );
    position: absolute;
    transform: translateX(-50%);
    border-radius: 3px;
    content: "";
    left: 50%;
    height: 3px;
}

.mentorship_profile .career_progress::before {
    border-radius: 0 0 10px 0;
    height: 35px;
    top: 25px;
    opacity: 0.2;
    left: 25px;
    width: 35px;
    content: "";
    background: 
        linear-gradient(45deg, rgb(149,145,145,0.5) 0%, transparent 100%);
    position: absolute;
}



.mentorship_profile .learning_views::after {
    height: 350px;
    z-index: 0;
    position: absolute;
    animation: morphing 15s infinite alternate-reverse ease-in-out;
    left: 50%;
    border-radius: 60% 40% 30% 70% / 50% 50% 50% 50%;
    opacity: 0.08;
    top: -50px;
    width: 350px;
    content: "";
    background: 
        linear-gradient(
            135deg,
            transparent 0%,
            rgb(118,112,113,0.5) 100%
        );
    transform: translateX(-50%) rotate(-45deg);
}

.alumni_net .container {
    justify-content: space-between;
    gap: 3rem;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

.alumni_net .company_holder::before {
    position: absolute;
    left: -50%;
    content: "";
    width: 200%;
    background: linear-gradient(90deg, transparent, rgb(149,145,145), transparent);
    height: 1px;
    top: 0;
    transform: translateY(-1px);
}

.alumni_net .company_holder:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 0 20px rgb(149,145,145,0.5);
}

.alumni_net .math_tools {
    min-width: 400px;
    flex: 1 1 calc(100% - 450px);
}

.alumni_net .site_start {
    gap: 2.5rem;
    flex-wrap: wrap;
    display: flex;
}

.alumni_net .top_start::after {
    transform: translateY(1px);
    position: absolute;
    width: 100%;
    content: "";
    height: 1px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(149,145,145), transparent);
}

.alumni_net .top_start:hover h5::after {
    width: 100%;
}

.alumni_net .top_start .site_start {
    flex-direction: column;
    gap: 1rem;
    display: flex;
}

.alumni_net .top_start .site_start a::before {
    border-radius: 10px;
    opacity: 0.5;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgb(149,145,145), rgb(118,112,113));
    width: 3px;
    transition: all 0.3s ease;
}

.privacy_cta {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.contact {
    padding: 120px 0;
    position: relative;
}

.contact::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    z-index: 1;
    top: 0;
    background: linear-gradient(45deg, rgb(118,112,113,0.5), rgb(149,145,145,0.5));
}

.contact .message_query h3 {
    margin-bottom: 40px;
    font-size: 30px;
    position: relative;
    color: #000000;
    font-weight: 700;
}

.contact .message_query div:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.contact .message_query div span {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}

.contact .feedback_reach {
    position: relative;
    width: 60%;
    background: #ffffff;
    padding: 60px 40px;
}

.contact form input[type="text"],
.contact form input[type="email"] {
    border: none;
    transition: all 0.3s ease;
    font-size: 14px;
    padding: 18px 20px;
    border-radius: 10px;
    background-color: rgb(181,179,179);
    color: #000000;
}

.contact .message_inquiry input[type="checkbox"]:checked + label::before {
    background: rgb(149,145,145);
}

.contact .message_inquiry label a {
    font-weight: 600;
    color: rgb(149,145,145);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact form .reach_reach::before {
    position: absolute;
    height: 100%;
    content: '';
    transition: transform 0.6s ease;
    top: 0;
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.statistical_summary::before {
    top: 0;
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, rgb(118,112,113,0.5) 100%);
    width: 100%;
}

.statistical_summary ul {
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    list-style: none;
    display: grid;
    gap: 20px;
}

.statistical_summary .fast_gain::before {
    content: "";
    z-index: -1;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    background: rgba(255, 255, 255, 0.8);
    inset: 2px;
    position: absolute;
}

.statistical_summary svg {
    transition: all 0.3s ease;
    right: 10px;
    opacity: 0.4;
    width: 24px;
    fill: rgb(149,145,145);
    top: 10px;
    position: absolute;
    height: 24px;
}

.statistical_summary ul:has(.fast_gain:only-child) .fast_gain {
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.statistical_summary ul:has(.fast_gain:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.statistical_summary ul:has(.fast_gain:nth-child(9):last-child),
.statistical_summary ul:has(.fast_gain:nth-child(10):last-child) {
    grid-template-columns: repeat(5, 1fr);
}

header .head_page:before {
    left: 0;
    height: 100%;
    top: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(149,145,145,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgb(118,112,113,0.5) 0%, transparent 40%);
    pointer-events: none;
    content: '';
    width: 100%;
    opacity: 0.15;
    position: absolute;
    mix-blend-mode: overlay;
}

header .site_nav {
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    letter-spacing: 1px;
}

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

header .site_nav:hover:after {
    opacity: 0.15;
    transform: scaleY(1);
}

header .header_site:hover:before {
    animation: pulse 2s infinite;
    opacity: 0.15;
}

header .header_site:hover:after {
    opacity: 0.7;
}

header .header_site:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px rgb(149,145,145));
}

.gratPage {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(181,179,179) 0%, rgb(118,112,113,0.5) 100%);
    position: relative;
}

.gratPage h2 {
    margin-bottom: 40px;
    font-size: 29px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    color: #000000;
    transform: translateZ(20px);
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.gratPage .who_mentors::before {
    content: "";
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(149,145,145) 0%, rgb(118,112,113) 100%);
    top: 0;
    position: absolute;
    height: 6px;
}

.take_a_spin {
    padding: 120px 0;
    background: linear-gradient(120deg, rgb(118,112,113,0.5) 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.take_a_spin::after {
    position: absolute;
    z-index: 1;
    background: rgb(118,112,113,0.5);
    height: 150%;
    bottom: -30%;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    content: '';
    left: -10%;
    opacity: 0.1;
    width: 60%;
    transform: rotate(15deg);
}

.take_a_spin .reach_reach:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.05);
}

.take_a_spin .container p::before {
    z-index: -1;
    content: '';
    animation: morph 8s ease-in-out infinite;
    height: 120%;
    top: -10%;
    background: #ffffff;
    left: -20%;
    position: absolute;
    width: 140%;
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    opacity: 0.4;
}

.price_card_item .basic_rates {
    position: relative;
}

.price_card_item h2::after {
    border-radius: 10px;
    left: 50%;
    height: 4px;
    position: absolute;
    transform: translateX(-50%);
    content: "";
    width: 80px;
    background: linear-gradient(90deg, rgb(149,145,145), rgb(118,112,113));
    bottom: -12px;
}

.price_card_item .qtr_cost::before {
    transform: scaleX(0);
    content: "";
    height: 4px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    background: linear-gradient(90deg, rgb(149,145,145), rgb(118,112,113));
    right: 0;
    left: 0;
    transform-origin: 0 0;
    top: 0;
}

.price_card_item .learning_fees h4::after {
    left: 0;
    transition: width 0.3s ease;
    bottom: 0;
    position: absolute;
    height: 3px;
    background: rgb(118,112,113);
    content: "";
    width: 40px;
}

.price_card_item .qtr_cost:hover .pricing_options {
    background: rgba(rgb(149,145,145,0.5), 0.2);
    transform: scale(1.05);
}

.data_guard {
    flex-shrink: 0;
    margin-right: 20px;
}

#cookie_alert_window {
    display: none;
}

#cookie_alert_window:checked ~ .cookie_warning_alert {
    visibility: hidden;
    opacity: 0;
}

.cookie_protect p {
    margin-bottom: 0;
    color: #000000;
    font-size: 14px;
}

.cookie_warning_alert p a {
    text-decoration: underline;
    color: rgb(149,145,145);
}

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

.potential_students div {
    flex-direction: column;
    display: flex;
    gap: 30px;
    counter-reset: item;
}

.potential_students div p::before {
    transform: translateY(-50%);
    width: 50px;
    top: 50%;
    left: 0;
    align-items: center;
    border: 1px solid rgba(rgb(149,145,145), 0.1);
    background: rgb(181,179,179);
    color: rgb(149,145,145);
    font-weight: 700;
    content: counter(item);
    transition: all 0.3s ease;
    height: 50px;
    border-radius: 50%;
    display: flex;
    position: absolute;
    justify-content: center;
}

.join_our_mailing_list::after {
    bottom: 0;
    top: 0;
    content: "";
    background: radial-gradient(ellipse at 70% 30%, rgb(149,145,145,0.5) 0%, transparent 70%);
    left: 0;
    position: absolute;
    mix-blend-mode: overlay;
    pointer-events: none;
    right: 0;
}

.join_our_mailing_list .who_mentors::after {
    width: 80px;
    opacity: 0.5;
    left: -15px;
    border-right: none;
    position: absolute;
    border-top: none;
    height: 80px;
    border: 2px solid rgb(118,112,113);
    bottom: -15px;
    animation: pulse 6s ease-in-out infinite reverse;
    content: "";
    transform: rotate(0deg);
}

.join_our_mailing_list .input_holder span {
    flex: 1 1 250px;
    position: relative;
}

.join_our_mailing_list .input_holder input[type="email"]:focus::placeholder {
    opacity: 0.3;
}

.join_our_mailing_list .input_holder input[type="submit"] {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    width: 100%;
    z-index: 1;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #ffffff;
    cursor: pointer;
    height: 54px;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: rgb(149,145,145);
    position: relative;
    overflow: hidden;
}

.our_mission::after {
    border-radius: 50%;
    z-index: 0;
    content: "";
    position: absolute;
    animation: rotate 30s infinite linear;
    top: -100px;
    border: 1px solid rgb(118,112,113,0.5);
    height: 200px;
    width: 200px;
    right: -100px;
}

.our_mission ul {
    margin: 0;
    list-style: none;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    padding: 0;
}

.our_mission .fast_learning:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.our_mission .fast_learning:nth-child(2) {
    animation-delay: 0.6s;
}

.our_mission h4 {
    margin-bottom: 1.5rem;
    display: inline-block;
    color: #000000;
    font-weight: 600;
    font-size: calc(18px * 1.1);
    position: relative;
    margin-top: 0;
}

.our_mission .fast_learning div {
    padding-right: 10px;
    font-size: 18px;
    position: relative;
    line-height: 1.8;
    max-height: 300px;
    color: #000000;
    overflow-y: auto;
}

.title_portal > div > div:first-child {
    padding-left: 1rem;
    position: relative;
}

.title_portal > div > div:first-child::before {
    transform: scaleY(0);
    left: 0;
    content: "";
    top: 0;
    animation: line-grow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    background: linear-gradient(to bottom, 
    rgb(149,145,145), 
    rgb(118,112,113));
    width: 6px;
    height: 100%;
    position: absolute;
    transform-origin: top;
}

.title_portal .learn_identity::before {
    opacity: 0.1;
    width: 40px;
    top: -10px;
    position: absolute;
    content: "";
    animation: rotate-accent 30s linear infinite;
    background: rgb(118,112,113);
    transform: rotate(45deg);
    height: 40px;
    z-index: -1;
    left: -20px;
}

.title_portal .learn_begin p::before {
    left: 0;
    height: 6px;
    width: 6px;
    transform: translateY(-50%);
    position: absolute;
    background-color: rgb(149,145,145);
    border-radius: 10px;
    top: 50%;
    content: "";
    animation: pulse 3s ease infinite;
}

.secure_haven li {
    font-size: 15px;
    padding: 10px 20px;
    margin-bottom: 15px;
    background: rgb(149,145,145,0.5);
    border-left: 4px solid rgb(149,145,145);
    color: #000000;
    border-radius: 10px;
    font-weight: 400;
}



@media screen and (max-width: 992px) {.program_overview {
    height: auto;
    flex-direction: column;
    max-height: none;
    min-height: 0;
    display: flex;
}.program_overview::before {
    background: linear-gradient(180deg, rgb(181,179,179) 0%, transparent 50%);
}.program_overview .fast_development {
    height: 400px;
    position: relative;
    width: 100%;
    order: 2;
}.program_overview .container {
    width: 100%;
    padding: 4rem 2rem;
    order: 1;
}.program_overview .who_mentors {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}
}



@media (max-width: 575px) {.mentorship_profile {
    padding: 50px 0;
}.mentorship_profile .pic_card {
    margin-bottom: 15px;
    height: 150px;
    width: 150px;
    border-radius: 15px;
}.mentorship_profile .pic_card::before {
    border-radius: 22px;
    inset: -8px;
}.mentorship_profile .pic_card::after {
    border-radius: 30px;
    inset: -15px;
}.mentorship_profile .name {
    margin-bottom: 8px;
    font-size: calc(41px * 0.7);
    padding: 0 10px 10px;
}.mentorship_profile .name::after {
    width: 60px;
    height: 2px;
}.mentorship_profile .learning_views span:not(.name) {
    margin-bottom: 25px;
    font-size: calc(21px * 0.85);
    letter-spacing: 1px;
}.mentorship_profile .career_progress {
    width: 100%;
    border-radius: 10px;
    font-size: calc(12px * 0.9);
    padding: 25px 20px;
}.mentorship_profile .career_progress::before,
    .mentorship_profile .career_progress::after {
    height: 20px;
    top: 15px;
    left: 15px;
    width: 20px;
}.mentorship_profile .career_progress::after {
    bottom: 15px;
    right: 15px;
}.mentorship_profile .learning_views::before,
    .mentorship_profile .learning_views::after {
    height: 150px;
    width: 150px;
}.mentorship_profile .learning_views:hover span:not(.name) {
    letter-spacing: 2px;
}}



@media screen and (max-width: 480px) {.statistical_summary {
    padding: 60px 0;
}.statistical_summary h2 {
    font-size: calc(48px * 0.7);
    margin-bottom: 40px;
}.statistical_summary h2::after {
    bottom: -15px;
    width: 40px;
}.statistical_summary ul {
    gap: 25px;
}.statistical_summary .fast_gain {
    min-height: 130px;
}.statistical_summary .fast_gain p {
    font-size: 1.8rem;
}.statistical_summary .fast_gain span {
    font-size: calc(12px * 0.8);
}.statistical_summary ul:has(.fast_gain:only-child) .fast_gain {
    height: 180px;
    width: 180px;
}.statistical_summary ul:has(.fast_gain:only-child) .fast_gain p {
    font-size: 2.8rem;
}.statistical_summary svg {
    width: 20px;
    height: 20px;
}}



@media (max-width: 576px) {.gratPage {
    padding: 50px 0;
}.gratPage h2 {
    margin-bottom: 25px;
    font-size: calc(29px * 0.7);
}.gratPage h2::after {
    width: 50px;
    height: 3px;
}.gratPage .who_mentors {
    padding: 20px;
    transform: none;
}.gratPage li {
    padding-left: 20px;
}.gratPage span {
    font-size: calc(13px * 0.9);
    line-height: 1.6;
}}



@media (max-width: 480px) {.take_a_spin {
    padding: 50px 0;
}.take_a_spin .container p {
    margin-bottom: 30px;
    border-radius: 30px;
    font-size: calc(15px * 1.2);
    padding: 25px 30px;
}.take_a_spin .reach_reach {
    font-size: calc(20px * 0.9);
    padding: 12px 30px;
}}


@media (max-width: 1200px) {.cookie_protect h5 {
    font-size: calc(21px - 2px);
}.cookie_protect p {
    font-size: calc(14px - 2px);
}.cookie_disclaimer {
    font-size: calc(18px - 2px);
    padding: 8px 16px;
}
}



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



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



@media (prefers-reduced-motion) {.join_our_mailing_list::before {
    animation: none;
}.join_our_mailing_list .who_mentors::before,
    .join_our_mailing_list .who_mentors::after {
    animation: none;
}.join_our_mailing_list .input_holder input[type="submit"]::before {
    display: none;
}}



@media (min-width: 768px) {.title_portal {
    padding: 5rem 2rem;
}.title_portal > div {
    gap: 4rem;
}.title_portal > div > div:first-child {
    padding-left: 2rem;
}.title_portal > div > div:first-child::before {
    width: 8px;
}.title_portal .learn_begin {
    padding: 3.5rem;
}.title_portal .learn_identity::before {
    top: -15px;
    left: -30px;
    width: 60px;
    height: 60px;
}
}



@media only screen and (max-width: 800px) {.secure_haven {
    padding: 30px 15px;
    grid-template-columns: 1fr;
}.secure_haven h1 {
    font-size: calc(24px - 10px);
}.secure_haven h2 {
    font-size: calc(24px - 8px);
}.secure_haven li {
    padding: 8px 15px;
    font-size: calc(15px - 2px);
}
}



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



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



@keyframes shine {
    0% {
        left: -100px;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}



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



@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}



@keyframes line-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

