html,body {
    font-family: Arial, sans-serif;
    auto
contain
    scroll-behavior: auto;
    min-height: 100%;
    height: 100%;
    color: #000000;
}

.lesson_cta {
    flex: 0 0 auto;
}

.lesson_cta {
    font-family: Arial, sans-serif;
    z-index: 2;
    padding: 70px 0;
    color: #ffffff;
    position: relative;
}

.lesson_cta .container {
    flex-wrap: wrap;
    gap: 40px;
    display: flex;
}

.lesson_cta .company_holder {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 30px;
    overflow: hidden;
    border-radius: 12px 0 12px 0;
}

.lesson_cta .company_holder h3::after {
    background: rgb(177,169,130);
    position: absolute;
    height: 3px;
    left: 0;
    bottom: -8px;
    content: '';
    width: 60px;
}

.lesson_cta .top_pagewrap h5 {
    font-size: 21px;
    border-left: 3px solid rgb(208,202,168);
    padding-left: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    position: relative;
    color: #ffffff;
    margin-bottom: 20px;
}

.lesson_cta .top_pagewrap .top_study a:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
    color: #ffffff;
}

.lesson_cta .top_pagewrap .top_study a:hover::before {
    width: 100%;
}

.faculty_info .scholar_cta {
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 13px;
}

header:before {
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    animation: shimmer 8s infinite linear;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 75%
    );
    content: '';
}

header .main_pagebar:before {
    background: 
        radial-gradient(circle at 10% 20%, rgb(208,202,168,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgb(177,169,130,0.5) 0%, transparent 40%);
    pointer-events: none;
    height: 100%;
    position: absolute;
    left: 0;
    opacity: 0.15;
    mix-blend-mode: overlay;
    width: 100%;
    top: 0;
    content: '';
}

header .top_pagewrap:hover:before {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}

header .main_learn:before {
    content: '';
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #ffffff,
        transparent
    );
    bottom: 0;
    left: 0;
    position: absolute;
}

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

header .nav_begin:before {
    content: '';
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    transition: opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    z-index: -1;
    width: calc(100% + 20px);
    background: radial-gradient(
        circle,
        rgb(208,202,168,0.5) 0%,
        transparent 70%
    );
}

header .nav_begin:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px rgb(208,202,168));
}

.course_highlights::after {
    border-radius: 50%;
    position: absolute;
    height: 50%;
    left: -5%;
    content: "";
    background: radial-gradient(circle, rgb(177,169,130,0.5) 0%, transparent 70%);
    z-index: 1;
    opacity: 0.3;
    width: 50%;
    animation: pulseGlow 12s ease-in-out infinite reverse;
    bottom: -5%;
}

.course_highlights .job_ready {
    z-index: 3;
    padding: 3rem;
    background: #ffffff;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 10px 20px -5px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgb(239,235,217);
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
    position: relative;
    transform: translateZ(20px);
    border-radius: 16px;
}

.course_highlights .top_pro {
    position: relative;
    align-items: center;
    display: flex;
    margin-bottom: 2rem;
}

.course_highlights .top_pro::after {
    border-radius: 10px;
    bottom: -10px;
    background: linear-gradient(90deg, rgb(177,169,130) 0%, transparent 100%);
    width: 60px;
    height: 3px;
    position: absolute;
    content: "";
    left: 0;
}

.course_highlights .top_pro svg:hover path {
    fill: rgb(177,169,130);
}

.course_highlights .job_ready:hover h3::after {
    width: 80px;
}

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



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

.course_highlights .mentor_team:hover .img_spot::before {
    opacity: 0.7;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgb(177,169,130,0.5) 40%,
        rgb(208,202,168,0.5) 100%
    );
}

.secure_safehouse h1 {
    color: transparent;
    border-bottom: 2px solid rgb(208,202,168);
    color: rgb(208,202,168);
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 48px;
    margin-top: 50px;
    background: linear-gradient(90deg, rgb(208,202,168), rgb(177,169,130));
    -webkit-background-clip: text !important;
    font-weight: 700;
}

.secure_safehouse ul, .secure_safehouse ol {
    border-radius: 10px;
    list-style: none;
    padding: 20px 0;
    padding-left: 0;
}

.secure_safehouse section {
    border-radius: 10px;
    margin-top: 30px;
    background: rgb(239,235,217);
    box-shadow: 0 0 15px rgb(208,202,168,0.5);
    padding: 25px;
}

.welcome_section::before {
    height: 100%;
    width: 100%;
    content: "";
    opacity: 0.08;
    background: repeating-linear-gradient(
    45deg,
    rgb(177,169,130,0.5) 0,
    rgb(177,169,130,0.5) 1px,
    transparent 1px,
    transparent 25px
  );
    top: 0;
    left: 0;
    animation: patternShift 30s linear infinite;
    position: absolute;
}

.welcome_section .study_tools > div {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    transform: translateZ(0);
    transform-style: preserve-3d;
}

.welcome_section h3:hover {
    box-shadow: 
    0 25px 35px rgba(0, 0, 0, 0.12),
    0 3px 10px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateX(0deg);
}

.welcome_section .why_trust:hover {
    transform: perspective(1000px) translateZ(10px) scale(1);
}

.welcome_section .why_trust::before {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    content: "";
    background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
    z-index: 1;
    width: 100%;
}

.welcome_section .why_trust > div {
    z-index: 3;
    bottom: 0;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateZ(0);
    padding: 3rem;
    width: 100%;
    position: absolute;
}

.welcome_section .why_trust:hover p::before {
    transform: scaleY(1);
}

.welcome_section .why_trust:hover p {
    opacity: 1;
    transform: translateX(5px);
}

.welcome_section .title_style_header {
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    line-height: 1.3;
    transform: translateY(0);
    font-family: Arial, sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    font-weight: 700;
    font-size: calc(44px * 1.2);
    color: #ffffff;
    letter-spacing: -0.015em;
}

.policy_ack {
    flex-shrink: 0;
    margin-right: 15px;
}

.policy_ack svg {
    transition: fill 0.3s ease;
    width: 60px;
    height: 60px;
    fill: rgb(208,202,168);
}

.cookie_dialog_window h5 {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    color: rgb(208,202,168);
}

#acceptCookiesPermissionBtn {
    background: rgb(208,202,168);
}

#noThanksCookiesCollection {
    background: rgba(0, 0, 0, 0.5);
}

.cookie_dialog_window p a:hover {
    color: rgb(177,169,130);
}


#cookiePopupMessage {
    display: none;
}

.contact_information::before {
    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(208,202,168,0.5) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgb(177,169,130,0.5) 0%, transparent 70%);
    position: absolute;
    content: '';
    width: 100%;
}

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

.contact_information .request_feedback {
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    justify-content: space-between;
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_information form {
    position: relative;
    z-index: 2;
}

.contact_information form h3 {
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, rgb(208,202,168));
    font-size: 21px;
    text-shadow: none;
    text-align: left;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.contact_information textarea {
    resize: none;
    height: 120px;
}

.contact_information .request_reach input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.contact_information .request_reach label::before {
    border-radius: 10px;
    transition: all 0.3s ease;
    content: '';
    width: 20px;
    background: rgba(255, 255, 255, 0.08);
    left: 0;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 2px;
}

.contact_information .request_reach a:hover {
    color: rgb(177,169,130);
    text-decoration: underline;
}

.contact_information .query_request::before {
    left: -100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
    top: 0;
    transition: left 0.7s ease;
    content: '';
    position: absolute;
}

.contact_information .query_info::before {
    background-image: 
        radial-gradient(circle at 70% 30%, rgb(208,202,168,0.5) 0%, transparent 60%);
    top: 0;
    height: 100%;
    opacity: 0.4;
    content: '';
    width: 100%;
    right: 0;
    position: absolute;
}

.contact_information .query_map li {
    transition: transform 0.3s ease;
    align-items: flex-start;
    position: relative;
    display: flex;
    padding-left: 5px;
    margin-bottom: 25px;
}

.contact_information .query_map svg {
    margin-right: 15px;
    height: 24px;
    fill: rgb(208,202,168);
    filter: drop-shadow(0 0 5px rgb(208,202,168,0.5));
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
}

.contact_information .query_map a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.plan_deck::after {
    width: 500px;
    opacity: 0.1;
    height: 500px;
    bottom: -15%;
    position: absolute;
    left: -10%;
    z-index: 0;
    content: "";
    filter: blur(100px);
    background: linear-gradient(225deg, rgb(177,169,130,0.5), rgb(208,202,168,0.5));
}

.plan_deck .access_plans h2 {
    background: linear-gradient(90deg, #000000, rgb(208,202,168));
    font-weight: 700;
    font-size: 30px;
    color: transparent;
    transform: perspective(1000px) rotateX(0deg);
    -webkit-background-clip: text !important;
    color: #000000;
    background-clip: text !important;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.plan_deck .pricing_pack:hover {
    z-index: 5;
    transform: translateZ(20px) scale(1.02);
}

.plan_deck .pricing_pack:hover .tuition_table {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgb(208,202,168,0.5);
}

.plan_deck .pricing_pack:hover .tuition_table::before {
    transform: scaleX(1);
}

.plan_deck .pricing_deals h3 {
    word-break: break-word;
    transform: translateY(0);
    font-size: calc(19px + 2px);
    overflow-wrap: break-word;
    transition: transform 0.4s ease, color 0.3s ease;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000000;
    position: relative;
}

.plan_deck .pricing_deals .class_rates::after {
    width: 50px;
    background: rgb(177,169,130,0.5);
    height: 2px;
    transition: width 0.4s ease;
    content: "";
    left: 0;
    bottom: -10px;
    position: absolute;
}

.plan_deck .pricing_pack .img_spot {
    position: relative;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    height: 220px;
    width: 100%;
}

.plan_deck .pricing_pack:hover .img_spot::after {
    opacity: 1;
}

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

.meet_us::after {
    z-index: 2;
    width: 100%;
    height: 100%;
    right: -50%;
    position: absolute;
    content: "";
    background: radial-gradient(circle, 
        rgb(208,202,168,0.5) 0%, 
        transparent 70%);
    top: -50%;
    animation: orbitGlow 15s infinite linear;
}

.meet_us .content_wrapper > div:first-child {
    position: relative;
    margin-bottom: 15px;
}

.meet_us .content_wrapper > div:first-child::after {
    width: 100px;
    background: linear-gradient(to right, rgb(208,202,168), transparent);
    bottom: -8px;
    left: 0;
    position: absolute;
    content: "";
    height: 2px;
}

.meet_us h5 {
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    font-size: 24px;
    color: rgb(208,202,168);
    display: inline-block;
}

.meet_us p b {
    -webkit-background-clip: text !important;
    display: inline-block;
    background: linear-gradient(120deg, #ffffff, rgb(177,169,130));
    background-clip: text !important;
    font-size: calc(22px * 1.1);
    position: relative;
    font-weight: 700;
    color: transparent;
}

.meet_us .content_wrapper:hover li::after {
    opacity: 1;
    transform: scale(1);
}

.register_now {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgb(208,202,168) 0%, rgb(177,169,130) 100%);
}

.register_now .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    grid-gap: 2.5rem;
    perspective: 1000px;
    transform-style: preserve-3d;
    grid-template-columns: 1fr;
}

.register_now h6::after {
    left: 50%;
    content: "";
    position: absolute;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    height: 4px;
    background: #ffffff;
    border-radius: 10px;
    transform: translateX(-50%);
    width: 80px;
    bottom: -15px;
}

.register_now div div span:hover {
    transform: translateZ(50px) scale(1.05);
}

.register_now .query_request:hover {
    box-shadow: 
        0 20px 30px -15px rgba(0, 0, 0, 0.35),
        0 10px 20px -10px rgba(0, 0, 0, 0.25);
    color: rgb(177,169,130);
    transform: translateY(-5px);
}

.register_now .query_request:hover::before {
    transform: translateX(100%);
}

.register_now .query_request span {
    display: block;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.study_method {
    padding: 8rem 2rem;
    background: rgb(239,235,217);
    overflow: hidden;
    position: relative;
}

.study_method {
    padding: 5rem 1.5rem;
}

.study_method .mentor_team {
    position: relative;
    align-items: center;
    z-index: 1;
    max-width: 1200px;
    gap: 3rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.study_method .mentor_team {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.study_method h3::before {
    background: linear-gradient(90deg, rgb(208,202,168), rgb(177,169,130));
    transform: scaleX(0);
    content: "";
    height: 4px;
    border-radius: 10px;
    width: 4rem;
    position: absolute;
    animation: expandLine 1s 0.4s forwards ease-out;
    left: 0;
    top: -1rem;
    transform-origin: left;
}

.study_method h3::before,
    .study_method h3::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
}

.study_method span::after {
    animation: pulse 3s 1.5s infinite;
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(208,202,168);
    content: "";
}

.study_method span::after {
    left: calc(50% + 15px);
    top: -5px;
    bottom: auto;
}

.gratCard::after {
    content: "";
    position: absolute;
    z-index: 1;
    height: 5px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(208,202,168), transparent);
    left: 0;
    width: 100%;
}

.gratCard h2::after {
    background: rgb(208,202,168);
    bottom: -15px;
    width: 60px;
    transform: scaleX(1);
    left: 0;
    height: 3px;
    content: "";
    transition: transform 0.5s ease;
    transform-origin: left;
    position: absolute;
}

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

.gratCard li::before {
    position: absolute;
    height: 8px;
    background: rgb(208,202,168);
    top: 10px;
    transform: rotate(45deg);
    left: 0;
    transition: transform 0.3s ease;
    width: 8px;
    content: "";
}

.educational_gains::after {
    left: -5%;
    filter: blur(40px);
    height: 60%;
    position: absolute;
    width: 35%;
    z-index: 1;
    bottom: -10%;
    transform: rotate(15deg);
    content: "";
    opacity: 0.5;
    background: linear-gradient(45deg, rgb(177,169,130,0.5) 30%, transparent 80%);
    animation: float 15s infinite ease-in-out reverse;
}

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

.educational_gains .mentor_team:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 8px 20px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.educational_gains .mentor_team:hover .img_spot {
    transform: perspective(1000px) rotateY(-2deg) translateZ(10px);
}

.educational_gains .content_wrapper {
    padding-left: 20px;
}

.educational_gains ul {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
    display: grid;
}

.educational_gains li:nth-child(3) {
    --item-index: 3;
}

.educational_gains li:nth-child(5) {
    --item-index: 5;
}

.educational_gains li svg {
    height: 28px;
    left: 0;
    width: 28px;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
}

.teacher_profile {
    background: linear-gradient(135deg, rgb(239,235,217) 0%, rgb(208,202,168,0.5) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

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

.teacher_profile .client_voices {
    gap: 30px;
    display: grid;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    grid-template-columns: 1fr;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    position: relative;
    transform: perspective(1000px) rotateY(2deg);
}

.teacher_profile .client_voices:hover .img_spot {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.teacher_profile .client_voices:hover .img_spot::after {
    opacity: 0.4;
}

.teacher_profile .name {
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
    font-weight: 700;
    margin: 0 0 5px 0;
    position: relative;
    color: rgb(208,202,168);
    font-size: calc(23px * 1.1);
}

.teacher_profile .client_voices:hover > div:nth-child(2) > div {
    padding-left: 10px;
}

.teacher_profile .client_voices:hover .work_list {
    background-position: right center;
}

.teacher_profile .work_list::after {
    bottom: -30px;
    content: "";
    opacity: 0.5;
    transform: translateX(20px) translateY(20px) scale(0.8);
    right: -10px;
}

.teacher_profile .client_voices:hover .work_list::before {
    opacity: 0.7;
    transform: translateX(0) translateY(0) scale(1);
}


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



@media (max-width: 992px) {.lesson_cta .container {
    flex-direction: column;
}
}



@media (max-width: 991px) {header .container {
    padding: 14px 20px;
}header .top_pagewrap {
    gap: 20px;
}header .nav_begin svg {
    height: 38px;
}
}



@media (max-width: 480px) {header .container {
    padding: 12px 15px;
}header .nav_begin svg {
    height: 35px;
}}



@media (max-width: 768px) {.course_highlights {
    padding: 4rem 0;
}.course_highlights .mentor_team::before {
    height: calc(100% + 3rem);
    left: -1.5rem;
    top: -1.5rem;
    width: calc(100% + 3rem);
}.course_highlights .job_ready {
    padding: 2rem;
}.course_highlights .top_pro svg {
    height: 3.5rem;
}.course_highlights h3 {
    font-size: calc(28px * 0.9);
}.course_highlights .img_spot {
    min-height: 300px;
}
}



@media (max-width: 576px) {.course_highlights {
    padding: 3rem 0;
}.course_highlights .mentor_team::before {
    display: none;
}.course_highlights .job_ready {
    padding: 1.5rem;
}.course_highlights .top_pro svg {
    height: 3rem;
}.course_highlights .top_pro::before {
    width: 20px;
    right: -10px;
}.course_highlights h3 {
    margin-bottom: 1rem;
    font-size: calc(28px * 0.8);
}.course_highlights p {
    font-size: calc(13px * 0.9);
}.course_highlights .img_spot {
    border-radius: 10% 90% 10% 90% / 90% 10% 90% 10%;
    min-height: 250px;
}}



@media (max-width: 576px) {.welcome_section .study_tools {
    padding: 1rem 0.75rem;
}.welcome_section h3 {
    margin-bottom: 1.25rem;
    font-size: 22px;
    padding: 1rem;
    border-left: 3px solid rgb(177,169,130);
    transform: none;
}.welcome_section .why_trust {
    height: 45vh;
    min-height: 300px;
}.welcome_section .why_trust > div {
    padding: 1.25rem;
}.welcome_section .why_trust p {
    margin-bottom: 1rem;
    font-size: 14px;
}.welcome_section .title_style_header {
    font-size: 28px;
}.welcome_section .title_style_header::after {
    height: 2px;
}}



@media (max-width: 992px) {.contact_information {
    padding: 60px 0;
}.contact_information .img_spot {
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    width: 40%;
}.contact_information .request_feedback {
    flex-direction: column;
}.contact_information .feedback_block {
    border-right: none;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}.contact_information .query_info {
    width: 100%;
}
}



@media (min-width: 992px) {.plan_deck {
    padding: 140px 0;
}.plan_deck .pricing_catalog {
    align-items: flex-start;
    flex-direction: row;
}.plan_deck .access_plans {
    align-self: flex-start;
    margin-right: 70px;
    order: 0;
    top: 100px;
    position: sticky;
    width: 30%;
    transform: translateX(0);
}.plan_deck .pricing_tiers {
    width: 70%;
    grid-template-columns: repeat(2, 1fr);
}
}



@media (max-width: 991px) {.plan_deck {
    padding: 80px 0;
}.plan_deck .access_plans {
    transform: translateX(0);
    text-align: center;
}.plan_deck .access_plans .plan_fees {
    margin: 0 auto;
}
}



@media (max-width: 992px) {.meet_us {
    padding: 80px 0;
}.meet_us .content_wrapper {
    padding: 35px 30px;
    transform: perspective(800px) rotateY(-1deg);
}.meet_us h5 {
    font-size: calc(24px * 0.9);
}.meet_us p {
    font-size: 12px;
}.meet_us p b {
    font-size: 22px;
}
}



@media (min-width: 768px) {.register_now {
    padding: 7rem 3rem;
}.register_now .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}.register_now h6 {
    padding: 0;
    text-align: left;
    font-size: calc(18px * 1.5);
}.register_now h6::after {
    width: 120px;
    transform: none;
    left: 0;
}.register_now div div {
    margin-top: 0;
    justify-content: flex-end;
}.register_now .query_request {
    padding: 18px 40px;
}
}



@media (max-width: 480px) {.register_now {
    padding: 3rem 1rem;
}.register_now h6 {
    font-size: calc(18px * 0.9);
}.register_now .query_request {
    padding: 12px 24px;
    font-size: calc(17px * 0.85);
}}



@media (max-width: 991px) {.gratCard {
    padding: 80px 0;
}.gratCard h2 {
    font-size: calc(36px * 0.9);
    max-width: 100%;
}.gratCard .mentor_team {
    padding: 30px;
}
}



@media (max-width: 480px) {.gratCard {
    padding: 40px 0;
}.gratCard h2 {
    font-size: calc(36px * 0.7);
    margin-bottom: 25px;
}.gratCard .mentor_team {
    border-left-width: 3px;
    padding: 20px 15px;
}.gratCard li {
    padding-left: 20px;
}.gratCard li::before {
    top: 8px;
    width: 6px;
    height: 6px;
}.gratCard span {
    line-height: 1.6;
    font-size: calc(13px * 0.9);
}}



@media (max-width: 576px) {.educational_gains {
    padding: 50px 0 30px;
}.educational_gains h5 {
    font-size: calc(20px * 0.7);
    margin-bottom: 30px;
}.educational_gains .mentor_team {
    padding: 15px;
    gap: 20px;
}.educational_gains .img_spot {
    max-height: 200px;
}.educational_gains li {
    gap: 15px;
    padding-left: 30px;
}.educational_gains li svg {
    width: 20px;
    height: 20px;
}.educational_gains li p {
    line-height: 1.5;
    font-size: calc(18px * 0.9);
}}



@media (max-width: 767px) {.teacher_profile {
    padding: 80px 0;
}.teacher_profile .client_voices {
    gap: 20px;
    padding: 30px 25px;
}.teacher_profile .img_spot {
    width: 150px;
    height: 150px;
}.teacher_profile .name {
    font-size: 23px;
    text-align: center;
}.teacher_profile .client_voices > div:nth-child(2) {
    text-align: center;
}.teacher_profile .client_voices > div:nth-child(2) > div {
    font-size: calc(15px * 0.9);
}.teacher_profile .work_list {
    padding: 20px 15px;
    line-height: 1.7;
    font-size: calc(15px * 0.95);
}
}



@keyframes patternShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}



@keyframes orbit {
    from { transform: rotate(0deg) translateX(10px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(10px) rotate(-360deg); }
}



@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}



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



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

