* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.warp-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}.top_guide {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1118px;
}a {
    color: inherit;
    text-decoration: none;
}html,body {
    height: 100%;
    color: #000000;
    min-height: 100%;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
}.study_bottom {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.title_page {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: rgb(196,171,177);
    overflow: hidden;
}.title_page::before {
    height: 100%;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, #000000 0%, transparent 50%);
    position: absolute;
    z-index: 2;
    pointer-events: none;
}.title_page .master_study {
    align-items: flex-end;
    z-index: 3;
    position: relative;
    height: 100%;
    justify-content: center;
    width: 100%;
    display: flex;
}.title_page .course_front {
    top: 0;
    overflow: hidden;
    left: 0;
    z-index: 1;
    width: 100%;
    position: absolute;
    height: 100%;
}.title_page .course_front::after {
    height: 100%;
    content: "";
    width: 100%;
    z-index: 1;
    background: 
        linear-gradient(90deg, #000000 0%, transparent 20%),
        linear-gradient(270deg, #000000 0%, transparent 20%);
    position: absolute;
    left: 0;
    pointer-events: none;
    top: 0;
}.title_page .learn_team {
    animation: cube-carousel 20s ease-in-out infinite;
    display: flex;
    perspective: 1000px;
    height: 100%;
    transform-style: preserve-3d;
}.title_page .tech_study {
    transform: rotateY(0deg);
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    flex: 0 0 100%;
    transform-origin: center center;
    position: relative;
    backface-visibility: hidden;
    height: 100%;
}.title_page .tech_study:nth-child(2) {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    transform: rotateY(90deg);
    left: 0;
}.title_page .tech_study:nth-child(3) {
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    top: 0;
    transform: rotateY(180deg);
}.title_page .tech_study:nth-child(4) {
    top: 0;
    position: absolute;
    left: 0;
    transform: rotateY(270deg);
    width: 100%;
    height: 100%;
}.title_page .tech_study::before {
    opacity: 0.8;
    z-index: 1;
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(to bottom, transparent 70%, #000000 100%);
}.title_page .tech_study img {
    filter: saturate(0.8) brightness(0.9);
    object-fit: cover;
    width: 100%;
    height: 100%;
}.title_page .caption_box {
    max-width: 1000px;
    margin-bottom: 5rem;
    z-index: 4;
    position: relative;
    width: 100%;
    padding: 2rem 3rem;
    text-align: center;
}.title_page .caption_box::before {
    content: "";
    position: absolute;
    backdrop-filter: blur(10px);
    z-index: -1;
    border-top: 1px solid rgb(196,171,177);
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}.title_page .caption_box h1 {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    font-size: 45px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}.title_page .caption_box h1::after {
    content: "";
    transform: translateX(-50%);
    position: absolute;
    background-color: rgb(196,171,177);
    bottom: -10px;
    height: 1px;
    left: 50%;
    width: 60%;
}.title_page .caption_box p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    margin: 1.5rem auto;
    max-width: 800px;
    font-size: 16px;
}.title_page .caption_box .connect_grid {
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: 1px solid rgb(196,171,177);
    text-decoration: none;
    overflow: hidden;
    position: relative;
    display: inline-block;
    font-size: 18px;
    transition: all 0.4s ease;
    margin-top: 1rem;
    font-weight: 600;
    background-color: rgb(196,171,177);
    z-index: 1;
}.title_page .caption_box .connect_grid::before {
    top: 0;
    position: absolute;
    content: "";
    transition: transform 0.5s ease-out;
    background-color: rgb(173,130,142);
    z-index: -1;
    bottom: 0;
    transform: scaleX(0);
    right: 0;
    left: 0;
    transform-origin: 0 50%;
}.title_page .caption_box .connect_grid:hover {
    border-color: rgb(173,130,142);
}.title_page .caption_box .connect_grid:hover::before {
    transform: scaleX(1);
}@keyframes cube-carousel {
    0%, 20% {
        transform: rotateY(0deg);
    }
    25%, 45% {
        transform: rotateY(-90deg);
    }
    50%, 70% {
        transform: rotateY(-180deg);
    }
    75%, 95% {
        transform: rotateY(-270deg);
    }
    100% {
        transform: rotateY(-360deg);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.title_page .caption_box h1 {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
}.title_page .caption_box p {
    animation-delay: 0.5s;
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}.title_page .caption_box .connect_grid {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

@media (max-width: 992px) {.title_page .caption_box {
    padding: 2rem;
    margin-bottom: 4rem;
}.title_page .caption_box h1 {
    font-size: calc(45px * 0.85);
}.title_page .caption_box p {
    font-size: calc(16px * 0.95);
}
}

@media (max-width: 768px) {.title_page .caption_box {
    padding: 1.5rem;
    margin-bottom: 3rem;
}.title_page .caption_box h1 {
    font-size: calc(45px * 0.7);
}.title_page .caption_box h1::after {
    bottom: -8px;
}.title_page .caption_box p {
    line-height: 1.5;
    font-size: calc(16px * 0.9);
    margin: 1.2rem auto;
}.title_page .caption_box .connect_grid {
    padding: 0.8rem 2rem;
}
    
    @keyframes cube-carousel {
        0%, 20% {
            transform: rotateY(0deg);
        }
        25%, 45% {
            transform: rotateY(-90deg);
        }
        50%, 70% {
            transform: rotateY(-180deg);
        }
        75%, 95% {
            transform: rotateY(-270deg);
        }
        100% {
            transform: rotateY(-360deg);
        }
    }
}

@media (max-width: 576px) {.title_page {
    height: 90vh;
}.title_page .caption_box {
    margin-bottom: 2rem;
    padding: 1.2rem;
}.title_page .caption_box h1 {
    font-size: calc(45px * 0.6);
}.title_page .caption_box h1::after {
    bottom: -6px;
}.title_page .caption_box p {
    margin: 1rem auto;
    font-size: calc(16px * 0.85);
    line-height: 1.4;
}.title_page .caption_box .connect_grid {
    margin-top: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-size: calc(18px * 0.9);
}}.cookieNotificationBox {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    padding: 20px 0;
    background: rgb(232,225,227);
    bottom: 0;
    z-index: 90;
    border-top: 3px solid rgb(196,171,177);
    width: 100%;
}.data_guard {
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    display: flex;
    max-width: 1200px;
    margin: auto;
    flex-wrap: nowrap;
}#cookieMessagePanel {
    display: none;
}#cookieMessagePanel:checked ~ .cookieNotificationBox {
    opacity: 0;
    visibility: hidden;
}.cookieNotificationBox h5 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: rgb(196,171,177);
}.cookieNotificationBox p {
    max-width: 500px;
    color: #000000;
    font-size: 14px;
}.web_tracking {
    flex-shrink: 0;
    margin-right: 20px;
}.web_tracking svg, .web_tracking svg path {
    width: 80px;
    height: 80px;
    fill: rgb(196,171,177);
}.consent_edu {
    background: rgb(196,171,177);
    transition: border 0.2s;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    min-width: 140px;
    border-radius: 10px;
    margin-left: 10px;
    font-size: 14px;
    flex-shrink: 0;
    border: 2px solid transparent;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 24px;
}.cookie_button.privacy_opt {
    background: rgb(196,171,177);
}.cookie_button.track_ack {
    background: rgb(173,130,142);
}.consent_edu:hover {
    border: 2px solid #ffffff;
}.cookieNotificationBox p a {
    color: rgb(196,171,177);
    font-weight: 700;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {.data_guard {
    padding: 0 10px;
}
}
@media only screen and (max-width: 800px) {.web_tracking {
    display: none;
}.data_guard {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}.cookieNotificationBox h5, .cookieNotificationBox p {
    text-align: center;
}.track_bar {
    margin-bottom: 20px;
}.consent_edu {
    max-width: 300px;
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
}}
.warp-container .cookieNotificationBox {
    background: rgb(173,130,142);
    padding: 30px 0;
    border: none;
}.warp-container .consent_edu {
    background: rgb(196,171,177);
    margin-left: 0;
    font-weight: 600;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    font-size: 14px;
}.warp-container .track_bar h5, .warp-container .track_bar p {
    color: #ffffff;
}header {
    padding: 0;
    background: rgb(173,130,142);
    z-index: 100;
    overflow: visible;
    position: relative;
    margin-top: 0;
}header::before {
    top: 0;
    width: 100%;
    z-index: 0;
    height: 100%;
    background-size: 20px 20px;
    background-image: linear-gradient(0deg, 
        rgba(255, 255, 255, 0.02) 1px, 
        transparent 1px),
    linear-gradient(90deg, 
        rgba(255, 255, 255, 0.02) 1px, 
        transparent 1px);
    left: 0;
    position: absolute;
    content: '';
}header::after {
    z-index: 0;
    top: 0;
    content: '';
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    background: 
        linear-gradient(to right, transparent 0%, rgb(173,130,142,0.5) 50%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, rgb(173,130,142,0.5) 50%, transparent 100%);
}header .top_bar {
    justify-content: space-between;
    z-index: 5;
    padding: 1.3rem 2.5rem;
    position: relative;
    align-items: center;
    display: flex;
}header .nav_prime {
    z-index: 2;
    flex: 0 0 auto;
    padding: 0.5rem 0.7rem;
    position: relative;
    border-left: 3px solid rgb(196,171,177);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-right: 2rem;
}header .nav_prime::before {
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    content: '';
    top: 0;
    transform: scaleX(0);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    left: 0;
    transition: all 0.4s ease;
    height: 100%;
}header .nav_prime:hover {
    box-shadow: 5px 0 15px -5px rgb(196,171,177);
    transform: translateX(5px);
}header .nav_prime:hover::before {
    opacity: 1;
    transform: scaleX(1);
}header .site_top {
    position: relative;
    transition: all 0.3s ease;
    display: block;
}header .site_top::after {
    width: 10px;
    transition: all 0.3s ease;
    background: rgb(196,171,177);
    right: -5px;
    height: 10px;
    opacity: 0;
    content: '';
    bottom: -5px;
    position: absolute;
}header .site_top:hover::after {
    opacity: 1;
}header .site_top img {
    max-height: 40px;
    filter: brightness(1.1);
}header .head_edu {
    display: flex;
    padding: 0;
    z-index: 2;
    margin: 0;
    position: relative;
    list-style: none;
}header .head_edu::before {
    content: '';
    height: 1px;
    right: -20px;
    top: 50%;
    position: absolute;
    background: rgb(196,171,177);
    width: 40px;
    transform: translateY(-50%);
}header .top_lead {
    margin: 0 1px;
    position: relative;
}header .top_lead a {
    position: relative;
    border-left: 1px solid transparent;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    padding: 0 1.2rem;
    letter-spacing: 1px;
    border-right: 1px solid transparent;
    font-size: 14px;
    justify-content: center;
    height: 45px;
    display: flex;
    align-items: center;
    font-weight: 600;
}header .top_lead a::before {
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: absolute;
    z-index: -1;
    background: rgb(196,171,177);
}header .top_lead a:hover {
    border-right-color: rgba(255, 255, 255, 0.2);
    border-left-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}header .top_lead a:hover::before {
    transform: translateX(0);
}header .top_lead a::after {
    position: absolute;
    background: rgb(196,171,177);
    width: 100%;
    left: 0;
    top: 0;
    transform-origin: right;
    transition: transform 0.3s ease;
    height: 2px;
    content: '';
    transform: scaleX(0);
}header .top_lead a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}header .top_lead::before {
    transform: translateY(-50%) scale(0);
    background: rgb(196,171,177);
    position: absolute;
    transition: transform 0.3s ease;
    content: '';
    width: 5px;
    top: 50%;
    left: -10px;
    height: 5px;
}header .top_lead:hover::before {
    transform: translateY(-50%) scale(1);
}header .top_bar::before {
    content: '';
    position: absolute;
    width: 30px;
    background: rgb(196,171,177);
    top: 20px;
    height: 1px;
    left: 20px;
}header .top_bar::after {
    content: '';
    top: 20px;
    background: rgb(196,171,177);
    position: absolute;
    left: 20px;
    height: 30px;
    width: 1px;
}.top_guide {
    background: rgb(232,225,227);
    position: relative;
    padding-top: 2rem;
    z-index: 1;
}@keyframes typingCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

header .top_lead:last-child::after {
    top: 50%;
    font-weight: 700;
    position: absolute;
    right: -10px;
    animation: typingCursor 1s infinite;
    content: '|';
    transform: translateY(-50%);
    color: rgb(196,171,177);
}

@media (min-width: 1400px) {header .top_bar {
    margin: 0 auto;
    max-width: 1320px;
}header .top_lead {
    margin: 0 2px;
}header .top_lead a {
    padding: 0 1.5rem;
}
}

@media (max-width: 991px) {header .top_bar {
    padding: 1rem 2rem;
    flex-wrap: wrap;
}header .nav_prime {
    margin-right: 0;
    margin-bottom: 0;
}header .head_edu {
    justify-content: flex-end;
    margin-top: 1rem;
    flex-basis: 100%;
}header .head_edu::before {
    display: none;
}header .top_lead a {
    height: 40px;
    padding: 0 1rem;
    font-size: calc(14px - 1px);
}header .top_lead::before {
    display: none;
}header .top_bar::before,
    header .top_bar::after {
    display: none;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .top_bar {
    padding: 0.8rem 1.5rem;
}header .nav_prime {
    padding: 0.4rem 0.6rem;
    max-width: 140px;
}header .site_top img {
    max-height: 35px;
}header .head_edu {
    scrollbar-width: thin;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
}header .head_edu::-webkit-scrollbar {
    height: 3px;
}header .head_edu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(196,171,177);
}header .top_lead {
    flex: 0 0 auto;
    margin: 0;
}header .top_lead a {
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 0 0.8rem;
    height: 35px;
    font-size: calc(14px - 2px);
}header .top_lead:last-child::after {
    display: none;
}
}

@media (max-width: 479px) {header .top_bar {
    padding: 0.7rem 1.2rem;
}header .nav_prime {
    max-width: 120px;
    padding: 0.3rem 0.5rem;
}header .top_lead a {
    padding: 0 0.6rem;
    height: 32px;
    font-size: calc(14px - 3px);
}}.service_info {
    overflow: hidden;
    padding: 60px 0;
    margin: 80px 0;
    background: linear-gradient(135deg, rgb(232,225,227) 0%, #ffffff 100%);
    position: relative;
}.service_info::before {
    content: "";
    top: 0;
    transform: translateY(-30%) rotate(-5deg) scale(1.5);
    width: 100%;
    opacity: 0.15;
    z-index: 0;
    background: linear-gradient(45deg, rgb(196,171,177,0.5) 0%, transparent 40%);
    height: 100%;
    position: absolute;
    left: 0;
}.service_info::after {
    background: rgb(196,171,177);
    transform: translate(30%, 30%);
    opacity: 0.1;
    border-radius: 50%;
    height: 200px;
    filter: blur(40px);
    animation: pulse 8s infinite alternate ease-in-out;
    right: -30px;
    bottom: -30px;
    width: 200px;
    z-index: 0;
    content: "";
    position: absolute;
}.service_info h1 {
    font-size: 48px;
    transform: translateX(10px);
    z-index: 2;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    color: #000000;
    text-align: left;
}.service_info h1::after {
    bottom: -10px;
    height: 3px;
    transform-origin: left;
    left: 0;
    width: 80px;
    content: "";
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(90deg, rgb(196,171,177) 0%, rgb(173,130,142) 100%);
    position: absolute;
    transform: scaleX(1);
}.service_info .container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}.service_info .request_formoWQ {
    padding: 40px;
    position: relative;
    transform: translateY(0);
    grid-template-columns: 1fr;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03);
    display: grid;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #ffffff;
}.service_info .request_formoWQ:hover {
    transform: translateY(-5px);
}.service_info .request_formoWQ > div {
    position: relative;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-left: 2px solid rgb(173,130,142,0.5);
}.service_info .request_formoWQ > div:hover {
    border-left-color: rgb(196,171,177);
    background: linear-gradient(90deg, rgba(var(--primary-color-rgb), 0.03) 0%, transparent 100%);
}.service_info .request_formoWQ > div:first-child {
    font-size: calc(16px * 1.05);
    line-height: 1.6;
    padding-bottom: 25px;
    color: #000000;
}.service_info h6 {
    gap: 8px;
    color: #000000;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: capitalize;
    display: flex;
    font-weight: 600;
    align-items: center;
}.service_info h6 svg {
    height: 20px;
    width: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}.service_info span {
    font-size: 16px;
    display: block;
    transform: translateY(0);
    margin-top: 5px;
    margin-left: 28px;
    color: #000000;
    transition: transform 0.3s ease;
}.service_info .ask_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}.service_info .ask_form > div {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}.service_info .ask_form > div:hover {
    transform: translateX(5px);
}.service_info .query_form {
    color: #000000;
    position: relative;
    gap: 8px;
    text-transform: capitalize;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}.service_info .query_form:hover {
    color: rgb(196,171,177);
}.service_info .query_form:after {
    width: 0;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    height: 1px;
    content: "";
    background: rgb(196,171,177);
    bottom: 5px;
    position: absolute;
}.service_info .query_form:hover:after {
    width: 100%;
}.service_info svg {
    fill: none;
    transition: transform 0.4s ease, filter 0.4s ease;
}.service_info .query_form:hover svg,
.service_info h6:hover svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}.service_info svg path {
    fill: rgb(196,171,177);
    transition: fill 0.3s ease;
}.service_info .query_form:hover svg path {
    fill: rgb(173,130,142);
}

@keyframes pulse {
    0% {
        transform: translate(30%, 30%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(30%, 30%) scale(1.3);
        opacity: 0.15;
    }
    100% {
        transform: translate(30%, 30%) scale(1);
        opacity: 0.1;
    }
}

@media (min-width: 768px) {.service_info {
    margin: 100px 0;
    padding: 80px 0;
}.service_info h1 {
    margin-bottom: 60px;
    font-size: calc(48px * 1.1);
}.service_info .request_formoWQ {
    gap: 30px;
    padding: 60px;
    grid-template-columns: 1.5fr 1fr 1fr;
}.service_info .request_formoWQ > div {
    padding: 20px 30px;
}.service_info .request_formoWQ > div:first-child {
    grid-column: 1;
    border-left: 3px solid rgb(173,130,142,0.5);
}.service_info .ask_form {
    gap: 20px;
}.service_info span {
    margin-left: 34px;
}
}

@media (min-width: 1024px) {.service_info::before {
    transform: translateY(-20%) rotate(-8deg) scale(1.8);
}.service_info h1 {
    transform: translateX(20px);
}.service_info h1::after {
    width: 120px;
}.service_info .request_formoWQ {
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
}.service_info .request_formoWQ:hover {
    transform: perspective(1000px) rotateX(0) rotateY(0) translateY(-5px);
}
}

@media (max-width: 767px) {.service_info {
    padding: 40px 0;
    margin: 40px 0;
}.service_info h1 {
    margin-bottom: 30px;
    font-size: calc(48px * 0.9);
}.service_info .request_formoWQ {
    padding: 30px 20px;
}.service_info .request_formoWQ > div {
    padding: 12px 15px;
}.service_info span {
    font-size: calc(16px * 0.95);
    margin-left: 25px;
}.service_info .query_form {
    font-size: calc(16px * 0.95);
}}.our_background {
    overflow: hidden;
    background: rgb(232,225,227);
    position: relative;
    padding: 140px 0 120px;
}.our_background::before {
    top: 0;
    animation: gradientFlow 25s infinite alternate;
    z-index: 1;
    position: absolute;
    width: 100%;
    content: "";
    background: linear-gradient(125deg, rgb(196,171,177,0.5) 0%, transparent 40%, rgb(173,130,142,0.5) 80%, rgb(196,171,177,0.5) 100%);
    opacity: 0.15;
    left: 0;
    height: 100%;
}@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.our_background::after {
    filter: blur(50px);
    animation: pulseBackground 15s infinite alternate;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    background: radial-gradient(ellipse at 30% 20%, rgb(196,171,177,0.5) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgb(173,130,142,0.5) 0%, transparent 60%);
    content: "";
    opacity: 0.15;
    width: 100%;
    top: 0;
}@keyframes pulseBackground {
    0% {
        opacity: 0.1;
        filter: blur(50px);
    }
    50% {
        opacity: 0.15;
        filter: blur(70px);
    }
    100% {
        opacity: 0.1;
        filter: blur(50px);
    }
}

.our_background .container {
    position: relative;
    z-index: 2;
}.our_background .master_study {
    position: relative;
    max-width: 100vw;
}.our_background h3 {
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
    font-size: 33px;
    left: 0;
    padding-left: 30px;
    position: absolute;
    margin: 0;
    border-left: 4px solid rgb(196,171,177);
    top: 0;
    transform: translateY(-100%) translateY(-30px);
}.our_background .learn_way {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1.6fr 1.4fr;
    width: 115%;
    margin-left: -15%;
    position: relative;
    gap: 20px;
    padding-top: 20px;
}.our_background .learn_way span {
    right: 10%;
    top: -15px;
    color: #ffffff;
    font-weight: 600;
    background: rgb(196,171,177);
    border-radius: 0 10px 10px 0;
    z-index: 10;
    position: absolute;
    font-size: 23px;
    padding: 10px 30px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transform: skewX(-15deg);
}.our_background .learn_way span::before {
    background: rgb(196,171,177);
    position: absolute;
    top: 0;
    width: 15px;
    content: "";
    z-index: -1;
    left: -15px;
    transform: skewX(15deg);
    height: 100%;
}.our_background .learn_way p {
    border-radius: 23px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.05);
    font-size: 16px;
    line-height: 1.8;
    grid-row: 1 / 2;
    transform: translateX(-30px);
    background: rgba(255, 255, 255, 0.8);
    grid-column: 2 / 3;
    z-index: 5;
    width: 110%;
    align-self: center;
    color: #000000;
}.our_background .learn_way .pic_grid {
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: 0 23px 23px 0;
    grid-row: 1 / 2;
    height: 500px;
    grid-column: 1 / 2;
}.our_background .learn_way .pic_grid::before {
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
    z-index: 2;
    content: "";
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
}.our_background .class_sessions {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr;
    position: relative;
    width: 115%;
    gap: 20px;
    margin-left: auto;
    margin-right: -15%;
}.our_background .class_sessions::before {
    top: -50px;
    background: linear-gradient(to right, rgb(196,171,177,0.5), rgb(173,130,142,0.5), transparent);
    content: "";
    position: absolute;
    left: 30%;
    height: 1px;
    width: 40%;
}.our_background .class_sessions p {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    align-self: center;
    grid-column: 1 / 2;
    background: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    transform: translateX(30px);
    width: 110%;
    z-index: 5;
    border-radius: 23px;
    padding: 40px;
    grid-row: 1 / 2;
    color: #000000;
    font-size: 16px;
}.our_background .class_sessions .quick_skill {
    position: relative;
    grid-column: 2 / 3;
    overflow: hidden;
    z-index: 3;
    border-radius: 23px 0 0 23px;
    height: 500px;
    grid-row: 1 / 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}.our_background .class_sessions .quick_skill::before {
    content: "";
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    height: 100%;
}.our_background .learn_way::after,
.our_background .class_sessions::after {
    opacity: 0.15;
    filter: blur(80px);
    position: absolute;
    height: 200px;
    animation: pulseOpacity 8s infinite alternate;
    content: "";
    width: 200px;
    z-index: 1;
    border-radius: 50%;
}@keyframes pulseOpacity {
    0% {
        opacity: 0.15;
        transform: scale(1);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

.our_background .learn_way::after {
    background: rgb(196,171,177);
    right: 10%;
    bottom: -100px;
}.our_background .class_sessions::after {
    top: -100px;
    background: rgb(173,130,142);
    left: 10%;
}.our_background .learn_way::before,
.our_background .class_sessions::before {
    background: linear-gradient(to right, transparent, rgb(196,171,177,0.5) 50%, transparent);
    position: absolute;
    width: 300px;
    animation: widthPulse 6s infinite alternate;
    height: 1px;
    content: "";
}@keyframes widthPulse {
    0% {
        width: 200px;
    }
    100% {
        width: 300px;
    }
}

.our_background .learn_way::before {
    top: -20px;
    left: 20%;
}.our_background .class_sessions::before {
    right: 20%;
    bottom: -20px;
}.our_background .master_study::before,
.our_background .master_study::after {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(196,171,177,0.5) 50%, transparent);
    animation: horizontalLine 15s infinite alternate;
    width: 80%;
    content: "";
}@keyframes horizontalLine {
    0% {
        opacity: 0.1;
        transform: translateX(-10%);
    }
    100% {
        opacity: 0.3;
        transform: translateX(10%);
    }
}

.our_background .master_study::before {
    top: 15%;
    left: 10%;
}.our_background .master_study::after {
    bottom: 15%;
    right: 10%;
}

@media screen and (max-width: 1199px) {.our_background {
    padding: 120px 0 100px;
}.our_background h3 {
    font-size: calc(33px - 0.2rem);
}.our_background .learn_way,
    .our_background .class_sessions {
    width: 110%;
}.our_background .learn_way {
    margin-left: -10%;
}.our_background .class_sessions {
    margin-right: -10%;
}.our_background .learn_way .pic_grid,
    .our_background .class_sessions .quick_skill {
    height: 450px;
}.our_background .learn_way p,
    .our_background .class_sessions p {
    padding: 30px;
}
}

@media screen and (max-width: 991px) {.our_background .learn_way p,
    .our_background .class_sessions p {
    width: 100%;
}.our_background {
    padding: 100px 0 80px;
}.our_background h3 {
    margin-bottom: 50px;
    position: relative;
    transform: none;
    font-size: calc(33px - 0.4rem);
}.our_background .learn_way,
    .our_background .class_sessions {
    width: 100%;
    margin-right: 0;
    grid-template-columns: 1fr;
    margin-left: 0;
    gap: 30px;
}.our_background .learn_way {
    margin-bottom: 80px;
}.our_background .learn_way span {
    top: -15px;
    font-size: calc(23px - 0.2rem);
    right: auto;
    left: 0;
}.our_background .learn_way .pic_grid {
    height: 400px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border-radius: 23px;
}.our_background .learn_way p {
    grid-column: 1 / 2;
    transform: translateX(0);
    grid-row: 2 / 3;
}.our_background .class_sessions .quick_skill {
    border-radius: 23px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 400px;
}.our_background .class_sessions p {
    transform: translateX(0);
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}.our_background .learn_way::after,
    .our_background .class_sessions::after {
    height: 150px;
    width: 150px;
}
}

@media screen and (max-width: 767px) {.our_background {
    padding: 80px 0 60px;
}.our_background h3 {
    font-size: calc(33px - 0.6rem);
    margin-bottom: 40px;
    padding-left: 20px;
}.our_background .learn_way {
    margin-bottom: 60px;
}.our_background .learn_way span {
    font-size: calc(23px - 0.3rem);
    padding: 8px 20px;
}.our_background .learn_way .pic_grid,
    .our_background .class_sessions .quick_skill {
    height: 350px;
}.our_background .learn_way p,
    .our_background .class_sessions p {
    font-size: calc(16px - 0.1rem);
    padding: 25px;
}.our_background::after {
    filter: blur(30px);
}.our_background .learn_way::after,
    .our_background .class_sessions::after {
    width: 100px;
    filter: blur(50px);
    height: 100px;
}
}

@media screen and (max-width: 575px) {.our_background {
    padding: 60px 0 40px;
}.our_background h3 {
    border-left-width: 3px;
    margin-bottom: 30px;
    font-size: calc(33px - 0.8rem);
    padding-left: 15px;
}.our_background .learn_way {
    margin-bottom: 50px;
    gap: 20px;
}.our_background .learn_way span {
    font-size: calc(23px - 0.4rem);
    padding: 6px 15px;
}.our_background .learn_way .pic_grid,
    .our_background .class_sessions .quick_skill {
    height: 280px;
}.our_background .learn_way p,
    .our_background .class_sessions p {
    padding: 20px;
    font-size: calc(16px - 0.2rem);
}.our_background::after {
    filter: blur(20px);
}.our_background .master_study::before,
    .our_background .master_study::after {
    width: 70%;
}
}

@media screen and (min-width: 1400px) {.our_background .learn_way {
    margin-left: -20%;
    width: 120%;
}.our_background .class_sessions {
    margin-right: -20%;
    width: 120%;
}.our_background .learn_way .pic_grid,
    .our_background .class_sessions .quick_skill {
    height: 550px;
}}.contact_form_section {
    position: relative;
    background: rgb(232,225,227);
    overflow: hidden;
    padding: 100px 0;
}.contact_form_section::before {
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: repeating-linear-gradient(
        45deg,
        rgb(196,171,177,0.5) 0,
        rgb(196,171,177,0.5) 1px,
        transparent 1px,
        transparent 30px
    );
    z-index: 1;
    opacity: 0.07;
    position: absolute;
    top: 0;
}.contact_form_section::after {
    height: 100%;
    position: absolute;
    top: 0;
    background-size: 30px 30px;
    left: 0;
    content: "";
    z-index: 1;
    opacity: 0.07;
    width: 100%;
    background-image: 
        linear-gradient(rgb(173,130,142,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgb(173,130,142,0.5) 1px, transparent 1px);
}.contact_form_section .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    position: relative;
    padding: 0 30px;
}.contact_form_section h2 {
    text-align: center;
    left: 50%;
    font-size: 32px;
    position: relative;
    font-weight: 700;
    color: #000000;
    display: inline-block;
    margin-bottom: 20px;
    transform: translateX(-50%);
    padding-bottom: 20px;
}.contact_form_section h2::before {
    width: 80px;
    height: 4px;
    bottom: 0;
    content: "";
    background: rgb(196,171,177);
    left: calc(50% - 40px);
    position: absolute;
}.contact_form_section h2::after {
    width: 30px;
    content: "";
    left: calc(50% - 15px);
    height: 4px;
    background: rgb(173,130,142);
    bottom: 0;
    position: absolute;
}.contact_form_section .request_form6eT {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    position: relative;
}.contact_form_section .pic_grid {
    flex: 0 0 45%;
    min-height: 550px;
    position: relative;
}.contact_form_section .pic_grid::before {
    content: "";
    background: linear-gradient(
        135deg, 
        rgba(rgb(196,171,177), 0.4), 
        rgba(rgb(173,130,142), 0.4)
    );
    inset: 0;
    z-index: 1;
    position: absolute;
}.contact_form_section .query_support {
    position: relative;
    flex-direction: column;
    justify-content: center;
    display: flex;
    flex: 0 0 55%;
    padding: 60px;
}.contact_form_section .query_support::before {
    width: 150px;
    height: 150px;
    border: 30px solid rgb(196,171,177,0.5);
    z-index: 0;
    right: -75px;
    top: -75px;
    content: "";
    position: absolute;
    border-radius: 50%;
}.contact_form_section .query_support::after {
    bottom: -50px;
    width: 100px;
    border-radius: 0;
    content: "";
    left: -50px;
    background: rgb(173,130,142,0.5);
    transform: rotate(45deg);
    position: absolute;
    height: 100px;
    z-index: 0;
}.contact_form_section form {
    z-index: 2;
    position: relative;
}.contact_form_section form h3 {
    margin-bottom: 40px;
    color: #000000;
    font-size: 20px;
    position: relative;
    font-weight: 600;
    display: inline-block;
}.contact_form_section form h3::after {
    content: "";
    left: 0;
    background: rgb(196,171,177);
    height: 2px;
    bottom: -15px;
    width: 50%;
    position: absolute;
}.contact_form_section form input[type="text"] {
    padding: 20px 25px;
    margin-bottom: 25px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    border-bottom: 2px solid rgb(232,225,227);
    font-size: 16px;
    background: transparent;
    color: #000000;
}.contact_form_section form input[type="text"]:focus {
    border-bottom-color: rgb(196,171,177);
    outline: none;
}.contact_form_section form input[type="text"]::placeholder {
    transition: all 0.3s ease;
    color: rgba(#000000, 0.5);
}.contact_form_section form input[type="text"]:focus::placeholder {
    transform: translateY(-10px);
    opacity: 0;
}.contact_form_section .feedback_info {
    margin-bottom: 40px;
    position: relative;
}.contact_form_section .feedback_info input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact_form_section .feedback_info label {
    color: #000000;
    font-size: 12px;
    position: relative;
    line-height: 1.5;
    cursor: pointer;
    padding-left: 35px;
}.contact_form_section .feedback_info label::before {
    background: transparent;
    top: 0;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    height: 22px;
    border: 2px solid rgb(232,225,227);
    width: 22px;
    content: "";
}.contact_form_section .feedback_info input[type="checkbox"]:checked + label::before {
    background: rgb(196,171,177);
    border-color: rgb(196,171,177);
}.contact_form_section .feedback_info input[type="checkbox"]:checked + label::after {
    height: 12px;
    left: 8px;
    transform: rotate(45deg);
    width: 6px;
    position: absolute;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    content: "";
    top: 4px;
}.contact_form_section .feedback_info label a {
    color: rgb(196,171,177);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}.contact_form_section .feedback_info label a::after {
    height: 1px;
    left: 0;
    transition: transform 0.3s ease;
    bottom: -1px;
    width: 100%;
    transform-origin: left;
    background: rgb(196,171,177);
    transform: scaleX(1);
    position: absolute;
    content: "";
}.contact_form_section .feedback_info label a:hover {
    color: rgb(173,130,142);
}.contact_form_section .feedback_info label a:hover::after {
    transform: scaleX(0);
    background: rgb(173,130,142);
}.contact_form_section .connect_grid {
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    padding: 18px 40px;
    font-weight: 600;
    background: rgb(196,171,177);
    font-size: 20px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 70%,
        90% 100%,
        0 100%
    );
    border: none;
    width: auto;
    z-index: 1;
}.contact_form_section .connect_grid::before {
    top: 0;
    left: -10px;
    transform: skewX(-25deg);
    position: absolute;
    height: 100%;
    background: rgb(173,130,142);
    transition: width 0.5s ease;
    content: "";
    z-index: -1;
    width: 0;
}.contact_form_section .connect_grid:hover::before {
    width: 150%;
}.contact_form_section svg {
    fill: none;
    transition: all 0.3s ease;
    stroke: rgb(196,171,177);
    stroke-width: 2;
    width: 24px;
    height: 24px;
}.contact_form_section svg path {
    fill: none;
    transition: all 0.3s ease;
    stroke: rgb(196,171,177);
}.contact_form_section svg:hover,
.contact_form_section svg:hover path {
    stroke: rgb(173,130,142);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1024px) {.contact_form_section {
    padding: 80px 0;
}.contact_form_section .pic_grid {
    min-height: 500px;
}.contact_form_section .query_support {
    padding: 50px 40px;
}
}

@media (max-width: 768px) {.contact_form_section {
    padding: 60px 0;
}.contact_form_section .request_form6eT {
    flex-direction: column;
}.contact_form_section .pic_grid {
    min-height: 300px;
    width: 100%;
}.contact_form_section .query_support {
    padding: 40px 30px;
    width: 100%;
}.contact_form_section form h3 {
    margin-bottom: 30px;
}.contact_form_section form input[type="text"] {
    padding: 15px 20px;
    margin-bottom: 20px;
}.contact_form_section .feedback_info {
    margin-bottom: 30px;
}.contact_form_section .connect_grid {
    width: 100%;
    padding: 15px 30px;
}
}

@media (max-width: 480px) {.contact_form_section {
    padding: 50px 0;
}.contact_form_section h2 {
    font-size: calc(32px * 0.85);
}.contact_form_section .request_form6eT {
    margin-top: 30px;
}.contact_form_section .pic_grid {
    min-height: 200px;
}.contact_form_section .query_support {
    padding: 30px 20px;
}.contact_form_section form h3 {
    margin-bottom: 25px;
    font-size: calc(20px * 0.9);
}.contact_form_section form input[type="text"] {
    margin-bottom: 15px;
    padding: 12px 15px;
}.contact_form_section .feedback_info {
    margin-bottom: 25px;
}.contact_form_section .feedback_info label {
    font-size: calc(12px * 0.9);
}.contact_form_section .connect_grid {
    padding: 12px 25px;
}}.user_feedback {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(232,225,227) 0%, rgb(173,130,142,0.5) 100%);
    padding: 80px 0;
}.user_feedback::before {
    background-size: 100px 100px;
    width: 100%;
    opacity: 0.05;
    position: absolute;
    pointer-events: none;
    height: 100%;
    left: 0;
    content: "";
    background-image: 
        linear-gradient(45deg, transparent 40%, rgb(196,171,177,0.5) 40%, rgb(196,171,177,0.5) 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgb(196,171,177,0.5) 40%, rgb(196,171,177,0.5) 60%, transparent 60%);
    top: 0;
    z-index: 1;
}.user_feedback h2 {
    transform-origin: center bottom;
    position: relative;
    font-weight: 700;
    text-shadow: 0 2px 3px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 60px;
    font-size: 37px;
    transform: perspective(1000px) rotateX(5deg);
    color: #000000;
}.user_feedback h2::after {
    content: "";
    height: 4px;
    position: absolute;
    left: 50%;
    width: 80px;
    transform: translateX(-50%);
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(196,171,177), rgb(173,130,142));
    bottom: -15px;
}.user_feedback .container.master_study {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.user_feedback .testimonial_corner {
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}.user_feedback .alumni_ratings {
    border-radius: 17px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backface-visibility: hidden;
    transform-origin: center center;
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
    padding: 30px 25px 25px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}.user_feedback .alumni_ratings::before {
    font-family: Arial, sans-serif;
    content: "";
    position: absolute;
    font-size: 150px;
    color: rgb(196,171,177,0.5);
    line-height: 1;
    z-index: 0;
    top: -30px;
    right: 20px;
    opacity: 0.2;
}.user_feedback .alumni_ratings::after {
    transition: transform 0.4s ease-out;
    transform: scaleX(0.8);
    height: 5px;
    width: 100%;
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(196,171,177), rgb(173,130,142));
    transform-origin: center;
    position: absolute;
    bottom: 0;
}.user_feedback .alumni_ratings:hover {
    box-shadow: 0 25px 50px -15px rgba(0,0,0,0.15), 
                0 5px 15px rgba(rgb(196,171,177,0.5), 0.2);
    transform: perspective(1000px) translateY(-10px) rotateY(2deg);
}.user_feedback .alumni_ratings:hover::after {
    transform: scaleX(1);
}.user_feedback .alumni_ratings h3 {
    z-index: 2;
    position: relative;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    font-size: calc(20px * 0.9);
}.user_feedback .alumni_ratings h3::before {
    bottom: -5px;
    transition: width 0.3s ease;
    content: "";
    transform-origin: left;
    height: 2px;
    left: 0;
    width: 25px;
    background-color: rgb(196,171,177);
    position: absolute;
}.user_feedback .alumni_ratings:hover h3::before {
    width: 40px;
}.user_feedback .alumni_ratings .description {
    margin-bottom: 20px;
    position: relative;
    color: #000000;
    line-height: 1.65;
    z-index: 2;
    font-size: 13px;
}.user_feedback .alumni_ratings div {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    position: relative;
    z-index: 2;
    overflow: hidden;
}.user_feedback .alumni_ratings:hover div {
    transform: scale(1.05) translateZ(0);
}.user_feedback .alumni_ratings img {
    width: 100%;
    transition: transform 0.5s ease;
    object-fit: cover;
    height: 100%;
}.user_feedback .alumni_ratings:hover img {
    transform: scale(1.1);
}

@media (min-width: 576px) {.user_feedback .testimonial_corner {
    grid-template-columns: repeat(2, 1fr);
}.user_feedback h2 {
    margin-bottom: 70px;
}
}

@media (min-width: 768px) {.user_feedback {
    padding: 100px 0;
}.user_feedback .testimonial_corner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}.user_feedback .alumni_ratings {
    padding: 35px 30px 30px;
}
}

@media (min-width: 992px) {.user_feedback .testimonial_corner {
    gap: 35px;
    grid-template-columns: repeat(3, 1fr);
}.user_feedback h2 {
    font-size: calc(37px * 1.1);
}.user_feedback .alumni_ratings {
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), 
                    box-shadow 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}.user_feedback .alumni_ratings:nth-child(odd):hover {
    transform: perspective(1000px) translateY(-10px) rotateY(2deg);
}.user_feedback .alumni_ratings:nth-child(even):hover {
    transform: perspective(1000px) translateY(-10px) rotateY(-2deg);
}
}

@media (min-width: 1200px) {.user_feedback .testimonial_corner {
    grid-template-columns: repeat(4, 1fr);
}.user_feedback h2::after {
    width: 100px;
}.user_feedback .container.master_study {
    padding: 0;
}
}

@media (hover: none) {.user_feedback .alumni_ratings:hover {
    transform: translateY(0);
}.user_feedback .alumni_ratings::after {
    transform: scaleX(1);
}}.data_overview {
    padding: 0;
    overflow: hidden;
    background-color: #000000;
    position: relative;
    flex-direction: column;
    display: flex;
}.data_overview::after {
    pointer-events: none;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 12px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 12px);
    left: 0;
    z-index: 2;
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
}.data_overview::before {
    background: 
        linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%),
        radial-gradient(circle at 15% 50%, rgb(196,171,177,0.5) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgb(173,130,142,0.5) 0%, transparent 25%),
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 76%, transparent 77%, transparent);
    height: 100%;
    background-size: auto, auto, auto, 100px 100px, 50px 50px, 50px 50px;
    top: 0;
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    z-index: 1;
}.data_overview .container {
    max-width: 100%;
    position: relative;
    padding: 0;
    width: 100%;
    z-index: 2;
}.data_overview .statistics_advantage {
    background-color: rgb(196,171,177);
    z-index: 3;
    color: #ffffff;
    position: relative;
    background-size: 30px 30px;
    width: 100%;
    background-position: 0 0, 15px 0, 15px -15px, 0px 15px;
    padding: 60px 15% 60px 15%;
    margin-bottom: -50px;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(225deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}.data_overview .expert_upgrade {
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 34px;
}.data_overview .pro_upgrade {
    line-height: 1.7;
    max-width: 800px;
    font-size: 14px;
}.data_overview .key_pros {
    flex-wrap: wrap;
    z-index: 2;
    display: flex;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    padding: 100px 5% 50px;
    position: relative;
    background-position: center center;
    background-size: 20px 20px;
    background-color: rgb(232,225,227);
}.data_overview .growth_statistics {
    counter-increment: stat-counter;
    margin-bottom: 50px;
    padding: 0 15px;
    position: relative;
    width: 25%;
}.data_overview .growth_statistics::before {
    content: counter(stat-counter);
    font-weight: 700;
    color: rgb(196,171,177);
    top: -30px;
    z-index: -1;
    position: absolute;
    opacity: 0.1;
    left: 15px;
    font-size: 6rem;
}.data_overview .growth_statistics h4 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    color: #000000;
}.data_overview .growth_statistics span {
    display: block;
    font-size: 14px;
    color: #000000;
    padding-bottom: 20px;
    position: relative;
}.data_overview .growth_statistics span::after {
    width: 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    content: "";
    background-color: rgb(196,171,177);
}.data_overview .growth_statistics:hover span::after {
    transition: width 0.3s ease;
    width: 60px;
}.data_overview svg {
    z-index: 1;
    width: 120px;
    right: 20px;
    position: absolute;
    bottom: 20px;
    opacity: 0.1;
    height: 120px;
}.data_overview svg path {
    fill: #ffffff;
}

@media (max-width: 1200px) {.data_overview .statistics_advantage {
    padding: 50px 10% 60px 10%;
}.data_overview .growth_statistics {
    width: 33.333%;
}
}

@media (max-width: 992px) {.data_overview .statistics_advantage {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding: 50px 7% 70px 7%;
}.data_overview .key_pros {
    padding: 100px 5% 40px;
}.data_overview .growth_statistics {
    width: 50%;
}.data_overview .growth_statistics::before {
    top: -25px;
    font-size: 5rem;
}.data_overview .growth_statistics h4 {
    font-size: 2.2rem;
}
}

@media (max-width: 767px) {.data_overview .statistics_advantage {
    padding: 40px 5% 60px 5%;
}.data_overview .expert_upgrade {
    font-size: calc(34px * 0.9);
}.data_overview .key_pros {
    padding: 80px 5% 30px;
}.data_overview .growth_statistics {
    margin-bottom: 40px;
    width: 100%;
}.data_overview .growth_statistics::before {
    font-size: 4.5rem;
}.data_overview svg {
    height: 80px;
    width: 80px;
}
}

@media (max-width: 576px) {.data_overview .statistics_advantage {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding: 30px 5% 50px 5%;
    margin-bottom: -25px;
}.data_overview .expert_upgrade {
    margin-bottom: 15px;
    font-size: calc(34px * 0.8);
}.data_overview .pro_upgrade {
    font-size: calc(14px * 0.95);
}.data_overview .key_pros {
    padding: 60px 5% 20px;
}.data_overview .growth_statistics::before {
    font-size: 4rem;
    top: -20px;
}.data_overview .growth_statistics h4 {
    font-size: 2rem;
}.data_overview svg {
    right: 10px;
    width: 60px;
    height: 60px;
    bottom: 10px;
}}footer {
    position: relative;
    z-index: 1;
}footer::before {
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    top: 0;
    z-index: -1;
    bottom: 0;
    background: linear-gradient(135deg, rgb(196,171,177,0.5) 0%, rgb(173,130,142,0.5) 100%);
    opacity: 0.92;
}footer {
    background-position: center !important;
    background-size: cover !important;
}.study_bottom {
    padding: 5rem 0 2rem;
    position: relative;
    color: #ffffff;
}.study_bottom::before {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(196,171,177);
    width: 100%;
    content: "";
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}.study_bottom .container {
    display: flex;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
}.study_bottom .company_holder {
    flex: 0 0 40%;
    padding: 0 3rem 2rem 0;
    margin-bottom: 2rem;
    position: relative;
}.study_bottom .company_holder::after {
    content: "";
    width: 1px;
    position: absolute;
    height: 100%;
    right: 1.5rem;
    background: linear-gradient(to bottom, #ffffff, transparent);
    top: 0;
    opacity: 0.3;
}.study_bottom .company_holder h3 {
    padding-bottom: 1rem;
    letter-spacing: 1px;
    transform: skewX(-10deg);
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    font-weight: 700;
    position: relative;
    font-size: 31px;
    color: #ffffff;
}.study_bottom .company_holder h3::after {
    position: absolute;
    left: 0;
    box-shadow: 0 0 10px rgb(196,171,177);
    bottom: 0;
    width: 80px;
    background: rgb(196,171,177);
    content: "";
    height: 3px;
}.study_bottom .blog_ref {
    transform-origin: left top;
    color: #ffffff;
    border-left: 3px solid rgb(196,171,177);
    line-height: 1.6;
    font-size: 14px;
    transform: skewX(-5deg);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
}.study_bottom .donate_btn {
    flex: 0 0 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}.study_bottom .head_wrap {
    flex: 1;
    flex-wrap: wrap;
    gap: 0;
    display: flex;
}.study_bottom .head_edu {
    padding: 0 1rem 2rem 1rem;
    position: relative;
    flex: 0 0 50%;
}.study_bottom .head_edu h5 {
    color: #ffffff;
    transform: skewX(-5deg);
    margin: 0 0 1.5rem;
    font-size: 19px;
    font-weight: 600;
    padding-left: 1rem;
    position: relative;
}.study_bottom .head_edu h5::before {
    background: rgb(196,171,177);
    bottom: 0;
    content: "";
    width: 3px;
    left: 0;
    transform: skewX(5deg);
    position: absolute;
    top: 0;
}.study_bottom .head_edu .head_wrap {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}.study_bottom .head_edu .head_wrap a {
    transform: skewX(-5deg);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 1rem;
    display: block;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
}.study_bottom .head_edu .head_wrap a::before {
    top: 0;
    position: absolute;
    left: -100%;
    content: "";
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}.study_bottom .head_edu .head_wrap a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-5deg) translateX(5px);
    color: #ffffff;
    padding-left: 1.5rem;
}.study_bottom .head_edu .head_wrap a:hover::before {
    left: 100%;
}.music_edu {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    position: relative;
    margin-top: 2rem;
}.music_edu .container {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    display: flex;
}.music_edu .equity_pledge {
    width: 100%;
    transform: skewX(-5deg);
    text-align: center;
    color: #ffffff;
    font-size: 16px;
}

@media (max-width: 1200px) {.study_bottom .company_holder {
    flex: 0 0 35%;
    padding-right: 2rem;
}.study_bottom .donate_btn {
    flex: 0 0 65%;
}
}

@media (max-width: 992px) {.study_bottom {
    padding: 4rem 0 2rem;
}.study_bottom .container {
    flex-direction: column;
}.study_bottom .company_holder {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 3rem;
}.study_bottom .company_holder::after {
    display: none;
}.study_bottom .donate_btn {
    flex: 0 0 100%;
}.study_bottom .head_edu {
    padding-bottom: 1.5rem;
}
}

@media (max-width: 768px) {.study_bottom {
    padding: 3.5rem 0 1.5rem;
}.study_bottom::before {
    height: 10px;
}.study_bottom .company_holder h3 {
    font-size: calc(31px - 2px);
}.study_bottom .blog_ref {
    transform: skewX(-3deg);
    padding: 1.2rem;
}.study_bottom .head_edu h5, 
    .study_bottom .head_edu .head_wrap a {
    transform: skewX(-3deg);
}.study_bottom .head_edu .head_wrap a:hover {
    transform: skewX(-3deg) translateX(5px);
}.music_edu {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}.music_edu .equity_pledge {
    transform: skewX(-3deg);
}
}

@media (max-width: 576px) {.study_bottom {
    padding: 3rem 0 1rem;
}.study_bottom::before {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}.study_bottom .head_edu {
    padding: 0 0 2rem 0;
    flex: 0 0 100%;
}.study_bottom .company_holder {
    margin-bottom: 2rem;
}.study_bottom .head_edu .head_wrap a {
    padding: 0.6rem 0.8rem;
}.study_bottom .head_edu .head_wrap a:hover {
    padding-left: 1.2rem;
}.music_edu {
    margin-top: 1rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}
}

@media (max-width: 420px) {.study_bottom .company_holder h3 {
    transform: skewX(-5deg);
}.study_bottom .company_holder h3::after {
    width: 60px;
}.study_bottom .blog_ref {
    transform: none;
}.study_bottom .head_edu h5 {
    transform: none;
}.study_bottom .head_edu h5::before {
    transform: none;
}.study_bottom .head_edu .head_wrap a,
    .study_bottom .head_edu .head_wrap a:hover,
    .music_edu .equity_pledge {
    transform: none;
}}.education_experience {
    overflow: hidden;
    padding: 6rem 2rem;
    position: relative;
    background-color: rgb(232,225,227);
}.education_experience::before {
    background: rgb(196,171,177,0.5);
    height: 300px;
    z-index: 0;
    filter: blur(120px);
    border-radius: 50%;
    content: "";
    width: 300px;
    position: absolute;
    right: -100px;
    top: -100px;
}.education_experience::after {
    border-radius: 50%;
    filter: blur(100px);
    width: 250px;
    bottom: -80px;
    z-index: 0;
    left: -80px;
    position: absolute;
    content: "";
    height: 250px;
    background: rgb(173,130,142,0.5);
}.education_experience .alumni_ratings {
    background: #ffffff;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08), 
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    overflow: visible;
    position: relative;
    grid-template-columns: 1fr 1.2fr;
    z-index: 2;
    max-width: 1100px;
    gap: 0;
    border-radius: 21px;
    margin: 0 auto;
    display: grid;
}.education_experience .pic_grid {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 21px 0 0 21px;
    transform: translateX(-30px) translateY(-30px);
    height: 500px;
}.education_experience .pic_grid::before {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 21px;
    left: 30px;
    background: rgb(196,171,177,0.5);
    z-index: -1;
    content: "";
    top: 30px;
}.education_experience .past_jobs {
    flex-direction: column;
    padding: 4rem 3rem;
    display: flex;
    justify-content: center;
}.education_experience .name {
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    font-size: 47px;
    font-weight: 700;
    color: #000000;
}.education_experience .past_jobs > div:nth-child(2) {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 24px;
    color: rgb(196,171,177);
    padding-bottom: 15px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}.education_experience .past_jobs > div:nth-child(2)::after {
    background: rgb(173,130,142);
    width: 60px;
    height: 2px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
}.education_experience .emp_exp {
    font-weight: 300;
    font-size: calc(13px * 1.1);
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}.education_experience .emp_exp::before {
    content: "";
    z-index: -1;
    color: rgb(173,130,142,0.5);
    font-family: serif;
    position: absolute;
    top: -2.5rem;
    left: -2rem;
    font-size: 5rem;
}.education_experience .alumni_ratings:hover .pic_grid {
    transform: translateX(-20px) translateY(-40px);
}@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgb(196,171,177,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.education_experience .alumni_ratings:hover .name {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text !important;
    background: linear-gradient(90deg, rgb(196,171,177), rgb(173,130,142));
    text-fill-color: transparent;
    background-clip: text !important;
}

@media (max-width: 992px) {.education_experience .alumni_ratings {
    max-width: 90%;
    grid-template-columns: 1fr;
}.education_experience .pic_grid {
    border-radius: 21px 21px 0 0;
    transform: translateY(-30px);
    height: 400px;
}.education_experience .pic_grid::before {
    top: 30px;
    width: 100%;
    left: 0;
}.education_experience .past_jobs {
    padding: 1rem 2rem 3rem;
}.education_experience .alumni_ratings:hover .pic_grid {
    transform: translateY(-40px);
}
}

@media (max-width: 576px) {.education_experience {
    padding: 4rem 1rem;
}.education_experience .alumni_ratings {
    max-width: 100%;
}.education_experience .pic_grid {
    transform: translateY(-20px);
    height: 320px;
}.education_experience .pic_grid::before {
    top: 20px;
}.education_experience .past_jobs {
    padding: 0.5rem 1.5rem 2.5rem;
}.education_experience .name {
    font-size: calc(35px);
}.education_experience .past_jobs > div:nth-child(2) {
    letter-spacing: 1px;
    font-size: 13px;
}.education_experience .emp_exp {
    font-size: 13px;
}.education_experience .alumni_ratings:hover .pic_grid {
    transform: translateY(-25px);
}}.privacy_hideaway {
    padding: 3rem;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #000000;
    background-color: rgb(232,225,227);
    width: 100%;
    display: flex;
}.privacy_hideaway h1 {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    font-size: 48px;
    font-weight: 700;
    border-bottom: 3px solid rgb(196,171,177);
    color: rgb(196,171,177);
    text-transform: uppercase;
}.privacy_hideaway h2 {
    padding-left: 1rem;
    border-left: 4px solid rgb(173,130,142);
    color: rgb(173,130,142);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    font-weight: 600;
    margin-top: 2rem;
    font-size: 30px;
}.privacy_hideaway h3,.privacy_hideaway h4,.privacy_hideaway h5, .privacy_hideaway h6 {
    font-size: 22px;
    margin: 1rem 0;
}.privacy_hideaway ul,
.privacy_hideaway ol {
    list-style-position: inside;
    margin-top: 1.5rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    list-style-type: none;
    margin-bottom: 1.5rem;
}.privacy_hideaway li {
    font-size: 18px;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.8;
}.privacy_hideaway li::before {
    margin-right: 0.5rem;
    color: rgb(196,171,177);
    content: "▹";
}.privacy_hideaway p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 18px;
}.privacy_hideaway span {
    font-weight: 700;
    color: rgb(173,130,142);
}.privacy_hideaway > div {
    margin-bottom: 2rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {.privacy_hideaway {
    gap: 1.5rem;
    padding: 1.5rem;
}.privacy_hideaway h1 {
    font-size: calc(22px - 0.5rem);
}.privacy_hideaway h2 {
    font-size: calc(22px - 0.5rem);
}.privacy_hideaway p,
    .privacy_hideaway li {
    font-size: calc(18px - 0.2rem);
}.privacy_hideaway > div {
    padding: 0.5rem;
}}
.program_structure {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(232,225,227) 0%, rgba(0, 0, 0, 0.5) 100%);
}.program_structure::before {
    z-index: 1;
    top: 0;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle at 20% 50%, rgb(196,171,177,0.5) 0%, transparent 50%);
    left: 0;
    width: 100%;
    content: "";
}.program_structure::after {
    height: 200px;
    right: -50px;
    border-radius: 50%;
    position: absolute;
    animation: pulse 8s infinite alternate;
    content: "";
    width: 200px;
    z-index: 1;
    background: radial-gradient(circle, rgb(173,130,142,0.5) 0%, transparent 70%);
    top: -50px;
}.program_structure .container {
    max-width: 1200px;
    z-index: 2;
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
}.program_structure .master_study {
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    overflow: hidden;
    transition: all 0.3s ease;
    align-items: center;
    backdrop-filter: blur(5px);
    position: relative;
    display: flex;
    gap: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(196,171,177,0.5);
}.program_structure .master_study::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 100%;
    top: 0;
    position: absolute;
    width: 100%;
    left: -100%;
    content: "";
    animation: shine 5s infinite;
}.program_structure .tech_training {
    flex: 1;
    position: relative;
    padding-right: 20px;
}.program_structure .tech_training::before {
    border: 2px solid rgb(196,171,177,0.5);
    position: absolute;
    border-radius: 50%;
    animation: rotate 25s linear infinite;
    width: 60px;
    z-index: -1;
    top: -30px;
    height: 60px;
    content: "";
    left: -30px;
}.program_structure .tech_training::after {
    bottom: -20px;
    height: 40px;
    content: "";
    width: 40px;
    z-index: -1;
    border-radius: 10px;
    position: absolute;
    border: 1px solid rgb(173,130,142,0.5);
    right: 50px;
    animation: float 8s ease-in-out infinite;
}.program_structure .nav_prime {
    width: 60px;
    max-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    transform: translateZ(0);
    position: relative;
    height: 60px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, rgb(232,225,227) 100%);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}.program_structure .nav_prime:hover {
    transform: translateY(-5px) translateZ(0);
}.program_structure .nav_prime svg {
    max-width: 100%;
    max-height: 100%;
    fill: rgb(196,171,177);
    width: 40px;
    height: 40px;
    transition: fill 0.3s ease;
}.program_structure .nav_prime svg path {
    transition: fill 0.3s ease;
    fill: rgb(196,171,177);
}.program_structure .nav_prime:hover svg,
.program_structure .nav_prime:hover svg path {
    fill: rgb(173,130,142);
}.program_structure h3 {
    position: relative;
    font-weight: 700;
    padding-bottom: 15px;
    color: rgb(196,171,177);
    margin-bottom: 25px;
    font-size: 32px;
}.program_structure h3::after {
    border-radius: 10px;
    position: absolute;
    height: 3px;
    left: 0;
    content: "";
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, rgb(196,171,177), rgb(173,130,142));
}.program_structure p {
    font-weight: 400;
    font-family: Arial, sans-serif;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.7;
    font-size: 16px;
    color: #000000;
}.program_structure .pic_grid {
    border-radius: 24px;
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg);
    overflow: hidden;
    min-height: 400px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    flex: 1;
}.program_structure .pic_grid::before {
    z-index: 2;
    left: 0;
    content: "";
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
}.program_structure .pic_grid::after {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 60%);
    top: -50%;
    height: 200%;
    left: -50%;
    width: 200%;
    z-index: 3;
    transform: rotate(25deg);
    animation: shine-effect 6s infinite;
    content: "";
    position: absolute;
}.program_structure .master_study:hover .pic_grid {
    transform: perspective(1000px) rotateY(0deg);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes shine-effect {
  0% {
    transform: rotate(25deg) translateX(-100%);
  }
  80%, 100% {
    transform: rotate(25deg) translateX(100%);
  }
}

@media screen and (max-width: 991px) {.program_structure {
    padding: 60px 0;
}.program_structure .master_study {
    padding: 30px;
    flex-direction: column;
    gap: 30px;
}.program_structure .tech_training {
    width: 100%;
    padding-right: 0;
}.program_structure .pic_grid {
    width: 100%;
    min-height: 350px;
    transform: perspective(1000px) rotateY(0);
}.program_structure h3 {
    font-size: calc(32px - 4px);
}
}

@media screen and (max-width: 767px) {.program_structure {
    padding: 50px 0;
}.program_structure .master_study {
    padding: 25px;
}.program_structure .nav_prime {
    max-width: 150px;
    height: 50px;
}.program_structure h3 {
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: calc(32px - 6px);
}.program_structure h3::after {
    width: 60px;
    height: 2px;
}.program_structure p {
    margin-bottom: 20px;
    font-size: calc(16px - 1px);
}.program_structure .pic_grid {
    min-height: 300px;
}
}

@media screen and (max-width: 576px) {.program_structure {
    padding: 40px 0;
}.program_structure .master_study {
    gap: 20px;
    padding: 20px;
}.program_structure .nav_prime {
    max-width: 120px;
    height: 40px;
    margin-bottom: 15px;
}.program_structure h3 {
    font-size: calc(32px - 8px);
}.program_structure .pic_grid {
    min-height: 250px;
}}.price_item_element {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.price_item_element::before {
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    right: 0;
    top: 0;
    z-index: 1;
    left: 0;
    position: absolute;
    content: "";
    backdrop-filter: blur(4px);
}.price_item_element .container {
    padding: 0 15px;
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}.price_item_element .fee_choices {
    flex-direction: column;
    align-items: center;
    display: flex;
    width: 100%;
}.price_item_element h2 {
    transform: translateY(20px);
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 29px;
    opacity: 0;
    position: relative;
    animation: fadeSlideUp 0.7s ease forwards;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}.price_item_element .plan_cost {
    transform: translateY(20px);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    text-align: center;
    font-size: 18px;
    opacity: 0;
    animation: fadeSlideUp 0.7s ease forwards 0.2s;
    color: #ffffff;
}.price_item_element .study_pricing {
    perspective: 1000px;
    width: 100%;
    display: grid;
    gap: 30px;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.price_item_element .study_pricing li {
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: calc(0.2s + (var(--li-index, 0) * 0.15s));
    opacity: 0;
    transform: translateY(30px);
}.price_item_element .study_pricing li:nth-child(1) {
    --li-index: 1;
}.price_item_element .study_pricing li:nth-child(2) {
    --li-index: 2;
}.price_item_element .study_pricing li:nth-child(3) {
    --li-index: 3;
}.price_item_element .study_pricing li:nth-child(4) {
    --li-index: 4;
}.price_item_element .cost_rates {
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    height: 100%;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}.price_item_element .cost_rates::before {
    left: 0;
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
    top: 0;
    background: linear-gradient(90deg, rgb(196,171,177), rgb(173,130,142));
    height: 4px;
}.price_item_element .cost_rates:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}.price_item_element .cost_rates:hover::before {
    transform: scaleX(1);
}.price_item_element .value_deals {
    display: flex;
    height: 100%;
    padding: 30px;
    flex-direction: column;
}.price_item_element .skill_offers {
    flex-direction: column;
    height: 100%;
    display: flex;
}.price_item_element .skill_offers h4 {
    padding-bottom: 15px;
    color: #ffffff;
    position: relative;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.5px;
    margin-top: 0;
}.price_item_element .skill_offers h4::after {
    position: absolute;
    width: 40px;
    left: 0;
    content: "";
    height: 2px;
    background: rgb(173,130,142);
    bottom: 0;
}.price_item_element .skill_offers p {
    font-size: calc(18px - 2px);
    flex-grow: 1;
    color: rgba(255,255,255,0.8);
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 25px;
    line-height: 1.6;
}.price_item_element .pricing_rates {
    margin-top: auto;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 20px;
    position: relative;
    background: linear-gradient(135deg, rgb(196,171,177,0.5), rgb(173,130,142,0.5));
    font-size: calc(19px + 4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border-radius: 10px;
    color: #ffffff;
    align-self: flex-start;
}.price_item_element .cost_rates:hover .pricing_rates {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

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

@media (max-width: 992px) {.price_item_element {
    padding: 80px 0;
}.price_item_element h2 {
    font-size: calc(29px - 4px);
}.price_item_element .study_pricing {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}.price_item_element .value_deals {
    padding: 25px;
}.price_item_element .pricing_rates {
    font-size: calc(19px + 2px);
}
}

@media (max-width: 768px) {.price_item_element {
    padding: 60px 0;
}.price_item_element h2 {
    font-size: calc(29px - 6px);
    margin-bottom: 15px;
}.price_item_element .plan_cost {
    font-size: calc(18px - 1px);
    margin-bottom: 30px;
}.price_item_element .study_pricing {
    max-width: 450px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.price_item_element .skill_offers p {
    font-size: calc(18px - 3px);
}
}

@media (max-width: 480px) {.price_item_element {
    padding: 50px 0;
}.price_item_element .value_deals {
    padding: 20px;
}.price_item_element .skill_offers h4 {
    font-size: calc(19px - 2px);
}.price_item_element .pricing_rates {
    padding: 8px 15px;
    font-size: 19px;
}}.gratContent {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, rgb(232,225,227) 100%);
}.gratContent::before {
    filter: blur(40px);
    opacity: 0.4;
    z-index: 1;
    content: "";
    height: 70%;
    left: -5%;
    width: 40%;
    top: -10%;
    animation: float 12s ease-in-out infinite alternate;
    position: absolute;
    transform: rotate(-15deg) skew(10deg);
    background: linear-gradient(145deg, rgb(173,130,142,0.5) 0%, transparent 80%);
}.gratContent::after {
    filter: blur(30px);
    width: 35%;
    background: linear-gradient(215deg, rgb(196,171,177,0.5) 0%, transparent 70%);
    right: -5%;
    position: absolute;
    height: 60%;
    bottom: -5%;
    animation: float 15s ease-in-out infinite alternate-reverse;
    opacity: 0.3;
    z-index: 1;
    content: "";
    transform: rotate(10deg) skew(-5deg);
}.gratContent .container {
    z-index: 3;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
}.gratContent h2 {
    transform: translateY(20px);
    opacity: 0;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #000000;
    font-size: 30px;
    animation: fadeUp 0.8s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
    font-family: Arial, sans-serif;
}.gratContent h2::after {
    transform: translateX(-50%);
    left: 50%;
    content: "";
    opacity: 0;
    background: linear-gradient(90deg, rgb(196,171,177) 0%, rgb(173,130,142) 100%);
    transform-origin: center;
    width: 80px;
    height: 3px;
    position: absolute;
    bottom: -15px;
    animation: expand 1.5s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
}.gratContent .master_study {
    opacity: 0;
    position: relative;
    border-radius: 8px;
    padding: 50px 40px;
    transform: translateY(30px);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.8s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
}.gratContent .master_study::before {
    animation: growDown 1s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleY(0);
    content: "";
    width: 5px;
    transform-origin: top;
    height: 100%;
    background: linear-gradient(to bottom, rgb(196,171,177), rgb(173,130,142));
}.gratContent ul {
    padding: 0;
    margin: 0;
    list-style: none;
}.gratContent li {
    padding-left: 25px;
    position: relative;
}.gratContent li::before {
    background: rgb(173,130,142);
    border-radius: 50%;
    height: 8px;
    animation: popIn 0.5s 1s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
    content: "";
    position: absolute;
    top: 10px;
    transform: scale(0);
    left: 0;
    width: 8px;
}.gratContent span {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    font-weight: 400;
    display: block;
    color: #000000;
    font-size: 18px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(10px);
}

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

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes expand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 1;
  }
}

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

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

@media (max-width: 1024px) {.gratContent {
    padding: 100px 0 70px;
}.gratContent h2 {
    font-size: calc(30px * 0.9);
}.gratContent .master_study {
    padding: 40px 35px;
}
}

@media (max-width: 768px) {.gratContent {
    padding: 80px 0 60px;
}.gratContent h2 {
    margin-bottom: 35px;
    font-size: calc(30px * 0.8);
}.gratContent h2::after {
    bottom: -12px;
    width: 60px;
}.gratContent .master_study {
    padding: 35px 30px;
}.gratContent span {
    font-size: calc(18px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 576px) {.gratContent {
    padding: 60px 0 50px;
}.gratContent h2 {
    line-height: 1.4;
    font-size: calc(30px * 0.7);
    margin-bottom: 30px;
}.gratContent h2::after {
    height: 2px;
    bottom: -10px;
    width: 50px;
}.gratContent .master_study {
    padding: 30px 20px;
}.gratContent li {
    padding-left: 20px;
}.gratContent li::before {
    height: 6px;
    top: 12px;
    width: 6px;
}.gratContent span {
    font-size: calc(18px * 0.9);
    line-height: 1.6;
}@keyframes expand {
    100% {
      width: 50px;
    }
  }
}.sign_up_now {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: linear-gradient(120deg, rgb(173,130,142,0.5) 0%, #ffffff 100%);
}.sign_up_now::before {
    content: '';
    right: -20%;
    top: -50%;
    height: 200%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgb(196,171,177,0.5);
    z-index: 1;
    opacity: 0.1;
    width: 80%;
    position: absolute;
    transform: rotate(-15deg);
}.sign_up_now::after {
    width: 60%;
    height: 150%;
    left: -10%;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    opacity: 0.1;
    bottom: -30%;
    content: '';
    position: absolute;
    transform: rotate(15deg);
    z-index: 1;
    background: rgb(173,130,142,0.5);
}.sign_up_now .master_study {
    padding: 0;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}.sign_up_now .container p {
    position: relative;
    text-align: center;
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    line-height: 1.4;
    color: #000000;
    font-size: 38px;
    padding: 40px 60px;
    background: #ffffff;
    margin: 0 0 60px 0;
    z-index: 5;
    font-weight: 700;
}.sign_up_now .connect_grid {
    font-size: 19px;
    padding: 20px 50px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: linear-gradient(90deg, rgb(196,171,177), rgb(173,130,142));
    transition: all 0.4s ease;
    position: relative;
    z-index: 5;
}.sign_up_now .connect_grid::before {
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(173,130,142), rgb(196,171,177));
    opacity: 0;
    transition: opacity 0.4s ease;
    height: 100%;
    top: 0;
    content: '';
    width: 100%;
    z-index: -1;
}.sign_up_now .connect_grid:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.sign_up_now .connect_grid:hover::before {
    opacity: 1;
}.sign_up_now .container p::before {
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    z-index: -1;
    left: -20%;
    height: 120%;
    width: 140%;
    top: -10%;
    position: absolute;
    background: #ffffff;
    animation: morph 8s ease-in-out infinite;
    content: '';
    opacity: 0.4;
}.sign_up_now .connect_grid::after {
    left: -100px;
    height: 100%;
    content: '';
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    width: 30px;
    transform: skewX(-15deg);
    animation: shine 6s infinite;
    top: 0;
    position: absolute;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

@media (max-width: 991px) {.sign_up_now {
    padding: 90px 0;
}.sign_up_now .container p {
    font-size: calc(21px * 1.2);
    padding: 35px 50px;
    margin-bottom: 50px;
}.sign_up_now .connect_grid {
    padding: 18px 40px;
}
}

@media (max-width: 767px) {.sign_up_now {
    padding: 70px 0;
}.sign_up_now .container p {
    padding: 30px 40px;
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    font-size: 21px;
    margin-bottom: 40px;
}.sign_up_now .connect_grid {
    padding: 15px 35px;
}.sign_up_now .container p::before {
    animation: none;
}
}

@media (max-width: 480px) {.sign_up_now {
    padding: 50px 0;
}.sign_up_now .container p {
    border-radius: 30px;
    padding: 25px 30px;
    margin-bottom: 30px;
    font-size: calc(12px * 1.2);
}.sign_up_now .connect_grid {
    font-size: calc(19px * 0.9);
    padding: 12px 30px;
}
}