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

a {
    color: inherit;
    text-decoration: none;
}

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

.debate-club {
    flex: 0 0 auto;
}

.debate-club {
    background: linear-gradient(45deg, #000000 0%, rgb(178,158,202,0.5) 100%);
    font-family: Arial, sans-serif;
    padding: 6rem 0 2rem;
    color: #ffffff;
    position: relative;
}

.inner-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


.offer-grid {
    color: #ffffff;
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}

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

.offer-grid .learning-rates {
    position: relative;
}

.offer-grid .learning-rates::after {
    pointer-events: none;
    bottom: -80px;
    height: 250px;
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgb(178,158,202,0.5) 0%, transparent 70%);
    opacity: 0.15;
    right: -120px;
    width: 250px;
    border-radius: 50%;
}

.offer-grid h2::after {
    width: 60%;
    position: absolute;
    bottom: -8px;
    background: linear-gradient(90deg, rgb(211,195,225) 0%, rgb(178,158,202) 100%);
    left: 0;
    content: "";
    height: 3px;
}

.offer-grid .pricing-card {
    display: grid;
    gap: 30px;
    margin: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    list-style: none;
    padding: 0;
}

.offer-grid .learning-package {
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    color: #ffffff;
}

.offer-grid .fee-plans::before {
    z-index: 0;
    left: 0;
    position: absolute;
    content: "";
    top: 0;
    opacity: 0;
    height: 100%;
    background: linear-gradient(45deg, 
        rgb(211,195,225,0.5) 0%, 
        transparent 50%, 
        rgb(178,158,202,0.5) 100%);
    transition: opacity 0.4s ease;
    width: 100%;
}

.offer-grid .learning-package:hover .fee-plans::before {
    opacity: 0.15;
}

.offer-grid .study-fees h4 {
    position: relative;
    margin: 0 0 20px;
    font-size: calc(22px * 1.2);
    color: #ffffff;
    transition: color 0.3s ease;
    font-weight: 700;
}

.offer-grid .learning-package:hover .study-fees h4::after {
    height: 100%;
    opacity: 1;
}

.offer-grid .study-fees p {
    scrollbar-width: thin;
    font-size: 12px;
    overflow-y: auto;
    overflow-wrap: break-word;
    max-height: 200px;
    word-break: break-word;
    margin-bottom: 25px;
    scrollbar-color: rgb(211,195,225) rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    flex-grow: 1;
    line-height: 1.6;
}

.offer-grid .learning-package:hover .rate-plans {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.greeting-page {
    overflow: hidden;
    background-color: rgb(236,228,242);
    padding: 4rem 1rem;
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.greeting-page .study-smart {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.greeting-page .learn-main {
    border: 1px solid rgb(178,158,202,0.5);
    animation: fadeUp 0.8s 0.2s ease-out forwards;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.greeting-page .learn-main::before {
    background: linear-gradient(135deg, 
    rgb(211,195,225,0.5), 
    rgba(0, 0, 0, 0.5) 70%);
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    bottom: 0;
    top: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.greeting-page .learn-main p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: calc(15px + 0.2rem);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.greeting-page .learn-main:hover h3 {
    border-left-color: rgb(178,158,202);
    transform: translateX(5px);
}

.contact-panelwdJu {
    position: relative;
    padding: 100px 0;
}

.contact-panelwdJu::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-color: rgb(211,195,225,0.5);
    bottom: 0;
    z-index: 1;
    right: 0;
}

.contact-panelwdJu .request-card {
    padding: 60px 40px;
    background-color: rgb(236,228,242);
    transform-origin: left center;
    width: 40%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 3;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transform: rotateY(5deg);
}

.contact-panelwdJu .request-card h3::before {
    position: absolute;
    height: 100%;
    top: 0;
    width: 6px;
    background: linear-gradient(to bottom, rgb(211,195,225), rgb(178,158,202));
    border-radius: 10px;
    left: 0;
    content: "";
}

.contact-panelwdJu .request-card div:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateZ(20px);
}

.contact-panelwdJu .request-card div svg {
    height: 24px;
    width: 24px;
    margin-right: 15px;
}

.contact-panelwdJu .request-card div span {
    color: #000000;
    font-size: 17px;
}

.contact-panelwdJu .request-card div span a:hover {
    color: rgb(211,195,225);
}

.contact-panelwdJu .help-links:hover .query-links {
    transform: rotateY(0deg);
}

.contact-panelwdJu .query-links h3 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #ffffff;
}

.contact-panelwdJu form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-panelwdJu form input[type="text"]:focus,
.contact-panelwdJu form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-panelwdJu form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-panelwdJu .request-feedback {
    margin-bottom: 30px;
    position: relative;
}

.contact-panelwdJu .request-feedback label {
    font-size: 14px;
    cursor: pointer;
    padding-left: 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-panelwdJu .request-feedback input[type="checkbox"]:checked + label::before {
    border-color: #ffffff;
    background-color: #ffffff;
}

.contact-panelwdJu .request-feedback label a {
    text-decoration: underline;
    transition: all 0.3s ease;
    color: #ffffff;
}

.contact-panelwdJu .request-feedback label a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-panelwdJu form .reach-grid {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 16px;
    z-index: 1;
    color: rgb(211,195,225);
    align-self: flex-start;
    position: relative;
    padding: 18px 35px;
    cursor: pointer;
    border: none;
    overflow: hidden;
    background-color: #ffffff;
}

.contact-panelwdJu form .reach-grid:hover::before {
    transform: translateY(0);
}

.contact-panelwdJu .request-card div:nth-child(3) {
    animation: float 7s infinite ease-in-out;
}

.contact-panelwdJu .request-card div:nth-child(5) {
    animation: float 9s infinite ease-in-out;
}

.consent-edu {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 20px 30px;
    flex-wrap: wrap;
}

.cookie-popup-display h5 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    transition: color 0.3s ease-in-out;
}

.data-approve svg, .data-approve svg path {
    fill: rgb(211,195,225);
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease-in-out;
}

.cookie_button.edu-cookie {
    background: rgb(211,195,225);
}

.cookie_button.privacy-gate {
    background: rgb(178,158,202);
}

.track-ack:hover {
    box-shadow: rgb(211,195,225,0.5) 0px 6px 15px 0px;
    transform: scale(1.05);
}

.cookie-popup-display p a {
    font-weight: 600;
    color: rgb(211,195,225);
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}

.inner-container .track-ack {
    font-size: 19px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    border-radius: 10px;
    color: #ffffff;
    border: none;
    font-weight: 400;
    padding: 10px;
    background: rgb(211,195,225);
    margin-left: 30px;
}

#cookieMessagePanel:checked ~ .cookie-popup-display {
    visibility: hidden;
    opacity: 0;
}

.company-info::before {
    position: absolute;
    top: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(135deg, rgb(211,195,225,0.5), rgba(20, 30, 60, 0.85), rgba(40, 50, 80, 0.82));
    right: 0;
    backdrop-filter: blur(3px);
    bottom: 0;
    left: 0;
}

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

.company-info h2::before {
    animation: expandLine 1.5s forwards ease-out;
    transform-origin: left;
    bottom: -10px;
    left: 0;
    height: 3px;
    content: "";
    background: rgb(178,158,202);
    position: absolute;
    width: 40%;
}

.company-info .content-pad {
    padding: 30px 40px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid rgb(178,158,202);
    backdrop-filter: blur(8px);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-1deg);
}

.company-info .content-pad > div {
    position: relative;
}

.company-info .content-pad p {
    font-size: calc(24px * 1.1);
    position: relative;
    color: #ffffff;
    margin-bottom: 20px;
    transform: translateZ(0);
    display: inline-block;
    font-weight: 600;
}

.company-info .content-pad div div {
    font-size: 18px;
    margin-bottom: 0;
    position: relative;
    transition: all 0.5s ease;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    column-gap: 40px;
    column-count: 1;
    text-align: justify;
}

header::after {
    width: 100%;
    opacity: 0.1;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(0deg, transparent 95%, rgb(178,158,202,0.5) 100%),
        linear-gradient(90deg, transparent 95%, rgb(178,158,202,0.5) 100%);
    position: absolute;
    height: 100%;
    top: 0;
    content: "";
    left: 0;
    z-index: 1;
}

header .header-page {
    margin: 1rem 0 1.5rem;
    text-decoration: none;
    position: relative;
    align-items: center;
    z-index: 3;
    justify-content: center;
    display: flex;
}

header .header-page::after {
    background: rgb(178,158,202,0.5);
    filter: blur(20px);
    content: "";
    height: 70px;
    position: absolute;
    opacity: 0.3;
    width: 70px;
    border-radius: 50%;
    animation: pulse-opacity 4s ease infinite alternate;
    z-index: -2;
}

header .header-page svg {
    transition: all 0.4s ease;
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgb(211,195,225,0.5));
}

header .nav-main {
    padding: 1rem 0;
    display: flex;
    overflow-x: auto;
    position: relative;
    gap: 0.8rem;
    border-top: 1px solid rgb(211,195,225,0.5);
    scrollbar-width: none;
    width: 100vw;
    justify-content: center;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        #000000 100%);
    border-bottom: 1px solid rgb(211,195,225,0.5);
}

header .main-pagewrap::before {
    width: 100%;
    left: 0;
    border: 1px solid transparent;
    height: 100%;
    content: "";
    transform: translateZ(-10px);
    top: 0;
    transition: all 0.3s ease;
    border-radius: 10px;
    z-index: -1;
    position: absolute;
}

header .main-pagewrap::after {
    position: absolute;
    left: 50%;
    height: 2px;
    background: rgb(178,158,202);
    transition: all 0.3s ease;
    bottom: 0;
    content: "";
    width: 0%;
    transform: translateX(-50%);
}

header .main-pagewrap:hover::after {
    width: 80%;
}

.give-it-a-try {
    background: linear-gradient(135deg, rgb(236,228,242) 0%, rgb(178,158,202,0.5) 100%);
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}

.give-it-a-try .learn-growth {
    z-index: 10;
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
}

.give-it-a-try .container p {
    line-height: 1.4;
    background: #ffffff;
    color: #000000;
    z-index: 5;
    position: relative;
    margin: 0 auto 80px;
    font-size: 35px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        15px 15px 0 rgb(211,195,225,0.5);
    font-weight: 700;
    max-width: 800px;
    padding: 40px;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        85% 100%, 
        0% 100%
    );
    text-align: center;
}

.give-it-a-try .container p::before {
    position: absolute;
    right: -5px;
    width: 40px;
    content: '';
    background: rgb(211,195,225);
    z-index: -1;
    height: 40px;
    top: -5px;
}

.give-it-a-try .reach-grid:hover::before {
    left: 8px;
    top: 8px;
}

.give-it-a-try::after {
    right: -200px;
    z-index: 1;
    content: '';
    width: 400px;
    opacity: 0.1;
    height: 400px;
    top: -200px;
    transform: rotate(45deg);
    background: rgb(211,195,225,0.5);
    border-radius: 0 50% 50% 50%;
    position: absolute;
}

.confidential-hearth {
    color: #000000;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background-color: rgb(236,228,242);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    padding: 40px;
}

.confidential-hearth h2 {
    color: rgb(178,158,202);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 28px;
}

.confidential-hearth h3, .confidential-hearth h4, .confidential-hearth h5, .confidential-hearth h6 {
    color: #000000;
    font-weight: 400;
    margin-bottom: 10px;
}

.confidential-hearth li {
    position: relative;
    padding-left: 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

.confidential-hearth p, .confidential-hearth span {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 12px;
}

.confidential-hearth p {
    text-align: justify;
}


.confidential-hearth a {
    border-bottom: 1px solid rgb(211,195,225,0.5);
    transition: all 0.3s ease;
    color: rgb(211,195,225);
    text-decoration: none;
}

.confidential-hearth button:hover {
    background-color: rgb(178,158,202);
}

.course-program-description {
    padding: 8rem 0;
    overflow: hidden;
    background: rgb(236,228,242);
    position: relative;
}

.course-program-description::before {
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 0;
    background: linear-gradient(135deg, rgb(236,228,242) 0%, rgb(211,195,225,0.5) 100%);
    content: "";
    height: 100%;
    opacity: 0.6;
}

.course-program-description .container {
    z-index: 3;
    position: relative;
}

.course-program-description .learn-growth {
    position: relative;
    grid-template-columns: repeat(12, 1fr);
    display: grid;
    gap: 1rem;
    grid-template-rows: repeat(8, minmax(50px, auto));
}

.course-program-description .knowledge-flow {
    grid-row: 2 / 8;
    background: #ffffff;
    z-index: 5;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    grid-column: 1 / 9;
    position: relative;
}

.course-program-description .img-shadow::before {
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, rgb(211,195,225,0.5) 0%, transparent 70%);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    content: "";
}

.course-program-description .site-start {
    justify-content: center;
    background: #ffffff;
    z-index: 10;
    right: 3rem;
    height: 5rem;
    display: flex;
    transition: transform 0.3s ease-out;
    align-items: center;
    border-radius: 50%;
    transform: rotate(-5deg);
    position: absolute;
    width: 5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    top: -2rem;
}

.course-program-description .site-start svg path {
    fill: rgb(211,195,225);
}

.course-program-description p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
}

.course-program-description .learn-growth::before {
    position: absolute;
    left: -6rem;
    content: "";
    height: 12rem;
    filter: blur(100px);
    opacity: 0.6;
    animation: moveCircle 20s infinite alternate;
    background: rgb(211,195,225,0.5);
    top: -6rem;
    border-radius: 50%;
    width: 12rem;
    z-index: 1;
}

.course-program-description .knowledge-flow::before {
    right: 0;
    height: 5px;
    width: 100px;
    background: linear-gradient(90deg, rgb(211,195,225) 0%, rgb(178,158,202) 100%);
    top: 0;
    position: absolute;
    border-radius: 0 10px 0 10px;
    content: "";
}

.debate-club::before {
    opacity: 0.15;
    content: '';
    width: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(211,195,225,0.5) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgb(178,158,202,0.5) 0%, transparent 30%);
    height: 100%;
}

.debate-club .container {
    z-index: 3;
    position: relative;
}

.debate-club .edu-global {
    flex-direction: column;
    display: flex;
    position: relative;
}

.debate-club .start-chat::before {
    height: 100%;
    position: absolute;
    content: '';
    top: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, transparent 20%, rgb(211,195,225,0.5) 140%);
    width: 100%;
    z-index: -1;
    opacity: 0.08;
    left: 0;
}

.debate-club .info_item {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 300px;
    min-width: 200px;
    flex: 1;
    position: relative;
}

.debate-club .info_item p,
.debate-club .info_item a {
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    font-size: 15px;
    color: #000000;
    text-decoration: none;
    gap: 0.875rem;
}

.debate-club .info_item svg {
    height: 22px;
    width: 22px;
    transition: transform 0.3s ease;
    fill: rgb(211,195,225);
}

.debate-club .site-start {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.debate-club .site-start:hover svg {
    transform: scale(1.03);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgb(211,195,225,0.5));
}

.debate-club .workshop-cta {
    opacity: 0.8;
    font-size: calc(15px + 1px);
    line-height: 1.6;
}

.debate-club .nav-main::before {
    width: 1px;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgb(178,158,202,0.5) 30%, rgb(178,158,202,0.5) 70%, transparent);
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
}

.debate-club .nav-main h5 {
    font-size: 24px;
    padding-bottom: 0.875rem;
    margin-bottom: 1.75rem;
    font-weight: 600;
    position: relative;
}

.debate-club .site-study {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    display: grid;
}

.debate-club .site-study a {
    font-size: 15px;
    color: #ffffff;
    position: relative;
    transform-origin: left;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.25rem 0;
    opacity: 0.85;
}

.debate-club .site-study a:hover {
    color: rgb(211,195,225);
    opacity: 1;
    transform: translateX(8px);
}

.debate-club .subscribe_holder::before {
    background: 
        linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
        radial-gradient(circle at top right, rgb(211,195,225,0.5), transparent 70%);
    left: 0;
    top: 0;
    opacity: 0.2;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
}



.debate-club .subscribe_holder h5 {
    padding-bottom: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 24px;
    position: relative;
}

.debate-club .subscribe_holder h5::after {
    background: rgb(211,195,225);
    content: '';
    width: 40px;
    position: absolute;
    bottom: 0;
    height: 2px;
    left: 0;
}

.debate-club .input_holder::before {
    position: absolute;
    background: 
        radial-gradient(circle at bottom right, rgb(211,195,225,0.5) 0%, transparent 70%),
        radial-gradient(circle at top left, rgb(178,158,202,0.5) 0%, transparent 70%);
    height: calc(100% + 20px);
    left: -10px;
    width: calc(100% + 20px);
    border-radius: calc(10px + 10px);
    animation: subtleRotate 15s linear infinite;
    top: -10px;
    opacity: 0.1;
    z-index: -1;
    content: '';
}

.debate-club .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.debate-club .updates-box {
    padding: 1.125rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    background-color: rgb(211,195,225);
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    cursor: pointer;
}

.debate-club .updates-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.debate-club .updates-box:hover::before {
    left: 100%;
}

.debate-club .updates-box:hover::after {
    opacity: 1;
}

.debate-club .zoom-meet {
    position: relative;
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
}

.debate-club .sustain-cta {
    font-size: 15px;
    opacity: 0.7;
}

.client-experience {
    perspective: 1000px;
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(236,228,242) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.client-experience::after {
    height: 100%;
    transform: translateZ(-10px);
    right: -50%;
    pointer-events: none;
    content: "";
    opacity: 0.2;
    top: -50%;
    width: 100%;
    position: absolute;
    background: radial-gradient(circle, rgb(178,158,202,0.5) 0%, transparent 70%);
}

.client-experience h2::after {
    height: 4px;
    bottom: -1rem;
    content: "";
    transform: translateX(-50%) skewX(-15deg);
    position: absolute;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 80px;
    background: linear-gradient(90deg, rgb(211,195,225), rgb(178,158,202));
    left: 50%;
}

.client-experience .testimonial-highlights {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    padding: 2rem;
    backface-visibility: hidden;
    display: flex;
    transform: translateZ(0);
    background: #ffffff;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.05);
}

.client-experience .testimonial-highlights:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.12), 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-10px) translateZ(20px) rotateX(2deg);
}

.client-experience .testimonial-highlights h3::after {
    height: 2px;
    content: "";
    position: absolute;
    width: 40px;
    left: 0;
    background: rgb(211,195,225,0.5);
    bottom: 0;
}

.client-experience .testimonial-highlights p.description {
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    color: #000000;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.client-experience .testimonial-highlights div {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translateZ(5px);
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.client-experience .testimonial-highlights div img {
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
}

.client-experience .testimonial-highlights:nth-child(even) {
    transform: translateZ(5px) rotateZ(0.5deg);
}

.client-experience .testimonial-highlights:nth-child(even):hover {
    transform: translateY(-10px) translateZ(25px) rotateX(2deg) rotateZ(0.2deg);
}

.appDiv {
    position: relative;
    background: linear-gradient(135deg, rgb(236,228,242) 0%, rgb(178,158,202,0.5) 100%);
    overflow: hidden;
    padding: 4rem 0;
}

.appDiv::after {
    z-index: 0;
    bottom: -5rem;
    right: -5rem;
    position: absolute;
    opacity: 0.15;
    content: "";
    width: 15rem;
    height: 15rem;
    transform: rotate(-15deg);
    background: linear-gradient(225deg, rgb(178,158,202) 0%, transparent 70%);
}

.appDiv .learn-growth {
    animation: slide-in 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
    display: flex;
    position: relative;
    transform: translateX(-20px);
}

.appDiv .learn-growth > div:last-child {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 
                0 1px 4px rgba(0, 0, 0, 0.1), 
                0 20px 40px -20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    animation: fade-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(15px);
}

.appDiv h5 {
    transition: transform 0.4s ease;
    font-size: 21px;
    color: #000000;
    margin: 0;
    transform: translateY(0);
    font-weight: 700;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.appDiv a {
    display: block;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.appDiv a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(211,195,225,0.5);
}

.education-experience::before {
    width: 25rem;
    z-index: 1;
    content: "";
    top: -10%;
    position: absolute;
    opacity: 0.1;
    transform: rotate(-15deg);
    height: 25rem;
    right: -5%;
    background: linear-gradient(120deg, rgb(211,195,225,0.5) 10%, rgb(178,158,202,0.5) 90%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

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

.education-experience .testimonial-highlights {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 5px solid rgb(211,195,225);
    background: #ffffff;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    padding: 3rem;
    display: grid;
    position: relative;
    transform: perspective(1000px) rotateY(1deg) translateZ(0);
}

.education-experience .testimonial-highlights:hover .img-shadow {
    transform: rotate(0deg) scale(1.05);
}

.education-experience .name {
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 0.5rem;
    color: rgb(211,195,225);
}

.education-experience .testimonial-highlights:hover .name::after {
    width: 90%;
}

.education-experience .testimonial-highlights > div:nth-child(2) {
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.education-experience .testimonial-highlights > div:nth-child(2) > div {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: calc(12px - 0.1rem);
    color: rgb(178,158,202);
    font-weight: 600;
}

.offer-grid .study-fees p::-webkit-scrollbar {
    width: 5px;
}

.offer-grid .study-fees p::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
}

.offer-grid .study-fees p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(211,195,225);
}

header .nav-main::-webkit-scrollbar {
    display: none;
}



@media (max-width: 992px) {.offer-grid {
    padding: 80px 0;
}.offer-grid .pricing-card {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.offer-grid .study-fees {
    padding: 25px 20px;
}.offer-grid .study-fees p {
    font-size: calc(12px * 0.95);
    max-height: 180px;
}.offer-grid .rate-plans {
    font-size: calc(22px * 1.2);
}
}



@media (max-width: 576px) {.offer-grid {
    padding: 60px 0;
}.offer-grid .pricing-card {
    grid-template-columns: 1fr;
}.offer-grid h2 {
    font-size: calc(35px * 0.8);
    text-align: center;
    display: block;
}.offer-grid h2::after {
    left: 20%;
    width: 60%;
}.offer-grid .cost-breakdown {
    text-align: center;
    margin-bottom: 30px;
}.offer-grid .study-fees h4 {
    font-size: calc(22px * 1.1);
}.offer-grid .study-fees p {
    max-height: 150px;
}.offer-grid .rate-plans {
    font-size: calc(22px * 1.1);
}}



@media (max-width: 480px) {.greeting-page {
    padding: 1.5rem 1rem;
}.greeting-page .study-smart {
    font-size: calc(48px - 1.5rem);
}.greeting-page .learn-main > div {
    padding: 1.5rem 1rem;
}.greeting-page .learn-main h3 {
    font-size: calc(20px - 0.4rem);
    padding-left: 15px;
}}



@media screen and (max-width: 992px) {.contact-panelwdJu .container {
    width: 90%;
}.contact-panelwdJu .help-links,
    .contact-panelwdJu .request-card,
    .contact-panelwdJu .query-links {
    transform: none;
}.contact-panelwdJu .request-card,
    .contact-panelwdJu .query-links {
    width: 100%;
}.contact-panelwdJu .request-card {
    padding: 40px 30px;
}.contact-panelwdJu .query-links {
    padding: 40px 30px;
}
}


@media only screen and (max-width: 1200px) {.cookie-popup-display {
    padding: 20px;
}
}


@media only screen and (max-width: 800px) {.data-approve {
    display: none;
}.consent-edu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.cookie-popup-display h5 {
    text-align: center;
}.cookie-popup-display p {
    text-align: center;
}.cookie-data {
    text-align: center;
    margin-bottom: 20px;
}.track-ack {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    max-width: 300px;
}}



@media (max-width: 767px) {.company-info {
    padding: 90px 0 60px;
}.company-info .container {
    padding: 0 15px;
}.company-info h2 {
    margin-bottom: 30px;
    font-size: calc(31px * 0.9);
}.company-info .content-pad {
    padding: 25px 20px;
    transform: perspective(800px) rotateY(-1deg);
}.company-info .content-pad p {
    font-size: 24px;
}.company-info .content-pad div div {
    line-height: 1.6;
    font-size: calc(18px * 0.95);
}
}



@media (max-width: 991px) {header .header-page {
    margin: 0.8rem 0 1.2rem;
}header .header-page svg {
    height: 40px;
}header .main-pagewrap {
    padding: 0.5rem 1.2rem;
    font-size: calc(18px - 1px);
}
}



@media (max-width: 991px) {.give-it-a-try {
    padding: 100px 0;
}.give-it-a-try .container p {
    font-size: calc(22px * 1.2);
    padding: 35px;
    box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.1),
            10px 10px 0 rgb(211,195,225,0.5);
    margin-bottom: 70px;
}.give-it-a-try .reach-grid {
    padding: 18px 40px;
}
}



@media (max-width: 767px) {.give-it-a-try {
    padding: 80px 0;
}.give-it-a-try .container p {
    font-size: 22px;
    margin-bottom: 60px;
    padding: 30px;
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 90%, 
            90% 100%, 
            0% 100%
        );
}.give-it-a-try .reach-grid {
    padding: 15px 35px;
    transform: rotate(-1deg);
}.give-it-a-try .container p::before {
    height: 30px;
    width: 30px;
}
}


@media only screen and (max-width: 800px) {.confidential-hearth {
    padding: 20px;
    border-radius: 10px;
}.confidential-hearth h1 {
    font-size: calc(19px - 10px);
}.confidential-hearth h2 {
    font-size: calc(19px - 8px);
}.confidential-hearth p, .confidential-hearth span {
    font-size: calc(12px - 2px);
}}



@media (max-width: 1200px) {.course-program-description {
    padding: 7rem 0;
}.course-program-description .learn-growth {
    gap: 0.75rem;
}.course-program-description .knowledge-flow {
    grid-column: 1 / 8;
    padding: 2.5rem;
}.course-program-description .img-shadow {
    grid-column: 6 / 13;
}.course-program-description .site-start {
    right: 2rem;
}
}



@media (max-width: 768px) {.course-program-description {
    padding: 5rem 0;
}.course-program-description .knowledge-flow {
    padding: 2rem;
}.course-program-description .img-shadow {
    height: 300px;
}.course-program-description .site-start {
    height: 4.5rem;
    right: 2rem;
    width: 4.5rem;
    bottom: -1.5rem;
}.course-program-description .site-start svg {
    height: 2.5rem;
    width: 2.5rem;
}.course-program-description h3 {
    margin-bottom: 1.25rem;
    font-size: calc(35px * 0.8);
}.course-program-description p {
    font-size: calc(16px * 0.95);
    line-height: 1.7;
}.course-program-description .knowledge-flow::before {
    width: 70px;
}.course-program-description .knowledge-flow::after {
    height: 70px;
}
}



@media (max-width: 1200px) {.debate-club .text_main_holder {
    gap: 3rem;
    grid-template-columns: 1fr 1.5fr;
}.debate-club .subscribe_holder {
    margin-top: 2rem;
    grid-column: 1 / -1;
}.debate-club .nav-main::after {
    display: none;
}
}



@media (max-width: 991px) {.debate-club {
    padding: 5rem 0 2rem;
}.debate-club .start-chat {
    flex-wrap: wrap;
    justify-content: center;
}.debate-club .info_item {
    width: calc(50% - 2rem);
    max-width: none;
    flex: 0 0 auto;
}.debate-club .info_item:not(:last-child)::after {
    display: none;
}.debate-club .text_main_holder {
    gap: 3rem;
    grid-template-columns: 1fr;
}.debate-club .nav-main::before, 
    .debate-club .nav-main::after {
    display: none;
}.debate-club .site-start {
    text-align: center;
    align-items: center;
}.debate-club .nav-main h5, 
    .debate-club .subscribe_holder h5 {
    text-align: center;
}.debate-club .nav-main h5::after, 
    .debate-club .subscribe_holder h5::after {
    transform: translateX(-50%);
    left: 50%;
}.debate-club .site-study {
    grid-template-columns: repeat(3, 1fr);
}.debate-club .input_holder {
    margin: 0 auto;
    max-width: 400px;
}
}



@media (min-width: 992px) {.client-experience .rating-spot {
    grid-template-columns: repeat(3, 1fr);
}.client-experience h2 {
    font-size: calc(28px * 1.2);
    margin-bottom: 4rem;
}.client-experience .testimonial-highlights {
    padding: 2.5rem;
}
}



@media (min-width: 768px) and (max-width: 991px) {.client-experience .rating-spot {
    grid-template-columns: repeat(2, 1fr);
}.client-experience {
    padding: 5rem 0;
}.client-experience h2 {
    margin-bottom: 3rem;
}
}



@media (max-width: 767px) {.client-experience {
    padding: 4rem 0;
}.client-experience .rating-spot {
    grid-template-columns: 1fr;
    gap: 2rem;
}.client-experience h2 {
    font-size: calc(28px * 1);
    margin-bottom: 2.5rem;
}.client-experience .testimonial-highlights {
    padding: 1.5rem;
}.client-experience .testimonial-highlights:hover {
    transform: translateY(-5px) translateZ(10px);
}.client-experience .testimonial-highlights:nth-child(even):hover,
  .client-experience .testimonial-highlights:nth-child(odd):hover {
    transform: translateY(-5px) translateZ(15px);
}.client-experience .testimonial-highlights h3 {
    font-size: 19px;
}
}



@media (min-width: 992px) {.appDiv {
    padding: 8rem 0;
}.appDiv .container {
    padding: 0 2rem;
}.appDiv .learn-growth {
    gap: 4rem;
}.appDiv .learn-growth > div:first-child {
    padding-left: 2rem;
}.appDiv .learn-growth > div:first-child::before {
    width: 0.7rem;
    left: 0;
}.appDiv h5 {
    padding-left: 2rem;
    font-size: calc(21px * 1.4);
}.appDiv .learn-growth > div:last-child {
    margin-left: 6rem;
    padding: 4rem;
    max-width: 80%;
}.appDiv p {
    line-height: 1.9;
    font-size: calc(18px * 1.1);
}
}



@media (min-width: 768px) {.education-experience .testimonial-highlights {
    grid-template-rows: auto 1fr;
    grid-template-columns: 220px 1fr;
}.education-experience .testimonial-highlights > div:first-child {
    grid-row: span 2;
}.education-experience .img-shadow {
    width: 200px;
    height: 200px;
}.education-experience .work-items {
    font-size: calc(12px + 0.05rem);
}
}



@media (max-width: 767px) {.education-experience {
    padding: 3rem 0;
}.education-experience .testimonial-highlights {
    padding: 2rem;
}.education-experience .img-shadow {
    width: 150px;
    height: 150px;
}.education-experience .name {
    font-size: calc(19px - 0.1rem);
}.education-experience .work-items {
    line-height: 1.6;
    font-size: calc(12px - 0.1rem);
}
}



@keyframes slideInLeft {
  from {
    transform: translateX(-5%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



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



@keyframes expandLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}



@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 40%;
    }
}



@keyframes expandWiderLine {
    0% {
        width: 0;
    }
    100% {
        width: 80%;
    }
}



@keyframes glow {
    0%, 100% {
        opacity: 0.15;
        transform: rotate(-15deg) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: rotate(-15deg) scale(1.05);
    }
}



@keyframes pulse-opacity {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}



@keyframes moveCircle {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(-20px, -20px);
    }
}

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



@keyframes fade-up {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

