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

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

.instructional_approach::before {
    transform: rotate(-15deg);
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(130,150,181,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(74,103,161,0.5) 0%, transparent 40%);
    content: "";
    opacity: 0.5;
    z-index: 1;
    animation: rotateBg 25s linear infinite;
    position: absolute;
    width: 150%;
}

.instructional_approach span {
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.8);
    transform: translateZ(30px) translateY(-20px);
    padding: 2.5rem;
    border-radius: 10px;
    position: relative;
    line-height: 1.8;
    backdrop-filter: blur(10px);
    color: #000000;
    font-size: 17px;
    animation: floatContent 8s ease-in-out 1s infinite alternate;
    transition: transform 0.5s ease;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.title_welcome .study_zone {
    gap: 2rem;
    position: relative;
    grid-template-columns: 1fr;
    display: grid;
    max-width: 1400px;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    margin: 0 auto;
}

.title_welcome h1::after {
    animation: line-expand 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
    position: absolute;
    transform-origin: left;
    height: 4px;
    background: rgb(74,103,161);
    content: "";
    transform: scaleX(0);
    width: 80px;
    bottom: -10px;
    left: 0;
}

.title_welcome .skill_quick svg:hover path {
    fill: rgb(130,150,181);
}

.title_welcome ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 1rem 0 0;
    animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
    opacity: 0;
    gap: 1rem;
    transform: translateY(20px);
}

.title_welcome .inquiry_widget:hover::before {
    left: 100%;
}

.title_welcome .photo_show::before {
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(94, 170, 168, 0.2), transparent);
    content: "";
    top: 0;
    z-index: 1;
    height: 100%;
    position: absolute;
}

.thanks_note::before {
    width: 100%;
    left: 0;
    z-index: 1;
    content: "";
    background: radial-gradient(circle at 75% 25%, rgb(255, 255, 255, 0.5) 0%, transparent 60%);
    animation: pulse 8s infinite alternate ease-in-out;
    position: absolute;
    height: 100%;
    opacity: 0.5;
    top: 0;
}

.thanks_note .study_zone {
    background: #ffffff;
    position: relative;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transform-origin: center top;
    animation: fadeIn 1s 0.5s both ease-out;
    padding: 3rem;
    transition: transform 0.5s;
    border-radius: 10px;
}

.thanks_note li::before {
    opacity: 0;
    background: linear-gradient(135deg, rgb(74,103,161) 0%, rgb(130,150,181) 100%);
    border-radius: 50%;
    width: 32px;
    content: "";
    top: -5px;
    box-shadow: 0 5px 15px -5px rgb(74,103,161,0.5);
    animation: popIn 0.4s 1.2s forwards cubic-bezier(0.25, 1.8, 0.5, 1);
    position: absolute;
    height: 32px;
    left: -40px;
    transform: scale(0);
}

.future_learners .study_zone {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 19px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.future_learners h4::before {
    content: "";
    height: 4px;
    transform: translateX(-50%);
    border-radius: 10px;
    left: 50%;
    position: absolute;
    width: 40px;
    background: rgb(130,150,181);
    bottom: -20px;
}

.future_learners p {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    z-index: 1;
    background: #ffffff;
    color: #000000;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0;
    font-size: 12px;
    position: relative;
}



.future_learners .study_zone > div p {
    animation: fadeSlideIn 0.6s ease forwards;
    opacity: 0;
}

.future_learners p::after {
    bottom: 10px;
    transition: all 0.4s ease;
    background: rgb(74,103,161,0.5);
    z-index: -1;
    right: 10px;
    opacity: 0;
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.fund_cta .container {
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    flex-wrap: wrap;
    display: flex;
}

.fund_cta .company_holder {
    border-radius: 14px;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.4s ease;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(8px);
    flex: 1 1 350px;
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.fund_cta .collab_space {
    text-shadow: 0 0 10px #000000;
    opacity: 0.85;
    color: #ffffff;
    line-height: 1.6;
    max-width: 100%;
    font-size: 12px;
}

.fund_cta .header_navbar::after {
    left: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(130,150,181), transparent);
    height: 1px;
    width: 100%;
    bottom: 0;
    position: absolute;
    transform: translateY(1px);
}

.fund_cta .header_navbar h5::after {
    box-shadow: 0 0 10px rgb(74,103,161);
    width: 40px;
    background: linear-gradient(90deg, rgb(74,103,161), rgb(130,150,181));
    left: 0;
    height: 3px;
    bottom: -8px;
    content: "";
    position: absolute;
    border-radius: 10px;
    transition: width 0.3s ease-out;
}

.fund_cta .header_navbar .page_header a:hover {
    opacity: 1;
    color: #ffffff;
    padding-left: 1.5rem;
    text-shadow: 0 0 10px rgb(74,103,161,0.5);
}

.fund_cta .header_navbar .page_header a:hover::after {
    width: 100%;
    opacity: 0.2;
}

.lang_learn .abuse_ctrl {
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    opacity: 0.7;
    text-shadow: 0 0 5px #000000;
    position: relative;
    text-align: center;
    color: #ffffff;
}

header .top_plank .best_classes div {
    display: flex;
    margin-right: 24px;
    justify-content: flex-start;
    align-items: center;
}

.contact_information::before {
    opacity: 0.05;
    content: "";
    height: 100%;
    top: 0;
    position: absolute;
    background: repeating-radial-gradient(
        circle at 80% 50%,
        rgb(130,150,181,0.5),
        rgb(130,150,181,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    width: 50%;
    right: 0;
}

.contact_information .query_message {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    transform: perspective(1000px) rotateY(5deg);
    padding: 50px;
    position: relative;
    background: #ffffff;
    transition: transform 0.5s ease;
}

.contact_information .support_reach {
    align-items: flex-start;
    margin-bottom: 30px;
    display: flex;
}

.contact_information .support_reach label::before {
    border-radius: 4px;
    background: rgb(182,191,205);
    left: 0;
    width: 22px;
    position: absolute;
    height: 22px;
    transition: all 0.3s ease;
    top: 2px;
    content: "";
}

.contact_information form .inquiry_widget::after {
    z-index: 0;
    content: "";
    background: rgb(74,103,161);
    width: 0;
    height: 100%;
    top: 0;
    position: absolute;
    transition: width 0.3s ease;
    right: 0;
}

header::after {
    z-index: 0;
    height: 100%;
    width: 100%;
    top: 0;
    content: '';
    position: absolute;
    left: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
}

header .nav_start {
    text-decoration: none;
    position: relative;
    justify-content: center;
    padding: 0 0 1rem 0;
    display: flex;
}

header .header_navbar {
    width: 100%;
    justify-content: center;
    padding-top: 1rem;
    flex-wrap: wrap;
    max-width: 90%;
    gap: 0.7rem;
    display: flex;
}

header .site_main:hover::before {
    width: 100%;
}

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

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

.tariff_card .learning_packages {
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
    position: relative;
    color: inherit;
    transform-style: preserve-3d;
}

.tariff_card .learning_packages:nth-child(even) .rate_schemes {
    transform: rotate(1deg);
}

.tariff_card .program_fees::before {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    width: 100%;
    top: 0;
    height: 100%;
    z-index: -1;
    left: 0;
    content: "";
    position: absolute;
}

.tariff_card .learning_packages:hover .program_fees h3::after {
    width: 60px;
}

.tariff_card .learning_feeszKGAH::before {
    height: 2px;
    background: linear-gradient(90deg, rgb(130,150,181,0.5), transparent);
    width: 80px;
    position: absolute;
    bottom: -8px;
    left: 0;
    content: "";
}

.tariff_card .photo_show::before {
    position: absolute;
    background: rgb(130,150,181);
    top: 0;
    opacity: 0.15;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
    content: "";
    width: 100%;
    left: 0;
}

.meet_us h4::after {
    left: 50%;
    bottom: -12px;
    position: absolute;
    background: rgb(74,103,161);
    transform: translateX(-50%);
    content: "";
    transition: width 0.3s ease;
    height: 3px;
    width: 60px;
}

.meet_us .description_card {
    background: rgba(255, 255, 255, 0.09);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
    border-left: 4px solid rgb(74,103,161);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    transform: translateY(0);
    position: relative;
}

.meet_us .description_card div {
    line-height: 1.8;
    position: relative;
    animation: fadeIn 1s ease-out 0.8s both;
}

.meet_us .description_card div:hover span {
    opacity: 1;
}

.reach_us::before {
    background: 
        linear-gradient(135deg, transparent 0%, rgb(130,150,181,0.5) 100%),
        radial-gradient(circle at 20% 30%, rgb(74,103,161,0.5) 0%, transparent 70%);
    content: '';
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    left: 0;
}

.reach_us .edu_query::after {
    height: 3px;
    left: 40px;
    width: 60px;
    position: absolute;
    content: '';
    bottom: 0;
    background: rgb(130,150,181);
    border-radius: 10px;
}



.reach_us .msg_info {
    gap: 22px;
    padding: 40px;
    flex-direction: column;
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.reach_us .msg_info p {
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    padding: 0 0 22px 0;
    gap: 15px;
}

.reach_us .msg_info p {
    color: #ffffff;
}

.reach_us .msg_info p span a {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 2px 8px;
    text-decoration: none;
    color: #ffffff;
}

.reach_us .get_connected {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.reach_us .message_card::after {
    top: 0;
    width: 100%;
    content: '';
    opacity: 0;
    z-index: -1;
    position: absolute;
    background: rgb(130,150,181);
    height: 100%;
    left: 0;
    transition: opacity 0.3s ease;
}

.secure_fence .container {
    margin: 0 auto;
    max-width: 1140px;
    position: relative;
    z-index: 1;
}

.secure_fence h1 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    transform-origin: left center;
    font-size: calc(43px * 1.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.secure_fence h4 {
    color: #000000;
    font-size: calc(35px * 0.7);
    font-weight: 600;
    padding-left: 1rem;
    margin: 1.5rem 0 1rem;
    position: relative;
}

.secure_fence p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
    font-size: 12px;
    max-width: 90ch;
    color: #000000;
}

.secure_fence li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    line-height: 1.6;
    color: #000000;
    transition: transform 0.3s ease;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 12px;
}

.secure_fence span:hover {
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.course_overview::after {
    bottom: -10%;
    left: -5%;
    width: 250px;
    content: "";
    z-index: 0;
    opacity: 0.3;
    position: absolute;
    height: 250px;
    filter: blur(100px);
    background: linear-gradient(225deg, rgb(74,103,161,0.5) 0%, rgb(130,150,181,0.5) 100%);
}

.course_overview .photo_show::after {
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    position: absolute;
    width: 100%;
    z-index: 1;
}

.course_overview h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
    transform: translateY(0);
    padding-left: 0;
    transition: transform 0.3s ease, padding-left 0.3s ease;
    margin-bottom: 25px;
    position: relative;
}

.course_overview .description_card div {
    position: relative;
    overflow: hidden;
}

.consent_box {
    animation: bounce 2s infinite;
    margin-bottom: 20px;
}

.consent_box svg, .consent_box svg path, .consent_box img {
    fill: rgb(130,150,181);
    height: 80px;
    width: 80px;
}

.tracking_policy {
    cursor: pointer;
    padding: 10px 20px;
    color: #ffffff;
    background: rgb(130,150,181);
    text-decoration: none;
    width: calc(50% - 10px);
    display: inline-block;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 19px;
}

.academic_experience .student_perspectives {
    background: #ffffff;
    padding: 40px;
    transform: rotate(-2deg);
    border-radius: 13px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    grid-template-columns: 1fr 2fr;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-template-areas: 
        "photo name"
        "photo job"
        "quote quote";
    gap: 15px;
    display: grid;
}

.course_overview p.description::-webkit-scrollbar {
    width: 4px;
}

.course_overview p.description::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
}

.course_overview p.description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(130,150,181,0.5);
}



@media (min-width: 992px) {.title_welcome .study_zone {
    padding: 4rem;
}.title_welcome h1::after {
    width: 120px;
}.title_welcome .skill_quick svg {
    width: 100px;
    height: 100px;
}
}



@media (max-width: 767px) {.title_welcome {
    padding-top: 60px;
}.title_welcome .study_zone {
    padding-bottom: 3rem;
    padding-top: 2rem;
}.title_welcome .description_card {
    order: 2;
}.title_welcome .photo_show {
    margin-bottom: 1.5rem;
    order: 1;
}
}



@media (max-width: 576px) {.thanks_note {
    padding: 3rem 0;
}.thanks_note h2 {
    margin-bottom: 1.5rem;
    font-size: calc(30px * 0.7);
}.thanks_note .study_zone {
    transform: none;
    padding: 1.5rem;
}.thanks_note ul::before {
    left: -12px;
}.thanks_note li::before {
    width: 20px;
    height: 20px;
    left: -25px;
    top: -2px;
}.thanks_note li span {
    font-size: calc(17px * 0.95);
    line-height: 1.6;
}}



@media (max-width: 1200px) {.fund_cta .container {
    gap: 2rem;
}.fund_cta .company_holder {
    flex: 1 1 320px;
}.fund_cta .support_cta {
    min-width: 320px;
    flex: 1 1 calc(100% - 370px);
}
}



@media (max-width: 768px) {.fund_cta {
    padding: 3rem 0 1.5rem;
}.fund_cta .company_holder,
    .fund_cta .header_navbar {
    padding: 1.5rem;
}.fund_cta .page_header {
    gap: 1.5rem;
}.fund_cta .company_holder h3 {
    font-size: calc(35px - 2px);
}.fund_cta .header_navbar h5 {
    font-size: calc(22px - 1px);
}.fund_cta .company_holder:hover,
    .fund_cta .header_navbar:hover {
    transform: translateY(-3px);
}
}



@media screen and (max-width: 576px) {.contact_information {
    padding: 50px 0;
}.contact_information h2 {
    font-size: calc(37px * 0.85);
}.contact_information .photo_show {
    height: 250px;
}.contact_information .query_message {
    padding: 30px 25px;
}.contact_information form h3 {
    font-size: calc(21px * 0.9);
}.contact_information form .inquiry_widget {
    width: 100%;
}}



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



@media (min-width: 768px) {.meet_us {
    padding: 8rem 0;
}.meet_us h4 {
    font-size: calc(23px * 1.4);
    margin-bottom: 3.5rem;
}.meet_us .description_card {
    padding: 4rem;
    border-left-width: 6px;
}.meet_us .description_card span {
    column-count: 2;
}
}



@media (prefers-reduced-motion) {.meet_us h4,
    .meet_us .container,
    .meet_us .description_card h6,
    .meet_us .description_card div {
    animation: none;
}.meet_us::after {
    animation: none;
}.meet_us .description_card {
    transition: none;
}.meet_us .description_card:hover {
    transform: none;
}}



@media (max-width: 375px) {.reach_us .send_request {
    border-radius: 10px;
}.reach_us .msg_info {
    padding: 15px;
}.reach_us .msg_info p {
    padding-bottom: 15px;
}.reach_us .photo_show {
    min-height: 180px;
}.reach_us .connect_block {
    padding-top: 20px;
    margin-top: 20px;
}
}



@media (min-width: 768px) {.secure_fence {
    padding: 6rem 3rem;
}.secure_fence .container {
    padding: 0 2rem;
}.secure_fence h1 {
    margin-bottom: 3rem;
    font-size: calc(43px * 1.3);
}.secure_fence h1::after {
    height: 4px;
    width: 6rem;
}.secure_fence h2 {
    margin: 3.5rem 0 1.5rem;
    padding-left: 1.2rem;
    font-size: calc(35px * 1.1);
}.secure_fence h3 {
    margin: 2.5rem 0 1.2rem;
    font-size: calc(35px * 0.9);
}.secure_fence h4 {
    margin: 2rem 0 1rem;
    padding-left: 1.2rem;
    font-size: calc(35px * 0.75);
}.secure_fence ul {
    padding-left: 2rem;
}.secure_fence li {
    padding: 0.7rem 0 0.7rem 1.5rem;
}.secure_fence span {
    margin-left: 1rem;
    padding: 1.5rem;
}
}



@media (max-width: 767px) {.course_overview {
    padding: 70px 0;
}.course_overview .description_card {
    padding: 30px 20px;
}.course_overview h3 {
    font-size: calc(18px * 0.9);
    margin-bottom: 20px;
}.course_overview p.description {
    line-height: 1.7;
    max-height: 200px;
    font-size: calc(18px * 0.95);
}
}



@media (max-width: 768px) {.academic_experience {
    padding: 60px 0;
}.academic_experience .student_perspectives {
    padding: 30px 20px;
    grid-template-areas: 
            "photo_show"
            "name"
            "employee_section"
            "work_content";
    grid-template-columns: 1fr;
}.academic_experience .photo_show {
    width: 80%;
    height: 180px;
    margin: 0 auto;
}.academic_experience .name,
    .academic_experience .student_perspectives span:not(.name) {
    transform: translateX(0);
    text-align: center;
}.academic_experience .work_content {
    padding: 15px;
}
}



@keyframes title-slide {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



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



@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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



@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

