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

.main_mainbar {
    flex: 1 0 auto;
}

.teach_supp {
    flex: 0 0 auto;
}

.teach_supp {
    position: relative;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

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

header .top_main {
    display: flex;
    padding: 25px 30px;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

header .top_main::before {
    height: 5px;
    content: "";
    filter: blur(5px);
    left: 10%;
    position: absolute;
    width: 30%;
    top: -10px;
    background: linear-gradient(90deg, rgb(185,192,215), transparent);
}

header .top_main .site_main {
    position: relative;
    z-index: 2;
    padding: 5px;
}

header .top_main .site_main:hover::before {
    opacity: 0.7;
}

header .top_main .site_main .main_header {
    display: block;
    position: relative;
    transition: transform 0.3s ease;
}

header .top_main .site_main:hover .main_header {
    transform: scale(1.05);
}

header .top_main .site_main .main_header svg {
    height: 45px;
    width: auto;
}

header .top_main .site_navbar::before {
    left: 0;
    border-radius: 16px;
    content: "";
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    position: absolute;
    backdrop-filter: blur(5px);
    top: 0;
    opacity: 0.1;
    width: 100%;
}

header .top_main .site_navbar .nav_know a::before {
    left: 0;
    z-index: -1;
    height: 100%;
    transition: opacity 0.3s ease;
    position: absolute;
    background: linear-gradient(135deg, rgb(185,192,215), rgb(148,162,192));
    opacity: 0;
    width: 100%;
    content: "";
    top: 0;
}

header .top_main .site_navbar .nav_know:hover a::before {
    opacity: 1;
}

header .top_main .site_navbar .nav_know:hover a {
    color: #ffffff;
}

header .top_main .site_navbar .nav_know:active a::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
}

header .top_main .site_navbar .nav_know:nth-child(odd) a::before {
    background: linear-gradient(to right, rgb(185,192,215), rgb(148,162,192));
}

.mentorship_profile {
    position: relative;
    padding: 7rem 2rem 5rem;
    perspective: 1000px;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(219,224,238) 0%, rgb(185,192,215,0.5) 100%);
}

.mentorship_profile::after {
    z-index: 1;
    position: absolute;
    bottom: -15%;
    width: 40%;
    left: -5%;
    height: 50%;
    border: 5px solid rgb(185,192,215,0.5);
    content: "";
    transform: rotateZ(15deg) rotateX(30deg) rotateY(-10deg);
    opacity: 0.3;
}

.mentorship_profile .gallery_slider {
    width: 300px;
    z-index: 3;
    height: 380px;
    border-radius: 10px;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    left: 15%;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 80%, 
        80% 100%, 
        0% 100%
    );
    transform: 
        translateZ(60px) 
        rotateY(15deg) 
        rotateX(5deg);
    box-shadow: 20px 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.mentorship_profile .exp_flex::before {
    left: 15px;
    background: rgb(185,192,215,0.5);
    position: absolute;
    z-index: -1;
    height: 100%;
    top: 15px;
    transition: all 0.5s ease;
    opacity: 0.3;
    border-radius: 30px;
    width: 100%;
    content: "";
}

.mentorship_profile .exp_flex:hover {
    box-shadow: 25px 25px 40px -5px rgba(0, 0, 0, 0.5);
    transform: 
        translateZ(40px) 
        rotateY(-5deg) 
        rotateX(0deg);
}

.mentorship_profile .exp_flex > div:nth-child(2) {
    transform: translateY(30px);
    animation: slide-up 0.7s forwards 0.4s;
    color: rgb(148,162,192);
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    z-index: 2;
    font-size: 21px;
    font-weight: 600;
}



.mentorship_profile .work_table::after {
    bottom: -50px;
    font-family: serif;
    color: rgb(148,162,192,0.5);
    opacity: 0.4;
    content: "";
    right: 0;
    font-size: 6rem;
    position: absolute;
    z-index: -1;
}

.course_program_info {
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px);
    background: rgb(219,224,238);
    padding: 120px 0;
    overflow: hidden;
}

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

.course_program_info .job_skills {
    grid-template-columns: 1.5fr 1fr;
    display: grid;
    gap: 40px;
    position: relative;
    perspective: 1000px;
}

.course_program_info .message_box {
    padding: 35px;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    animation: floatPanel 8s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.03);
    transform: translateZ(0);
    gap: 30px;
    position: relative;
    width: 100%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course_program_info .message_box .description {
    background: rgba(255, 255, 255, 0.07);
    padding: 18px;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
    border-left: 3px solid rgb(185,192,215,0.5);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    z-index: 2;
    text-align: justify;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.5s ease;
    transform: translateZ(0);
    position: relative;
}

.course_program_info .message_box .description:first-of-type {
    border-left-color: rgb(185,192,215);
}

.course_program_info .message_box .description::before {
    z-index: -1;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
}

.course_program_info .gallery_slider:hover {
    transform: scale(1.02) translateY(-5px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgb(185,192,215,0.5);
}

footer {
    z-index: 1;
    position: relative;
}

footer {
    background-size: cover !important;
    background-position: center !important;
}

footer::before {
    position: absolute;
    background: linear-gradient(135deg, rgb(185,192,215,0.5) 0%, rgb(148,162,192,0.5) 100%);
    left: 0;
    top: 0;
    right: 0;
    content: "";
    z-index: -1;
    bottom: 0;
    opacity: 0.92;
}

.teach_supp .container {
    position: relative;
    flex-wrap: wrap;
    display: flex;
    gap: 0;
}

.teach_supp .company_holder::after {
    position: absolute;
    opacity: 0.3;
    content: "";
    width: 1px;
    height: 100%;
    right: 1.5rem;
    background: linear-gradient(to bottom, #ffffff, transparent);
    top: 0;
}

.teach_supp .company_holder h3::after {
    background: rgb(185,192,215);
    height: 3px;
    content: "";
    bottom: 0;
    left: 0;
    width: 80px;
    box-shadow: 0 0 10px rgb(185,192,215);
    position: absolute;
}

.teach_supp .inclusion {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 60%;
}

.teach_supp .top_edu {
    flex: 1;
    gap: 0;
    flex-wrap: wrap;
    display: flex;
}

.teach_supp .site_navbar h5 {
    padding-left: 1rem;
    font-size: 22px;
    transform: skewX(-5deg);
    margin: 0 0 1.5rem;
    font-weight: 600;
    position: relative;
    color: #ffffff;
}

.teach_supp .site_navbar .top_edu {
    flex-direction: column;
    gap: 0.8rem;
    display: flex;
}

.teach_supp .site_navbar .top_edu a::before {
    transition: all 0.5s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 100%;
    width: 100%;
    left: -100%;
    position: absolute;
    content: "";
    top: 0;
}

.teach_supp .site_navbar .top_edu a:hover::before {
    left: 100%;
}

.skill_test {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    padding: 1.5rem 0;
}

.skill_test .citation {
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    transform: skewX(-5deg);
    width: 100%;
}

.user_reviews::before {
    width: 100%;
    z-index: 1;
    left: 0;
    height: 100%;
    top: 0;
    content: "";
    background: 
    radial-gradient(circle at 10% 20%, rgba(rgb(185,192,215,0.5), 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(rgb(148,162,192,0.5), 0.03) 0%, transparent 40%);
    position: absolute;
}

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

.user_reviews h2 {
    transform: perspective(1000px) translateZ(0);
    color: #000000;
    font-size: 31px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.user_reviews .diff_block {
    overflow: hidden;
    position: relative;
    perspective: 1200px;
}

.user_reviews .review_highlights {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
    transform: translateZ(0);
    background: #ffffff;
    overflow: hidden;
    border-left: 3px solid rgb(185,192,215);
    box-shadow: 
    0 20px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.1),
    0 10px 20px -10px rgba(rgba(0, 0, 0, 0.5), 0.05);
}

.user_reviews .review_highlights:hover {
    box-shadow: 
    0 30px 40px -20px rgba(rgba(0, 0, 0, 0.5), 0.15),
    0 15px 25px -10px rgba(rgba(0, 0, 0, 0.5), 0.1);
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
}

.user_reviews .review_highlights h3::after {
    height: 2px;
    position: absolute;
    width: 2.5rem;
    background: rgb(185,192,215);
    bottom: -0.35rem;
    content: "";
    transform-origin: left;
    left: 0;
    transition: width 0.3s ease;
}

.user_reviews .review_highlights div {
    width: 65px;
    overflow: hidden;
    position: relative;
    height: 65px;
    transform: translateZ(0);
    border-radius: 50%;
    margin-top: auto;
    box-shadow: 0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.1);
}

.user_reviews .review_highlights img {
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.homepage {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.homepage .edu_first::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgb(185,192,215,0.5) 0%, 
        rgba(0,0,0,0.7) 60%, 
        rgb(148,162,192,0.5) 100%);
}

.homepage .knowledge_learn {
    max-width: 900px;
    position: relative;
    background: linear-gradient(165deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 40%, 
        rgba(255,255,255,0) 100%);
    opacity: 0;
    padding: 3rem 2rem;
    transform: translateY(2vh);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2),
                0 5px 15px rgba(0,0,0,0.1),
                0 1px 2px rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid rgb(148,162,192);
    animation: slideUpFade 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    backdrop-filter: blur(8px);
    border-radius: 10px;
}

.homepage .knowledge_learn::after {
    border-bottom: 4px solid rgb(148,162,192);
    content: "";
    opacity: 0;
    position: absolute;
    left: -20px;
    width: 80px;
    border-left: 4px solid rgb(148,162,192);
    animation: appearFade 0.8s ease-out 1.2s forwards;
    bottom: -20px;
    height: 80px;
}

.homepage h1::after {
    animation: lineExpand 1.5s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
    height: 3px;
    width: 0;
    position: absolute;
    bottom: -10px;
    background: linear-gradient(90deg, 
        rgb(148,162,192) 0%, 
        rgb(185,192,215) 100%);
    content: "";
    left: 0;
}

.homepage h3::before {
    opacity: 0.8;
    transform: scaleY(0);
    content: "";
    background: rgb(148,162,192);
    left: 0;
    top: 0;
    animation: scaleVertical 0.6s ease-out 0.9s forwards;
    width: 3px;
    transform-origin: top;
    bottom: 0;
    position: absolute;
}

.homepage p::before {
    left: 0;
    top: 50%;
    animation: scaleHorizontal 0.6s ease-out 1.2s forwards;
    transform: scaleX(0);
    content: "";
    width: 1.5rem;
    position: absolute;
    height: 1px;
    transform-origin: left;
    background: rgb(148,162,192);
}

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

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

.reach_out h2 {
    text-align: center;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: #000000;
}

.reach_out .message_request {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    border-radius: 0;
    position: relative;
    display: flex;
}

.reach_out .gallery_slider::before {
    background: linear-gradient(
        135deg, 
        rgba(rgb(185,192,215), 0.4), 
        rgba(rgb(148,162,192), 0.4)
    );
    inset: 0;
    content: "";
    z-index: 1;
    position: absolute;
}

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

.reach_out form h3 {
    position: relative;
    font-weight: 600;
    color: #000000;
    display: inline-block;
    font-size: 19px;
    margin-bottom: 40px;
}

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

.reach_out .reach_map {
    position: relative;
    margin-bottom: 40px;
}

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

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

.reach_out .reach_map label a {
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    color: rgb(185,192,215);
}

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

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

.reach_out .reach_list:hover::before {
    width: 150%;
}

.reach_out svg {
    height: 24px;
    transition: all 0.3s ease;
    width: 24px;
    stroke-width: 2;
    stroke: rgb(185,192,215);
    fill: none;
}

.reach_out svg:hover,
.reach_out svg:hover path {
    stroke: rgb(148,162,192);
}

.thanksFrame::before {
    z-index: -1;
    height: 45%;
    width: 45%;
    content: "";
    transform: rotate(-15deg) translateZ(0);
    background: linear-gradient(225deg, rgb(185,192,215) 0%, transparent 70%);
    top: -5%;
    opacity: 0.15;
    position: absolute;
    animation: float 15s ease-in-out infinite alternate;
    right: -5%;
    filter: blur(20px);
}

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

.thanksFrame .diff_block {
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(rgba(0, 0, 0, 0.5), 0.1),
                0 -5px 30px -10px rgba(rgb(185,192,215,0.5), 0.05);
    padding: clamp(2rem, 5vw, 4rem);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    grid-template-columns: 1fr;
    gap: 2.5rem;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 2rem),
        calc(100% - 2rem) 100%,
        0 100%
    );
    transform: perspective(1000px) rotateX(2deg) translateZ(0);
    display: grid;
    position: relative;
    background: linear-gradient(145deg, rgba(rgb(255, 255, 255, 0.5), 0.95) 0%, rgba(rgb(255, 255, 255, 0.5), 0.85) 100%);
}

.thanksFrame h5 {
    opacity: 0;
    margin: 0;
    font-size: clamp(calc(19px * 0.8), 4vw, 19px);
    font-weight: 700;
    transform: translateY(20px);
    color: #000000;
    letter-spacing: -0.01em;
    line-height: 1.4;
    animation: fadeUpIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.thanksFrame p {
    color: #000000;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: clamp(calc(13px * 0.95), 3vw, 13px);
    line-height: 1.7;
    margin: 0;
}

.thanksFrame a {
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
}

.thanksFrame a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.5;
    transform: scaleX(0.3);
    width: 100%;
    background: linear-gradient(90deg, rgb(148,162,192) 0%, transparent 100%);
    height: 1px;
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    content: "";
}

.program_assets::after {
    position: absolute;
    transform: rotate(-20deg);
    left: -10%;
    content: '';
    height: 140%;
    width: 60%;
    z-index: 1;
    opacity: 0.4;
    background: rgb(148,162,192,0.5);
    bottom: -20%;
}

.program_assets .gallery_slider {
    height: 500px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    transform: translateY(30px);
    overflow: hidden;
    grid-row: 1;
    grid-column: 1 / span 7;
    position: relative;
    border-radius: 11px;
}

.program_assets .message_box {
    border-radius: 11px;
    grid-row: 1;
    background: #ffffff;
    padding: 3rem;
    z-index: 3;
    align-self: center;
    grid-column: 6 / span 7;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.program_assets .text_main_holder {
    gap: 2rem;
    display: grid;
}

.program_assets .text_main_holder > div::before {
    background: rgb(185,192,215);
    transform-origin: right;
    width: 2rem;
    transition: transform 0.3s ease;
    top: 1.2rem;
    content: '';
    transform: scaleX(0);
    position: absolute;
    left: -3rem;
    height: 1px;
}

.program_assets .text_main_holder svg {
    padding: 0.6rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 2.5rem;
    background: rgb(185,192,215,0.5);
    height: 2.5rem;
    border-radius: 11px;
    margin-right: 1.5rem;
}

.program_assets .text_main_holder p {
    font-size: 15px;
    padding-top: 0.3rem;
    margin: 0;
    line-height: 1.6;
    color: #000000;
}

.cookie_frame {
    flex-wrap: nowrap;
    align-items: center;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.track_switch {
    margin-right: 20px;
    flex-shrink: 0;
}

#panelCookieWarning:checked ~ .cookie_alert_message {
    opacity: 0;
    visibility: hidden;
}

.secure_cookies {
    flex-grow: 1;
    margin-right: 20px;
}

.secure_cookies p {
    font-size: 15px;
    margin-bottom: 0;
    color: #000000;
}

.cookie_layer {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    margin-left: 10px;
    text-decoration: none;
    padding: 10px 20px;
}

.cookie_layer {
    color: #ffffff;
    background-color: rgb(185,192,215);
    border: 1px solid rgb(185,192,215);
}

.secure_safehouse h1 {
    border-bottom: 2px solid rgb(148,162,192);
    grid-column: span 2;
    font-size: 39px;
    padding-bottom: 10px;
    color: rgb(185,192,215);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    margin-top: 0;
    text-align: center;
}

.secure_safehouse h3, .secure_safehouse h4, .secure_safehouse h5 {
    font-size: 22px;
    color: #000000;
}

.secure_safehouse li {
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    padding: 10px;
    background: rgb(148,162,192,0.5);
    border-radius: 10px;
    line-height: 1.5;
    font-size: 14px;
    color: #000000;
}

.secure_safehouse p, .secure_safehouse span {
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.8;
    font-size: 14px;
}

.our_story::before {
    background: 
        radial-gradient(circle at 20% 20%, rgb(185,192,215,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgb(148,162,192,0.5) 0%, transparent 60%);
    width: 100%;
    z-index: 0;
    animation: pulse 15s infinite alternate;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    position: absolute;
}

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

.our_story .diff_block {
    grid-gap: 60px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    display: grid;
}

.our_story h3::after {
    position: absolute;
    transition: width 0.5s ease;
    left: 0;
    height: 4px;
    width: 80px;
    background: rgb(185,192,215);
    bottom: -10px;
    content: "";
    border-radius: 10px;
}

.our_story .mastery_zone::before {
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, rgb(185,192,215), rgb(148,162,192));
    position: absolute;
    top: 0;
    width: 100%;
    content: "";
    left: 0;
    height: 5px;
}

.our_story .mastery_zone span {
    display: block;
    color: rgb(185,192,215);
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    font-weight: 600;
}

.our_story .mastery_zone p {
    color: #000000;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 18px;
}

.our_story .mastery_zone .gallery_slider::after {
    position: absolute;
    height: 100%;
    animation: shine 3s infinite;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    width: 50%;
    content: "";
    left: -100%;
}

.our_story .history_tl::before {
    border-radius: 10px 10px 0 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(148,162,192), rgb(185,192,215));
    right: 0;
    top: 0;
    width: 100%;
    content: "";
    height: 5px;
}

.our_story .history_tl p {
    font-weight: 400;
    font-size: 18px;
    padding-left: 20px;
    color: #000000;
    margin-bottom: 30px;
    border-left: 3px solid rgb(148,162,192);
    position: relative;
    line-height: 1.6;
}

.our_story .history_tl .method_edu::before {
    border-radius: 50%;
    top: -15px;
    border: 2px dashed rgb(148,162,192,0.5);
    position: absolute;
    height: calc(100% + 30px);
    width: calc(100% + 30px);
    content: "";
    left: -15px;
    animation: rotate 30s linear infinite;
}

.tariff_option {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(219,224,238) 0%, rgb(148,162,192,0.5) 100%);
    padding: 6rem 0;
    position: relative;
}

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

.tariff_option .premium_cost {
    gap: 2.5rem;
    display: flex;
    flex-direction: column-reverse;
}

.tariff_option .package_rates {
    background: rgba(#ffffff, 0.9);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem;
    transform: translateY(0);
}

.tariff_option .package_rates:hover h2::after {
    transform: scaleX(1.5);
}

.tariff_option .promo_plans {
    font-size: 14px;
    color: #000000;
    max-width: 100%;
    margin-top: 1.5rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
}

.tariff_option .learning_packages {
    position: relative;
    text-decoration: none;
    height: 100%;
    display: block;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tariff_option .learning_packages:hover .cert_fees {
    box-shadow: 0 15px 35px rgba(rgb(185,192,215,0.5), 0.15);
}

.tariff_option .payment_option {
    padding: 2rem;
    min-height: 280px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.tariff_option .study_fees {
    position: relative;
    font-size: calc(20px + 0.3rem);
    margin: 0.5rem 0 1.25rem;
    display: block;
    font-weight: 700;
    color: rgb(185,192,215);
}

.tariff_option .payment_option p {
    color: #000000;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 14px;
    overflow-wrap: break-word;
    margin-top: 1.5rem;
    word-break: break-word;
}

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

.service_info::before {
    top: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgb(148,162,192,0.5) 1px, transparent 4px),
        radial-gradient(circle at 30% 50%, rgb(148,162,192,0.5) 1px, transparent 4px),
        radial-gradient(circle at 70% 80%, rgb(148,162,192,0.5) 1px, transparent 4px),
        radial-gradient(circle at 90% 30%, rgb(148,162,192,0.5) 1px, transparent 4px);
    background-size: 120px 120px;
    left: 0;
    opacity: 0.3;
    position: absolute;
    z-index: 0;
    height: 100%;
    content: "";
    width: 100%;
    background-position: 0 0, 60px 60px, 30px 90px, 90px 30px;
    animation: backgroundShift 30s infinite linear;
}



.service_info .connect_team {
    flex-direction: column;
    display: flex;
    position: relative;
    z-index: 1;
}

.service_info .connect_team h2 {
    color: rgb(148,162,192);
    position: relative;
    font-size: 36px;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service_info .connect_team h2::after {
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, rgb(185,192,215) 0%, rgb(148,162,192) 100%);
    width: 60px;
    bottom: 0;
    content: "";
    position: absolute;
    border-radius: 10px;
}

.service_info .connect_team p {
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 18px;
    margin-bottom: 1rem;
}

.service_info .send_feedback h3 {
    color: rgb(148,162,192);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 20px;
}

.service_info .assist_support span {
    border-radius: 10px;
    color: #000000;
    font-size: calc(18px * 0.9);
    padding: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    display: block;
}

.service_info .connect_team .gallery_slider::before {
    z-index: 1;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgb(185,192,215,0.5) 100%);
    position: absolute;
}

.service_info .reach_us a {
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    flex-direction: column;
    margin-bottom: 2rem;
    display: flex;
    overflow: hidden;
    padding: 1.2rem;
}

.service_info .reach_us a:hover::before {
    width: 8px;
}

.service_info .reach_us a p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.service_info svg {
    width: 20px;
    margin-right: 0.8rem;
    height: 20px;
    fill: rgb(148,162,192);
    transition: all 0.3s ease;
}



.service_info .contact_details:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service_info .container::after {
    height: 150px;
    border-radius: 50%;
    width: 150px;
    right: -40px;
    bottom: -40px;
    z-index: -1;
    filter: blur(50px);
    opacity: 0.2;
    content: "";
    position: absolute;
    background: rgb(185,192,215,0.5);
}


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



@media (max-width: 767px) {header .top_main {
    padding: 15px 10px;
}header .top_main .site_main .main_header svg {
    height: 40px;
}header .top_main .site_navbar {
    padding: 5px;
}header .top_main .site_navbar .nav_know a {
    font-size: calc(16px - 2px);
    padding: 5px 10px;
}}



@media (max-width: 1100px) {.mentorship_profile .review_highlights {
    align-items: center;
    flex-direction: column;
}.mentorship_profile .gallery_slider {
    margin-bottom: 4rem;
    position: relative;
    left: auto;
    width: 250px;
    transform: 
            translateZ(30px) 
            rotateY(0deg) 
            rotateX(0deg);
    height: 320px;
}.mentorship_profile .exp_flex {
    padding: 2rem;
    margin-left: 0;
    width: 100%;
    transform: 
            translateZ(20px) 
            rotateY(0deg) 
            rotateX(0deg);
}}



@media screen and (max-width: 767px) {.course_program_info {
    padding: 60px 0;
}.course_program_info .job_skills {
    gap: 30px;
}.course_program_info .message_box {
    gap: 20px;
    padding: 25px;
}.course_program_info .message_box h2 {
    margin-bottom: 15px;
    padding: 10px 15px;
    font-size: calc(31px * 0.8);
}.course_program_info .message_box .description {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: calc(14px * 0.95);
    padding: 12px;
}.course_program_info .gallery_slider {
    min-height: 350px;
}.course_program_info .job_skills::before {
    display: none;
}
}



@media screen and (max-width: 480px) {.course_program_info {
    padding: 40px 0;
}.course_program_info .message_box {
    gap: 15px;
    padding: 20px;
}.course_program_info .message_box h2 {
    padding: 8px 12px;
    font-size: calc(31px * 0.7);
    letter-spacing: 1px;
}.course_program_info .message_box .description {
    font-size: calc(14px * 0.9);
    padding: 10px;
    line-height: 1.6;
}.course_program_info .gallery_slider {
    min-height: 280px;
}}



@media (max-width: 768px) {.teach_supp {
    padding: 3.5rem 0 1.5rem;
}.teach_supp::before {
    height: 10px;
}.teach_supp .company_holder h3 {
    font-size: calc(30px - 2px);
}.teach_supp .honor_cta {
    transform: skewX(-3deg);
    padding: 1.2rem;
}.teach_supp .site_navbar h5, 
    .teach_supp .site_navbar .top_edu a {
    transform: skewX(-3deg);
}.teach_supp .site_navbar .top_edu a:hover {
    transform: skewX(-3deg) translateX(5px);
}.skill_test {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}.skill_test .citation {
    transform: skewX(-3deg);
}
}



@media (max-width: 420px) {.teach_supp .company_holder h3 {
    transform: skewX(-5deg);
}.teach_supp .company_holder h3::after {
    width: 60px;
}.teach_supp .honor_cta {
    transform: none;
}.teach_supp .site_navbar h5 {
    transform: none;
}.teach_supp .site_navbar h5::before {
    transform: none;
}.teach_supp .site_navbar .top_edu a,
    .teach_supp .site_navbar .top_edu a:hover,
    .skill_test .citation {
    transform: none;
}}



@media screen and (min-width: 1200px) {.user_reviews {
    padding: 8rem 0;
}.user_reviews::after {
    right: -8%;
    top: -15%;
    width: 35%;
    height: 70%;
}.user_reviews .client_ratings {
    grid-template-columns: repeat(3, 1fr);
}.user_reviews .review_highlights {
    transition: 
      transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.5s ease;
}.user_reviews .review_highlights:nth-child(3n+1) {
    transform: translateZ(10px) rotateY(2deg);
}.user_reviews .review_highlights:nth-child(3n+2) {
    transform: translateZ(15px);
}.user_reviews .review_highlights:nth-child(3n+3) {
    transform: translateZ(10px) rotateY(-2deg);
}.user_reviews .review_highlights:nth-child(3n+1):hover {
    transform: translateY(-10px) translateZ(15px) rotateY(2deg);
}.user_reviews .review_highlights:nth-child(3n+2):hover {
    transform: translateY(-10px) translateZ(20px);
}.user_reviews .review_highlights:nth-child(3n+3):hover {
    transform: translateY(-10px) translateZ(15px) rotateY(-2deg);
}
}



@media screen and (max-width: 992px) {.homepage .edu_first {
    padding: 1.5rem;
    min-height: 90vh;
}.homepage .knowledge_learn {
    max-width: 700px;
    padding: 2rem 1.5rem;
}.homepage h1 {
    font-size: 41px;
}.homepage h1::after {
    height: 2px;
    bottom: -8px;
}.homepage h3 {
    font-size: calc(24px * 0.95);
}.homepage p {
    max-width: 95%;
}
}



@media screen and (max-width: 576px) {.homepage .edu_first {
    min-height: 70vh;
}.homepage .knowledge_learn {
    padding: 1.5rem 1rem;
}.homepage h1 {
    margin-bottom: 1rem;
    font-size: calc(41px * 0.8);
}.homepage h1::after {
    bottom: -6px;
    height: 2px;
}.homepage h3 {
    padding-left: 0.8rem;
    font-size: calc(24px * 0.85);
}.homepage h3::before {
    width: 2px;
}.homepage p {
    font-size: calc(14px * 0.9);
    padding-left: 1.5rem;
    margin-top: 1.2rem;
}.homepage p::before {
    width: 1.2rem;
}.homepage .knowledge_learn::before,
    .homepage .knowledge_learn::after {
    height: 50px;
    width: 50px;
    border-width: 3px;
}
}



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



@media (min-width: 768px) {.thanksFrame {
    padding: 7rem 0;
}.thanksFrame .diff_block {
    padding: clamp(3rem, 6vw, 5rem);
    align-items: center;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}.thanksFrame .diff_block > div:first-child {
    padding-bottom: 0;
    padding-right: 2rem;
}.thanksFrame .diff_block > div:first-child::after {
    transform: scaleY(0);
    left: auto;
    right: 0;
    height: 70%;
    transform-origin: top center;
    width: 3px;
    animation: expandVertLine 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
    bottom: auto;
    top: 15%;
    background: linear-gradient(180deg, rgb(185,192,215) 0%, transparent 100%);
}.thanksFrame h5 {
    text-align: left;
}
}



@media (prefers-reduced-motion: reduce) {.thanksFrame::before,
    .thanksFrame::after,
    .thanksFrame .diff_block,
    .thanksFrame .diff_block > div:first-child::after,
    .thanksFrame h5,
    .thanksFrame .diff_block > div:last-child,
    .thanksFrame .diff_block > div:last-child::before,
    .thanksFrame a,
    .thanksFrame a::after {
    animation: none;
    transition: opacity 0.3s ease;
}.thanksFrame .diff_block > div:first-child::after,
    .thanksFrame a::after {
    transform: none;
}}



@media (max-width: 768px) {.program_assets {
    padding: 6rem 0;
}.program_assets .gallery_slider {
    margin-bottom: -30px;
    animation: none;
    transform: translateY(0);
    height: 350px;
}.program_assets .message_box {
    padding: 2rem;
}.program_assets h2 {
    font-size: calc(35px * 0.9);
    margin-bottom: 2rem;
}
}


@media (max-width: 1200px) {.secure_cookies h5 {
    font-size: calc(22px - 2px);
}.secure_cookies p {
    font-size: calc(15px - 2px);
}.cookie_layer {
    font-size: calc(18px - 2px);
    padding: 8px 16px;
}
}


@media (max-width: 800px) {.cookie_frame {
    align-items: center;
    flex-direction: column;
}.track_switch {
    margin-bottom: 15px;
}.secure_cookies {
    margin-bottom: 20px;
    text-align: center;
}.cookie_layer {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
}}



@media (max-width: 992px) {.our_story {
    padding: 90px 0;
}.our_story .diff_block {
    grid-template-columns: 1fr;
    grid-gap: 40px;
}.our_story .mastery_zone,
    .our_story .history_tl {
    margin: 0 auto;
    max-width: 600px;
}.our_story .mastery_zone .gallery_slider {
    height: 240px;
}.our_story .history_tl .method_edu {
    width: 160px;
    height: 160px;
}
}



@media (max-width: 576px) {.our_story {
    padding: 50px 0;
}.our_story .container {
    padding: 0 15px;
}.our_story h3 {
    font-size: calc(30px * 0.8);
    margin-bottom: 20px;
}.our_story .diff_block {
    grid-gap: 30px;
}.our_story .mastery_zone,
    .our_story .history_tl {
    padding: 20px;
}.our_story .mastery_zone p,
    .our_story .history_tl p {
    margin-bottom: 20px;
}.our_story .mastery_zone .gallery_slider {
    height: 180px;
}.our_story .history_tl .method_edu {
    width: 120px;
    height: 120px;
}.our_story .history_tl .method_edu::before {
    top: -10px;
    width: calc(100% + 20px);
    left: -10px;
    height: calc(100% + 20px);
}}



@media (min-width: 1200px) {.tariff_option .fee_plan {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}.tariff_option .payment_option {
    padding: 2.5rem;
}.tariff_option .package_rates h2 {
    font-size: calc(37px + 0.2rem);
}.tariff_option .gallery_slider {
    height: 250px;
}
}



@media (max-width: 1024px) {.service_info .contact_details {
    grid-template-columns: 1fr 1fr;
}.service_info .connect_team:first-child {
    grid-column: span 2;
}.service_info .connect_team .gallery_slider {
    min-height: 250px;
}
}



@media (max-width: 480px) {.service_info {
    padding: 2rem 0;
}.service_info .contact_details {
    gap: 1.5rem;
    padding: 1.5rem;
}.service_info .connect_team h2 {
    font-size: calc(36px * 0.85);
}.service_info .assist_support {
    grid-template-columns: repeat(2, 1fr);
}.service_info .reach_us a {
    margin-bottom: 1rem;
}}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(rgb(185,192,215), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(rgb(185,192,215), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(rgb(185,192,215), 0);
    }
}



@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}



@keyframes glowPulse {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 10px rgb(185,192,215,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(185,192,215);
    }
}



@keyframes floatImage {
    0%, 100% {
        transform: translateZ(0) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: translateZ(50px) rotateY(-3deg) translateY(-10px);
    }
}



@keyframes expand {
    0% {
        width: 20px;
    }
    100% {
        width: 100%;
    }
}



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



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



@keyframes scaleVertical {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}



@keyframes appearFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.6;
    }
}



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



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



@keyframes expandVertLine {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}



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



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



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

@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.3;
    }
}

