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

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

svg {
    width: 30px;
    height: 30px;
}

header,footer {
    width: 100%;
}

header {
    position: fixed;
    background-color: #ffffff;
    top: 0;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 1000;
    left: 0;
    border-bottom: 2px solid rgb(239,238,234);
}


.reach_out {
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    background: rgb(239,238,234);
}

.reach_out::after {
    position: absolute;
    opacity: 0.07;
    top: 0;
    background-image: 
        linear-gradient(rgb(179,177,161,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgb(179,177,161,0.5) 1px, transparent 1px);
    left: 0;
    content: "";
    background-size: 30px 30px;
    width: 100%;
    z-index: 1;
    height: 100%;
}

.reach_out h2::after {
    height: 4px;
    left: calc(50% - 15px);
    content: "";
    background: rgb(179,177,161);
    position: absolute;
    width: 30px;
    bottom: 0;
}

.reach_out .contact_query {
    padding: 60px;
    display: flex;
    justify-content: center;
    flex: 0 0 55%;
    position: relative;
    flex-direction: column;
}

.reach_out .contact_query::after {
    bottom: -50px;
    border-radius: 0;
    width: 100px;
    transform: rotate(45deg);
    content: "";
    height: 100px;
    z-index: 0;
    left: -50px;
    background: rgb(179,177,161,0.5);
    position: absolute;
}

.reach_out form input[type="text"] {
    color: #000000;
    border: none;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 20px 25px;
    border-bottom: 2px solid rgb(239,238,234);
    margin-bottom: 25px;
    background: transparent;
}

.reach_out .inquiry_query label::before {
    position: absolute;
    content: "";
    background: transparent;
    border: 2px solid rgb(239,238,234);
    transition: all 0.3s ease;
    height: 22px;
    top: 0;
    left: 0;
    width: 22px;
}

.reach_out .inquiry_query label a::after {
    transform-origin: left;
    height: 1px;
    width: 100%;
    bottom: -1px;
    transition: transform 0.3s ease;
    left: 0;
    background: rgb(212,210,198);
    transform: scaleX(1);
    content: "";
    position: absolute;
}

.reach_out .support_grid::before {
    transform: skewX(-25deg);
    transition: width 0.5s ease;
    z-index: -1;
    position: absolute;
    width: 0;
    height: 100%;
    left: -10px;
    top: 0;
    content: "";
    background: rgb(179,177,161);
}

.reach_out svg:hover,
.reach_out svg:hover path {
    stroke: rgb(179,177,161);
}

.ranking_bar .container {
    z-index: 1;
    position: relative;
}

.ranking_bar .msg_info {
    display: grid;
    position: relative;
    padding-bottom: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    border-bottom: 1px solid rgb(179,177,161,0.5);
}

.ranking_bar .info_item p,
.ranking_bar .info_item a {
    color: #000000;
    gap: 0.75rem;
    font-size: 15px;
    align-items: center;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    transition: color 0.3s ease;
}

.ranking_bar .header_site svg:hover {
    opacity: 0.8;
}

.ranking_bar .main_class {
    flex-direction: column;
    display: flex;
    gap: 1.5rem;
}

.ranking_bar .head_page a {
    text-decoration: none;
    position: relative;
    padding-left: 0;
    color: #000000;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 15px;
}

.ranking_bar .subscribe_holder {
    border-radius: 11px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.ranking_bar .input_holder input[type="email"] {
    flex: 1;
    color: #000000;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid rgb(179,177,161,0.5);
    padding: 1rem 1.25rem;
    font-size: 15px;
}

.ranking_bar .program_foot {
    font-size: 14px;
    color: #000000;
    opacity: 0.8;
}

.ranking_bar .head_page:first-child {
    position: relative;
    margin-bottom: 1.5rem;
}

header .head_pagebar {
    width: 100%;
    padding: 0;
}

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

header .main_class {
    gap: 35px;
    align-items: center;
    display: flex;
}

header .head_edu:before {
    transition: transform 0.3s ease;
    position: absolute;
    border-radius: 10px;
    content: '';
    background-color: rgb(212,210,198);
    width: 6px;
    height: 6px;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
}

header .head_edu:hover:after {
    transform: scaleX(1);
}

header .header_navbar:before {
    left: 0;
    width: 100%;
    content: '';
    top: 0;
    background: linear-gradient(to right, rgb(212,210,198), rgb(179,177,161)) border-box;
    opacity: 0;
    position: absolute;
    mask-composite: exclude;
    border: 2px solid transparent;
    height: 100%;
    -webkit-mask-composite: xor;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
}

.privacy_unit h4 {
    font-size: 23px;
}

.privacy_unit h5 {
    font-size: calc(23px - 0.2rem);
}

.privacy_unit h6 {
    font-size: 20px;
}

.privacy_unit ol {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: decimal;
}

.privacy_unit p {
    font-size: 13px;
    margin-bottom: 20px;
}

.privacy_unit ul li::marker,
.privacy_unit ol li::marker {
    font-weight: 700;
    color: rgb(179,177,161);
}

.course_program_info {
    position: relative;
    background: rgb(239,238,234);
    padding: 120px 0;
    overflow: hidden;
}

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

.course_program_info .education_flow {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    flex-direction: column;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: #ffffff;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.8);
}

.course_program_info .text_details {
    transform: translateY(-30px);
    padding: 40px;
    position: relative;
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    margin: 0 15px;
}

.course_program_info .text_details p.description {
    font-weight: 400;
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateY(10px);
    color: #000000;
    line-height: 1.7;
    max-height: 200px;
    animation: fadeUp 0.7s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 20px;
    padding-right: 15px;
    font-size: 13px;
    overflow-y: auto;
    position: relative;
}

.teaching_history::before {
    background: linear-gradient(45deg, rgb(212,210,198,0.5), rgb(179,177,161,0.5));
    top: -10%;
    animation: float 15s ease-in-out infinite alternate;
    filter: blur(60px);
    right: -5%;
    opacity: 0.4;
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 0;
}

.teaching_history .review_showcase:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.teaching_history .media_img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 120px;
    border: 3px solid #ffffff;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 120px;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.teaching_history .review_showcase > div:nth-child(2) > div {
    font-weight: 600;
    font-size: calc(18px - 1px);
    position: relative;
    transition: padding-left 0.3s ease;
    color: rgb(179,177,161);
    padding-left: 0;
    margin-bottom: 15px;
}

.our_background {
    overflow: hidden;
    background: rgb(239,238,234);
    position: relative;
    z-index: 1;
    padding: 140px 0;
}



.our_background::after {
    opacity: 0.2;
    z-index: -2;
    animation: pulsateBackground 20s ease-in-out infinite alternate;
    position: absolute;
    height: 100%;
    content: "";
    top: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(212,210,198,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(179,177,161,0.5) 0%, transparent 50%);
    left: 0;
    width: 100%;
}



.our_background .mentor_network {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.our_background .online_mastery:hover {
    border-color: rgb(212,210,198,0.5);
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12), 0 0 30px rgb(212,210,198,0.5);
}

.our_background .online_mastery:hover::before {
    opacity: 0.12;
}

.our_background .online_mastery::after {
    animation: borderGlow 4s linear infinite;
    content: "";
    z-index: -2;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(212,210,198,0.5), transparent);
    opacity: 0;
    inset: -1px;
    border-radius: calc(11px + 1px);
    transition: opacity 0.4s ease;
}

.our_background .media_img::after {
    border: 1px dashed rgb(212,210,198,0.5);
    inset: -10px;
    opacity: 0.2;
    position: absolute;
    animation: rotateReverse 20s linear infinite;
    border-radius: 50%;
    content: "";
}

.our_background .learning_track::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    top: 0;
    opacity: 0.8;
    background: linear-gradient(90deg, transparent, rgb(212,210,198), transparent);
    height: 2px;
}

.our_background .pro_study {
    transition: all 0.3s ease;
    color: rgb(212,210,198);
    opacity: 0.9;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    font-size: calc(13px * 1.05);
}

.our_background .text_details::before,
.our_background .text_details::after {
    opacity: 0.03;
    transition: all 0.8s ease;
    content: "";
    background: rgb(212,210,198,0.5);
    height: 500px;
    filter: blur(60px);
    z-index: -1;
    position: absolute;
    animation: blobAnimation 25s infinite alternate;
    width: 500px;
    border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
}



.our_background .text_details::before {
    top: -250px;
    right: -250px;
}

.our_background .text_details::before,
.our_background .text_details::after,
.our_background .online_mastery::before,
.our_background .online_mastery::after,
.our_background .media_img::before,
.our_background .media_img::after {
    pointer-events: none;
}

.our_background .text_details h2::after {
    background: linear-gradient(90deg, rgb(212,210,198), rgb(179,177,161,0.5), transparent);
    transition: width 0.5s ease;
    border-radius: 10px;
    height: 3px;
    width: 100px;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
}

.greeting_page::before {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(135deg, 
    rgb(179,177,161,0.5) 0%,
    rgba(0, 0, 0, 0.85) 100%);
    left: 0;
    content: "";
    top: 0;
    backdrop-filter: blur(2px);
}

.greeting_page > div {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    gap: 3rem;
    z-index: 5;
    max-width: 1200px;
}

.greeting_page .title_style_header {
    font-weight: 700;
    max-width: 90%;
    line-height: 1.2;
    margin: 0;
    position: relative;
    font-size: clamp(2.5rem, 5vw, 47px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding-left: 1.5rem;
    color: #ffffff;
}

.greeting_page .learning_primary::before {
    transform: translateX(-100%);
    width: 100%;
    left: 0;
    position: absolute;
    animation: shimmer 5s infinite;
    top: 0;
    height: 100%;
    content: "";
    background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 15%,
    rgba(255, 255, 255, 0.08) 30%,
    transparent 50%
  );
}

.greeting_page .learning_primary > div:last-child {
    margin-top: 2rem;
    position: relative;
}

.greeting_page .learning_primary p::before {
    left: 0;
    width: 3px;
    position: absolute;
    background: rgb(179,177,161);
    top: 0.3rem;
    content: "";
    transform: scaleY(0);
    transform-origin: bottom;
    bottom: 0.3rem;
    animation: scaleIn 0.6s 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

.data_exploration .statistics_boosts svg {
    width: 100%;
    fill: #ffffff;
    height: 100%;
}

.data_exploration .statistics_boosts svg path {
    fill: #ffffff;
}

.data_exploration .key_pros {
    font-size: 29px;
    position: relative;
    font-weight: 700;
    margin: 0 0 10px;
}

.data_exploration .statistics_boosters {
    padding-bottom: 10px;
    -ms-overflow-style: none;
    overflow-x: auto;
    display: flex;
    margin: 0 -10px;
    scrollbar-width: none;
    position: relative;
}

.data_exploration .program_statistics::before {
    content: "";
    transition: opacity 0.3s ease;
    position: absolute;
    height: 3px;
    top: 0;
    background: linear-gradient(90deg, rgb(212,210,198) 0%, rgb(179,177,161) 100%);
    width: 100%;
    left: 0;
    opacity: 0;
}

.data_exploration .benefits_track {
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    justify-content: center;
    display: flex;
    height: 40px;
    width: 40px;
}

.data_exploration .benefits_track svg {
    width: 100%;
    transition: all 0.3s ease;
    fill: rgb(179,177,161);
    height: 100%;
}

.data_exploration .program_statistics:hover .benefits_track svg path {
    fill: rgb(212,210,198);
}

.data_exploration .program_statistics:nth-child(3) span {
    animation-delay: 0.4s;
}



.data_exploration .program_statistics p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.data_exploration .program_statistics:nth-child(3) {
    animation: fadeInSlide 0.4s ease forwards 0.2s;
}

.check_it_out_now::before {
    top: 0;
    height: 100%;
    background-size: 30px 30px;
    background-position: 0 0;
    opacity: 0.04;
    position: absolute;
    width: 100%;
    content: '';
    left: 0;
    z-index: 1;
    background: 
        linear-gradient(45deg, transparent 48%, #ffffff 48%, #ffffff 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, #ffffff 48%, #ffffff 52%, transparent 52%);
}

.check_it_out_now .support_grid::before {
    border-radius: 20px 20px 0 20px;
    width: 100%;
    position: absolute;
    height: 100%;
    opacity: 0;
    content: '';
    z-index: -1;
    top: 0;
    background: rgb(179,177,161);
    transition: opacity 0.4s ease;
    left: 0;
}

.check_it_out_now .container p::after {
    height: 40px;
    border-radius: 10px;
    z-index: -1;
    background: rgb(212,210,198);
    position: absolute;
    width: 40px;
    left: -10px;
    bottom: -10px;
    content: '';
}

.customer_experience {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(239,238,234) 40%, rgb(179,177,161,0.5) 100%);
    position: relative;
    padding: 6rem 0;
    perspective: 1000px;
}

.customer_experience h2 {
    text-align: left;
    letter-spacing: -0.5px;
    color: #000000;
    margin-bottom: 3.5rem;
    line-height: 1.2;
    transform: perspective(1000px) rotateX(2deg);
    font-size: calc(38px * 1.1);
    position: relative;
    font-weight: 700;
    transform-origin: left center;
}

.customer_experience .alumni_views {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    transform-style: preserve-3d;
    position: relative;
}

.customer_experience .review_showcase:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 
                0 10px 20px rgba(0, 0, 0, 0.08),
                0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateZ(15px) translateY(-8px);
}

.customer_experience .review_showcase:hover h3 {
    transform: translateX(5px);
}

.customer_experience .review_showcase:hover h3::after {
    height: 80%;
}

.customer_experience .review_showcase .description {
    color: #000000;
    line-height: 1.6;
    z-index: 2;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 1.5rem;
    position: relative;
}

.customer_experience .review_showcase:hover img {
    transform: scale(1.1);
}

.customer_experience .review_showcase:nth-child(odd) {
    transform: translateZ(0) rotateX(0) translateY(0);
}

.customer_experience .review_showcase:nth-child(even):hover {
    transform: translateZ(10px) rotateX(-1deg) translateY(-8px);
}

.customer_experience .review_showcase:nth-child(3n+2)::after {
    background: linear-gradient(225deg, transparent 50%, rgb(179,177,161,0.5) 100%);
    transition: opacity 0.3s ease;
    z-index: 1;
    content: '';
    width: 40%;
    height: 30%;
    opacity: 0.05;
    left: 0;
    top: 0;
    position: absolute;
}

.user_tracker {
    padding: 10px;
    box-shadow: 0 0 15px rgb(212,210,198);
    border-radius: 15px;
    flex-shrink: 0;
    margin-right: 20px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.user_tracker:hover svg {
    transform: rotate(20deg);
}

.cookie_frame p {
    text-shadow: 0 0 5px rgb(212,210,198,0.5);
    margin-bottom: 0;
    font-size: 17px;
    color: #ffffff;
}

.track_bar:hover {
    box-shadow: 0 0 20px rgb(179,177,161,0.5);
    background: rgb(179,177,161);
}

.cookie_notice_window p a:hover {
    color: rgb(179,177,161);
}

#cookiePolicyPanel:checked ~ .cookie_notice_window {
    opacity: 0;
    visibility: hidden;
}

.training_benefits::after {
    left: -50%;
    opacity: 0.1;
    background-image: radial-gradient(#ffffff 1px, transparent 2px);
    width: 200%;
    animation: rotateBackground 120s linear infinite;
    height: 200%;
    background-size: 30px 30px;
    position: absolute;
    top: -50%;
    content: "";
}

.training_benefits .media_img {
    z-index: 1;
    transform: perspective(1000px) rotateY(5deg);
    object-fit: cover;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
    10px 10px 30px rgba(0, 0, 0, 0.15),
    -5px -5px 20px rgba(255, 255, 255, 0.8);
    min-height: 350px;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

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

.training_benefits li {
    margin-bottom: 16px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    padding: 16px;
    transition: all 0.3s ease;
    transform-origin: left center;
    border-radius: 12px;
    box-shadow: 
    3px 3px 10px rgba(0, 0, 0, 0.05),
    inset 1px 1px 1px rgba(255, 255, 255, 0.7);
}

.training_benefits li:hover svg {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    transform: rotate(-10deg);
    background: linear-gradient(135deg, rgb(212,210,198), rgb(179,177,161));
}

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

.gratefulPage .mentor_network {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    gap: 40px;
    transform-style: preserve-3d;
    grid-template-columns: 1fr;
    background: #ffffff;
    position: relative;
    perspective: 1000px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04), 
                0 5px 15px rgba(0,0,0,0.03),
                0 0 0 1px rgba(0,0,0,0.02);
    display: grid;
    padding: 60px 40px;
}

.gratefulPage .mentor_network > div:first-child::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    height: 8px;
    left: 0;
    background: rgb(212,210,198);
    position: absolute;
    width: 8px;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.gratefulPage a {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    display: block;
}

.gratefulPage a:hover {
    transform: translateY(-5px);
}

.gratefulPage a:hover p {
    border-left: 3px solid rgb(212,210,198);
    background: rgba(245, 245, 250, 0.9);
}

.gratefulPage p::after {
    line-height: 1;
    right: 10px;
    font-size: 60px;
    font-family: serif;
    color: rgb(179,177,161,0.5);
    position: absolute;
    bottom: -20px;
    opacity: 0.2;
    content: "";
}

.newsletter_subscription::before {
    content: "";
    position: absolute;
    height: 120%;
    width: 120%;
    transform: translateZ(-5px);
    animation: subtleShift 20s infinite linear;
    top: -10%;
    z-index: 0;
    opacity: 0.05;
    background: repeating-linear-gradient(
    45deg,
    rgb(212,210,198,0.5) 0%,
    transparent 5%,
    transparent 10%
  );
    left: -5%;
}

.newsletter_subscription .mentor_network:hover {
    transform: translateZ(25px) translateX(5px);
}

.newsletter_subscription h3::after {
    bottom: -1rem;
    height: 3px;
    background: rgb(212,210,198);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: "";
    transform: scaleX(1);
    transform-origin: left;
    width: 3.5rem;
    position: absolute;
    left: 0;
}

.newsletter_subscription .input_holder {
    transform: translateZ(15px);
    position: relative;
    gap: 1rem;
    display: flex;
}

.newsletter_subscription input[type="email"]::placeholder {
    font-weight: 300;
    transition: opacity 0.25s ease;
    color: rgba(var(--dark-color-rgb), 0.5);
}

.newsletter_subscription input[type="email"]:focus::placeholder {
    opacity: 0.5;
}

.newsletter_subscription .updates_item {
    letter-spacing: 0.02em;
    padding: 1rem 1.75rem;
    white-space: nowrap;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.25);
    font-weight: 600;
    overflow: hidden;
    color: #ffffff;
    border: none;
    cursor: pointer;
    background: rgb(212,210,198);
    position: relative;
    transition: all 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.plan_card::before {
    height: 100%;
    pointer-events: none;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgb(212,210,198,0.5) 0%, transparent 70%);
    left: 0;
    content: "";
    position: absolute;
    z-index: 1;
}

.plan_card .fee_deals {
    position: relative;
    border-left: 4px solid rgb(212,210,198);
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

.plan_card .fee_deals h2::after {
    bottom: -10px;
    height: 3px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(212,210,198), rgb(179,177,161));
    width: 80px;
    content: "";
}

.plan_card .fee_struct {
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    transform: translateZ(0);
}

.plan_card .plan_fee h3 {
    transition: transform 0.3s ease;
    transform: translateZ(10px);
    position: relative;
    font-size: calc(19px * 1.2);
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.plan_card .access_cost:hover .plan_fee h3::after {
    width: 60px;
}

.plan_card .premium_grid::before {
    bottom: -8px;
    left: 0;
    content: "";
    width: 80px;
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgb(212,210,198,0.5), transparent);
}

.plan_card .access_cost:hover .media_img {
    transform: scale(1.05) translateZ(0);
}

.plan_card .media_img::before {
    height: 100%;
    width: 100%;
    content: "";
    background: rgb(212,210,198);
    z-index: 1;
    position: absolute;
    opacity: 0.15;
    left: 0;
    top: 0;
    transition: opacity 0.3s ease;
}


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



@media (max-width: 768px) {.reach_out {
    padding: 60px 0;
}.reach_out .connect_map {
    flex-direction: column;
}.reach_out .media_img {
    min-height: 300px;
    width: 100%;
}.reach_out .contact_query {
    padding: 40px 30px;
    width: 100%;
}.reach_out form h3 {
    margin-bottom: 30px;
}.reach_out form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}.reach_out .inquiry_query {
    margin-bottom: 30px;
}.reach_out .support_grid {
    padding: 15px 30px;
    width: 100%;
}
}



@media (max-width: 1024px) {.ranking_bar {
    padding: 4rem 0 2rem;
}.ranking_bar .text_main_holder {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}.ranking_bar .subscribe_holder {
    grid-column: span 2;
}
}



@media (max-width: 768px) {.ranking_bar {
    padding: 3.5rem 0 1.5rem;
}.ranking_bar .text_main_holder {
    gap: 3rem;
    grid-template-columns: 1fr;
}.ranking_bar .subscribe_holder {
    grid-column: auto;
}.ranking_bar .msg_info {
    grid-template-columns: 1fr 1fr;
}.ranking_bar .info_item:hover {
    transform: translateX(0) translateY(-5px);
}
}



@media (max-width: 991px) {header .container {
    padding: 15px;
}header .main_class {
    gap: 20px;
}header .head_edu:before {
    left: -10px;
}header .header_navbar svg {
    height: 38px;
}
}



@media (max-width: 480px) {header .container {
    padding: 12px 10px;
}header .header_navbar svg {
    height: 32px;
}}


@media only screen and (max-width: 800px) {.privacy_unit {
    padding: 20px;
    border-radius: 10px;
}.privacy_unit h1 {
    font-size: calc(23px - 0.5rem);
}.privacy_unit h2 {
    font-size: calc(23px - 0.4rem);
}.privacy_unit p {
    font-size: calc(13px - 0.2rem);
}}



@media (min-width: 992px) {.course_program_info .education_flow {
    max-height: 450px;
}.course_program_info .media_img {
    flex: 0 0 40%;
}.course_program_info .text_details {
    padding: 50px;
    flex: 0 0 60%;
}.course_program_info .text_details h3 {
    font-size: calc(24px * 1.1);
    margin-bottom: 30px;
}.course_program_info .text_details p.description {
    line-height: 1.8;
    max-height: 250px;
}
}



@media (max-width: 767px) {.course_program_info {
    padding: 80px 0;
}.course_program_info .text_details {
    padding: 30px 25px;
}.course_program_info .text_details h3 {
    margin-bottom: 20px;
    font-size: calc(21px * 1.2);
}.course_program_info .text_details p.description {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
    max-height: 180px;
}}



@media (max-width: 767px) {.teaching_history {
    padding: 60px 0;
}.teaching_history .review_showcase {
    text-align: center;
    padding: 30px;
}.teaching_history .media_img {
    margin: 0 auto 20px;
}.teaching_history .name::after {
    transform: translateX(-50%);
    left: 50%;
}.teaching_history .review_showcase:hover > div:nth-child(2) > div {
    padding-left: 0;
}.teaching_history .emp_summary {
    padding: 15px;
    text-align: left;
}}



@media (max-width: 767px) {.our_background {
    padding: 80px 0;
}.our_background .media_img {
    width: 180px;
    height: 180px;
}.our_background .online_mastery {
    padding: 35px 25px;
}.our_background .text_details {
    padding: 35px 25px;
}.our_background .text_details h2 {
    font-size: calc(34px * 0.9);
    padding-bottom: 15px;
    margin-bottom: 25px;
}.our_background .learn_history {
    font-size: 23px;
}.our_background .pro_study {
    font-size: 13px;
}.our_background .learn_study {
    font-size: 22px;
}.our_background .learn_study svg {
    width: 40px;
    height: 40px;
}
}



@media (min-width: 1200px) {.greeting_page {
    padding: 6rem 3rem;
}.greeting_page > div {
    gap: 3rem;
}.greeting_page .title_style_header {
    padding-left: 3rem;
}.greeting_page .title_style_header::before {
    width: 10px;
}.greeting_page .learning_primary {
    margin-left: -4rem;
    padding: 4rem;
}
}


@media screen and (max-width: 991px) {.data_exploration {
    padding: 100px 0;
}.data_exploration .knowledge_upgrade {
    padding: 30px;
}.data_exploration .statistics_boosts {
    padding: 12px;
    height: 50px;
    width: 50px;
    margin-right: 15px;
}.data_exploration .key_pros {
    font-size: calc(29px - 2px);
}.data_exploration .key_classes {
    font-size: calc(16px - 1px);
}.data_exploration .program_statistics {
    min-width: calc(33.33% - 20px);
    padding: 15px 12px;
}.data_exploration .benefits_track {
    margin-bottom: 12px;
    width: 36px;
    height: 36px;
}.data_exploration .benefits_track::after {
    width: 42px;
    height: 42px;
}.data_exploration .program_statistics span {
    font-size: calc(22px + 2px);
}
}



@media (max-width: 991px) {.check_it_out_now {
    padding: 110px 0;
}.check_it_out_now .mentor_network {
    gap: 40px;
}.check_it_out_now .container p {
    padding: 25px;
    font-size: calc(19px * 1.2);
}.check_it_out_now .support_grid {
    flex: 0 0 180px;
    height: 180px;
}.check_it_out_now .container p::after {
    width: 30px;
    height: 30px;
}
}



@media (max-width: 480px) {.check_it_out_now {
    padding: 70px 0;
}.check_it_out_now .container p {
    padding: 20px;
    border-radius: 15px 15px 15px 0;
    font-size: calc(13px * 1.2);
}.check_it_out_now .support_grid {
    height: 140px;
    border-radius: 15px 15px 0 15px;
    width: 140px;
    font-size: calc(20px * 0.9);
}.check_it_out_now .container p::after {
    border-radius: 8px;
    width: 25px;
    height: 25px;
}}



@media (max-width: 480px) {.customer_experience {
    padding: 3rem 0;
}.customer_experience h2 {
    font-size: calc(38px * 0.8);
    margin-bottom: 2rem;
}.customer_experience .review_showcase {
    padding: 1.25rem;
}.customer_experience .review_showcase::before {
    font-size: 80px;
}.customer_experience .review_showcase div {
    height: 50px;
    width: 50px;
}}



@media (max-width: 768px) {.training_benefits {
    padding: 50px 0;
}.training_benefits .media_img {
    min-height: 250px;
}.training_benefits h3 {
    font-size: calc(32px * 0.9);
}
}



@media (max-width: 576px) {.training_benefits {
    padding: 40px 0;
}.training_benefits .media_img {
    min-height: 200px;
}.training_benefits .text_details {
    padding: 30px 20px;
}.training_benefits h3 {
    margin-bottom: 25px;
    font-size: calc(32px * 0.85);
}.training_benefits li {
    margin-bottom: 12px;
    padding: 12px;
}.training_benefits li p {
    font-size: calc(14px * 0.9);
    gap: 10px;
}.training_benefits svg {
    width: 18px;
    padding: 7px;
    height: 18px;
}}



@media (max-width: 480px) {.gratefulPage {
    padding: 60px 0;
}.gratefulPage .mentor_network {
    padding: 30px 20px;
}.gratefulPage h5 {
    font-size: calc(22px * 0.85);
}.gratefulPage p {
    padding: 15px 20px;
    font-size: calc(12px * 0.9);
}}



@media screen and (max-width: 991px) {.newsletter_subscription {
    padding: 5rem 1.5rem;
}.newsletter_subscription .mentor_network {
    padding: 2.5rem 2rem;
}.newsletter_subscription h3 {
    font-size: calc(23px * 1.05);
    max-width: 100%;
}
}



@media (min-width: 992px) {.plan_card .study_sub {
    gap: 4rem;
    grid-template-columns: 2fr 1fr;
}.plan_card .fee_deals {
    padding: 3rem;
}.plan_card .indv_sub {
    grid-column: 1;
    grid-row: 1;
}.plan_card .fee_deals {
    grid-column: 2;
    grid-row: 1;
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    align-self: start;
    top: 2rem;
    position: sticky;
}.plan_card .fee_deals:hover {
    transform: perspective(1000px) rotateY(0) translateZ(30px);
}
}



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



@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



@keyframes floatEffect {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@keyframes pulsateBackground {
    0% {
        opacity: 0.1;
        background-size: 100% 100%;
    }
    50% {
        opacity: 0.2;
        background-size: 120% 120%;
    }
    100% {
        opacity: 0.1;
        background-size: 100% 100%;
    }
}

@keyframes borderGlow {
    0% {
        opacity: 0;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.5;
        background-position: 100% 50%;
    }
    100% {
        opacity: 0;
        background-position: 0% 50%;
    }
}



@keyframes slideIn {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



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



@keyframes slideRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



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



@keyframes subtleShift {
  0% {
    transform: translateZ(-5px) rotate(0deg);
  }
  100% {
    transform: translateZ(-5px) rotate(360deg);
  }
}

