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

.inner-container {
    height: 100%;
    flex-direction: column;
    min-height: 100%;
    display: flex;
}

.career_help {
    flex: 0 0 auto;
}

.career_help {
    padding: 4rem 0 2rem;
    color: #ffffff;
    position: relative;
}

.landing_page::before {
    right: 0;
    height: 20%;
    content: "";
    width: 40%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    position: absolute;
    background: rgb(109,109,113,0.5);
    z-index: 1;
    top: 0;
}

.landing_page > div {
    gap: 3rem;
    display: grid;
    max-width: 1200px;
    z-index: 2;
    width: 100%;
    position: relative;
    grid-template-columns: 1fr;
}

.landing_page p {
    transform: translateY(20px);
    line-height: 1.6;
    font-size: calc(13px * 1.2);
    animation: fadeUp 0.8s ease-out forwards 0.6s;
    color: #000000;
    margin-bottom: 2rem;
    position: relative;
    max-width: 90%;
    opacity: 0;
}

.landing_page .guide_approach span {
    position: absolute;
    transform: translateY(10px);
    padding: 2rem;
    width: 100%;
    left: 0;
    animation: fadeUp 0.8s ease-out forwards 1.2s;
    bottom: 0;
    z-index: 2;
    opacity: 0;
}

.landing_page .guide_approach h3 {
    font-size: calc(20px * 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    color: #ffffff;
    font-weight: 600;
}

.sign_up_for_updates::after {
    right: 0;
    animation: scanline 3s linear infinite;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgb(109,109,113), transparent);
    filter: blur(2px);
    width: 60%;
    content: "";
    position: absolute;
}

.sign_up_for_updates .request_message::before {
    position: absolute;
    top: -2px;
    background: linear-gradient(45deg, rgb(144,144,150), transparent, rgb(109,109,113));
    opacity: 0.7;
    filter: blur(15px);
    content: "";
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
    left: -2px;
    bottom: -2px;
    right: -2px;
}

.sign_up_for_updates h3::after {
    position: absolute;
    background: rgb(109,109,113);
    width: 50px;
    left: 0;
    height: 3px;
    content: "";
    box-shadow: 0 0 10px rgb(109,109,113);
    bottom: -10px;
}

.sign_up_for_updates input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 15px rgb(144,144,150,0.5);
}

.sign_up_for_updates .sub_discounts::before {
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    left: -100%;
    position: absolute;
    transition: all 0.6s ease;
}

.contact_us::before {
    opacity: 0.03;
    width: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(144,144,150,0.5),
        rgb(144,144,150,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    left: 0;
    height: 100%;
    top: 0;
    position: absolute;
    content: "";
}

.contact_us .support_query {
    width: 100%;
    padding: 50px;
    position: relative;
}

.contact_us form h3::after {
    height: 3px;
    width: 100%;
    left: 0;
    content: "";
    bottom: -10px;
    position: absolute;
    border-radius: 1.5px;
    background: rgb(144,144,150);
}

.contact_us form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.contact_us .query_support {
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
}

.contact_us .query_support input[type="checkbox"]:checked + label::before {
    background: rgb(144,144,150);
}

.contact_us .query_support label a {
    color: rgb(144,144,150);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact_us .query_support label a:hover {
    text-decoration: underline;
}

.contact_us form .help_reach:hover {
    background: rgb(109,109,113);
}

.contact_us svg {
    fill: rgb(144,144,150);
    height: 20px;
    width: 20px;
}

.our_background {
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.our_background::after {
    opacity: 0.15;
    height: 70%;
    animation: float 15s ease-in-out infinite;
    top: -10%;
    background: rgb(144,144,150);
    content: '';
    width: 40%;
    transform: rotate(-15deg) skewX(-15deg);
    z-index: 1;
    position: absolute;
    right: -5%;
}

.our_background .text_banner {
    position: relative;
    display: flex;
    backdrop-filter: blur(10px);
    animation: slideUpFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
    padding: 40px;
    transform: translateY(30px);
    opacity: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.our_background .text_banner {
    max-width: 90%;
    margin: 0 auto;
}

.our_background .text_banner::after {
    background: linear-gradient(90deg, transparent, rgb(144,144,150));
    animation: expandWidth 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 1.2s;
    bottom: -15px;
    transform: scaleX(0);
    right: 30px;
    position: absolute;
    transform-origin: right;
    height: 5px;
    content: '';
    width: 200px;
}

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

.tariff_plan .training_sub {
    text-align: center;
    position: relative;
    padding: 0 20px;
    order: -1;
    max-width: 700px;
    margin: 0 auto;
}

.tariff_plan .value_fees {
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.85;
    color: #000000;
    font-size: 14px;
}

.tariff_plan .package_rates {
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: inherit;
    perspective: 1000px;
    transform-style: preserve-3d;
    height: 100%;
    position: relative;
}

.tariff_plan .learning_package::before {
    content: "";
    position: absolute;
    transform: scaleX(0);
    height: 5px;
    transition: transform 0.5s ease;
    right: 0;
    transform-origin: left;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgb(144,144,150), rgb(109,109,113));
}

.tariff_plan .monthly_plan {
    overflow-wrap: break-word;
    transition: transform 0.4s ease;
    margin: 10px 0 20px;
    color: rgb(109,109,113);
    display: block;
    position: relative;
    font-size: 19px;
    white-space: normal;
    word-break: break-word;
    font-weight: 700;
}

.tariff_plan .img_card_wrap::after {
    inset: 0;
    content: "";
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: opacity 0.5s ease;
    opacity: 0.6;
}

.tariff_plan .package_rates::after {
    background: rgb(144,144,150,0.5);
    filter: blur(10px);
    z-index: -1;
    content: "";
    left: 30px;
    height: 15px;
    opacity: 0;
    top: 100%;
    right: 30px;
    position: absolute;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.secure_sanctuary h1,
.secure_sanctuary h2 {
    padding-left: 40px;
    text-transform: uppercase;
    position: relative;
    margin: 20px 0;
    letter-spacing: 2px;
}

.secure_sanctuary h1 {
    color: rgb(144,144,150);
    font-size: 42px;
    font-weight: 700;
}

.secure_sanctuary ul li {
    padding-left: 40px;
    font-size: 17px;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    font-weight: 400;
    position: relative;
}

.secure_sanctuary p::before {
    height: 10px;
    background: rgb(144,144,150);
    width: 10px;
    content: '';
    transform: translate(-50%, -50%);
    top: 0;
    left: 0;
    border-radius: 50%;
    position: absolute;
}


.gratArea {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(179,179,185) 0%, rgb(179,179,185) 60%, rgba(rgb(144,144,150,0.5), 0.05) 100%);
    perspective: 1000px;
}

.gratArea .container {
    margin: 0 auto;
    z-index: 1;
    padding: 0 2rem;
    transform-style: preserve-3d;
    position: relative;
    max-width: 1200px;
}

.gratArea h2 {
    transform: translateZ(10px);
    position: relative;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 700;
    max-width: 90%;
    font-size: 35px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gratArea .training_space::before {
    transform: translateZ(5px);
    right: -10px;
    opacity: 0.1;
    left: -10px;
    pointer-events: none;
    top: -10px;
    position: absolute;
    content: '';
    border: 1px solid rgb(144,144,150,0.5);
    border-radius: 100px;
    bottom: -10px;
}

.gratArea ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gratArea li {
    padding-left: 0;
    position: relative;
}

.gratArea li span {
    font-family: Arial, sans-serif;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
    font-size: 13px;
    line-height: 1.7;
    transform: translateZ(5px);
    position: relative;
    display: block;
    color: #000000;
}

.program_assets::after {
    animation: rotate 60s linear infinite;
    content: '';
    background: radial-gradient(ellipse at center, transparent 60%, rgb(109,109,113,0.5) 100%);
    position: absolute;
    width: 200%;
    top: -50%;
    height: 200%;
    opacity: 0.2;
    left: -50%;
}

.program_assets .img_card_wrap::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1;
    background: linear-gradient(to right, #000000 0%, transparent 30%);
    left: 0;
}

.program_assets h2::before {
    top: 50%;
    left: 0;
    position: absolute;
    height: 4px;
    content: '';
    transform: translateY(-50%);
    background: rgb(144,144,150);
    width: 20px;
}

.program_assets .text_main_holder {
    display: grid;
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    grid-area: content;
}

.program_assets .text_main_holder > div:nth-child(1) {
    --i: 1;
}

.program_assets .text_main_holder > div:nth-child(2) {
    --i: 2;
}

.program_assets .text_main_holder > div:nth-child(3) {
    --i: 3;
}

.program_assets .text_main_holder > div:nth-child(5) {
    --i: 5;
}

.program_assets .text_main_holder > div:nth-child(7) {
    --i: 7;
}

.program_assets .text_main_holder > div::before {
    background: linear-gradient(to right, transparent, rgb(144,144,150,0.5));
    bottom: 0;
    height: 1px;
    width: 60%;
    right: 0;
    content: '';
    position: absolute;
}

.program_assets .text_main_holder > div:hover svg {
    transform: translateY(-5px);
}

.consentWarningDialog {
    z-index: 100;
    bottom: 0;
    display: flex;
    width: 100%;
    background: rgb(179,179,185);
    border-top: 3px solid rgb(144,144,150);
    position: fixed;
    justify-content: center;
    padding: 20px 0;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
}

.cookies_consent h5 {
    letter-spacing: 1px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(144,144,150);
}

#cookieNoticeMessage:checked ~ .consentWarningDialog {
    visibility: hidden;
    opacity: 0;
}

.study_process::before {
    z-index: 1;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgb(109,109,113,0.5) 0%, transparent 70%);
    left: 0;
    content: "";
    top: 0;
    position: absolute;
    width: 100%;
}

.study_process .training_space::before {
    position: absolute;
    height: 10px;
    width: 70%;
    top: -10px;
    left: 20px;
    opacity: 0.7;
    transform: skewX(45deg);
    content: "";
    background: rgb(109,109,113);
}

.study_process .training_space > div {
    position: relative;
}

.study_process h3 {
    line-height: 1.4;
    color: #000000;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    font-size: calc(36px * 0.9);
    transform: translateZ(10px);
}

.study_process p::before {
    height: 60px;
    opacity: 0.4;
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    top: -20px;
    border: 1px dashed rgb(109,109,113,0.5);
    width: 60px;
    left: -30px;
}

.statistical_overview::before {
    height: 120%;
    width: 50%;
    z-index: 1;
    content: "";
    position: absolute;
    background: linear-gradient(145deg, rgb(144,144,150,0.5) 0%, transparent 80%);
    top: -5%;
    opacity: 0.05;
    transform: rotate(-15deg);
    left: -10%;
}

.statistical_overview h4 {
    text-align: left;
    font-size: 32px;
    animation: slideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
    margin-top: 3.5rem;
    opacity: 0;
    position: relative;
    color: #000000;
    transform: translateX(2rem);
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.statistical_overview h4 {
    font-size: calc(32px * 0.75);
    margin-top: 1.5rem;
    text-align: center;
}

.statistical_overview .key_classes:nth-child(1) {
    --i: 1;
}

.statistical_overview .key_classes:nth-child(3) {
    --i: 3;
}

.statistical_overview .key_classes:nth-child(5) {
    --i: 5;
}

.statistical_overview .key_classes:nth-child(7) {
    --i: 7;
}

.statistical_overview .key_classes::before {
    content: "";
    width: 4px;
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    top: 0;
    background: linear-gradient(to bottom, rgb(144,144,150), rgb(109,109,113));
    left: 0;
    height: 0;
    position: absolute;
}

.statistical_overview .key_classes::before {
    width: 100%;
    left: 0;
    height: 4px;
    top: 0;
}

.statistical_overview .key_classes p {
    margin: 0 0 0.5rem;
    color: rgb(144,144,150);
    font-size: calc(43px * 1.2);
    display: inline-block;
    position: relative;
    font-weight: 700;
}

.statistical_overview .key_classes:hover span {
    opacity: 1;
}

.get_help_info {
    background-color: rgb(144,144,150,0.5);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.get_help_info .container {
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.get_help_info .talk_form {
    position: relative;
    grid-template-columns: 1fr;
    box-shadow: 0 0 30px rgb(144,144,150,0.5),
                inset 0 0 20px rgb(144,144,150,0.5);
    padding: 0;
    border: 1px solid rgb(144,144,150,0.5);
    overflow: hidden;
    border-radius: 16px;
    display: grid;
    background: rgb(109,109,113);
}

.get_help_info .img_card_wrap {
    overflow: hidden;
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
    height: 250px;
}

.get_help_info .img_card_wrap::before {
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    mix-blend-mode: overlay;
    content: "";
    position: absolute;
    left: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(0, 0, 0, 0.1) 30px,
            rgba(0, 0, 0, 0.1) 31px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(0, 0, 0, 0.1) 30px,
            rgba(0, 0, 0, 0.1) 31px
        );
}

.get_help_info .feedback_form p:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgb(144,144,150,0.5);
    background: rgba(255, 255, 255, 0.07);
}

.get_help_info .feedback_form p span {
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.get_help_info .feedback_form p a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgb(144,144,150);
}

.get_help_info .feedback_form p a:hover::after {
    box-shadow: 0 0 10px rgb(144,144,150);
    transform: scaleX(1);
    background: #ffffff;
}

.get_help_info .feedback_form p:hover svg {
    filter: drop-shadow(0 0 5px rgb(144,144,150));
    stroke: #ffffff;
    transform: translateX(-2px) scale(1.1);
}

.get_help_info .feedback_form p:nth-child(1) svg path {
    animation-delay: 0.1s;
}

.get_help_info .feedback_form p:nth-child(4) svg path {
    animation-delay: 0.4s;
}

.get_help_info .edu_talk {
    text-shadow: 0 0 5px rgb(144,144,150,0.5);
    font-size: 21px;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
}

.get_help_info .reach_out {
    position: relative;
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.get_help_info .get_contactus:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px rgb(144,144,150,0.5);
    border-color: rgb(144,144,150);
    z-index: 2;
}

.get_help_info .get_contactus:hover::before {
    opacity: 0.15;
}

.get_help_info .get_contactus:hover svg {
    filter: drop-shadow(0 0 3px rgb(144,144,150));
    opacity: 1;
    transform: rotate(15deg);
    stroke: #ffffff;
}

.program_information::before {
    animation: pulseGlow 15s ease-in-out infinite;
    content: "";
    height: 70%;
    position: absolute;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgb(144,144,150,0.5) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
    width: 70%;
}

.program_information .training_space::before {
    z-index: -1;
    width: calc(100% + 4rem);
    content: "";
    border-radius: 18px;
    opacity: 0.05;
    top: -2rem;
    height: calc(100% + 4rem);
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgb(144,144,150,0.5) 50px, rgb(144,144,150,0.5) 51px),
        repeating-linear-gradient(180deg, transparent, transparent 50px, rgb(144,144,150,0.5) 50px, rgb(144,144,150,0.5) 51px);
    position: absolute;
    transform: translateZ(-10px);
    left: -2rem;
}

.program_information .nav_base::after {
    bottom: -10px;
    position: absolute;
    content: "";
    border-radius: 10px;
    width: 60px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, rgb(109,109,113) 0%, transparent 100%);
}

.program_information .nav_base svg:hover path {
    fill: rgb(109,109,113);
}

.program_information .program_guide:hover h3::after {
    width: 80px;
}

.program_information p {
    z-index: 2;
    margin-bottom: 1rem;
    transform: translateZ(10px);
    line-height: 1.7;
    position: relative;
    color: #000000;
    font-size: 15px;
}



.program_information .img_card_wrap::before {
    mix-blend-mode: soft-light;
    left: 0;
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    opacity: 0.5;
    transition: all 0.5s ease;
    z-index: 1;
    content: "";
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 40%,
        rgb(144,144,150,0.5) 100%
    );
}

.program_information .training_space:hover .img_card_wrap {
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    box-shadow: 
        25px 25px 70px rgba(0, 0, 0, 0.15),
        -25px -25px 70px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: translateZ(40px) rotate(1deg) scale(1.03);
}

header .top_learn {
    justify-content: center;
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
    display: flex;
}

header .page_header:hover::after {
    width: 80%;
    opacity: 1;
}

header .page_header:hover svg {
    transform: translateY(-5px);
}

header .header_train {
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 800px;
    backdrop-filter: blur(5px);
    justify-content: center;
    border-radius: 25px;
    display: flex;
    position: relative;
    width: 100%;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
}

header .nav_wrap::before {
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    opacity: 0;
    background: #ffffff;
    left: 0;
    transform: translateY(100%) scale(0.8);
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    border-radius: 10px;
}

.client_opinions::after {
    right: -80px;
    background: rgb(144,144,150,0.5);
    position: absolute;
    width: 250px;
    border-radius: 50%;
    bottom: -80px;
    filter: blur(100px);
    height: 250px;
    animation: floatBubble 15s infinite ease-in-out alternate;
    content: "";
}

.client_opinions .review_experiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    perspective: 1000px;
    gap: 40px;
}

.client_opinions .feedback_zone {
    transform: rotateX(5deg) rotateY(-8deg) translateZ(0);
    backface-visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.client_opinions .feedback_zone span {
    display: block;
    color: #000000;
    font-size: 20px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

.client_opinions .feedback_zone p::before {
    z-index: -1;
    left: -5px;
    font-family: serif;
    content: '"';
    font-size: 80px;
    color: rgb(144,144,150,0.5);
    top: -20px;
    position: absolute;
    opacity: 0.2;
}

header .top_plank .prime_elite div img, header .top_plank .prime_elite div svg {
    margin-right: 8px;
    height: 16px;
    width: 16px;
}

.future_students::before {
    opacity: 0.05;
    z-index: 1;
    height: 100%;
    background: linear-gradient(135deg, rgb(144,144,150,0.5) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, rgb(144,144,150,0.5) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, rgb(144,144,150,0.5) 25%, transparent 25%),
                linear-gradient(45deg, rgb(144,144,150,0.5) 25%, transparent 25%);
    position: absolute;
    width: 100%;
    top: 0;
    background-size: 100px 100px;
    left: 0;
    content: "";
}

.future_students p {
    border-radius: 14px;
    background: #ffffff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
    font-size: 15px;
    transform-style: preserve-3d;
    display: flex;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    padding: 25px;
    align-items: flex-start;
    transform: translateZ(0) rotateX(0) rotateY(0);
}

.future_students p {
    padding: 20px;
}

.future_students p svg path {
    fill: rgb(144,144,150);
    transition: fill 0.3s ease;
}

.future_students p:hover svg path {
    fill: rgb(109,109,113);
}

.future_students::after {
    width: 100%;
    height: 200px;
    bottom: 0;
    background: linear-gradient(to top, #ffffff, transparent);
    pointer-events: none;
    z-index: 1;
    left: 0;
    position: absolute;
    content: "";
}

.career_help::after {
    opacity: 0.5;
    top: 3px;
    content: "";
    left: 0;
    width: 100%;
    background-repeat: repeat-x;
    height: 8px;
    background-image: 
        linear-gradient(90deg, 
            rgb(109,109,113) 0px, rgb(109,109,113) 10px,
            transparent 10px, transparent 15px,
            rgb(109,109,113) 15px, rgb(109,109,113) 30px,
            transparent 30px, transparent 35px,
            rgb(109,109,113) 35px, rgb(109,109,113) 40px,
            transparent 40px, transparent 60px,
            rgb(109,109,113) 60px, rgb(109,109,113) 70px,
            transparent 70px, transparent 80px,
            rgb(109,109,113) 80px, rgb(109,109,113) 90px,
            transparent 90px, transparent 110px,
            rgb(109,109,113) 110px, rgb(109,109,113) 120px,
            transparent 120px, transparent 140px
        );
    position: absolute;
}

.career_help .sec_cert::before {
    opacity: 0.6;
    width: 20px;
    height: 20px;
    background: rgb(109,109,113);
    left: -10px;
    position: absolute;
    top: 2rem;
    content: "";
    border-radius: 50%;
}

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

.career_help .header_train::before {
    border-radius: 20px;
    left: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    z-index: -1;
    position: absolute;
    top: 0;
    content: "";
    right: 0;
    bottom: 0;
}

.career_help .header_train .header_wrap a {
    text-decoration: none;
    font-size: 15px;
    padding: 0.8rem 1rem 0.8rem 2rem;
    display: block;
    position: relative;
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footnote_ref {
    margin-top: 2.5rem;
    background: rgb(109,109,113);
    padding: 2rem 0;
    position: relative;
}

.footnote_ref .container {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.footnote_ref .container::after {
    right: 15%;
}

.footnote_ref .compliance {
    text-align: center;
    padding: 0.5rem 2rem;
    font-size: 16px;
    display: inline-block;
    border-radius: 30px;
    color: #ffffff;
    position: relative;
    background: rgb(144,144,150);
}

.footnote_ref .compliance::after {
    margin-left: 15px;
    left: 100%;
}

.developer_experience {
    perspective: 1000px;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(179,179,185) 30%, rgb(109,109,113,0.5) 100%);
}

.developer_experience .feedback_zone {
    display: grid;
    transform: rotateX(5deg) rotateZ(-1deg);
    z-index: 1;
    grid-template-columns: 1fr 1.2fr;
    transform-style: preserve-3d;
    gap: 0;
    max-width: 1100px;
    position: relative;
    margin: 0 auto;
}

.developer_experience .emp_container::before {
    width: 10px;
    top: 50%;
    position: absolute;
    background: linear-gradient(to bottom, rgb(144,144,150), rgb(109,109,113));
    transform: translateY(-50%);
    left: 0;
    height: 60%;
    content: "";
}

.developer_experience .emp_container div:nth-child(2) {
    transform: translateZ(15px);
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 2rem;
    color: rgb(109,109,113);
    transition: transform 0.5s ease 0.1s;
}

.developer_experience .feedback_zone:hover .img_card_wrap {
    transform: translateZ(50px) translateX(-20px);
}

.developer_experience .feedback_zone:hover .name {
    transform: translateZ(40px);
}


@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}



@media (min-width: 992px) {.landing_page {
    padding: 8rem 6rem;
}.landing_page > div {
    gap: 4rem;
}.landing_page h1.learning_main {
    font-size: calc(39px * 1.4);
}.landing_page .guide_approach {
    transition: transform 0.5s ease;
    min-height: 420px;
    transform: translateY(0) rotateY(-5deg);
    transform-origin: center;
}.landing_page .guide_approach:hover {
    transform: rotateY(0) scale(1.03);
}
}



@media (max-width: 768px) {.sign_up_for_updates {
    padding: 3rem 1rem;
}.sign_up_for_updates .request_message {
    padding: 2rem 1rem;
    width: 100%;
    margin-left: 0;
    transform: perspective(0) rotateX(0);
}.sign_up_for_updates h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
}.sign_up_for_updates h3::after {
    transform: translateX(-50%);
    left: 50%;
}.sign_up_for_updates .input_holder {
    clip-path: none;
    flex-direction: column;
}.sign_up_for_updates input[type="email"] {
    border-right: none;
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgb(144,144,150,0.5);
}.sign_up_for_updates .sub_discounts {
    padding: 1rem;
    width: 100%;
}}



@media (hover: hover) {.our_background .text_banner {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                   box-shadow 0.4s ease;
}.our_background .text_banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 
                    0 0 0 1px rgba(rgb(144,144,150,0.5), 0.1);
}
}



@media (min-width: 992px) {.tariff_plan .access_rates {
    align-items: center;
    flex-direction: row;
}.tariff_plan .training_sub {
    flex: 0 0 30%;
    order: 0;
    padding-right: 40px;
    text-align: left;
}.tariff_plan .training_sub h2::after {
    transform: none;
    left: 0;
}.tariff_plan .rate_list {
    grid-template-columns: repeat(2, 1fr);
    flex: 0 0 70%;
}
}



@media (max-width: 480px) {.tariff_plan {
    padding: 50px 0;
}.tariff_plan .learning_package h3 {
    font-size: 19px;
}.tariff_plan .monthly_plan {
    font-size: calc(19px - 2px);
}.tariff_plan .img_card_wrap {
    height: 160px;
}.tariff_plan .learning_package {
    padding: 20px;
}}



@media (max-width: 991px) {.gratArea {
    padding: 5rem 0;
}.gratArea h2 {
    font-size: calc(35px * 0.9);
    max-width: 100%;
}.gratArea .training_space {
    padding: 2rem 2.5rem;
    transform: translateZ(10px) rotateY(-1deg);
}
}



@media (max-width: 480px) {.gratArea {
    padding: 3rem 0;
}.gratArea .container {
    padding: 0 1.5rem;
}.gratArea h2 {
    font-size: calc(35px * 0.7);
    margin-bottom: 1.5rem;
}.gratArea .training_space {
    padding: 1.25rem 1.5rem;
    margin: 0.5rem 0;
}.gratArea li span {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
}}



@media (max-width: 576px) {.program_assets {
    padding: 60px 0;
}.program_assets .img_card_wrap {
    height: 280px;
}.program_assets .text_main_holder > div {
    padding: 20px;
}.program_assets .text_main_holder svg {
    width: 30px;
    height: 30px;
}}



@media (max-width: 992px) {.study_process {
    padding: 90px 0;
}.study_process .training_space {
    padding: 40px 30px;
    transform: perspective(1000px) rotateX(1deg);
}.study_process h3 {
    font-size: calc(36px * 0.8);
}
}



@media (max-width: 992px) {.statistical_overview {
    padding: 4rem 0;
}.statistical_overview h4 {
    margin-top: 2.5rem;
    font-size: calc(32px * 0.9);
}.statistical_overview ul {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}.statistical_overview .key_classes {
    padding: 1.75rem;
}.statistical_overview .key_classes p {
    font-size: calc(43px * 1.1);
}
}



@media (min-width: 992px) {.get_help_info::after {
    animation: rotateBackground 40s linear infinite;
}.get_help_info .talk_form {
    grid-template-columns: 350px 1fr;
}.get_help_info .feedback_form p {
    font-size: calc(17px + 1px);
}.get_help_info .feedback_form svg {
    width: 24px;
    height: 24px;
}.get_help_info .reach_out {
    grid-template-columns: repeat(4, 1fr);
}.get_help_info .get_contactus svg {
    width: 16px;
    height: 16px;
}
}



@media (max-width: 1024px) {.program_information {
    padding: 5rem 0;
}.program_information .training_space {
    gap: 2rem;
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateY(0deg);
}.program_information .program_guide {
    padding: 2.5rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}.program_information .img_card_wrap {
    min-height: 350px;
    border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    transform: translateZ(20px) rotate(0deg);
}.program_information .training_space:hover .img_card_wrap {
    transform: translateZ(30px) scale(1.02);
}
}



@media (max-width: 767px) {header {
    padding: 1rem 0;
}header .top_learn {
    gap: 1rem;
}header .page_header svg {
    width: 150px;
}header .header_train {
    gap: 0.4rem;
    padding: 0.4rem;
}header .nav_wrap {
    font-size: calc(13px - 2px);
    padding: 0.5rem 0.8rem;
}
}



@media (max-width: 1200px) {.client_opinions {
    padding: 100px 0;
}.client_opinions .review_experiences {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}.client_opinions .feedback_zone {
    padding: 25px;
    transform: rotateX(3deg) rotateY(-5deg) translateZ(0);
}
}



@media (max-width: 768px) {.future_students {
    padding: 80px 0;
}.future_students h4 {
    margin-bottom: 50px;
    font-size: calc(32px * 0.8);
}.future_students div > div {
    gap: 25px;
    grid-template-columns: 1fr;
}.future_students p {
    padding: 18px;
}.future_students p svg {
    height: 24px;
    margin-right: 12px;
    width: 24px;
}.future_students p:nth-child(odd),
    .future_students p:nth-child(even) {
    transform: none;
    animation: none;
}.future_students p:hover {
    transform: translateY(-5px);
}.future_students p:hover svg {
    transform: scale(1.2);
}.future_students::after {
    height: 100px;
}
}



@media (max-width: 768px) {.career_help {
    padding: 3rem 0 1rem;
}.career_help .header_wrap {
    gap: 1.5rem;
}.career_help .company_holder h3 {
    padding: 1.2rem 1.5rem;
    font-size: calc(36px - 2px);
}.career_help .sec_cert {
    padding: 1.5rem;
}.career_help .sec_cert::before,
    .career_help .sec_cert::after {
    display: none;
}.footnote_ref {
    margin-top: 2rem;
}.footnote_ref .compliance::before,
    .footnote_ref .compliance::after {
    width: 30px;
}
}



@media screen and (max-width: 991px) {.developer_experience .feedback_zone {
    grid-template-columns: 1fr;
    transform: none;
}.developer_experience .img_card_wrap {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    transform: none;
    margin-bottom: -2rem;
    height: 350px;
}.developer_experience .emp_container {
    transform: none;
    z-index: 3;
    padding: 3rem 2rem 2rem;
    margin-left: 0;
}.developer_experience .emp_container::before {
    height: 5px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 50%;
}.developer_experience .feedback_zone:hover .img_card_wrap,
    .developer_experience .feedback_zone:hover .emp_container,
    .developer_experience .feedback_zone:hover .name,
    .developer_experience .feedback_zone:hover .emp_container div:nth-child(2),
    .developer_experience .feedback_zone:hover .emp_wrap {
    transform: none;
}
}



@keyframes float-effect {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
    100% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}



@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}



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



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



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



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

@keyframes floatAnimation {
    0% {
        transform: translateZ(30px) rotate(3deg) translateY(0);
    }
    50% {
        transform: translateZ(30px) rotate(3deg) translateY(-10px);
    }
    100% {
        transform: translateZ(30px) rotate(3deg) translateY(0);
    }
}



@keyframes float2 {
    0%, 100% {
        transform: translateZ(30px) translateY(0);
    }
    50% {
        transform: translateZ(50px) translateY(-20px);
    }
}


    
    @keyframes float2 {
        0%, 100% {
            transform: translateZ(15px) translateY(0);
        }
        50% {
            transform: translateZ(25px) translateY(-12px);
        }
    }

