.wrapper-holder {
    height: 100%;
    flex-direction: column;
    display: flex;
    min-height: 100%;
}

.access_cta {
    flex: 0 0 auto;
}

.access_cta {
    padding: 4.5rem 0 2rem;
    position: relative;
}

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

header:before {
    width: 100%;
    position: absolute;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    opacity: 0.1;
    pointer-events: none;
}

header .head_mainbar {
    position: relative;
}

header .head_mainbar:after {
    left: 0;
    filter: blur(8px);
    width: 60px;
    transform: translateY(-50%);
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    top: 50%;
    position: absolute;
    content: '';
    pointer-events: none;
    opacity: 0.5;
    height: 60px;
}

header .container:before {
    right: 20px;
    height: 30px;
    transform: translateY(-50%);
    width: 50px;
    background-size: 6px 2px, 6px 2px;
    background-repeat: repeat-x;
    position: absolute;
    top: 50%;
    opacity: 0.5;
    background-image: 
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%),
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
    content: '';
    pointer-events: none;
    background-position: 0 0, 0 10px;
}

header .top_header:before {
    border-radius: 50%;
    position: absolute;
    height: 6px;
    left: -12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translateY(-50%);
    opacity: 0;
    width: 6px;
    top: 50%;
    content: '';
    background: #ffffff;
}

header .top_header:hover:before {
    left: -20px;
    opacity: 1;
}

header .head_prime {
    align-items: center;
    position: relative;
    text-decoration: none;
    padding: 5px;
    transition: all 0.3s ease;
    display: flex;
}

header .head_prime:hover:before {
    opacity: 1;
}

header .head_prime:hover:after {
    opacity: 1;
    animation: circuit 3s infinite;
}

header .head_prime svg {
    width: auto;
    transition: all 0.3s ease;
    height: 40px;
}

.support::before {
    z-index: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, rgb(231,185,163,0.5) 0%, transparent 40%, rgb(217,148,122,0.5) 60%, transparent 100%);
    content: "";
    left: 0;
}

.support .online_contact {
    font-weight: 700;
    position: relative;
    color: #ffffff;
    align-items: center;
    padding: 25px 30px;
    margin: 0;
    justify-content: center;
    text-align: center;
    background: rgb(231,185,163);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    display: flex;
    font-size: 43px;
}

.support .contact_form p {
    align-items: center;
    font-size: 17px;
    overflow: hidden;
    background: #ffffff;
    margin: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    padding: 16px 25px 16px 50px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}


.support .contact_form p {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.support .contact_form p span {
    margin-left: 10px;
    color: #000000;
    font-weight: 400;
}

.support .contact_form p a:hover {
    color: rgb(217,148,122);
}

.support .query_form svg {
    stroke-linecap: round;
    fill: none;
    margin-right: 10px;
    stroke: rgb(231,185,163);
    stroke-width: 2;
    stroke-linejoin: round;
    height: 20px;
    width: 20px;
}


.support .edu_chat {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    display: grid;
    gap: 12px;
}

.support .request_feedback svg {
    transition: transform 0.3s ease;
    fill: none;
    height: 14px;
    margin-right: 6px;
    stroke-linecap: round;
    stroke-width: 2;
    width: 14px;
    stroke-linejoin: round;
    stroke: rgb(231,185,163);
}

.support .contact_form p:nth-child(2) {
    animation-delay: 0.2s;
}

.support .contact_form p:nth-child(5) {
    animation-delay: 0.5s;
}

.support .contact_form p:nth-child(2) svg path {
    animation-delay: 0.7s;
}

.support .contact_form p:nth-child(5) svg path {
    animation-delay: 1s;
}

.join_our_community::after {
    z-index: -1;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    position: absolute;
    content: "";
    left: 0;
    transform: translateZ(0);
    bottom: 0;
    width: 100%;
    height: 50%;
}

.join_our_community .study_program {
    justify-content: space-between;
    transform-style: preserve-3d;
    gap: 2rem;
    position: relative;
    align-items: center;
    flex-direction: column;
    animation: subtleFloat 6s infinite alternate ease-in-out;
    transform: perspective(1000px) rotateX(1deg);
    display: flex;
}

.join_our_community .input_holder {
    transform: translateZ(30px);
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    display: flex;
}

.join_our_community .input_holder::before {
    left: 0;
    top: -1rem;
    position: absolute;
    width: 100%;
    height: 1px;
    animation: lineExpand 1.5s 0.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
    content: "";
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: scaleX(0.7);
}

.join_our_community input[type="email"] {
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 16px;
    backdrop-filter: blur(10px);
    width: 100%;
    background: rgba(255,255,255,0.15);
    font-family: Arial, sans-serif;
    border: 1px solid rgba(255,255,255,0.3);
}

.join_our_community .news_alert:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 2px 5px rgba(0,0,0,0.1);
    color: #ffffff;
}

.join_our_community .news_alert:hover::before {
    opacity: 1;
}

.contact_information {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(244,219,205) 0%, rgb(231,185,163,0.5) 100%);
    overflow: hidden;
}

.contact_information h2 {
    font-family: Arial, sans-serif;
    text-align: center;
    font-weight: 700;
    color: rgb(231,185,163);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-size: 34px;
    margin-bottom: 60px;
}

.contact_information .feedback_map {
    position: relative;
    display: grid;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    gap: 0;
    max-width: 1000px;
}

.contact_information form {
    position: relative;
    width: 100%;
}

.contact_information form input[type="text"] {
    width: 100%;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    background: rgb(244,219,205);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    margin-bottom: 25px;
    padding: 16px 20px 16px 50px;
    font-size: 15px;
    color: #000000;
}

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

.contact_information .request_grid label::before {
    background: rgb(244,219,205);
    top: 0;
    width: 24px;
    border-radius: 10px;
    left: 0;
    content: "";
    position: absolute;
    height: 24px;
    transition: all 0.3s ease;
}

.contact_information .request_grid label a::after {
    height: 1px;
    transition: width 0.3s ease;
    background: rgb(231,185,163);
    position: absolute;
    content: "";
    bottom: -2px;
    width: 0;
    left: 0;
}

.contact_information form .request_query:hover::before {
    width: 100%;
}

.contact_information form .request_query:hover {
    box-shadow: 0 10px 20px -10px rgb(231,185,163);
    transform: translateY(-3px);
}

.contact_information svg {
    fill: rgb(231,185,163);
    height: 20px;
    width: 20px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    position: absolute;
}

.program_results {
    position: relative;
    background: rgb(244,219,205);
    overflow: hidden;
    padding: 7rem 0;
}

.program_results .study_program {
    display: flex;
    max-width: 1300px;
    padding: 0;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

.program_results .img_zoom_effect {
    position: relative;
    height: 550px;
    width: 45%;
    margin-left: -5vw;
    z-index: 3;
    border-radius: 50% 0 0 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.program_results .reading_block {
    position: relative;
    width: 60%;
    padding: 3rem 2rem 3rem 5rem;
}

.program_results .text_main_holder {
    display: flex;
    gap: 2rem;
    position: relative;
    flex-direction: column;
}

.program_results .text_main_holder > div {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.program_results .text_main_holder > div:hover::before {
    transform: scale(1.3);
    background: rgb(231,185,163);
}

.program_results .text_main_holder svg {
    margin-right: 1.5rem;
    height: 3rem;
    transition: all 0.3s ease;
    background: #ffffff;
    flex-shrink: 0;
    width: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 0.7rem;
}

.company_info::before {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.75) 100%);
    left: 0;
}

.company_info h4::before {
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    top: 50%;
    background: rgb(217,148,122);
    height: 3px;
    content: "";
    width: 40px;
}

.company_info .reading_block:hover {
    transform: perspective(1000px) rotateY(-1deg) translateZ(10px);
}

.company_info h6::after {
    opacity: 0.7;
    left: 0;
    background: rgb(217,148,122);
    position: absolute;
    bottom: 0;
    content: "";
    height: 2px;
    width: 60px;
}

.company_info .reading_block div {
    position: relative;
    overflow: hidden;
}

.company_info span {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s forwards;
    display: block;
    position: relative;
    transform: translateY(20px);
}

.privacy_reserve h3, .privacy_reserve h4, .privacy_reserve h5, .privacy_reserve h6 {
    margin-bottom: 15px;
    color: #000000;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.privacy_reserve p, .privacy_reserve span, .privacy_reserve div {
    color: #000000;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin-bottom: 10px;
}

.course_program::after {
    content: "";
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.4;
    left: 0;
    top: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 20% 80%, rgb(231,185,163,0.5) 0%, transparent 15%),
        radial-gradient(circle at 80% 20%, rgb(217,148,122,0.5) 0%, transparent 15%),
        radial-gradient(circle at 50% 50%, rgb(231,185,163,0.5) 0%, transparent 20%);
    pointer-events: none;
}

.course_program .img_zoom_effect::after {
    content: "";
    opacity: 0;
    position: absolute;
    top: -10%;
    left: -10%;
    height: 120%;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
    z-index: 2;
    width: 120%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.2) 100%);
}

.course_program .reading_block:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) translateZ(10px);
}

.course_program h3::after {
    bottom: -12px;
    position: absolute;
    background: linear-gradient(90deg, rgb(231,185,163) 0%, rgb(217,148,122) 100%);
    content: "";
    width: 60px;
    height: 3px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left;
    left: 0;
}

.cookie_popup_warning {
    border-top: 3px solid rgb(231,185,163);
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    width: 100%;
    position: fixed;
    background: rgb(244,219,205);
    bottom: 0;
    z-index: 100;
    padding: 20px 0;
    justify-content: center;
}

.online_tracking p {
    margin: 0;
    color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
}

.cookie_button.cookie_overlay {
    margin-right: 10px;
}

#consentPolicyBanner {
    display: none;
}


.explore_now {
    overflow: hidden;
    background: rgb(244,219,205);
    padding: 100px 0;
    position: relative;
}

.explore_now .study_program {
    border-left: 4px solid rgb(231,185,163);
    z-index: 10;
    gap: 50px;
    display: grid;
    padding-left: 50px;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.explore_now .request_query {
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 25px;
    overflow: hidden;
    font-weight: 600;
    font-size: 17px;
    color: #ffffff;
    position: relative;
    grid-column: 1 / 2;
    background: rgb(244,219,205);
    box-shadow: 5px 5px 0 rgb(231,185,163);
    text-decoration: none;
    padding: 20px 40px;
    z-index: 5;
}

.explore_now::after {
    z-index: 1;
    opacity: 0.05;
    position: absolute;
    content: '';
    background: linear-gradient(135deg, transparent 0%, rgb(231,185,163,0.5) 100%);
    height: 100%;
    left: 0;
    width: 100%;
    top: 0;
}

.gratContent::after {
    filter: blur(80px);
    content: "";
    z-index: 1;
    transform: rotate(35deg);
    right: -50%;
    animation: float 15s infinite alternate ease-in-out;
    top: -50%;
    position: absolute;
    width: 100%;
    background: rgb(255, 255, 255, 0.5);
    height: 100%;
}

.gratContent .study_program:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.gratContent .study_program > div:first-child::before {
    left: -0.5rem;
    content: "";
    position: absolute;
    height: 1rem;
    background: rgb(231,185,163);
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
}

.gratContent a::before {
    content: "";
    height: 100%;
    background: linear-gradient(to bottom, rgb(231,185,163), rgb(217,148,122));
    position: absolute;
    transition: width 0.3s ease;
    width: 4px;
    left: 0;
    top: 0;
}

.gratContent p {
    position: relative;
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
    transition: color 0.3s ease;
    z-index: 1;
    color: #000000;
}

.title_screen .skill_trackfast::before {
    background: linear-gradient(135deg, 
    rgb(231,185,163,0.5), 
    rgba(0, 0, 0, 0.7), 
    rgb(217,148,122,0.5));
    top: 0;
    width: 100%;
    left: 0;
    content: "";
    backdrop-filter: blur(3px);
    height: 100%;
    position: absolute;
    z-index: 1;
}

.title_screen .proof_stats > div {
    opacity: 0;
    animation: fadeSlideUp 0.9s forwards;
    transform: translateY(30px);
}

.title_screen .proof_stats > div:nth-child(2) {
    animation-delay: 0.6s;
}

.title_screen p {
    letter-spacing: 0.05em;
    font-family: Arial, sans-serif;
    font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
    padding-left: 2rem;
    margin: 0 0 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    position: relative;
    color: #ffffff;
    border-left: 4px solid rgb(217,148,122);
}

.title_screen .proof_stats:hover .title_style_header::after {
    transform: scaleX(1);
}

.title_screen h3 {
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.75rem);
    margin: 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    transition: color 0.5s ease;
    padding-right: 2rem;
    max-width: 90%;
    font-weight: 400;
    color: rgb(255, 255, 255, 0.5);
    position: relative;
    line-height: 1.5;
}

.study_process::after {
    z-index: 0;
    right: -30%;
    height: 200%;
    position: absolute;
    transform: rotate(-15deg);
    background: linear-gradient(135deg, rgb(231,185,163) 0%, rgb(217,148,122) 100%);
    clip-path: polygon(0 0, 100% 15%, 85% 100%, 0 85%);
    opacity: 0.04;
    top: -50%;
    width: 70%;
    content: "";
}

.study_process .reading_block {
    background: #ffffff;
    padding: 3rem;
    animation: fadeSlideUp 0.8s ease-out 0.2s forwards;
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.05), 
                0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.03);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.study_process .reading_block:hover::before {
    opacity: 1;
}

.study_process p {
    position: relative;
    z-index: 2;
    line-height: 1.8;
    font-size: 13px;
    margin: 0;
    color: #000000;
}

footer::before {
    width: 100%;
    left: 0;
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(231,185,163,0.5) 50%, rgb(217,148,122,0.5) 100%);
    z-index: -1;
    top: 0;
    content: "";
    animation: gradientShift 15s ease infinite;
    backdrop-filter: blur(8px);
}

.access_cta .company_holder:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.15),
                0 0 20px rgb(231,185,163,0.5);
    transform: translateY(-5px);
}

.access_cta .company_holder h3::after {
    transform-origin: left;
    height: 2px;
    transition: transform 0.5s ease;
    width: 100%;
    content: "";
    transform: scaleX(0.3);
    left: 0;
    bottom: -8px;
    background: linear-gradient(to right, rgb(231,185,163), rgb(217,148,122));
    position: absolute;
}

.access_cta .top_mentor {
    padding: 1.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 29px;
    flex: 1 1 200px;
}

.access_cta .top_mentor a {
    position: relative;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1;
    padding: 0.25rem 0.5rem;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.sec_cert::before {
    top: 0;
    left: 0;
    background: linear-gradient(to right, 
                transparent 0%, 
                rgb(217,148,122) 25%, 
                #ffffff 50%, 
                rgb(231,185,163) 75%, 
                transparent 100%);
    right: 0;
    height: 1px;
    content: "";
    position: absolute;
}

.access_cta .header_guide a:hover::after {
    transform: translateY(-50%) scale(1);
}

.access_cta .cert_block::after {
    width: 0;
    position: absolute;
    bottom: -10px;
    content: "";
    right: -10px;
    transition: width 0.5s ease 0.3s, height 0.5s ease;
    height: 0;
    border: 1px solid transparent;
}

.education_experience {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, rgb(244,219,205), rgb(231,185,163,0.5) 120%);
    overflow: hidden;
    border-radius: 19px;
    position: relative;
}

.education_experience .review_highlights {
    z-index: 2;
    flex-direction: column;
    transform: translateY(0);
    max-width: 500px;
    display: flex;
    margin: 0 auto;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.education_experience .img_zoom_effect::after {
    background: linear-gradient(to bottom, 
                transparent 50%, 
                rgb(231,185,163,0.5) 100%);
    height: 100%;
    border-radius: 19px 19px 0 0;
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    content: "";
}

.education_experience .experience_block::after {
    filter: blur(15px);
    bottom: 20px;
    position: absolute;
    background: rgb(217,148,122,0.5);
    width: 60px;
    height: 60px;
    right: 20px;
    opacity: 0.2;
    border-radius: 20% 40% 50% 30%;
    content: "";
    animation: float-blob 10s infinite alternate;
}

.education_experience .experience_block > div:nth-child(2)::after {
    bottom: 0;
    content: "";
    width: 40px;
    left: 0;
    position: absolute;
    height: 3px;
    background: rgb(217,148,122,0.5);
    transition: width 0.4s ease;
}

.price_pack {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.price_pack::before {
    right: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(135deg, rgb(231,185,163,0.5), rgba(0, 0, 0, 0.5) 85%);
    bottom: 0;
    top: 0;
    content: "";
    z-index: 1;
}

.price_pack .learning_fee {
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    color: #ffffff;
    padding: 0 15px;
    margin: 0 auto 50px;
    font-size: 16px;
    max-width: 700px;
}

.price_pack .plan_fees li {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.price_pack .study_pricing {
    border-radius: 10px;
    flex-direction: column;
    transform-style: preserve-3d;
    height: 100%;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    position: relative;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.95);
}

.price_pack .premium_grid h4::after {
    height: 3px;
    transition: width 0.4s ease;
    bottom: 0;
    content: "";
    width: 40px;
    position: absolute;
    background-color: rgb(231,185,163);
    left: 0;
}

.price_pack .premium_grid:hover {
    transform: translateY(-10px) scale(1.02);
}

.price_pack .premium_grid:hover h4 {
    color: rgb(231,185,163);
    transform: translateX(5px);
}

.price_pack .premium_grid:hover .indv_cost {
    transform: translateY(-5px);
    color: rgb(231,185,163);
}

.course_program p.description::-webkit-scrollbar {
    width: 5px;
}

.course_program p.description::-webkit-scrollbar-track {
    background: transparent;
}

.course_program p.description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(217,148,122,0.5);
}



@media (max-width: 480px) {header .container {
    padding: 10px 15px;
}header .head_prime svg {
    height: 30px;
}}


@media (min-width: 1024px) {.support {
    padding: 100px 0;
}.support .edu_askedu {
    max-width: 1100px;
    margin: 0 auto;
}.support .online_contact {
    padding: 30px;
}.support .online_contact svg {
    height: 35px;
    width: 35px;
    margin-right: 20px;
}.support .contact_form {
    padding: 40px;
}.support .contact_form p svg {
    width: 24px;
    height: 24px;
}.support .reach_block {
    margin-top: 30px;
    padding: 30px;
}.support .query_form svg {
    width: 24px;
    height: 24px;
}.support .edu_chat {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}}



@media (min-width: 768px) {.join_our_community {
    padding: 5rem 3rem;
}.join_our_community .study_program {
    align-items: center;
    flex-direction: row;
    gap: 3rem;
}.join_our_community .study_program > div {
    width: 40%;
}.join_our_community .input_holder {
    width: 60%;
}.join_our_community h4 {
    font-size: calc(21px * 1.2);
}.join_our_community h4::before {
    left: -2rem;
    width: 0.4rem;
}
}



@media screen and (max-width: 480px) {.contact_information {
    padding: 60px 0 40px;
}.contact_information h2 {
    margin-bottom: 30px;
    font-size: calc(34px * 0.8);
}.contact_information .img_zoom_effect {
    min-height: 200px;
}.contact_information .feedback_form {
    padding: 30px 20px;
}.contact_information form h3 {
    margin-bottom: 30px;
    font-size: calc(21px * 0.9);
}.contact_information form .request_query {
    padding: 14px 20px;
    width: 100%;
}}



@media (max-width: 768px) {.program_results {
    padding: 5rem 0;
}.program_results .img_zoom_effect {
    height: 350px;
}.program_results h2 {
    font-size: calc(28px * 0.9);
}
}



@media (max-width: 1024px) {.company_info {
    padding: 90px 0 70px;
}.company_info h4 {
    font-size: calc(31px * 1.1);
    padding-left: 50px;
    margin-bottom: 40px;
}.company_info .container {
    justify-content: center;
}.company_info .reading_block {
    padding: 35px;
    transform: perspective(1000px) rotateY(-2deg);
    width: 85%;
}
}



@media (max-width: 576px) {.company_info {
    padding: 60px 0 40px;
}.company_info h4 {
    font-size: calc(19px * 1.2);
    margin-bottom: 25px;
    padding-left: 35px;
}.company_info h4::before {
    width: 25px;
}.company_info .reading_block {
    padding: 25px 20px;
}.company_info h6 {
    font-size: calc(17px * 1.1);
}.company_info span {
    line-height: 1.6;
    font-size: calc(13px * 0.9);
}}



@media (min-width: 992px) {.course_program .future_skills {
    gap: 6rem;
}.course_program .img_zoom_effect {
    transform: perspective(1200px) rotateX(3deg) rotateY(-3deg);
    height: 520px;
}.course_program .reading_block {
    padding: 3rem;
}.course_program h3 {
    font-size: calc(24px * 1.3);
    margin-bottom: 2rem;
}.course_program h3::after {
    height: 4px;
    bottom: -15px;
}.course_program p.description {
    line-height: 1.8;
    max-height: 400px;
}
}



@media (max-width: 991px) {.explore_now {
    padding: 80px 0;
}.explore_now .study_program {
    gap: 40px;
    padding-left: 30px;
}.explore_now .container p {
    font-size: calc(24px * 1.2);
}.explore_now .request_query {
    padding: 18px 36px;
}
}



@media (max-width: 991px) {.gratContent {
    padding: 5rem 0;
}.gratContent .study_program {
    gap: 2rem;
    padding: 2.5rem;
}.gratContent h5 {
    font-size: calc(20px * 0.95);
}
}



@media (max-width: 768px) {.gratContent {
    padding: 4rem 0;
}.gratContent .container {
    padding: 0 1.5rem;
}.gratContent .study_program {
    padding: 2rem;
    transform: perspective(1000px) rotateX(1deg);
    gap: 1.8rem;
}.gratContent h5 {
    font-size: calc(20px * 0.9);
}.gratContent a {
    padding: 1.2rem 1.5rem;
}.gratContent p {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
}
}



@media (max-width: 768px) {.title_screen .skill_trackfast {
    background-position: center center !important;
}.title_screen .proof_stats {
    transform: perspective(1000px) rotateX(0deg);
    padding: 1.75rem;
    gap: 1.5rem;
}.title_screen p {
    padding-left: 1rem;
    font-size: 1rem;
}.title_screen .title_style_header::after {
    height: 3px;
    bottom: -0.3rem;
}
}



@media (max-width: 767px) {.study_process {
    padding: 5rem 0;
}.study_process::after {
    right: -50%;
    top: -30%;
    width: 100%;
}.study_process h2 {
    font-size: calc(34px * 0.8);
    margin-bottom: 1.5rem;
}.study_process h2::after {
    width: 60px;
    height: 3px;
}.study_process .reading_block {
    padding: 2rem;
}.study_process p {
    font-size: calc(13px * 0.95);
    line-height: 1.7;
}
}



@media (max-width: 576px) {.access_cta {
    padding: 2.5rem 0 1rem;
}.access_cta .company_holder h3 {
    font-size: calc(38px * 0.75);
}.access_cta .cert_block {
    font-size: calc(18px * 0.9);
}.access_cta .top_mentor h5 {
    font-size: calc(24px * 0.9);
}.access_cta .top_mentor a {
    font-size: calc(18px * 0.9);
}.sec_cert .lesson_cta {
    padding: 0.4rem 0.8rem;
    font-size: calc(13px * 0.9);
}}



@media (prefers-reduced-motion: reduce) {.price_pack .premium_grid,
    .price_pack .premium_grid:hover,
    .price_pack h2,
    .price_pack .study_pricing::before,
    .price_pack .premium_grid h4,
    .price_pack .indv_cost {
    transform: none;
    transition: none;
}
}



@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

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

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

@keyframes drawSvg {
    to {
        stroke-dashoffset: 0;
    }
}



@keyframes subtleFloat {
    0%, 100% {
        transform: perspective(1000px) rotateX(1deg);
    }
    50% {
        transform: perspective(1000px) rotateX(0deg);
    }
}


    
    @keyframes mobileLineGrow {
        0% {
            transform: translateX(-50%) scaleX(0);
        }
        100% {
            transform: translateX(-50%) scaleX(1);
        }
    }



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}



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



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes pulsate {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}



@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

