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

* {
    scrollbar-color: rgb(71,108,91,0.5) rgb(141,179,162);
    scrollbar-width: thin;
}

header,footer {
    width: 100%;
}

header {
    background: linear-gradient(to right, #ffffff, rgb(141,179,162));
    width: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    position: relative;
    padding: 0;
    z-index: 100;
}

.quantitative_data:hover h4::after {
    transform: scaleX(1.5);
}

.quantitative_data ul {
    list-style: none;
    margin: 0;
    gap: 2rem;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    display: grid;
}

.quantitative_data .career_statistics::before {
    opacity: 0;
    width: 100%;
    left: 0;
    top: 0;
    transition: opacity 0.4s ease;
    content: "";
    z-index: -1;
    background: linear-gradient(
        45deg,
        rgb(107,144,127,0.5) 0%,
        rgb(71,108,91,0.5) 100%
    );
    height: 100%;
    position: absolute;
}

.quantitative_data .career_statistics:hover p::after {
    background: rgb(71,108,91);
    transform: translateX(-50%) scaleX(1);
}

.quantitative_data .career_statistics:nth-child(odd) {
    transform: translateY(10px);
}

.quantitative_data .career_statistics:nth-child(3n+1)::after {
    transform: scale(0);
    position: absolute;
    background: rgb(107,144,127);
    content: "";
    transition: transform 0.3s ease 0.1s;
    height: 16px;
    width: 16px;
    top: -8px;
    right: -8px;
}

.program_structure .text_group h2 {
    color: #000000;
    font-size: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.program_structure .text_group .description:last-of-type {
    margin-bottom: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.program_structure .program_plan::before {
    border-radius: 50%;
    height: 60px;
    position: absolute;
    z-index: 1;
    left: 10%;
    border: 2px solid rgb(107,144,127,0.5);
    width: 60px;
    animation: pulse 4s ease-in-out infinite;
    top: 20px;
    content: '';
}

.program_assets::after {
    left: -50px;
    position: absolute;
    bottom: -50px;
    animation: pulse 8s infinite alternate ease-in-out;
    width: 200px;
    background: linear-gradient(135deg, rgb(107,144,127,0.5) 0%, transparent 70%);
    border-radius: 15px;
    transform: rotate(45deg);
    height: 200px;
    content: "";
}

.program_assets .text_group {
    width: 60%;
    padding: 20px 0;
}

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

.program_assets li p {
    font-weight: 400;
    color: #000000;
    gap: 15px;
    align-items: center;
    margin: 0;
    display: flex;
    font-size: 16px;
}

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

.join_our_community .pro_program {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    flex-direction: column;
    border-radius: 4px;
    padding: 40px;
    display: flex;
    background: linear-gradient(160deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    transform: translateZ(0);
}

.join_our_community .input_holder input[type="email"]:focus {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: scale(1.01);
    border-color: rgb(107,144,127);
}

.join_our_community .input_holder input[type="submit"]:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.join_our_community .input_holder input[type="submit"]:active {
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transform: translateY(1px);
}

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

.service_plan .fee_offers h2::after {
    position: absolute;
    content: "";
    width: 80px;
    transform: translateX(-50%);
    bottom: -10px;
    left: 50%;
    height: 3px;
    background: rgb(107,144,127);
}

.service_plan .skill_pricing:nth-child(2) {
    --index: 2;
}

.service_plan .skill_pricing:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.02);
}

.service_plan .indv_sub {
    padding: 40px 30px;
    box-sizing: border-box;
    flex-direction: column;
    display: flex;
    flex: 1;
}

.service_plan .skill_pricing:hover .indv_sub h3::after {
    width: 70px;
}

.service_plan .indv_sub p {
    word-break: break-word;
    margin-bottom: 0;
    overflow-wrap: break-word;
    font-size: 13px;
    flex-grow: 1;
    white-space: normal;
    color: #000000;
    line-height: 1.7;
}

.cookie_popup_warning {
    position: fixed;
    background: rgb(141,179,162);
    border-top: 2px solid rgb(107,144,127);
    width: 100%;
    z-index: 90;
    bottom: 0;
}

.cookie_popup_warning p {
    font-size: 18px;
}

.cookie_popup_warning p a {
    color: rgb(107,144,127);
    text-decoration: none;
}

.viewport-container .cookie_preference {
    padding: 40px 0;
    justify-content: space-between;
}

.viewport-container .cookie_tab h5 {
    font-weight: 700;
}

.viewport-container .cookie_tab h5, .viewport-container .cookie_tab p {
    color: #ffffff;
}

.company_overview::after {
    opacity: 0.15;
    animation: floatBlob 20s infinite alternate ease-in-out;
    background: rgb(107,144,127);
    width: 60%;
    position: absolute;
    right: -10%;
    filter: blur(40px);
    z-index: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -10%;
    content: "";
    height: 60%;
}

.company_overview li {
    margin-bottom: 20px;
}

.company_overview h4:hover {
    transform: translateX(5px);
}

.company_overview h4:hover::before {
    width: 100%;
}

.company_overview span {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    border-left: 3px solid rgb(107,144,127);
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    font-size: 17px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
    line-height: 1.7;
    transform: translateY(0);
    padding: 30px;
}

.course_suitability .pro_program {
    position: relative;
    overflow: visible;
    padding: 0 50px;
}

.course_suitability div::before {
    top: 0;
    left: 36px;
    position: absolute;
    height: 100%;
    background: linear-gradient(180deg, rgb(107,144,127,0.5), rgb(71,108,91,0.5));
    width: 2px;
    opacity: 0.5;
    content: "";
}

.course_suitability div p svg path {
    fill: rgb(107,144,127);
    transition: fill 0.3s ease;
}

.course_suitability div p:hover svg path {
    fill: rgb(71,108,91);
}

.course_suitability div p::after {
    content: "";
    z-index: -1;
    width: calc(100% - 60px);
    opacity: 0;
    transform: scale(0.95);
    top: -10px;
    background: #ffffff;
    height: calc(100% + 20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: absolute;
    left: 60px;
    border-radius: 21px;
}

.vr_labs .container {
    display: grid;
    position: relative;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

.vr_labs .company_holder:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 20px rgb(107,144,127,0.5);
    transform: translateZ(20px) rotateX(2deg) rotateY(-2deg);
    border-left: 3px solid #ffffff;
}

.vr_labs .company_holder:hover h3::after {
    width: 100%;
}

.vr_labs .review_block {
    position: relative;
}

.vr_labs .top_teach {
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    backdrop-filter: blur(5px);
    border-radius: 23px;
}

.vr_labs .top_teach:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateZ(15px) scale(1.03);
    background: rgba(255, 255, 255, 0.05);
}

.vr_labs .top_teach h5::before {
    position: absolute;
    left: 0;
    background: rgb(71,108,91);
    bottom: -8px;
    content: "";
    height: 1px;
    width: 100%;
}

.vr_labs .top_teach a::before {
    opacity: 0;
    left: -20px;
    transform: translateZ(5px);
    transition: all 0.3s ease;
    position: absolute;
    content: "→";
}

.linkedin_ref .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin_ref .study_group:hover {
    color: #ffffff;
    box-shadow: 0 0 15px rgba(rgb(107,144,127), 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.vr_labs .company_holder:hover::before,
.vr_labs .top_teach:hover::before {
    opacity: 0.5;
}



.vr_labs .company_holder .trial_offer::after {
    content: "";
    left: 1rem;
    height: 3px;
    bottom: -10px;
    position: absolute;
    background: linear-gradient(to right, rgb(107,144,127), transparent);
    transition: width 0.4s ease;
    width: 70px;
}

.vr_labs .nav_tutor a::after {
    width: 0;
    position: absolute;
    left: 0;
    height: 1px;
    bottom: 0;
    content: "";
    background: linear-gradient(to right, rgb(107,144,127), rgb(71,108,91));
    transition: width 0.3s ease;
}

header .container {
    z-index: 2;
    margin: 0;
    max-width: 100%;
    padding: 0;
    position: relative;
    width: 100%;
}

header .head_lead:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

header .top_teach::before {
    position: absolute;
    content: '';
    opacity: 0.5;
    left: -2px;
    z-index: -1;
    top: -2px;
    border-radius: calc(10px + 2px);
    right: -2px;
    background: linear-gradient(135deg, rgb(107,144,127,0.5), rgb(71,108,91,0.5));
    bottom: -2px;
}

.client_opinions {
    background: linear-gradient(90deg, rgb(141,179,162) 0%, rgb(107,144,127,0.5) 30%, rgb(141,179,162) 100%);
    overflow: hidden;
    position: relative;
    padding: 8rem 2rem;
    perspective: 1000px;
}

.client_opinions h2::before {
    position: absolute;
    height: 20px;
    filter: blur(10px);
    content: "";
    background: linear-gradient(to right, transparent, rgb(107,144,127,0.5), transparent);
    bottom: -20px;
    left: 0;
    width: 100%;
}

.client_opinions .testimonials::before {
    opacity: 0.4;
    transition: opacity 0.3s ease;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgb(107,144,127,0.5) 0%, transparent 70%);
    z-index: -1;
    position: absolute;
    height: 100%;
    content: "";
    left: 0;
}

.client_opinions .testimonials .description {
    font-weight: 400;
    transform: translateY(0);
    text-align: center;
    font-size: 16px;
    margin-top: 1rem;
    color: #000000;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.6;
    opacity: 0.9;
}

.client_opinions .testimonials:nth-child(3n+2):hover::after {
    opacity: 0.6;
    height: 60px;
    width: 60px;
}

.confidential_cove h1 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 30px;
    text-shadow: 0 0 10px rgb(107,144,127,0.5);
    color: rgb(107,144,127);
    border-bottom: 2px solid rgb(107,144,127);
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 700;
}

.confidential_cove p, .confidential_cove span, .confidential_cove div {
    color: #000000;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgb(107,144,127,0.5);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.explore_now .pro_program::after {
    content: '';
    opacity: 0.2;
    z-index: -2;
    top: -60px;
    width: calc(100% + 120px);
    left: -60px;
    position: absolute;
    height: calc(100% + 120px);
    border: 1px solid rgb(107,144,127,0.5);
}

.explore_now .feedback_box:hover {
    color: #ffffff;
}

.explore_now .feedback_box:hover::before {
    width: 100%;
}

.explore_now .container p::before {
    height: 1px;
    content: '';
    transform: translateX(-50%);
    width: 40px;
    bottom: -25px;
    position: absolute;
    left: 50%;
    background: rgb(107,144,127);
}

.leadership_experience::after {
    background: linear-gradient(to left, transparent, rgb(71,108,91,0.5), transparent);
    height: 1px;
    position: absolute;
    right: 0;
    animation: lineExpand 5s ease-in-out infinite alternate 2.5s;
    bottom: 40%;
    content: "";
    width: 40%;
    transform-origin: right center;
}

.leadership_experience .career_overview::before {
    top: 15%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5), transparent);
    left: -2rem;
    content: "";
    width: 1px;
    position: absolute;
    height: 70%;
}

.leadership_experience .job_block {
    font-weight: 300;
    padding-left: 2rem;
    position: relative;
    transition: all 0.5s ease 0.2s;
    line-height: 1.8;
    font-size: 19px;
    transform: translateX(0);
    color: #000000;
}

.leadership_experience .testimonials:hover .name {
    transform: translateX(10px);
}

.thanksCore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(107,144,127,0.5), rgb(71,108,91,0.5) 70%);
    z-index: 1;
    padding: 5rem 0;
}

.thanksCore .pro_program {
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    max-width: 900px;
    padding: 3.5rem;
    margin: 0 auto;
    z-index: 2;
    flex-direction: column;
}

.thanksCore a:hover p {
    color: rgb(107,144,127);
    transform: translateX(5px);
}

.thanksCore .pro_program > div:last-child::before {
    width: 100%;
    background: linear-gradient(90deg, rgb(107,144,127,0.5), transparent 80%);
    top: 0;
    left: 0;
    position: absolute;
    content: '';
    height: 1px;
}

.title_screen .approach_edu {
    transform: translateY(20px);
    position: relative;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out forwards;
}

.title_screen .master_zone {
    padding: 3rem;
    overflow: hidden;
    opacity: 0;
    border-radius: 4px;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s 0.3s ease-out forwards;
    box-shadow: 0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.1);
    position: relative;
}

.title_screen .master_zone {
    background-position: center !important;
    background-size: 100% auto !important;
    transition: all 0.4s ease, background-size 0.8s ease;
}



.title_screen .master_zone:hover {
    transition: background-size 0.8s ease;
    background-size: 105% auto !important;
}

.get_help_info::after {
    width: 60%;
    transform: rotate(-15deg);
    position: absolute;
    right: -10%;
    top: -50%;
    z-index: 0;
    background: linear-gradient(120deg, rgb(107,144,127,0.5) 0%, transparent 70%);
    height: 200%;
    content: "";
}

.get_help_info h3 {
    font-size: 30px;
    padding-bottom: 1rem;
    color: #000000;
    font-weight: 700;
    margin: 0 0 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    transform: translateX(0);
}

.get_help_info svg {
    width: 24px;
    transition: transform 0.3s ease;
    height: 24px;
}

.get_help_info svg path {
    fill: rgb(107,144,127);
    transition: fill 0.3s ease;
}

.contact_us {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(141,179,162) 0%, rgb(107,144,127,0.5) 100%);
}

.contact_us h2 {
    font-family: Arial, sans-serif;
    color: rgb(107,144,127);
    font-size: 29px;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact_us .pic_stack {
    height: 100%;
    min-height: 600px;
    position: relative;
    order: 2;
}

.contact_us .message_help::before {
    right: 0;
    width: 10px;
    top: 0;
    background: linear-gradient(to bottom, rgb(107,144,127), rgb(71,108,91));
    position: absolute;
    height: 100%;
    content: "";
}

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

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

.contact_us .connect_links label {
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    color: #000000;
    font-size: 14px;
    padding-left: 35px;
}

.contact_us .connect_links label a::after {
    width: 0;
    position: absolute;
    height: 1px;
    background: rgb(107,144,127);
    left: 0;
    transition: width 0.3s ease;
    content: "";
    bottom: -2px;
}

.contact_us form .feedback_box:hover::before {
    width: 100%;
}

.contact_us svg {
    left: 20px;
    position: absolute;
    width: 20px;
    top: 50%;
    height: 20px;
    transform: translateY(-50%);
    fill: rgb(107,144,127);
}


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



@media (min-width: 768px) {.quantitative_data {
    padding: 7rem 0;
}.quantitative_data ul {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
}.quantitative_data .career_statistics {
    height: 220px;
}.quantitative_data h4 {
    margin-top: 4rem;
    font-size: calc(22px * 1.2);
}
}



@media (min-width: 992px) {.program_structure .text_group::before {
    background: linear-gradient(to right, transparent, rgb(107,144,127,0.5), transparent);
    top: 0;
    z-index: 1;
    width: 200px;
    content: '';
    transform: translateY(130px) rotate(90deg);
    left: -160px;
    height: 3px;
    position: absolute;
}.program_structure .text_group::after {
    width: 200px;
    background: linear-gradient(to right, transparent, rgb(71,108,91,0.5), transparent);
    top: 0;
    z-index: 1;
    transform: translateY(130px) rotate(90deg);
    position: absolute;
    height: 3px;
    content: '';
    right: -160px;
}
}



@media (max-width: 992px) {.join_our_community {
    padding: 60px 0;
}.join_our_community .pro_program {
    padding: 30px;
}.join_our_community .pro_program h4 {
    margin-bottom: 25px;
    font-size: calc(23px * 0.9);
}
}



@media (max-width: 576px) {.join_our_community {
    padding: 40px 0;
}.join_our_community .pro_program {
    padding: 20px;
}.join_our_community .pro_program::before {
    width: 4px;
}.join_our_community .pro_program h4 {
    font-size: calc(23px * 0.8);
    margin-bottom: 15px;
}.join_our_community .input_holder input[type="email"],
  .join_our_community .input_holder input[type="submit"] {
    font-size: calc(18px * 0.9);
    padding: 10px 12px;
}}



@media (max-width: 480px) {.service_plan {
    padding: 60px 0;
}.service_plan .fee_offers h2 {
    font-size: calc(35px * 0.85);
}.service_plan .indv_sub h3 {
    font-size: calc(19px * 0.95);
}.service_plan .pic_stack {
    height: 160px;
}}



@media (max-width: 576px) {.company_overview {
    padding: 50px 0;
}.company_overview .container {
    padding: 0 15px;
}.company_overview h1 {
    font-size: calc(38px - 14px);
    margin-bottom: 30px;
}.company_overview h1::after {
    bottom: -10px;
    height: 3px;
}.company_overview h4 {
    font-size: calc(37px - 8px);
    margin-bottom: 10px;
}.company_overview span {
    font-size: calc(17px - 2px);
    padding: 15px;
    line-height: 1.5;
}.company_overview span::first-letter {
    font-size: 1.8em;
    margin-right: 5px;
}}



@media (max-width: 992px) {.vr_labs {
    padding: 4rem 0 2rem;
}.vr_labs .container {
    gap: 2rem;
    grid-template-columns: 1fr;
}.vr_labs .company_holder,
    .vr_labs .review_block {
    width: 100%;
}.vr_labs .nav_tutor {
    grid-template-columns: repeat(2, 1fr);
}
}



@media (max-width: 576px) {.vr_labs {
    padding: 3rem 0 1rem;
}.vr_labs .company_holder {
    padding: 1.25rem;
}.vr_labs .company_holder h3 {
    font-size: calc(30px * 0.8);
}.vr_labs .top_teach h5 {
    font-size: calc(20px * 0.9);
}.vr_labs .top_teach a,
    .vr_labs .trial_offer {
    font-size: calc(14px * 0.9);
}.linkedin_ref .study_group {
    padding: 0.4rem 1rem;
    font-size: calc(13px * 0.9);
}}



@media (max-width: 992px) {.client_opinions {
    padding: 6rem 1rem;
}.client_opinions h2 {
    font-size: calc(38px * 1.2);
    margin-bottom: 3rem;
}.client_opinions .user_testimonials {
    padding: 2.5rem 0;
    gap: 2.5rem;
}.client_opinions .testimonials {
    padding: 1.8rem;
    flex: 0 0 270px;
}.client_opinions .testimonials img {
    width: 100px;
    height: 100px;
}
}



@media only screen and (max-width: 800px) {.confidential_cove {
    padding: 20px 10px;
}.confidential_cove h1 {
    font-size: calc(21px * 0.8);
}.confidential_cove h2 {
    font-size: calc(21px * 0.8);
}.confidential_cove h3, .confidential_cove h4, .confidential_cove h5, .confidential_cove h6 {
    font-size: calc(21px * 0.8);
}.confidential_cove p, .confidential_cove span, .confidential_cove div {
    font-size: calc(15px * 0.9);
}}



@media screen and (max-width: 991px) {.leadership_experience .testimonials {
    grid-template-columns: 1fr;
    gap: 3rem;
}.leadership_experience .pic_stack {
    width: 80%;
    height: 350px;
    clip-path: polygon(0 5%, 100% 0%, 95% 100%, 0% 95%);
    margin: 0 auto;
}.leadership_experience .career_overview::before {
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
    width: 60%;
    left: 20%;
    top: -1.5rem;
    height: 1px;
}.leadership_experience .testimonials:hover .name,
    .leadership_experience .testimonials:hover .career_overview div:nth-child(2),
    .leadership_experience .testimonials:hover .job_block {
    transform: translateX(0);
}}



@media (max-width: 576px) {.title_screen {
    padding: 2rem 1rem;
}.title_screen .edu_head {
    font-size: calc(42px * 0.6);
}.title_screen .master_zone {
    padding: 1.5rem 1rem;
}.title_screen .master_zone p {
    font-size: calc(18px * 0.9);
}.title_screen .master_zone h3 {
    font-size: calc(20px * 0.7);
    padding-left: 0.75rem;
}.title_screen .edu_head::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
}}



@media (max-width: 767px) {.get_help_info {
    padding: 3rem 0;
}.get_help_info .assist_form {
    padding: 2rem;
}.get_help_info h3 {
    font-size: calc(30px * 0.9);
}.get_help_info p {
    font-size: calc(15px * 0.95);
}}



@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}



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



@keyframes pulse {
    0% { transform: rotate(45deg) scale(1); opacity: 0.5; }
    50% { transform: rotate(45deg) scale(1.2); opacity: 0.7; }
    100% { transform: rotate(45deg) scale(1); opacity: 0.5; }
}



@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgb(71,108,91,0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(71,108,91);
    }
}



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

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

