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

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

.container {
    margin: auto;
    width: 1190px;
    max-width: 100%;
}

.first-teach-base {
    flex: 1 0 auto;
}

.explore-now-base::before {
    width: 100%;
    content: '';
    left: 0;
    animation: patternMove 15s linear infinite;
    opacity: 0.5;
    height: 100%;
    background-size: 30px 30px;
    top: 0;
    position: absolute;
    z-index: -1;
    background: 
        linear-gradient(
            135deg,
            transparent 25%,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 50%,
            transparent 75%,
            rgba(255, 255, 255, 0.05) 75%
        );
}

.explore-now-base .fast-study-base {
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    max-width: 900px;
    z-index: 2;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
}

.explore-now-base .fast-study-base::after {
    filter: blur(20px);
    right: -30px;
    position: absolute;
    z-index: -1;
    animation: floatBubble 10s ease-in-out infinite alternate;
    top: -30px;
    border-radius: 50%;
    width: 100px;
    content: '';
    height: 100px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
}

.explore-now-base h3::before {
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    content: '';
    top: -30px;
    position: absolute;
    height: 1px;
    left: 10%;
    width: 80%;
}

.explore-now-base h3:hover {
    transform: rotateX(0deg);
}

.explore-now-base .talk-team-base {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    border-radius: 10px;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    text-decoration: none;
    transform-origin: bottom center;
    transform: perspective(1000px) rotateX(10deg);
    overflow: hidden;
    z-index: 1;
    color: rgb(204,198,212);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    padding: 20px 50px;
}

.explore-now-base .talk-team-base:hover {
    color: #ffffff;
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

footer::after {
    top: 0;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: 
        radial-gradient(circle at 20% 20%, transparent 0, transparent 80px, rgba(255, 255, 255, 0.03) 81px),
        radial-gradient(circle at 80% 40%, transparent 0, transparent 120px, rgba(255, 255, 255, 0.03) 121px),
        radial-gradient(circle at 40% 70%, transparent 0, transparent 100px, rgba(255, 255, 255, 0.03) 101px);
    left: 0;
    z-index: -1;
}

.syllabus-ref-base .container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
}

.syllabus-ref-base .company_holder:hover {
    transform: rotateX(0deg);
}

.syllabus-ref-base .company_holder h3 {
    font-size: 36px;
    color: #ffffff;
    margin: 0 0 1.5rem;
    transform: translateZ(20px);
    position: relative;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
}

.syllabus-ref-base .company_holder h3::after {
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    right: -10px;
    bottom: -10px;
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
}

.syllabus-ref-base .login-footer-base {
    min-width: 400px;
    flex: 1 1 calc(100% - 480px);
}

.syllabus-ref-base .nav-start-base {
    flex-wrap: wrap;
    display: flex;
    gap: 3rem;
}

.syllabus-ref-base .nav-mainbar-base:hover {
    transform: rotateX(0deg);
}

.syllabus-ref-base .nav-mainbar-base h5 {
    min-width: 200px;
    display: inline-block;
    font-weight: 600;
    font-size: 21px;
    position: relative;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    margin: 0 0 1.5rem;
    transform: translateZ(15px);
    color: #ffffff;
    padding: 1rem 1.5rem;
    background: rgb(167,161,179,0.5);
}

.syllabus-ref-base .nav-mainbar-base .nav-start-base a {
    position: relative;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
    display: block;
    transform: translateZ(10px);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.syllabus-ref-base .nav-mainbar-base .nav-start-base a:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    background: rgb(167,161,179,0.5);
}

.music-edu-base {
    perspective: 1000px;
    position: relative;
    background: rgb(167,161,179,0.5);
    margin-top: 3rem;
    padding: 2rem 0;
    transform-style: preserve-3d;
}

.music-edu-base .container {
    justify-content: center;
    display: flex;
    align-items: center;
}

.training-results-base {
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
    padding: 120px 0 80px;
}

.training-results-base::before {
    width: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgb(204,198,212,0.5) 0%, transparent 60%);
    height: 100%;
    left: 0;
}

.training-results-base h5 {
    text-align: center;
    position: relative;
    letter-spacing: 0.5px;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    transform: translateY(-5px);
}

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

.training-results-base .fast-study-base:hover {
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.07),
                -25px -25px 70px rgba(255, 255, 255, 1),
                inset 5px 5px 10px rgba(255, 255, 255, 0.9),
                inset -5px -5px 10px rgba(0, 0, 0, 0.04);
    transform: perspective(1000px) rotateX(0deg);
}

.training-results-base .img-text-base {
    width: 100%;
    margin-bottom: 30px;
    height: 250px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
    border-radius: 8px;
    position: relative;
}

.training-results-base .img-text-base {
    transition: clip-path 0.6s ease-in-out, transform 0.6s ease, box-shadow 0.6s ease;
    clip-path: polygon(0 0, 100% 8%, 92% 100%, 0% 92%);
}

.training-results-base ul {
    grid-template-columns: 1fr;
    list-style: none;
    margin: 0;
    display: grid;
    padding: 0;
    gap: 22px;
}

.training-results-base li:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05),
                -10px -10px 20px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(255, 255, 255, 1);
}

.training-results-base li:nth-child(odd) {
    transform: translateX(-5px) translateZ(0);
}

.training-results-base li:nth-child(odd):hover {
    transform: translateX(-5px) translateY(-3px) translateZ(0);
}

.training-results-base li p {
    color: #000000;
    align-items: flex-start;
    line-height: 1.5;
    font-size: 13px;
    display: flex;
    margin: 0;
}

.training-results-base li:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.training-results-base li:hover svg path:first-child {
    fill: rgb(204,198,212);
}

.training-results-base li:hover svg path:last-child {
    fill: rgb(167,161,179);
}

.training-results-base li:nth-child(2) {
    animation: fadeInUp 0.5s 0.2s backwards;
}

.training-results-base li:nth-child(4) {
    animation: fadeInUp 0.5s 0.4s backwards;
}

.program-structure-base {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(237,234,239) 0%, rgba(240, 242, 245, 0.9) 100%);
    overflow: hidden;
    position: relative;
}

.program-structure-base::after {
    width: 200px;
    background: linear-gradient(-45deg, rgb(167,161,179,0.5) 0%, rgb(204,198,212,0.5) 100%);
    bottom: -50px;
    content: "";
    opacity: 0.2;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(30px);
    transform: translateZ(0);
    position: absolute;
    left: -50px;
    animation: morph 20s infinite alternate ease-in-out;
    height: 200px;
}

.program-structure-base .img-text-base {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateY(-2deg) translateZ(0);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 350px;
    position: relative;
}

.program-structure-base .content-card-base {
    transform: perspective(1000px) rotateY(2deg) translateZ(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 30px;
    background: #ffffff;
}

.program-structure-base .content-card-base::before {
    transform: scaleY(0.7);
    left: 0;
    background: linear-gradient(to bottom, rgb(204,198,212), rgb(167,161,179));
    width: 4px;
    transform-origin: center;
    position: absolute;
    height: 100%;
    transition: transform 0.4s ease;
    content: "";
    top: 0;
}

.program-structure-base h3::after {
    z-index: -1;
    width: 8px;
    height: 30%;
    left: -10px;
    top: 50%;
    position: absolute;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.4s ease, left 0.4s ease;
    content: "";
    background: rgb(204,198,212,0.5);
}

.program-structure-base .description {
    font-size: 12px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    position: relative;
    color: #000000;
}

.program-structure-base span.description {
    display: none;
}

.our-story-base {
    overflow: hidden;
    background-color: rgb(237,234,239);
    padding: 120px 0;
    position: relative;
}

.our-story-base::after {
    content: "";
    opacity: 0.8;
    top: 0;
    width: 100%;
    z-index: 1;
    filter: blur(50px);
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(204,198,212,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(167,161,179,0.5) 0%, transparent 40%);
    position: absolute;
    height: 100%;
}

.our-story-base .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
    position: relative;
}

.our-story-base h2 {
    text-align: center;
    position: relative;
    font-size: 44px;
    color: #000000;
    margin-bottom: 80px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

.our-story-base h2::after {
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgb(204,198,212), rgb(167,161,179));
    bottom: -20px;
    left: 50%;
    width: 60px;
    content: "";
    border-radius: 10px;
    position: absolute;
    height: 4px;
}

.our-story-base .pro-sessions-base {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.our-story-base .pro-sessions-base::before {
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgb(204,198,212,0.5) 10%, 
        rgb(204,198,212) 50%,
        rgb(167,161,179) 50%,
        rgb(167,161,179,0.5) 90%,
        transparent 100%);
    height: 100%;
    top: 0;
    left: 50%;
    z-index: 1;
    position: absolute;
    content: "";
}

.our-story-base .diff-block-base {
    width: 55%;
    position: relative;
    border-radius: 15px;
    z-index: 2;
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-story-base .diff-block-base:nth-child(1) {
    align-self: flex-start;
    transform: translateX(-40px);
    border-left: 4px solid rgb(204,198,212);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.our-story-base .diff-block-base:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-right: 4px solid rgb(167,161,179);
    transform: translateX(40px);
    align-self: flex-end;
}

.our-story-base .diff-block-base:nth-child(1)::before {
    box-shadow: 0 0 15px rgb(204,198,212,0.5);
    right: -55px;
    transform: translateY(-50%);
}

.our-story-base .diff-block-base::after {
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    height: 2px;
    width: 35px;
    content: "";
}

.our-story-base .diff-block-base:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.03) translateY(-5px);
    z-index: 4;
}

.our-story-base .diff-block-base h3 {
    padding-bottom: 15px;
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000000;
    position: relative;
}

.our-story-base .diff-block-base:nth-child(2) h3::after {
    background: linear-gradient(90deg, rgb(167,161,179), transparent);
}

.our-story-base .diff-block-base:hover h3::after {
    width: 70%;
}

.our-story-base .container::before,
.our-story-base .container::after {
    animation: floatAnim 15s linear infinite alternate;
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    content: "";
    z-index: 0;
    filter: blur(60px);
    background: linear-gradient(45deg, rgb(204,198,212,0.5), transparent);
    height: 250px;
    position: absolute;
    opacity: 0.2;
    width: 250px;
}

.our-story-base .container::before {
    top: 10%;
    left: -150px;
}

.secure-chamber-base::before {
    z-index: 0;
    height: 100%;
    left: 0;
    animation: pulse 15s infinite alternate ease-in-out;
    pointer-events: none;
    position: absolute;
    background: radial-gradient(circle at 15% 85%, rgb(204,198,212,0.5) 0%, transparent 25%);
    width: 100%;
    content: "";
    opacity: 0.05;
    top: 0;
}

.secure-chamber-base .container {
    padding: 3rem;
    transform: perspective(1000px) rotateY(0.5deg);
    max-width: 1140px;
    backdrop-filter: blur(8px);
    border-left: 3px solid rgb(204,198,212);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.secure-chamber-base h1::after {
    content: "";
    width: 6rem;
    bottom: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(204,198,212), rgb(204,198,212,0.5));
    left: 0;
    border-radius: 10px;
    height: 4px;
    transition: width 0.4s ease;
}

.secure-chamber-base h2:hover {
    color: rgb(204,198,212);
    padding-left: 1.5rem;
}

.secure-chamber-base h3 {
    font-weight: 600;
    font-size: calc(19px + 0.1rem);
    margin: 2.5rem 0 1rem;
    color: #000000;
    border-left: 1px solid rgb(204,198,212,0.5);
    padding-left: 0.8rem;
}

.secure-chamber-base p:hover {
    transform: translateX(5px);
}

.secure-chamber-base strong {
    font-weight: 600;
    position: relative;
    color: #000000;
}

.secure-chamber-base strong:hover::after {
    transform: scaleX(1);
}

.secure-chamber-base ul {
    list-style-type: none;
    margin: 1.5rem 0 2rem 1.5rem;
}

.secure-chamber-base li {
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    font-size: 17px;
    position: relative;
    line-height: 1.7;
}

.secure-chamber-base li:hover {
    padding-left: 1.8rem;
}

.secure-chamber-base li:hover::before {
    background-color: rgb(204,198,212,0.5);
    transform: rotate(135deg);
}

.secure-chamber-base span {
    line-height: 1.8;
    display: block;
    color: #000000;
    margin-bottom: 1.5rem;
    font-style: italic;
    border-left: 1px solid rgb(167,161,179,0.5);
    font-size: 17px;
    padding-left: 1rem;
    opacity: 0.9;
}

.teacher-profile-base::after {
    opacity: 0.3;
    background: radial-gradient(circle at 70% 30%, rgb(167,161,179,0.5) 0%, transparent 40%);
    right: 0;
    content: "";
    z-index: 0;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
}

.teacher-profile-base .img-text-base {
    width: 100%;
    z-index: 2;
    transform: rotateX(10deg);
    border-radius: 30px 30px 0 0;
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    height: 300px;
}

.teacher-profile-base .student-insights-base:hover .img-text-base {
    transform: rotateX(0deg) translateZ(30px);
}

.teacher-profile-base .student-insights-base:hover .experience-data-base {
    transform: rotateX(0deg) translateZ(20px);
}

.teacher-profile-base .name {
    transition: transform 0.4s ease;
    color: rgb(204,198,212);
    transform: translateZ(0);
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 10px;
}

.teacher-profile-base .student-insights-base:hover .name::after {
    width: 100%;
}

.teacher-profile-base .student-insights-base:hover .name {
    transform: translateZ(10px);
}

.teacher-profile-base .experience-data-base > div:nth-child(2) {
    letter-spacing: 1px;
    transform: translateZ(0);
    color: #000000;
    transition: transform 0.4s ease 0.1s, color 0.3s ease;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 19px;
    opacity: 0.7;
}

.teacher-profile-base .student-insights-base:hover .job-overview-base {
    transform: translateZ(5px);
}

.teacher-profile-base .job-overview-base::before {
    position: absolute;
    line-height: 0;
    opacity: 0.5;
    color: rgb(167,161,179,0.5);
    top: 10px;
    left: -5px;
    content: "";
    font-size: 60px;
}

header .top_plank .top-knowledge-base div span {
    color: #ffffff;
}

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

header .top_plank .top-knowledge-base div img, header .top_plank .top-knowledge-base div svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.id-thankdiv-base::before {
    height: 100%;
    z-index: 1;
    width: 100%;
    top: 0;
    transform-origin: center;
    left: 0;
    position: absolute;
    background: radial-gradient(circle at 30% 70%, rgb(204,198,212,0.5) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite alternate;
    content: "";
}

.id-thankdiv-base .container {
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
}

.id-thankdiv-base .fast-study-base:hover {
    transform: translateZ(30px) scale(1.02);
}

.id-thankdiv-base .fast-study-base > div:first-child {
    position: relative;
    padding-left: 2.5rem;
    border-left: 4px solid rgb(204,198,212);
}

.id-thankdiv-base .fast-study-base > div:first-child::before {
    left: -15px;
    width: 26px;
    top: 50%;
    content: "";
    height: 26px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(rgb(204,198,212), 0.5);
    background: rgb(204,198,212);
    position: absolute;
    transform: translateY(-50%);
    animation: pulse 3s infinite alternate;
}

.id-thankdiv-base .fast-study-base > div:nth-child(2) {
    position: relative;
    animation: fadeIn 0.8s 0.4s ease-out forwards;
    transition: transform 0.3s ease;
    opacity: 0;
}

.id-thankdiv-base .fast-study-base > div:nth-child(2)::before {
    content: "";
    height: 1px;
    position: absolute;
    background: linear-gradient(90deg, rgb(204,198,212), transparent);
    left: 0;
    width: 70%;
    top: -10px;
}

.id-thankdiv-base p {
    position: relative;
    line-height: 1.8;
    padding: 1rem 0;
    hyphens: auto;
    color: #000000;
    font-size: 17px;
    margin: 0;
}

.id-thankdiv-base a:hover p::after {
    transform: scaleX(1);
}

.cookie-warning-popup-base {
    bottom: 20px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    width: 90%;
    position: fixed;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    border-radius: 13px;
    font-family: Arial, sans-serif;
    align-items: center;
    background: rgb(237,234,239);
    overflow: hidden;
}

.cookie-warning-popup-base p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #000000;
}

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


#popupPolicyNotice-base {
    display: none;
}

#popupPolicyNotice-base:checked ~ .cookie-warning-popup-base {
    visibility: hidden;
    opacity: 0;
}

header .head-sitewrap-base::before {
    animation: slidePattern 25s linear infinite;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgb(167,161,179,0.5) 10px,
        rgb(167,161,179,0.5) 11px
    );
    content: "";
    top: 0;
    opacity: 0.1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}

header .header-mainbar-base {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
}

header .header-navbar-base {
    box-shadow: 5px 5px 0 rgb(204,198,212,0.5);
    border-radius: 10px;
    display: block;
    background: #ffffff;
    padding: 15px;
    transform: rotate(-3deg);
    transition: all 0.3s ease;
    position: relative;
}

header .header-navbar-base:hover {
    box-shadow: 8px 8px 0 rgb(204,198,212);
    transform: rotate(0deg) translateY(-5px);
}

header .header-navbar-base svg {
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.5));
    height: 45px;
    width: auto;
}

header .nav-mainbar-base::before {
    z-index: -1;
    transition: width 0.3s ease;
    content: "";
    opacity: 0.15;
    right: 0;
    bottom: 0;
    width: 85%;
    top: 0;
    border-radius: 0 26px 26px 0;
    background: linear-gradient(90deg, transparent, rgb(167,161,179,0.5) 100%);
    position: absolute;
}

header .top-learn-base a {
    display: block;
    font-weight: 600;
    border-radius: 0 10px 0 10px;
    color: #000000;
    font-family: Arial, sans-serif;
    border-left: 3px solid transparent;
    overflow: hidden;
    padding: 8px 16px;
    font-size: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

header .top-learn-base a:hover {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    border-left-color: rgb(204,198,212);
    transform: translateX(5px);
    color: rgb(204,198,212);
}

header .top-learn-base a:hover::before {
    transform: scaleY(1);
}

header .top-learn-base a:hover::after {
    transform: scaleX(1);
}

.service-plan-base::before {
    position: absolute;
    z-index: 1;
    height: 100%;
    pointer-events: none;
    width: 100%;
    top: 0;
    content: "";
    background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.02) 0px,
    rgba(0, 0, 0, 0.02) 1px,
    transparent 1px,
    transparent 11px
  );
    left: 0;
}

.service-plan-base .monthly-rate-base {
    margin-bottom: 50px;
    text-align: center;
    transition: transform 0.5s ease-out;
}

.service-plan-base .monthly-rate-base h2::after {
    position: absolute;
    content: "";
    background: rgb(204,198,212);
    height: 3px;
    bottom: -10px;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.service-plan-base .rate-choice-base {
    grid-template-columns: 1fr;
    gap: 30px;
    display: grid;
}

.service-plan-base .price-opts-base:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.service-plan-base .lesson-rates-base {
    display: flex;
    position: relative;
    background-color: #ffffff;
    flex-direction: column;
    overflow: hidden;
    min-height: 450px;
}

.service-plan-base .pricing-levels-base h3 {
    color: #000000;
    font-size: calc(23px + 2px);
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.service-plan-base .discount-deals-base {
    font-size: calc(23px + 4px);
    color: rgb(204,198,212);
    font-weight: 700;
    display: inline-block;
    margin: 15px 0;
    position: relative;
}

.service-plan-base .price-opts-base:hover .discount-deals-base::before {
    transform: translateX(0);
    opacity: 1;
}

.service-plan-base .pricing-levels-base p {
    white-space: normal;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 15px;
    overflow-wrap: break-word;
    flex: 1;
    color: #000000;
    word-break: break-word;
}

.service-plan-base .price-opts-base:hover .img-text-base {
    transform: scale(1.05);
}

.service-plan-base .price-opts-base:nth-child(odd) .lesson-rates-base {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 247, 252, 1) 100%);
}

.service-plan-base .price-opts-base:nth-child(1) {
    animation: fadeInUp 0.6s 0.1s both;
}

.service-plan-base .price-opts-base:nth-child(2) {
    animation: fadeInUp 0.6s 0.2s both;
}

.service-plan-base .price-opts-base:nth-child(4) {
    animation: fadeInUp 0.6s 0.4s both;
}

.contact-form-box-base::before {
    right: 0;
    pointer-events: none;
    left: 0;
    z-index: 1;
    content: '';
    position: absolute;
    background: 
        repeating-linear-gradient(
            0deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        );
    bottom: 0;
    top: 0;
}

.contact-form-box-base h2 {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-size: 46px;
    text-align: center;
    letter-spacing: 0.1em;
}

.contact-form-box-base h2::after {
    right: 0;
    width: 30%;
}

.contact-form-box-base .request-request-base {
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-radius: 18px;
    display: flex;
    transform: rotateX(5deg) scale(0.98);
    background: rgb(167,161,179,0.5);
    border: 1px solid rgb(204,198,212,0.5);
    align-items: stretch;
}

.contact-form-box-base .feedback-block-base {
    position: relative;
    flex-direction: column;
    flex: 0 0 60%;
    display: flex;
    padding: 4rem 3rem;
    justify-content: center;
}

.contact-form-box-base .feedback-block-base::before {
    height: 10px;
    border-radius: 50%;
    content: '';
    box-shadow: 0 0 20px rgb(204,198,212);
    position: absolute;
    width: 10px;
    animation: signal-pulse 2s infinite alternate;
    top: 2rem;
    right: 2rem;
    background: rgb(204,198,212);
}

.contact-form-box-base .feedback-block-base input:not([type="checkbox"]):not([type="submit"]) {
    font-size: 13px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgb(204,198,212,0.5);
    transition: all 0.3s ease;
    color: #ffffff;
    z-index: 2;
    margin-bottom: 1.5rem;
    outline: none;
    background: rgb(167,161,179,0.5);
    position: relative;
    width: 100%;
}

.contact-form-box-base .feedback-block-base input:not([type="checkbox"]):not([type="submit"]):focus {
    border-color: rgb(204,198,212);
    box-shadow: 0 0 15px rgb(204,198,212,0.5);
}

.contact-form-box-base .feedback-block-base .contact-feedback-base {
    align-items: center;
    margin-bottom: 1.5rem;
    display: flex;
}

.contact-form-box-base .feedback-block-base .contact-feedback-base input[type="checkbox"]:checked {
    border-color: rgb(204,198,212);
    background: rgb(204,198,212);
}

.contact-form-box-base .feedback-block-base .contact-feedback-base input[type="checkbox"]:checked::after {
    top: 50%;
    left: 50%;
    content: '✔';
    font-size: 0.8rem;
    position: absolute;
    color: #ffffff;
    transform: translate(-50%, -50%);
}

.contact-form-box-base .feedback-block-base .contact-feedback-base a {
    transition: color 0.3s ease;
    margin-left: 0.3rem;
    color: rgb(204,198,212);
    text-decoration: none;
}

.contact-form-box-base .feedback-block-base .help-form-base::before {
    width: 100%;
    top: 0;
    position: absolute;
    transition: all 0.3s ease;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgb(204,198,212,0.5), 
        transparent
    );
    content: '';
    left: -100%;
    height: 100%;
}

.contact-form-box-base .feedback-block-base .help-form-base:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(204,198,212,0.5);
}

.title-welcome-base::before {
    opacity: 0.6;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background: 
    radial-gradient(circle at 20% 30%, rgb(204,198,212,0.5) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgb(167,161,179,0.5) 0%, transparent 30%);
    top: 0;
    z-index: 1;
    left: 0;
}

.title-welcome-base .edu-head-base {
    display: flex;
    padding: 6rem 0;
    position: relative;
    width: 90%;
    max-width: 1280px;
    justify-content: center;
    z-index: 3;
    min-height: 100vh;
    align-items: center;
    margin: 0 auto;
}

.title-welcome-base .edu-head-base > div:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.title-welcome-base h3 {
    border-left: 4px solid rgb(204,198,212);
    margin: 0 auto;
    position: relative;
    color: #000000;
    font-size: calc(20px * 1.05);
    font-family: Arial, sans-serif;
    backdrop-filter: blur(5px);
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-width: 90%;
    letter-spacing: 0.01em;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    padding: 1.5rem 2rem;
}

.title-welcome-base .pro-study-base::before {
    height: 100%;
    z-index: 1;
    width: 100%;
    content: "";
    position: absolute;
    mix-blend-mode: color-burn;
    left: 0;
    top: 0;
    background: linear-gradient(
    135deg, 
    rgb(204,198,212,0.5) 0%,
    transparent 50%,
    rgb(167,161,179,0.5) 100%
  );
}

.title-welcome-base .pro-study-base > div {
    padding: 5rem 2rem;
    min-height: 50vh;
    z-index: 3;
    justify-content: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, 
    rgba(0,0,0,0.4) 0%, 
    rgba(0,0,0,0.7) 100%);
}

.title-welcome-base .pro-study-base p::after {
    content: "";
    width: 80px;
    background: rgb(167,161,179);
    bottom: 0;
    transform: translateX(-50%);
    height: 2px;
    left: 50%;
    position: absolute;
}

.title-welcome-base .title_style_header {
    text-align: center;
    color: #ffffff;
    animation: fadeUp 0.6s forwards 0.9s ease-out;
    font-weight: 700;
    letter-spacing: 0.03em;
    transform: translateY(15px);
    opacity: 0;
    font-size: 40px;
    position: relative;
    margin: 1.5rem 0 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.title-welcome-base .title_style_header::after {
    transform-origin: left;
    animation: scaleIn 0.5s forwards 1.2s ease-out;
    right: -100px;
    transform: translateY(-50%) scaleX(0);
    top: 50%;
}

.customer-support-base::before {
    top: 0;
    position: absolute;
    opacity: 0.05;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgb(204,198,212,0.5) 25%, 
        rgb(204,198,212,0.5) 30%, 
        transparent 30%,
        transparent 45%, 
        rgb(167,161,179,0.5) 45%, 
        rgb(167,161,179,0.5) 50%, 
        transparent 50%);
    height: 100%;
    content: '';
    z-index: -1;
    width: 100%;
    left: 0;
    background-size: 200px 200px;
}

.customer-support-base .contact-query-base h2 {
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
    color: rgb(204,198,212);
    font-size: 28px;
}

.customer-support-base .contact-query-base p {
    color: #000000;
    font-size: 17px;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 25px;
}

.customer-support-base .contact-query-base p:last-of-type svg {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 3px;
    left: 0;
    fill: none;
    stroke: rgb(204,198,212);
    stroke-width: 2;
}

.customer-support-base .talk-team-base::before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(135deg, transparent 0%, rgb(204,198,212,0.5) 100%);
    height: 100%;
    left: 0;
}

.customer-support-base .talk-team-base:hover {
    color: rgb(204,198,212);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.customer-support-base .talk-team-base:hover::before {
    opacity: 0.2;
}

.customer-support-base .talk-team-base:hover svg {
    stroke-width: 2;
    transform: scale(1.1);
}

.customer-support-base .talk-team-base svg path {
    transition: all 0.3s ease;
}


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


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



@media screen and (max-width: 992px) {.explore-now-base {
    padding: 120px 0;
}.explore-now-base .fast-study-base::before {
    left: -15%;
    width: 130%;
}.explore-now-base h3 {
    font-size: calc(34px * 0.9);
    margin: 50px 0;
}.explore-now-base .talk-team-base {
    margin-bottom: 50px;
    padding: 18px 45px;
    font-size: calc(14px * 0.95);
}
}



@media screen and (max-width: 576px) {.explore-now-base {
    padding: 80px 0;
}.explore-now-base .fast-study-base::before {
    transform: skewX(-5deg);
    left: -5%;
    width: 110%;
}.explore-now-base h3 {
    letter-spacing: 1px;
    margin: 35px 0;
    font-size: calc(34px * 0.7);
}.explore-now-base h3::before {
    top: -20px;
}.explore-now-base h3::after {
    bottom: -20px;
}.explore-now-base .talk-team-base {
    padding: 12px 35px;
    font-size: calc(14px * 0.85);
    letter-spacing: 1px;
    margin-bottom: 35px;
}}



@media (max-width: 992px) {.syllabus-ref-base {
    padding: 4rem 0 2rem;
}.syllabus-ref-base .container {
    gap: 3rem;
    flex-direction: column;
}.syllabus-ref-base .company_holder,
    .syllabus-ref-base .login-footer-base {
    min-width: 100%;
    flex: 1 1 100%;
}.syllabus-ref-base .nav-mainbar-base {
    min-width: 220px;
    flex: 1 1 calc(50% - 1.5rem);
}.syllabus-ref-base .company_holder,
    .syllabus-ref-base .nav-mainbar-base {
    transform: none;
}
}



@media (max-width: 576px) {.syllabus-ref-base {
    padding: 3rem 0 1rem;
}.syllabus-ref-base .nav-mainbar-base {
    min-width: 100%;
    flex: 1 1 100%;
}.syllabus-ref-base .nav-start-base {
    gap: 0.7rem;
}.syllabus-ref-base .nav-mainbar-base .nav-start-base a {
    padding: 0.6rem 0.8rem;
}.music-edu-base {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}.music-edu-base::before {
    display: none;
}
}



@media (min-width: 768px) {.training-results-base {
    padding: 150px 0 100px;
}.training-results-base .fast-study-base {
    flex-direction: row;
    padding: 40px;
    align-items: center;
    gap: 40px;
}.training-results-base .fast-study-base > div:first-child {
    flex: 0 0 45%;
}.training-results-base .img-text-base {
    height: 350px;
    margin-bottom: 0;
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 0% 95%);
}.training-results-base .content-card-base {
    padding: 0;
    flex: 1;
}.training-results-base ul {
    gap: 25px 20px;
    grid-template-columns: repeat(2, 1fr);
}.training-results-base h5 {
    margin-bottom: 60px;
    font-size: calc(24px * 1.2);
}.training-results-base h5::after {
    width: 100px;
}
}



@media (min-width: 768px) {.program-structure-base .career-classes-base {
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}.program-structure-base .img-text-base {
    height: 450px;
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
}.program-structure-base .content-card-base {
    transform: perspective(1000px) rotateY(5deg) translateZ(0);
}.program-structure-base .img-text-base:hover,
    .program-structure-base .content-card-base:hover {
    transform: perspective(1000px) rotateY(0) translateZ(20px);
}.program-structure-base h3 {
    font-size: 32px;
}
}



@media screen and (max-width: 1200px) {.our-story-base .diff-block-base:nth-child(1) {
    transform: translateX(-20px);
}.our-story-base .diff-block-base:nth-child(2) {
    transform: translateX(20px);
}.our-story-base .diff-block-base:nth-child(1):hover {
    transform: scale(1.03) translateY(-5px) translateX(-20px);
}.our-story-base .diff-block-base:nth-child(2):hover {
    transform: scale(1.03) translateY(-5px) translateX(20px);
}
}



@media screen and (max-width: 768px) {.our-story-base {
    padding: 80px 0;
}.our-story-base h2 {
    margin-bottom: 50px;
    font-size: calc(36px + 0.1rem);
}.our-story-base .pro-sessions-base::before {
    left: 30px;
}.our-story-base .diff-block-base {
    max-width: 500px;
    padding: 25px;
    margin-left: auto;
    width: 85%;
}.our-story-base .diff-block-base:nth-child(1),
    .our-story-base .diff-block-base:nth-child(2) {
    margin-left: 60px;
    border-right: none;
    align-self: flex-end;
    transform: translateX(0);
    border-left: 4px solid rgb(204,198,212);
}.our-story-base .diff-block-base:nth-child(2) {
    border-left: 4px solid rgb(167,161,179);
}.our-story-base .diff-block-base:nth-child(1):hover,
    .our-story-base .diff-block-base:nth-child(2):hover {
    transform: scale(1.03) translateY(-5px);
}.our-story-base .diff-block-base::before {
    right: auto;
    left: -45px;
}.our-story-base .diff-block-base::after {
    right: auto;
    left: -25px;
}
}



@media (max-width: 992px) {.secure-chamber-base {
    padding: 5rem 1.5rem;
}.secure-chamber-base .container {
    transform: perspective(800px) rotateY(0.3deg);
    padding: 2.5rem;
}.secure-chamber-base h1 {
    font-size: calc(40px - 0.2rem);
}.secure-chamber-base h2 {
    font-size: calc(30px - 0.1rem);
}
}



@media (max-width: 576px) {.secure-chamber-base {
    padding: 3rem 0.8rem;
}.secure-chamber-base .container {
    border-left-width: 1px;
    padding: 1.5rem 1rem;
}.secure-chamber-base h1 {
    font-size: calc(40px - 0.6rem);
    margin-bottom: 1.5rem;
    transform: none;
}.secure-chamber-base h1::after {
    height: 3px;
    width: 4rem;
}.secure-chamber-base h2 {
    padding-left: 0.7rem;
    font-size: calc(30px - 0.5rem);
}.secure-chamber-base h3, 
    .secure-chamber-base h4 {
    padding-left: 0.5rem;
}.secure-chamber-base li {
    padding-left: 1.2rem;
}.secure-chamber-base li:hover {
    padding-left: 1.4rem;
}.secure-chamber-base p:hover,
    .secure-chamber-base li:hover,
    .secure-chamber-base h2:hover {
    padding-left: 0.7rem;
    transform: none;
}.secure-chamber-base span {
    padding-left: 0.5rem;
}}



@media (max-width: 767px) {.teacher-profile-base {
    padding: 50px 20px;
}.teacher-profile-base .img-text-base {
    height: 250px;
}.teacher-profile-base .experience-data-base {
    padding: 30px 25px;
}.teacher-profile-base .name {
    font-size: calc(35px - 4px);
}.teacher-profile-base .experience-data-base > div:nth-child(2) {
    font-size: calc(19px - 1px);
}.teacher-profile-base .job-overview-base {
    font-size: calc(18px - 1px);
}}



@media (min-width: 992px) {.id-thankdiv-base .fast-study-base {
    gap: 5rem;
    padding: 5rem;
}.id-thankdiv-base h5 {
    font-size: calc(24px * 1.5);
}.id-thankdiv-base .fast-study-base > div:first-child {
    padding-left: 3rem;
    border-left-width: 5px;
}.id-thankdiv-base p {
    font-size: calc(17px * 1.1);
}.id-thankdiv-base .container {
    transform: perspective(1500px) rotateX(3deg);
}
}



@media (max-width: 767px) {.id-thankdiv-base {
    padding: 4rem 1.5rem;
}.id-thankdiv-base .fast-study-base {
    padding: 2.5rem 2rem;
}.id-thankdiv-base h5 {
    font-size: 24px;
}.id-thankdiv-base p {
    font-size: calc(17px * 0.95);
}
}



@media (hover: hover) {.id-thankdiv-base .fast-study-base:hover > div:first-child::before {
    animation-duration: 1.5s;
}
}


@media only screen and (max-width: 600px) {.cookie-warning-popup-base {
    bottom: 0;
    width: 100%;
    left: 0;
    border-radius: 0;
    transform: none;
}.data-accept-base {
    padding: 15px;
}.user-dialog-base svg {
    width: 50px;
    height: 50px;
}.cookie-warning-popup-base h5 {
    font-size: calc(18px - 2px);
}.cookie-warning-popup-base p {
    font-size: calc(16px - 2px);
}.data-approval-base {
    font-size: calc(19px - 2px);
    padding: 8px 16px;
    width: calc(100% - 10px);
}}



@media (max-width: 767px) {header .container {
    padding: 1.2rem 1rem;
}header .nav-mainbar-base {
    width: 100%;
    flex-direction: column;
}header .top-learn-base {
    width: 100%;
    margin: 3px 0;
    transform: none !important;
}header .top-learn-base a {
    border-radius: 10px;
    text-align: center;
    border-left: none;
    border-bottom: 3px solid transparent;
}header .top-learn-base a:hover {
    transform: translateY(-3px);
    border-bottom-color: rgb(204,198,212);
    border-left-color: transparent;
}header .top-learn-base a::before {
    top: auto;
    height: 5px;
    right: auto;
    transform: scaleX(0);
    left: 0;
    width: 100%;
    bottom: 0;
}header .top-learn-base a:hover::before {
    transform: scaleX(1);
}
}



@media (min-width: 992px) {.service-plan-base .fee-offers-base {
    flex-direction: row;
    gap: 50px;
    align-items: center;
}.service-plan-base .monthly-rate-base {
    text-align: left;
    flex: 0 0 30%;
    margin-bottom: 0;
}.service-plan-base .monthly-rate-base h2::after {
    left: 0;
    transform: none;
}.service-plan-base .rate-choice-base {
    flex: 0 0 70%;
    grid-template-columns: repeat(2, 1fr);
}.service-plan-base .pricing-levels-base {
    padding: 35px;
}
}



@media screen and (max-width: 1024px) {.contact-form-box-base .request-request-base {
    flex-direction: column;
    transform: none;
}.contact-form-box-base .img-text-base {
    min-height: 300px;
    flex: 0 0 100%;
}.contact-form-box-base .feedback-block-base {
    flex: 0 0 100%;
    padding: 3rem 2rem;
}
}



@media screen and (max-width: 480px) {.contact-form-box-base .request-request-base {
    border-radius: 0;
}.contact-form-box-base .img-text-base {
    min-height: 250px;
}.contact-form-box-base .feedback-block-base {
    padding: 2rem 1.5rem;
}}



@media (max-width: 992px) {.title-welcome-base .edu-head-base {
    padding: 4rem 0;
}.title-welcome-base h3 {
    font-size: calc(19px * 1.1);
    padding: 1.2rem 1.5rem;
}.title-welcome-base .title_style_header {
    font-size: calc(32px * 1.05);
}.title-welcome-base .title_style_header::before {
    left: -60px;
    width: 60px;
}.title-welcome-base .title_style_header::after {
    width: 60px;
    right: -60px;
}
}



@media (max-width: 576px) {.title-welcome-base {
    min-height: 80vh;
}.title-welcome-base .edu-head-base {
    min-height: 80vh;
    padding: 2rem 0;
}.title-welcome-base .edu-head-base > div > div:first-child {
    margin-bottom: 1.5rem;
}.title-welcome-base h3 {
    font-size: calc(14px * 1.1);
    padding: 0.8rem;
    border-left-width: 3px;
}.title-welcome-base .pro-study-base > div {
    min-height: 30vh;
    padding: 3rem 1rem;
}.title-welcome-base .pro-study-base p {
    font-size: calc(14px * 0.95);
    margin-bottom: 1rem;
}.title-welcome-base .pro-study-base p::after {
    height: 1px;
    width: 50px;
}.title-welcome-base .title_style_header {
    font-size: calc(32px * 0.85);
    margin-top: 0.8rem;
}}



@media screen and (max-width: 480px) {.customer-support-base {
    padding: 40px 0;
}.customer-support-base .contact-query-base {
    padding: 30px 20px;
}.customer-support-base .contact-query-base h2 {
    font-size: calc(28px * 0.8);
}.customer-support-base .msg-block-base {
    grid-template-columns: repeat(1, 1fr);
}.customer-support-base .talk-team-base {
    height: 100px;
}.customer-support-base .talk-team-base svg {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}
}


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



@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    }
    50% {
        border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
    }
    75% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}



@keyframes pulse {
    0%, 100% {
        opacity: 0.03;
    }
    50% {
        opacity: 0.08;
    }
}



@keyframes pulse {
    0% { opacity: 0.6; transform: translateY(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}



@keyframes float {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0); }
}

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



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



@keyframes signal-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 1;
    }
}



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



@keyframes floatCircle {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

