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

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

.verify-cta {
    flex: 0 0 auto;
}

.verify-cta {
    z-index: 1;
    position: relative;
    padding: 5rem 0 3rem;
}

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

.program-overview::before {
    z-index: 1;
    height: 25vw;
    width: 25vw;
    animation: float 15s infinite ease-in-out;
    position: absolute;
    right: -5%;
    top: -10%;
    content: "";
    background: radial-gradient(circle at center, rgb(198,154,165,0.5) 0%, transparent 70%);
}

.program-overview h2::after {
    bottom: -1rem;
    transition: transform 0.5s ease;
    height: 4px;
    left: 50%;
    content: "";
    width: 80px;
    transform: translateX(-50%) scaleX(0.8);
    background: linear-gradient(90deg, rgb(198,154,165), rgb(179,101,140));
    position: absolute;
}

.program-overview .img-horizontal::before {
    left: 0;
    width: 100%;
    top: 0;
    background: linear-gradient(
        to bottom right,
        transparent 0%,
        rgba(rgb(198,154,165), 0.2) 100%
    );
    z-index: 2;
    position: absolute;
    content: "";
    height: 100%;
}

.program-overview:hover .img-horizontal {
    transform: translateY(-10px) rotate(1deg);
}

.program-overview:hover .phrase-holder {
    transform: translateZ(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.program-overview .description {
    line-height: 1.75;
    font-size: 15px;
    opacity: 0;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s forwards;
    color: #000000;
    transform: translateY(20px);
    animation-delay: 0.2s;
}

.user-feedback::before {
    background: rgb(198,154,165,0.5);
    position: absolute;
    width: 250px;
    right: -50px;
    height: 250px;
    content: "";
    transform: rotate(-15deg) skew(15deg);
    top: -50px;
    z-index: 1;
}

.user-feedback h2 {
    text-align: center;
    font-weight: 700;
    transform: perspective(1000px) translateZ(0px);
    transition: transform 0.5s ease-out;
    color: #000000;
    font-size: 36px;
    position: relative;
    margin-bottom: 60px;
}

.user-feedback .student-votes {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 30px;
    border-left: 3px solid transparent;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.user-feedback .student-votes div {
    z-index: 1;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.user-feedback .student-votes h4 {
    color: #000000;
    margin: 0;
    font-weight: 600;
    position: relative;
    font-size: 21px;
}

.user-feedback .student-votes:hover h4::after {
    width: 100%;
}

.user-feedback .student-votes:nth-child(odd) {
    transform: perspective(800px) rotateY(-2deg);
}

.user-feedback .student-votes:nth-child(odd):hover {
    transform: perspective(800px) rotateY(0) translateY(-10px);
}

.user-feedback a::before {
    width: 100%;
    left: -100%;
    position: absolute;
    transition: left 0.7s ease;
    content: "";
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
}

.data-overview::before {
    opacity: 0.6;
    background: 
        radial-gradient(circle at 10% 90%, rgb(198,154,165,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgb(179,101,140,0.5) 0%, transparent 40%);
    left: 0;
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.data-overview .edge-statistics {
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 33px;
    color: #000000;
}

.data-overview .class-statistics {
    line-height: 1.7;
    color: #000000;
    font-size: 14px;
}

.data-overview .statistics-advance {
    perspective: 1000px;
    height: 330px;
    position: relative;
    z-index: 3;
    width: 25%;
    background-color: transparent;
    transform-style: preserve-3d;
}

.data-overview .statistics-advance h4 {
    transition: all 0.3s ease;
    top: 50%;
    position: absolute;
    z-index: 3;
    font-weight: 700;
    transform: translate(-50%, -50%);
    left: 50%;
    color: #000000;
    font-size: 4rem;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.data-overview svg {
    transform: translateX(-50%);
    top: 40px;
    left: 50%;
    z-index: 2;
    position: absolute;
    height: 40px;
    width: 40px;
    opacity: 0.7;
}

.mentorship-profile .container {
    padding: 0 15px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.mentorship-profile .student-votes:hover {
    transform: translateY(-10px);
}

.mentorship-profile .student-votes::before {
    z-index: -1;
    background-color: rgb(179,101,140);
    content: "";
    top: -15px;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    position: absolute;
    left: 50px;
}

.mentorship-profile .img-horizontal {
    align-self: center;
    border-radius: 50%;
    height: 120px;
    border: 4px solid #ffffff;
    transition: transform 0.3s ease;
    position: relative;
    width: 120px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.mentorship-profile .name {
    order: 1;
    color: #000000;
    position: relative;
    display: block;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    margin: 5px 0;
    padding-bottom: 10px;
}

.mentorship-profile span:not(.name) {
    margin-bottom: 15px;
    font-size: calc(12px * 0.9);
    text-align: center;
    text-transform: uppercase;
    order: 2;
    letter-spacing: 1px;
    color: rgb(179,101,140);
    font-weight: 600;
}

.pricing-plan-card .container {
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    padding: 0 2rem;
}

.pricing-plan-card .value-deals {
    flex-direction: column;
    display: flex;
}

.pricing-plan-card .monthly-plan {
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    order: 1;
}

.pricing-plan-card .pay-plans {
    color: #000000;
    font-size: 18px;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
}

.pricing-plan-card .trial-offers {
    overflow: hidden;
    text-decoration: none;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: #000000;
    background: #ffffff;
    display: block;
}

.pricing-plan-card .learn-deals {
    display: flex;
    flex: 1;
    position: relative;
    padding: 2rem 1.75rem;
    flex-direction: column;
}

.pricing-plan-card .learn-deals .learning-package::after {
    width: 40px;
    height: 2px;
    bottom: -0.75rem;
    background: rgb(198,154,165,0.5);
    content: "";
    left: 0;
    position: absolute;
}

.pricing-plan-card .img-horizontal::after {
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    content: "";
}

.cookieUsagePromptPanel {
    bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px 0px;
    position: fixed;
    z-index: 90;
    background: rgb(179,101,140);
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
    border-top: 2px solid rgb(198,154,165);
    width: 100%;
}

.cookieUsagePromptPanel p {
    color: #ffffff;
    font-size: 12px;
    max-width: 500px;
}

.cookie-comply:hover svg {
    transform: rotate(10deg);
}

.cookie_button.data-approval {
    background: rgb(198,154,165);
}

.cookie_button.digital-consent {
    background: rgb(179,101,140);
}

.cookieUsagePromptPanel p a {
    color: rgb(198,154,165);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-weight: 600;
}

.wrapper-capsule .cookie-preference {
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-weight: 400;
    margin-left: 30px;
    color: #ffffff;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    padding: 10px;
    background: rgb(198,154,165);
}

header .main-head {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    display: flex;
}

header .main-base::after {
    left: 50%;
    bottom: 0;
    opacity: 0.6;
    transform: translateX(-50%);
    background: #ffffff;
    height: 2px;
    transition: width 0.3s ease, opacity 0.3s ease;
    content: '';
    width: 50%;
    position: absolute;
}

header .head-class {
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-weight: 400;
    padding: 0.7rem 1.2rem;
    position: relative;
    overflow: hidden;
    font-size: 12px;
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

header .head-class:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sign-up-for-updates::before {
    width: 100%;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.03) 15px,
        rgba(255, 255, 255, 0.03) 30px
    );
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    z-index: -1;
}

.sign-up-for-updates h3 {
    margin: 0;
    transform: translateY(0);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    animation: fadeSlideUp 0.8s ease-out;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    max-width: 90%;
    letter-spacing: 0.02em;
    opacity: 1;
    font-family: Arial, sans-serif;
    text-align: center;
    line-height: 1.4;
}

.sign-up-for-updates .input_holder div:focus-within::before {
    width: 100%;
}

.sign-up-for-updates input[type="email"] {
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: #ffffff;
    outline: none;
}

.sign-up-for-updates .sub-support:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    background: rgb(198,154,165);
    transform: translateY(-3px) scale(1.02);
}

.sign-up-for-updates .sub-support:hover::before {
    left: 100%;
}

.sign-up-for-updates .sub-support:active {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(1px) scale(0.98);
}

.training-structure::after {
    position: absolute;
    z-index: -1;
    opacity: 0.05;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -80px;
    height: 300px;
    background: rgb(179,101,140);
    width: 300px;
    left: -80px;
    animation: morph 15s infinite alternate ease-in-out;
    content: "";
}

.training-structure .knowledge-space > div:hover {
    transform: translateX(5px) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.08),
        0 10px 20px rgba(0,0,0,0.05),
        0 1px 0 rgba(255,255,255,0.9) inset;
}

.training-structure .knowledge-space > div:hover::before {
    opacity: 0.3;
}

.training-structure h3 {
    margin-bottom: 2rem;
    font-size: calc(34px * 0.8);
    font-weight: 700;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    color: rgb(198,154,165);
    font-family: Arial, sans-serif;
}

.training-structure p {
    transform: translateY(0);
    line-height: 1.7;
    font-family: Arial, sans-serif;
    margin: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    color: #000000;
    font-size: 12px;
    position: relative;
}

.verify-cta::before {
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgb(179,101,140) 50%, 
                transparent 100%);
    width: 100%;
    content: "";
    top: 0;
    animation: glowPulse 3s ease-in-out infinite alternate;
    position: absolute;
    height: 2px;
    left: 0;
}

.verify-cta .company_holder {
    border-left: 3px solid rgb(198,154,165);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 22px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    position: relative;
}

.verify-cta .lesson-cta {
    position: relative;
    line-height: 1.7;
    max-width: 100%;
    padding-left: 1rem;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

.verify-cta .template-cta {
    position: relative;
}

.verify-cta .top-head {
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    border-radius: 22px;
    backdrop-filter: blur(5px);
    padding: 2rem;
}

.verify-cta .top-head:hover::after {
    border-color: transparent rgb(179,101,140) transparent transparent;
    border-width: 0 35px 35px 0;
}

.verify-cta .top-head:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transform: translateZ(15px) scale(1.03);
}

.verify-cta .top-head h5::after {
    height: 3px;
    bottom: -8px;
    position: absolute;
    left: 0;
    background: rgb(198,154,165);
    transition: width 0.4s ease-in-out;
    width: 30%;
    content: "";
}

.verify-cta .top-head a::before {
    transition: all 0.3s ease;
    content: "→";
    transform: translateZ(5px);
    position: absolute;
    opacity: 0;
    left: -20px;
}

.workshop-cta::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, 
                transparent 0%, 
                rgb(198,154,165) 30%, 
                #ffffff 50%, 
                rgb(179,101,140) 70%, 
                transparent 100%);
    height: 1px;
}

.verify-cta .company_holder:hover::before,
.verify-cta .top-head:hover::before {
    opacity: 0.5;
}

.verify-cta .company_holder:hover::after {
    width: 40px;
    transform: rotate(45deg);
    height: 40px;
}



.verify-cta .company_holder .lesson-cta::after {
    position: absolute;
    transition: width 0.4s ease;
    background: linear-gradient(to right, rgb(198,154,165), transparent);
    content: "";
    left: 1rem;
    height: 3px;
    bottom: -10px;
    width: 70px;
}

.verify-cta .top-head:nth-child(2)::before {
    background: radial-gradient(circle, rgb(179,101,140,0.5) 0%, transparent 70%);
}

.verify-cta .head-guide a:hover::after {
    width: 100%;
}

.landing-page {
    display: flex;
    background: linear-gradient(135deg, rgb(198,154,165,0.5), rgb(179,101,140), rgba(0, 0, 0, 0.5));
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    min-height: 100vh;
    overflow: hidden;
}

.landing-page .learn-entry {
    width: 100%;
    grid-template-columns: 1fr;
    max-width: 1200px;
    gap: 3rem;
    transform: translateY(0);
    opacity: 1;
    display: grid;
    z-index: 2;
    position: relative;
    animation: pageEntrance 1.2s ease-out forwards;
}

.landing-page h3 {
    animation: textReveal 0.8s 0.3s ease-out forwards;
    margin: 0;
    transform: translateY(20px);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
    line-height: 1.5;
    opacity: 0;
    font-size: calc(18px * 1.1);
    color: #ffffff;
}

.landing-page .study-guide h1 {
    color: #ffffff;
    -webkit-background-clip: text !important;
    animation: headingReveal 1s 0.5s ease-out forwards;
    margin: 0 0 2rem;
    background: linear-gradient(to right, #ffffff, rgb(179,101,140,0.5));
    transform: translateY(30px);
    opacity: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: transparent;
    background-clip: text !important;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.landing-page .study-guide > div:hover {
    transform: translateY(-5px);
}

.landing-page .study-guide p {
    font-size: calc(16px * 1.15);
    animation: textReveal 0.7s 0.8s ease-out forwards;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    color: #ffffff;
    z-index: 2;
    font-weight: 400;
    transform: translateY(15px);
    position: relative;
    line-height: 1.6;
    opacity: 0;
}

.connect-with-us .img-horizontal {
    left: 0;
    opacity: 0.2;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: grayscale(40%) contrast(120%);
    position: absolute;
}

.connect-with-us h3 {
    text-transform: uppercase;
    color: #000000;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.connect-with-us .message-feedback {
    border-radius: 27px;
    flex-wrap: wrap;
    overflow: hidden;
    display: flex;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: relative;
}

.connect-with-us .query-widget #contact {
    position: relative;
    z-index: 1;
}

.connect-with-us .query-widget h3 {
    font-size: 23px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
}

.connect-with-us .query-widget input[type="text"],
.connect-with-us .query-widget textarea {
    color: #000000;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    background-color: rgba(0, 0, 0, 0.02);
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.connect-with-us .query-widget .feedback-info input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.connect-with-us .query-widget .feedback-info input[type="checkbox"]:checked + label::before {
    background-color: rgb(198,154,165);
    border-color: rgb(198,154,165);
}

.connect-with-us .query-widget .feedback-info a {
    color: rgb(198,154,165);
    transition: color 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.connect-with-us .query-widget .support-query {
    color: #ffffff;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border: none;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgb(198,154,165) 0%, rgb(179,101,140) 100%);
    border-radius: 27px;
}

.connect-with-us .help-info h4 {
    font-weight: 600;
    position: relative;
    font-size: 23px;
    color: #ffffff;
    margin-bottom: 30px;
}

.connect-with-us .help-info .inquiry-grid {
    margin: 0;
    padding: 0;
    list-style: none;
}

.connect-with-us .help-info .inquiry-grid li {
    z-index: 1;
    position: relative;
    align-items: flex-start;
    margin-bottom: 25px;
    display: flex;
}

.connect-with-us .help-info .inquiry-grid li span {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
}

.about-this {
    z-index: 1;
    overflow: hidden;
    padding: 140px 0;
    background: rgb(231,218,222);
    position: relative;
}



.about-this .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-this .container::before {
    right: -100px;
    position: absolute;
    animation: float 15s ease-in-out infinite alternate;
    filter: blur(80px);
    content: "";
    width: 200px;
    border-radius: 50%;
    opacity: 0.1;
    background: rgb(198,154,165,0.5);
    height: 200px;
    top: -100px;
}

.about-this .knowledge-space::before {
    background: linear-gradient(90deg, transparent, rgb(198,154,165), transparent);
    opacity: 0.4;
    left: 30%;
    animation: scanline 4s ease-in-out infinite;
    position: absolute;
    content: "";
    top: 50%;
    height: 1px;
    width: 40%;
}

.about-this .about-section::before {
    inset: 0;
    transition: opacity 0.4s ease;
    content: "";
    background: linear-gradient(135deg, transparent 0%, rgb(198,154,165,0.5) 100%);
    opacity: 0.07;
    border-radius: 22px;
    position: absolute;
    z-index: -1;
}

.about-this .img-horizontal {
    width: 220px;
    height: 220px;
    transition: all 0.5s ease;
    border: 5px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    position: relative;
}



.about-this .training-track {
    position: relative;
    width: 100%;
    padding-top: 15px;
    text-align: center;
}

.about-this .learn-studio {
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    display: inline-block;
    font-weight: 700;
    font-size: calc(24px * 1.15);
    position: relative;
    color: #000000;
}

.about-this .about-section:hover .learn-studio::after {
    width: 80%;
}

.about-this .about-section:hover .study-studio {
    opacity: 1;
    transform: translateY(2px);
    color: rgb(179,101,140);
}

.about-this .phrase-holder:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 30px rgb(179,101,140,0.5);
    border-color: rgb(179,101,140,0.5);
    transform: translateY(-10px);
}

.about-this .phrase-holder::after {
    animation-delay: -15s;
    background: rgb(179,101,140,0.5);
    bottom: -250px;
    left: -250px;
}

.about-this .knowledge-studio {
    display: flex;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: calc(21px * 1.2);
    margin-bottom: 25px;
    color: rgb(198,154,165);
    gap: 16px;
    align-items: center;
}

.about-this .phrase-holder:hover .knowledge-studio::after {
    width: 50%;
}

.about-this .knowledge-studio svg path {
    transition: fill 0.4s ease;
}

.about-this .knowledge-studio:hover svg {
    transform: rotateY(180deg);
    fill: rgb(179,101,140);
}

.about-this .phrase-holder:hover h2 {
    transform: translateX(5px);
}

.about-this .phrase-holder:hover h2::after {
    width: 150px;
}

.about-this .phrase-holder p {
    color: #000000;
    transition: all 0.4s ease;
    position: relative;
    font-size: calc(17px * 1.05);
    margin-bottom: 0;
    line-height: 1.9;
}

.gratSpace::before {
    content: "";
    z-index: 1;
    background: 
    radial-gradient(circle at 10% 20%, rgb(198,154,165,0.5) 5%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgb(179,101,140,0.5) 10%, transparent 50%);
    height: 100%;
    left: 0;
    opacity: 0.4;
    width: 100%;
    position: absolute;
    top: 0;
    pointer-events: none;
}

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

.gratSpace .knowledge-space::before {
    border: 1px solid rgb(179,101,140,0.5);
    opacity: 0.2;
    position: absolute;
    right: 20px;
    pointer-events: none;
    left: 20px;
    bottom: 20px;
    transform: scale(0.97);
    content: "";
    top: 20px;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.gratSpace .knowledge-space > div:first-child::after {
    bottom: 0;
    background: linear-gradient(90deg, rgb(198,154,165) 0%, rgb(179,101,140) 100%);
    transform-origin: left center;
    content: "";
    height: 3px;
    animation: lineExpand 1s ease-out 0.3s forwards;
    width: 80px;
    position: absolute;
    left: 0;
}

.gratSpace a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.secure-zone {
    overflow: hidden;
    box-shadow: 0 0 15px rgb(198,154,165,0.5);
    padding: 40px;
    height: auto;
    width: 100%;
    font-family: Arial, sans-serif;
    border: 2px solid rgb(198,154,165);
    color: #ffffff;
}

.secure-zone h2 {
    border-bottom: 1px solid rgb(179,101,140);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 33px;
    font-weight: 600;
    padding-bottom: 5px;
    text-shadow: 0 0 10px rgb(179,101,140,0.5);
    color: rgb(179,101,140);
}

.secure-zone section {
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0 0 15px rgb(198,154,165,0.5);
    border-radius: 10px;
}



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



@media (min-width: 768px) {.program-overview .job-success {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}.program-overview h2 {
    text-align: left;
    font-size: calc(34px * 1.1);
}.program-overview h2::after {
    left: 0;
    transform: translateX(0) scaleX(0.8);
}.program-overview:hover h2::after {
    transform: translateX(0) scaleX(1);
}.program-overview .img-horizontal {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 90%);
    height: 100%;
    min-height: 450px;
}
}



@media (max-width: 767px) {.program-overview {
    padding: 4rem 0;
}.program-overview h2 {
    font-size: calc(34px * 0.9);
    margin-bottom: 2rem;
}.program-overview .img-horizontal {
    height: 280px;
}.program-overview .phrase-holder {
    padding: 1.5rem;
}.program-overview .description {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
}}



@media (max-width: 768px) {.user-feedback {
    padding: 60px 0 40px;
}.user-feedback h2 {
    font-size: calc(36px * 0.85);
    margin-bottom: 40px;
}.user-feedback .success-reviews {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 20px;
}.user-feedback .student-votes {
    transform: perspective(800px) rotateY(0) !important;
}.user-feedback .student-votes:hover {
    transform: translateY(-5px) !important;
}
}



@media (max-width: 992px) {.data-overview {
    padding: 90px 0;
}.data-overview .benefits-track {
    margin-bottom: 60px;
}.data-overview .smart-statistics {
    flex-wrap: wrap;
}.data-overview .statistics-advance {
    margin: 10px !important;
    width: calc(50% - 20px);
    height: 260px;
}.data-overview .statistics-advance h4 {
    font-size: 3rem;
}.data-overview .statistics-advance:nth-child(even) {
    margin-top: 0;
}
}



@media (min-width: 768px) {.mentorship-profile .student-votes {
    display: grid;
    align-items: center;
    grid-template-areas: 
            "photo name"
            "photo job"
            "quote quote";
    grid-template-columns: auto 1fr;
    gap: 10px 30px;
}.mentorship-profile .img-horizontal {
    align-self: start;
    margin-bottom: 0;
    grid-area: photo;
    height: 180px;
    width: 180px;
}.mentorship-profile .name {
    grid-area: name;
    text-align: left;
    font-size: 32px;
}.mentorship-profile .name::after {
    transform: none;
    left: 0;
}.mentorship-profile span:not(.name) {
    margin-bottom: 0;
    grid-area: job;
    text-align: left;
}.mentorship-profile .work-table {
    grid-area: quote;
    margin-top: 30px;
}
}



@media (max-width: 575px) {.pricing-plan-card {
    padding: 3rem 0;
}.pricing-plan-card .container {
    padding: 0 1.5rem;
}.pricing-plan-card .payment-plan {
    gap: 1.5rem;
}.pricing-plan-card .learn-deals {
    padding: 1.5rem;
}.pricing-plan-card .img-horizontal {
    height: 140px;
}
}


@media only screen and (max-width: 800px) {.cookie-comply {
    display: none;
}.user-default {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}.cookieUsagePromptPanel h5 {
    text-align: center;
}.cookieUsagePromptPanel p {
    text-align: center;
}.web-cookies {
    margin-bottom: 20px;
    text-align: center;
}.cookie-preference {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    max-width: 300px;
}}



@media (min-width: 992px) {.sign-up-for-updates {
    padding: 8rem 4rem;
}.sign-up-for-updates .knowledge-space {
    padding: 5rem 4rem;
    transform: perspective(1000px) rotateX(2deg) translateZ(0);
}.sign-up-for-updates h3 {
    font-size: 19px;
    max-width: 80%;
}.sign-up-for-updates input[type="email"] {
    padding: 1.3rem 1.8rem;
}
}



@media (max-width: 480px) {.sign-up-for-updates .knowledge-space {
    padding: 2rem 1.2rem;
    clip-path: polygon(
            0 2%,
            2% 0,
            98% 0,
            100% 2%,
            100% 98%,
            98% 100%,
            2% 100%,
            0 98%
        );
}.sign-up-for-updates input[type="email"] {
    padding: 1rem 1.2rem;
}.sign-up-for-updates .sub-support {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}}



@media (max-width: 992px) {.verify-cta {
    padding: 4rem 0 2rem;
}.verify-cta .container {
    gap: 2rem;
    grid-template-columns: 1fr;
}.verify-cta .company_holder,
    .verify-cta .template-cta {
    width: 100%;
}.verify-cta .head-guide {
    grid-template-columns: repeat(2, 1fr);
}
}



@media (max-width: 576px) {.verify-cta {
    padding: 3rem 0 1rem;
}.verify-cta .company_holder {
    padding: 1.25rem;
}.verify-cta .company_holder h3 {
    font-size: calc(32px * 0.8);
}.verify-cta .top-head h5 {
    font-size: calc(19px * 0.9);
}.verify-cta .top-head a,
    .verify-cta .lesson-cta {
    font-size: calc(17px * 0.9);
}.workshop-cta .a11y-tools {
    padding: 0.4rem 1rem;
    font-size: calc(14px * 0.9);
}}



@media (max-width: 992px) {.connect-with-us {
    padding: 60px 0;
}.connect-with-us .container {
    padding: 0 15px;
}.connect-with-us .message-feedback {
    flex-direction: column;
}.connect-with-us .query-widget,
    .connect-with-us .help-info {
    flex: 1 1 100%;
}.connect-with-us .query-widget {
    padding: 30px;
}.connect-with-us .help-info {
    padding: 30px;
}
}



@media (max-width: 576px) {.connect-with-us {
    padding: 30px 0;
}.connect-with-us .query-widget,
    .connect-with-us .help-info {
    padding: 20px;
}.connect-with-us h3 {
    font-size: calc(33px - 6px);
}.connect-with-us .query-widget .feedback-info label {
    font-size: calc(15px - 3px);
}}



@media (max-width: 991px) {.about-this {
    padding: 100px 0;
}.about-this .knowledge-space {
    gap: 50px;
}.about-this .phrase-holder {
    padding: 40px 30px;
}.about-this .about-section {
    padding: 40px 30px;
}.about-this .phrase-holder h2 {
    font-size: 35px;
}.about-this .knowledge-space::after {
    top: 300px;
}
}



@media (max-width: 992px) {.gratSpace {
    padding: 80px 0;
}.gratSpace .knowledge-space {
    padding: 50px 40px;
}.gratSpace h5 {
    font-size: calc(21px - 2px);
}
}



@media (max-width: 768px) {.gratSpace {
    padding: 60px 0;
}.gratSpace .knowledge-space {
    transform: perspective(1000px) rotateX(1deg);
    padding: 40px 30px;
}.gratSpace .knowledge-space::before {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
}.gratSpace .knowledge-space > div:first-child {
    padding-bottom: 20px;
    margin-bottom: 25px;
}.gratSpace h5 {
    font-size: calc(21px - 4px);
}.gratSpace p {
    line-height: 1.7;
    font-size: calc(16px - 1px);
}
}



@media only screen and (max-width: 800px) {.secure-zone {
    padding: 20px 10px;
}.secure-zone h1 {
    font-size: calc(19px * 0.8);
}.secure-zone h2 {
    font-size: calc(19px * 0.8);
}.secure-zone h3, .secure-zone h4, .secure-zone h5, .secure-zone h6 {
    font-size: calc(19px * 0.8);
}.secure-zone p, .secure-zone span, .secure-zone div {
    font-size: calc(17px * 0.9);
}
}



@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}



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



@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}



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



@keyframes gradientShift {
  0% {
    transform: rotate(15deg) scale(1.5) translateX(0);
  }
  100% {
    transform: rotate(12deg) scale(1.6) translateX(-5%);
  }
}

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

@keyframes scanline {
    0% {
        opacity: 0;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.5);
    }
}

@keyframes blobAnimation {
    0% {
        border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        border-radius: 60% 40% 55% 45% / 45% 65% 35% 55%;
        transform: translate(-20px, 10px) rotate(60deg) scale(1.05);
    }
    66% {
        border-radius: 50% 50% 35% 65% / 50% 50% 65% 35%;
        transform: translate(20px, -10px) rotate(120deg) scale(0.95);
    }
    100% {
        border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
        transform: translate(0, 0) rotate(180deg) scale(1);
    }
}

