﻿* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}.container {
    width: 1197px;
    margin: auto;
    max-width: 100%;
}.qviewport-container {
    min-height: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}svg {
    height: 30px;
    width: 30px;
}html,body {
    color: #000000;
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    auto
contain;
}.Uclass_guide {
    flex: 0 0 auto;
}.Ttop_class {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}a {
    text-decoration: none;
    color: inherit;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.Acourse_benefits {
    overflow: hidden;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgb(204,211,195) 0%, rgba(245, 245, 250, 0.9) 100%);
    position: relative;
}.Acourse_benefits::before {
    animation: pulse 8s infinite alternate ease-in-out;
    position: absolute;
    z-index: 1;
    background: linear-gradient(225deg, rgb(147,153,134,0.5) 0%, transparent 70%);
    opacity: 0.5;
    width: 300px;
    right: -50px;
    top: -50px;
    transform: rotate(-15deg);
    height: 300px;
    content: "";
    filter: blur(40px);
}.Acourse_benefits::after {
    bottom: -100px;
    width: 400px;
    background: linear-gradient(45deg, rgb(176,182,167,0.5) 0%, transparent 70%);
    height: 400px;
    filter: blur(50px);
    animation: float 12s infinite alternate ease-in-out;
    z-index: 1;
    position: absolute;
    content: "";
    opacity: 0.4;
    transform: rotate(22deg);
    left: -100px;
}.Acourse_benefits h5 {
    margin-bottom: 50px;
    max-width: 800px;
    color: #000000;
    position: relative;
    margin-left: auto;
    text-align: center;
    transform: translateY(0);
    animation: fadeSlideUp 1s ease-out;
    margin-right: auto;
    z-index: 2;
    font-weight: 700;
    opacity: 1;
    font-size: 18px;
}.Acourse_benefits h5::after {
    background: linear-gradient(90deg, rgb(176,182,167) 0%, rgb(147,153,134) 100%);
    border-radius: 10px;
    bottom: -12px;
    content: "";
    height: 3px;
    transform: translateX(-50%);
    width: 80px;
    left: 50%;
    position: absolute;
}.Acourse_benefits .container {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
}.Acourse_benefits .Rclass_pro {
    flex-direction: column;
    backdrop-filter: blur(10px);
    gap: 40px;
    background: rgba(255, 255, 255, 0.8);
    animation: fadeSlideUp 1.2s ease-out 0.2s both;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    opacity: 1;
    overflow: hidden;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    position: relative;
}.Acourse_benefits .Rclass_pro::before {
    top: 0;
    position: absolute;
    content: "";
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(176,182,167) 0%, rgb(147,153,134) 100%);
    width: 100%;
}.Acourse_benefits .Fimg_display {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    object-fit: cover;
    height: auto;
}.Acourse_benefits .Rclass_pro:hover .Fimg_display {
    transform: scale(1.03);
}.Acourse_benefits .sdescription_wrap {
    position: relative;
}.Acourse_benefits ul {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 20px;
    list-style: none;
    display: grid;
    margin: 0;
}.Acourse_benefits li {
    padding-left: 40px;
    position: relative;
    transition: transform 0.3s ease;
    animation: fadeSlideRight 0.5s ease-out both;
}.Acourse_benefits li:nth-child(1) {
    animation-delay: 0.3s;
}.Acourse_benefits li:nth-child(2) {
    animation-delay: 0.4s;
}.Acourse_benefits li:nth-child(3) {
    animation-delay: 0.5s;
}.Acourse_benefits li:nth-child(4) {
    animation-delay: 0.6s;
}.Acourse_benefits li:nth-child(5) {
    animation-delay: 0.7s;
}.Acourse_benefits li:hover {
    transform: translateX(5px);
}.Acourse_benefits li p {
    margin: 0;
    line-height: 1.6;
    color: #000000;
    font-size: 16px;
    position: relative;
}.Acourse_benefits svg {
    height: 28px;
    transition: transform 0.3s ease;
    top: 0;
    left: -40px;
    width: 28px;
    transform: translateY(0) scale(1);
    position: absolute;
}.Acourse_benefits li:hover svg {
    transform: translateY(-2px) scale(1.1);
}.Acourse_benefits svg path {
    fill: rgb(176,182,167);
    transition: fill 0.3s ease;
}.Acourse_benefits li:hover svg path {
    fill: rgb(147,153,134);
}

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

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

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: rotate(-15deg) scale(1);
    }
    100% {
        opacity: 0.6;
        transform: rotate(-12deg) scale(1.1);
    }
}

@keyframes float {
    0% {
        transform: rotate(22deg) translate(0, 0);
    }
    100% {
        transform: rotate(18deg) translate(30px, -20px);
    }
}

@media (min-width: 768px) {.Acourse_benefits {
    padding: 120px 40px;
}.Acourse_benefits .Rclass_pro {
    flex-direction: row;
    padding: 60px;
    align-items: center;
}.Acourse_benefits .Rclass_pro > div:first-child {
    flex: 0 0 40%;
}.Acourse_benefits .sdescription_wrap {
    padding-left: 40px;
    flex: 0 0 60%;
}.Acourse_benefits ul {
    grid-template-columns: repeat(2, 1fr);
}.Acourse_benefits h5 {
    margin-bottom: 60px;
    font-size: calc(18px * 1.1);
}.Acourse_benefits h5::after {
    width: 100px;
}
}

@media (min-width: 992px) {.Acourse_benefits {
    padding: 140px 60px;
}.Acourse_benefits .Rclass_pro {
    gap: 60px;
}.Acourse_benefits h5 {
    font-size: calc(18px * 1.2);
}.Acourse_benefits h5::after {
    width: 120px;
}.Acourse_benefits p {
    font-size: calc(16px * 1.05);
}
}

@media (max-width: 767px) {.Acourse_benefits {
    padding: 80px 20px;
}.Acourse_benefits h5 {
    font-size: calc(18px * 0.9);
}.Acourse_benefits .Rclass_pro {
    padding: 30px;
}.Acourse_benefits .Fimg_display {
    max-height: 250px;
    object-position: center;
}.Acourse_benefits li {
    padding-left: 35px;
}.Acourse_benefits svg {
    width: 24px;
    height: 24px;
    left: -35px;
}}.Eour_background {
    overflow: hidden;
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgb(204,211,195) 0%, rgb(176,182,167,0.5) 100%);
}.Eour_background::before {
    right: -10%;
    z-index: 0;
    top: -20%;
    background: rgb(147,153,134,0.5);
    height: 70%;
    filter: blur(50px);
    content: "";
    width: 40%;
    transform: rotate(-15deg) skewX(-15deg);
    position: absolute;
}.Eour_background::after {
    transform: rotate(10deg) skewX(10deg);
    width: 30%;
    position: absolute;
    filter: blur(40px);
    height: 60%;
    left: -5%;
    bottom: -10%;
    background: rgb(176,182,167,0.5);
    z-index: 0;
    content: "";
}.Eour_background .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
    position: relative;
}.Eour_background h1 {
    color: #000000;
    margin-bottom: 60px;
    font-size: 44px;
    font-weight: 700;
    position: relative;
    transform: translateX(-5px);
}.Eour_background h1::after {
    height: 4px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    bottom: -15px;
    background: rgb(176,182,167);
    position: absolute;
    transform: scaleX(1);
    left: 0;
    transform-origin: left center;
    content: "";
}.Eour_background h1:hover::after {
    transform: scaleX(1.5);
}.Eour_background .Gachieve_goals {
    position: relative;
}.Eour_background .Gachieve_goals ul {
    margin: 0;
    grid-template-columns: 1fr;
    list-style: none;
    display: grid;
    gap: 40px;
    padding: 0;
}.Eour_background .jknowledge_studio {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    z-index: 1;
    padding: 40px;
    position: relative;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}.Eour_background .jknowledge_studio::before {
    height: 5px;
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, rgb(176,182,167) 0%, rgb(147,153,134) 100%);
}.Eour_background .jknowledge_studio:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
}.Eour_background .jknowledge_studio h4 {
    margin-bottom: 20px;
    color: rgb(176,182,167);
    margin-top: 0;
    font-weight: 700;
    display: inline-block;
    position: relative;
    font-size: calc(18px * 1.2);
}.Eour_background .jknowledge_studio h4::after {
    height: 2px;
    content: "";
    background: rgb(147,153,134);
    position: absolute;
    width: 0;
    bottom: -8px;
    left: 0;
    transition: width 0.4s ease;
}.Eour_background .jknowledge_studio:hover h4::after {
    width: 100%;
}.Eour_background .jknowledge_studio div {
    z-index: 2;
    transition: color 0.3s ease;
    font-size: 13px;
    position: relative;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}.Eour_background .jknowledge_studio:first-child {
    transform: translateX(-5px) translateY(10px);
}.Eour_background .jknowledge_studio:last-child {
    transform: translateX(5px) translateY(-10px);
}.Eour_background .jknowledge_studio:first-child:hover {
    transform: translateX(-5px) translateY(0);
}.Eour_background .jknowledge_studio:last-child:hover {
    transform: translateX(5px) translateY(-20px);
}.Eour_background .jknowledge_studio::after {
    opacity: 0.1;
    content: "";
    z-index: 0;
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
    background: rgb(147,153,134,0.5);
    width: 100px;
    height: 100px;
    bottom: 0;
    position: absolute;
    right: 0;
    transform: translate(30%, 30%);
}.Eour_background .jknowledge_studio:hover::after {
    transform: translate(20%, 20%) scale(1.2);
    opacity: 0.2;
}

@media (min-width: 768px) {.Eour_background {
    padding: 140px 0 120px;
}.Eour_background h1 {
    margin-bottom: 80px;
    font-size: calc(44px * 1.2);
}.Eour_background .Gachieve_goals ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}.Eour_background .jknowledge_studio {
    padding: 50px;
}.Eour_background .jknowledge_studio h4 {
    margin-bottom: 30px;
    font-size: calc(18px * 1.4);
}.Eour_background .jknowledge_studio div {
    line-height: 1.8;
    font-size: calc(13px * 1.05);
}
}

@media (min-width: 992px) {.Eour_background .jknowledge_studio:first-child {
    transform: perspective(1000px) rotateY(-2deg) translateX(-15px) translateY(5px);
}.Eour_background .jknowledge_studio:last-child {
    transform: perspective(1000px) rotateY(2deg) translateX(15px) translateY(-5px);
}.Eour_background .jknowledge_studio:first-child:hover {
    transform: perspective(1000px) rotateY(0) translateX(-10px) translateY(0);
}.Eour_background .jknowledge_studio:last-child:hover {
    transform: perspective(1000px) rotateY(0) translateX(10px) translateY(-10px);
}
}

@media (max-width: 767px) {.Eour_background {
    padding: 80px 0 60px;
}.Eour_background h1 {
    margin-bottom: 40px;
    font-size: 28px;
}.Eour_background .jknowledge_studio {
    padding: 30px;
}.Eour_background .jknowledge_studio::before {
    height: 3px;
}.Eour_background .jknowledge_studio h4 {
    font-size: 18px;
    margin-bottom: 15px;
}.Eour_background .jknowledge_studio div {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
}.Eour_background .jknowledge_studio:first-child,
    .Eour_background .jknowledge_studio:last-child {
    transform: none;
}.Eour_background .jknowledge_studio:hover {
    transform: translateY(-5px);
}}header .gsite_core {
    box-shadow: 0 0 20px 2px rgb(176,182,167,0.5);
    border-radius: 0;
    align-items: center;
    overflow: hidden;
    width: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    padding: 1.5rem;
    left: 0;
    background: linear-gradient(to right, rgb(147,153,134) 0%, rgb(176,182,167,0.5) 100%);
    display: flex;
}header .gsite_core::before {
    top: -50%;
    animation: backgroundShift 20s linear infinite;
    position: absolute;
    height: 200%;
    z-index: -1;
    background: radial-gradient(circle, rgb(147,153,134,0.5) 1%, transparent 10%);
    background-size: 15px 15px;
    width: 200%;
    left: -50%;
    content: "";
    opacity: 0.3;
}header .gsite_core::after {
    animation: gradientSlide 5s ease infinite;
    z-index: -1;
    background-size: 200% 200%;
    top: 0;
    background: linear-gradient(45deg, transparent 48%, rgb(147,153,134) 49%, rgb(147,153,134) 51%, transparent 52%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.1;
    content: "";
}header .gsite_core .psite_navbar {
    overflow: visible;
    position: relative;
}header .gsite_core .psite_navbar::after {
    left: 0;
    transform: scaleX(0);
    width: 100%;
    box-shadow: 0 0 8px 2px rgb(147,153,134);
    background: rgb(147,153,134);
    transform-origin: left;
    content: "";
    bottom: -8px;
    height: 2px;
    position: absolute;
    animation: neonPulse 3s infinite alternate;
}header .gsite_core .psite_navbar .Ihead_skill {
    position: relative;
    transition: all 0.5s ease;
    display: block;
    transform: perspective(800px) rotateY(0deg);
}header .gsite_core .psite_navbar .Ihead_skill:hover {
    transform: perspective(800px) rotateY(15deg);
}header .gsite_core .psite_navbar svg {
    height: auto;
    filter: drop-shadow(0 0 5px rgb(147,153,134,0.5));
    width: 120px;
}header .gsite_core .ftop_start {
    perspective: 800px;
    padding: 0;
    position: relative;
    display: flex;
    margin: 0;
    list-style: none;
}header .gsite_core .ftop_start::before {
    box-shadow: 0 0 10px 2px rgb(176,182,167);
    transform: scaleX(0.5);
    animation: neonPulse 4s infinite alternate-reverse;
    left: 0;
    top: 105%;
    height: 2px;
    background: rgb(176,182,167);
    position: absolute;
    content: "";
    width: 100%;
}header .gsite_core .bhead_teach {
    margin: 0 0.5rem;
    position: relative;
    transform: translateZ(0);
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}header .gsite_core .bhead_teach:hover {
    transform: translateZ(20px);
}header .gsite_core .bhead_teach a {
    font-size: 17px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: block;
    position: relative;
}header .gsite_core .bhead_teach a::before {
    top: 0;
    content: "";
    background: rgb(176,182,167,0.5);
    position: absolute;
    border-radius: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
    z-index: -1;
    height: 100%;
    transform: scale(0.9);
    opacity: 0;
    left: 0;
}header .gsite_core .bhead_teach a:hover {
    border: 1px solid rgb(147,153,134,0.5);
    text-shadow: 0 0 5px rgb(147,153,134,0.5);
    color: rgb(147,153,134);
}header .gsite_core .bhead_teach a:hover::before {
    opacity: 0.2;
    transform: scale(1);
}

@keyframes neonPulse {
  0% {
    opacity: 0.6;
    transform: scaleX(0.5);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes backgroundShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 50%);
  }
}

@keyframes gradientSlide {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (max-width: 992px) {header .gsite_core {
    padding: 1rem;
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    flex-direction: column;
}header .gsite_core .psite_navbar {
    margin-bottom: 1.5rem;
}header .gsite_core .ftop_start {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}header .gsite_core .ftop_start::before {
    bottom: -10px;
    top: auto;
}header .gsite_core .bhead_teach {
    margin: 0.25rem 0.5rem;
}
}

@media (max-width: 576px) {header .gsite_core {
    padding: 0.75rem;
}header .gsite_core .ftop_start {
    flex-direction: column;
    align-items: center;
}header .gsite_core .bhead_teach {
    margin: 0.25rem 0;
    text-align: center;
    width: 100%;
}header .gsite_core .psite_navbar svg {
    width: 100px;
}header .gsite_core .psite_navbar::after {
    left: 10%;
    width: 80%;
}}.nlearning_system {
    background: linear-gradient(135deg, rgb(204,211,195) 0%, rgba(240, 240, 245, 0.95) 100%);
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}.nlearning_system::before {
    top: 0;
    width: 25%;
    content: "";
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
    background: linear-gradient(145deg, rgb(176,182,167,0.5) 0%, rgb(147,153,134,0.5) 100%);
    right: 0;
    height: 100%;
}.nlearning_system::after {
    z-index: 1;
    position: absolute;
    background: rgb(176,182,167);
    width: 35%;
    height: 10px;
    bottom: 0;
    left: 0;
    content: "";
    transform: skewX(45deg) translateX(-10%);
}.nlearning_system .container.Rclass_pro {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 25px;
    margin: 0 auto;
}.nlearning_system .container.Rclass_pro > div {
    overflow: hidden;
    padding: 50px 60px;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}.nlearning_system .container.Rclass_pro > div:hover {
    transform: perspective(1000px) rotateY(0deg);
}.nlearning_system .container.Rclass_pro > div::before {
    transform-origin: top;
    position: absolute;
    left: 0;
    content: "";
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, rgb(176,182,167), rgb(147,153,134));
    transform: scaleY(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    top: 0;
}.nlearning_system .container.Rclass_pro > div:hover::before {
    transform: scaleY(1);
}.nlearning_system h3 {
    transition: transform 0.4s ease;
    color: #000000;
    font-family: Arial, sans-serif;
    margin: 0 0 30px;
    padding-bottom: 15px;
    transform: translateX(0);
    font-weight: 700;
    position: relative;
    font-size: 38px;
}.nlearning_system .container.Rclass_pro > div:hover h3 {
    transform: translateX(15px);
}.nlearning_system h3::after {
    transition: width 0.4s ease;
    left: 0;
    bottom: 0;
    position: absolute;
    background: rgb(147,153,134);
    height: 3px;
    content: "";
    width: 80px;
}.nlearning_system .container.Rclass_pro > div:hover h3::after {
    width: 120px;
}.nlearning_system p {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #000000;
    position: relative;
    font-size: 18px;
    margin: 0;
}.nlearning_system p span {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    display: block;
}.nlearning_system .container.Rclass_pro > div:hover p span {
    transform: translateY(5px);
}

@media (max-width: 991px) {.nlearning_system {
    padding: 80px 0;
}.nlearning_system .container.Rclass_pro > div {
    transform: perspective(1000px) rotateY(-1deg);
    padding: 40px 35px;
}.nlearning_system h3 {
    font-size: calc(38px * 0.9);
    margin-bottom: 25px;
}
}

@media (max-width: 767px) {.nlearning_system {
    padding: 60px 0;
}.nlearning_system::before {
    width: 40%;
}.nlearning_system .container.Rclass_pro {
    padding: 0 15px;
}.nlearning_system .container.Rclass_pro > div {
    padding: 35px 25px;
    transform: none;
}.nlearning_system h3 {
    margin-bottom: 20px;
    font-size: calc(38px * 0.8);
}.nlearning_system p {
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 576px) {.nlearning_system {
    padding: 50px 0;
}.nlearning_system .container.Rclass_pro > div {
    padding: 30px 20px;
}.nlearning_system h3 {
    margin-bottom: 15px;
    font-size: calc(38px * 0.7);
    padding-bottom: 10px;
}.nlearning_system h3::after {
    height: 2px;
    width: 60px;
}.nlearning_system p {
    font-size: calc(18px * 0.9);
    line-height: 1.6;
}}.scontact_information {
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgb(204,211,195) 0%, rgb(147,153,134,0.5) 100%);
}.scontact_information::before {
    content: '';
    background: linear-gradient(0deg, transparent 40%, rgba(0,0,0,0.05) 60%, transparent 80%);
    top: 0;
    left: 0;
    animation: scanlines 10s linear infinite;
    background-size: 100% 15px;
    position: absolute;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    width: 100%;
}.scontact_information::after {
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(1px at 30% 20%, rgb(176,182,167,0.5) 0%, transparent 50%),
        radial-gradient(1px at 70% 40%, rgb(147,153,134,0.5) 0%, transparent 50%),
        radial-gradient(1px at 40% 60%, rgb(176,182,167,0.5) 0%, transparent 50%),
        radial-gradient(1px at 60% 80%, rgb(147,153,134,0.5) 0%, transparent 50%);
    content: '';
    background-size: 150px 150px, 200px 200px, 100px 100px, 250px 250px;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0.4;
    top: 0;
}.scontact_information .Fimg_display {
    opacity: 0.08;
    mix-blend-mode: overlay;
    top: 0;
    left: 0;
    filter: grayscale(100%) contrast(150%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}.scontact_information .container {
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.scontact_information h3 {
    color: #000000;
    letter-spacing: 3px;
    position: relative;
    perspective: 800px;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 60px;
}.scontact_information h3::before {
    left: 50%;
    font-size: calc(35px - 10px);
    letter-spacing: 5px;
    color: rgb(147,153,134,0.5);
    top: -10px;
    position: absolute;
    opacity: 0.4;
    content: attr(id);
    transform: translateX(-50%);
}.scontact_information h3::after {
    background: linear-gradient(90deg, transparent, rgb(176,182,167), transparent);
    bottom: -15px;
    content: '';
    height: 1px;
    position: absolute;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
}.scontact_information .Ireach_list {
    grid-template-columns: 1.5fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: grid;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    border-radius: 28px;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 20px rgb(176,182,167,0.5) inset;
    transition: transform 0.5s ease;
}.scontact_information .Ireach_list:hover {
    transform: perspective(1000px) rotateX(2deg);
}.scontact_information .Ireach_list::before {
    z-index: -1;
    animation: border-flow 6s linear infinite;
    bottom: -2px;
    content: '';
    right: -2px;
    border-radius: calc(28px + 2px);
    position: absolute;
    left: -2px;
    background: linear-gradient(45deg, 
        rgb(176,182,167,0.5), 
        transparent, 
        rgb(147,153,134,0.5), 
        transparent);
    top: -2px;
}.scontact_information .Ireach_list::after {
    left: 0;
    pointer-events: none;
    content: '';
    top: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    width: 100%;
    background-size: 20px 20px;
    position: absolute;
    height: 100%;
}.scontact_information .Zrequest_panel {
    overflow: hidden;
    padding: 60px;
    position: relative;
    background: #ffffff;
}.scontact_information .Zrequest_panel::before {
    content: '';
    background: linear-gradient(90deg, 
        rgb(176,182,167), 
        rgb(147,153,134));
    left: 0;
    height: 3px;
    position: absolute;
    top: 0;
    width: 100%;
}.scontact_information .Zrequest_panel::after {
    content: '';
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 0, 0, 0.01));
    right: 0;
    width: 50%;
    pointer-events: none;
    height: 100%;
    top: 0;
    position: absolute;
}.scontact_information .Zrequest_panel #contact {
    z-index: 2;
    position: relative;
}.scontact_information .Zrequest_panel h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: left;
}.scontact_information .Zrequest_panel h3::before {
    display: none;
}.scontact_information .Zrequest_panel h3::after {
    background: rgb(176,182,167);
    left: 0;
    height: 2px;
    width: 50px;
    transform: none;
}.scontact_information .Zrequest_panel input[type="text"],
.scontact_information .Zrequest_panel textarea {
    position: relative;
    font-family: Arial, sans-serif;
    color: #000000;
    border-radius: 0;
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 25px;
    padding: 20px 25px;
}.scontact_information .Zrequest_panel input[type="text"]::placeholder,
.scontact_information .Zrequest_panel textarea::placeholder {
    color: #000000;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}.scontact_information .Zrequest_panel input[type="text"]:focus::placeholder,
.scontact_information .Zrequest_panel textarea:focus::placeholder {
    opacity: 0.3;
}.scontact_information .Zrequest_panel input[type="text"]:focus,
.scontact_information .Zrequest_panel textarea:focus {
    border-bottom-color: rgb(176,182,167);
    background-color: rgba(0, 0, 0, 0.01);
    outline: none;
}.scontact_information .Zrequest_panel textarea {
    transition: height 0.3s ease;
    overflow: hidden;
    resize: vertical;
    min-height: 150px;
}.scontact_information .Zrequest_panel .Phelp_feedback {
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
}.scontact_information .Zrequest_panel .Phelp_feedback input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.scontact_information .Zrequest_panel .Phelp_feedback label {
    font-size: calc(15px - 2px);
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    color: #000000;
    line-height: 1.6;
}.scontact_information .Zrequest_panel .Phelp_feedback label::before {
    background-color: transparent;
    width: 25px;
    transition: all 0.3s ease;
    top: 0;
    height: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    content: '';
    position: absolute;
    left: 0;
}.scontact_information .Zrequest_panel .Phelp_feedback label::after {
    position: absolute;
    width: 7px;
    transform: rotate(45deg) scale(0);
    top: 5px;
    content: '';
    left: 9px;
    opacity: 0;
    border-right: 2px solid #ffffff;
    height: 12px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #ffffff;
}.scontact_information .Zrequest_panel .Phelp_feedback input[type="checkbox"]:checked + label::before {
    border-color: rgb(176,182,167);
    background-color: rgb(176,182,167);
}.scontact_information .Zrequest_panel .Phelp_feedback input[type="checkbox"]:checked + label::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}.scontact_information .Zrequest_panel .Phelp_feedback a {
    font-weight: 600;
    color: rgb(176,182,167);
    text-decoration: none;
    padding-bottom: 2px;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}.scontact_information .Zrequest_panel .Phelp_feedback a:hover {
    color: rgb(147,153,134);
    border-bottom-color: rgb(147,153,134);
}.scontact_information .Zrequest_panel .Mreach_card {
    background-color: transparent;
    display: inline-block;
    border: 1px solid rgb(176,182,167);
    cursor: pointer;
    letter-spacing: 2px;
    font-weight: 600;
    z-index: 1;
    padding: 18px 40px;
    text-transform: uppercase;
    position: relative;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    font-size: 18px;
}.scontact_information .Zrequest_panel .Mreach_card::before {
    transform: scaleX(0);
    top: 0;
    left: 0;
    transform-origin: right;
    background: rgb(176,182,167);
    z-index: -1;
    width: 100%;
    position: absolute;
    content: '';
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}.scontact_information .Zrequest_panel .Mreach_card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.scontact_information .Vreach_grid {
    padding: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(176,182,167) 0%, rgb(147,153,134) 100%);
}.scontact_information .Vreach_grid::before {
    background: 
        linear-gradient(45deg, rgba(0,0,0,0.2) 25%, transparent 25%) -10px 0,
        linear-gradient(135deg, rgba(0,0,0,0.2) 25%, transparent 25%) -10px 0,
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.2) 75%) -10px 0,
        linear-gradient(135deg, transparent 75%, rgba(0,0,0,0.2) 75%) -10px 0;
    background-size: 20px 20px;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}.scontact_information .Vreach_grid::after {
    left: -50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    content: '';
    top: -50%;
    animation: pulse-light 10s infinite;
    position: absolute;
    z-index: 0;
    width: 200%;
}.scontact_information .Vreach_grid h4 {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 1;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
}.scontact_information .Vreach_grid h4::after {
    bottom: -10px;
    background: #ffffff;
    height: 2px;
    left: 0;
    position: absolute;
    content: '';
    width: 50px;
}.scontact_information .Vreach_grid .sinquiry_form {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    list-style: none;
}.scontact_information .Vreach_grid .sinquiry_form li {
    transition: transform 0.3s ease;
    display: flex;
    position: relative;
    padding: 15px 0;
    align-items: flex-start;
    margin-bottom: 30px;
}.scontact_information .Vreach_grid .sinquiry_form li:hover {
    transform: translateX(10px);
}.scontact_information .Vreach_grid .sinquiry_form li::before {
    height: 1px;
    left: 0;
    content: '';
    top: 0;
    transition: width 0.3s ease;
    width: 0;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
}.scontact_information .Vreach_grid .sinquiry_form li:hover::before {
    width: 100%;
}.scontact_information .Vreach_grid .sinquiry_form li::after {
    right: 0;
    height: 1px;
    transition: width 0.3s ease;
    bottom: 0;
    width: 0;
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.3);
}.scontact_information .Vreach_grid .sinquiry_form li:hover::after {
    width: 100%;
}.scontact_information .Vreach_grid .sinquiry_form li svg {
    flex-shrink: 0;
    margin-right: 20px;
    height: 24px;
    width: 24px;
}.scontact_information .Vreach_grid .sinquiry_form li svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.scontact_information .Vreach_grid .sinquiry_form li span {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
}.scontact_information .Vreach_grid .sinquiry_form li a {
    transition: all 0.3s ease;
    color: #ffffff;
    position: relative;
    text-decoration: none;
}.scontact_information .Vreach_grid .sinquiry_form li a::before {
    content: '';
    height: 1px;
    transform: scaleX(0);
    background: #ffffff;
    transform-origin: right;
    bottom: -2px;
    width: 100%;
    left: 0;
    position: absolute;
    transition: transform 0.3s ease;
}.scontact_information .Vreach_grid .sinquiry_form li a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}.scontact_information .Vreach_grid .sinquiry_form li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@keyframes scanlines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes border-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse-light {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    25% {
        transform: translate(10%, 10%);
        opacity: 0.3;
    }
    50% {
        transform: translate(0%, 20%);
        opacity: 0.5;
    }
    75% {
        transform: translate(-10%, 10%);
        opacity: 0.3;
    }
}

@media (max-width: 992px) {.scontact_information {
    padding: 80px 0;
}.scontact_information .container {
    padding: 0 20px;
}.scontact_information .Ireach_list {
    grid-template-columns: 1fr;
}.scontact_information .Zrequest_panel,
    .scontact_information .Vreach_grid {
    padding: 40px;
}
}

@media (max-width: 768px) {.scontact_information {
    padding: 60px 0;
}.scontact_information h3 {
    font-size: calc(35px - 4px);
    margin-bottom: 40px;
}.scontact_information .Zrequest_panel h3,
    .scontact_information .Vreach_grid h4 {
    margin-bottom: 30px;
    font-size: calc(20px - 2px);
}.scontact_information .Zrequest_panel input[type="text"],
    .scontact_information .Zrequest_panel textarea {
    padding: 15px 20px;
    margin-bottom: 20px;
}.scontact_information .Zrequest_panel .Mreach_card {
    padding: 15px 30px;
}
}

@media (max-width: 576px) {.scontact_information {
    padding: 40px 0;
}.scontact_information .Zrequest_panel,
    .scontact_information .Vreach_grid {
    padding: 30px 20px;
}.scontact_information h3 {
    font-size: calc(35px - 6px);
    letter-spacing: 2px;
}.scontact_information .Zrequest_panel .Phelp_feedback label {
    font-size: calc(15px - 3px);
}}.Steaching_experience {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(204,211,195) 0%, rgb(176,182,167,0.5) 100%);
}.Steaching_experience::before {
    width: 100%;
    background: repeating-linear-gradient(
    -45deg,
    rgb(176,182,167,0.5) 0px,
    rgb(176,182,167,0.5) 1px,
    transparent 1px,
    transparent 20px
  );
    top: 0;
    content: "";
    height: 100%;
    opacity: 0.08;
    left: 0;
    position: absolute;
    z-index: 1;
}.Steaching_experience::after {
    opacity: 0.15;
    content: "";
    height: 100%;
    right: -50%;
    position: absolute;
    background: radial-gradient(circle, rgb(147,153,134,0.5) 0%, transparent 70%);
    width: 100%;
    z-index: 0;
    top: -50%;
}.Steaching_experience .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}.Steaching_experience .Glearner_reflections {
    position: relative;
    gap: 2rem;
    display: grid;
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
    background: #ffffff;
    isolation: isolate;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 
              0 5px 15px rgba(0, 0, 0, 0.05);
}.Steaching_experience .Glearner_reflections::before {
    width: 4px;
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    background: linear-gradient(to bottom, rgb(176,182,167), rgb(147,153,134));
    content: "";
    z-index: 1;
}.Steaching_experience .Glearner_reflections > div:first-child {
    justify-content: center;
    align-items: center;
    display: flex;
    order: 1;
}.Steaching_experience .Glearner_reflections .Fimg_display {
    width: 200px;
    height: 200px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px) rotate(-3deg);
    position: relative;
}.Steaching_experience .Glearner_reflections .Fimg_display::after {
    inset: 0;
    z-index: 1;
    content: "";
    mix-blend-mode: overlay;
    background: linear-gradient(to top right, rgba(rgb(176,182,167), 0.2), transparent);
    position: absolute;
}.Steaching_experience .Glearner_reflections .Fimg_display:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.05);
}.Steaching_experience .Glearner_reflections > div:nth-child(2) {
    order: 2;
    padding-left: 1rem;
    border-left: 1px solid rgb(176,182,167,0.5);
}.Steaching_experience .Glearner_reflections .name {
    color: rgb(176,182,167);
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    font-size: calc(21px * 1.1);
}.Steaching_experience .Glearner_reflections .name::after {
    position: absolute;
    content: "";
    transition: transform 0.3s ease-out;
    transform-origin: left;
    width: 60%;
    height: 2px;
    transform: scaleX(0.7);
    left: 0;
    background: rgb(147,153,134);
    bottom: -4px;
}.Steaching_experience .Glearner_reflections .name:hover::after {
    transform: scaleX(1);
}.Steaching_experience .Glearner_reflections > div:nth-child(2) > div {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: rgb(147,153,134);
    margin-top: 0.5rem;
}.Steaching_experience .Glearner_reflections > div:nth-child(3) {
    order: 3;
    margin-top: 1rem;
    position: relative;
}.Steaching_experience .Glearner_reflections .hexp_card {
    background: linear-gradient(to right, rgb(204,211,195) 0%, transparent 100%);
    color: #000000;
    margin: 0;
    padding: 1.5rem;
    font-size: 14px;
    border-radius: 10px;
    position: relative;
    line-height: 1.7;
}.Steaching_experience .Glearner_reflections .hexp_card::before {
    content: "";
    position: absolute;
    opacity: 0.3;
    line-height: 1;
    left: 0;
    top: -0.5rem;
    font-size: 5rem;
    color: rgb(176,182,167,0.5);
}

@media (min-width: 768px) {.Steaching_experience .Glearner_reflections {
    grid-template-columns: 250px 1fr;
    grid-template-areas: 
      "photo info"
      "quote quote";
    padding: 4rem;
    gap: 3rem;
}.Steaching_experience .Glearner_reflections > div:first-child {
    justify-content: flex-start;
    grid-area: photo;
}.Steaching_experience .Glearner_reflections > div:nth-child(2) {
    align-self: center;
    grid-area: info;
    padding-left: 0;
    border-left: none;
}.Steaching_experience .Glearner_reflections > div:nth-child(3) {
    grid-area: quote;
}.Steaching_experience .Glearner_reflections .hexp_card {
    padding: 2rem;
    background: linear-gradient(135deg, rgb(204,211,195) 0%, transparent 100%);
}
}

@media (min-width: 992px) {.Steaching_experience .Glearner_reflections {
    grid-template-areas: 
      "photo info"
      "photo quote";
    gap: 3rem 4rem;
    padding: 5rem;
    grid-template-columns: 300px 1fr;
}.Steaching_experience .Glearner_reflections > div:first-child {
    align-self: start;
}.Steaching_experience .Glearner_reflections .Fimg_display {
    height: 280px;
    width: 280px;
}.Steaching_experience .Glearner_reflections .name {
    font-size: calc(21px * 1.3);
}.Steaching_experience .Glearner_reflections > div:nth-child(2) > div {
    font-size: calc(14px * 1.1);
}.Steaching_experience .Glearner_reflections .hexp_card {
    padding: 2.5rem;
    line-height: 1.8;
    font-size: calc(14px * 1.05);
}
}

@media (min-width: 1200px) {.Steaching_experience .Glearner_reflections {
    transform: perspective(1000px) rotateX(1deg) rotateY(-1deg);
    transition: transform 0.5s ease-out;
}.Steaching_experience .Glearner_reflections:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}.Steaching_experience .Glearner_reflections .Fimg_display {
    width: 320px;
    height: 320px;
}
}

@media (max-width: 767px) {.Steaching_experience {
    padding: 3rem 0;
}.Steaching_experience .container {
    padding: 0 1.5rem;
}.Steaching_experience .Glearner_reflections {
    transform: none;
    padding: 2rem 1.5rem;
}.Steaching_experience .Glearner_reflections .Fimg_display {
    height: 180px;
    width: 180px;
}}.ycourse_structure {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: rgb(147,153,134);
}.ycourse_structure::before {
    position: absolute;
    height: 100%;
    background: 
        radial-gradient(ellipse at bottom right, rgb(176,182,167,0.5) 0%, transparent 60%),
        radial-gradient(ellipse at top left, rgb(147,153,134,0.5) 0%, transparent 60%);
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    content: "";
}.ycourse_structure::after {
    background-size: 50px 50px;
    z-index: 1;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 76%, transparent 77%),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 76%, transparent 77%);
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
}.ycourse_structure .container {
    position: relative;
    z-index: 2;
}.ycourse_structure .Xstudy_hack {
    display: flex;
    position: relative;
    gap: 60px;
    flex-direction: column;
}.ycourse_structure .sdescription_wrap {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    order: 2;
    display: grid;
}.ycourse_structure .sdescription_wrap h2 {
    position: relative;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
    grid-column: 1 / -1;
    padding-bottom: 20px;
    text-align: center;
    font-size: 38px;
}.ycourse_structure .sdescription_wrap h2::after {
    height: 3px;
    content: "";
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    background: linear-gradient(90deg, rgb(176,182,167), rgb(147,153,134));
}.ycourse_structure .sdescription_wrap .description {
    overflow: hidden;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 21px;
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    font-size: 18px;
    padding: 25px;
}.ycourse_structure .sdescription_wrap .description:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}.ycourse_structure .sdescription_wrap .description::before {
    width: 100%;
    background: rgb(176,182,167);
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    height: 4px;
}.ycourse_structure .sdescription_wrap .description:last-of-type::before {
    background: rgb(147,153,134);
}.ycourse_structure .sdescription_wrap .description::after {
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    pointer-events: none;
    content: "";
}.ycourse_structure .Fimg_display {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 21px;
    order: 1;
    height: 400px;
}.ycourse_structure .Fimg_display::before {
    position: absolute;
    content: "";
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
    z-index: 1;
    inset: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float-tech {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-5deg);
    }
}

@keyframes scan-move {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (min-width: 992px) {.ycourse_structure .Xstudy_hack {
    gap: 80px;
}.ycourse_structure .Fimg_display {
    height: 500px;
}
}

@media (max-width: 991px) {.ycourse_structure {
    padding: 80px 0;
}
}

@media (max-width: 767px) {.ycourse_structure {
    padding: 60px 0;
}.ycourse_structure .sdescription_wrap {
    grid-template-columns: 1fr;
}.ycourse_structure .sdescription_wrap h2 {
    font-size: calc(38px * 0.9);
}.ycourse_structure .Fimg_display {
    height: 350px;
}
}

@media (max-width: 480px) {.ycourse_structure {
    padding: 40px 0;
}.ycourse_structure .Xstudy_hack {
    gap: 40px;
}.ycourse_structure .sdescription_wrap h2 {
    font-size: calc(38px * 0.8);
    padding-bottom: 15px;
}.ycourse_structure .sdescription_wrap h2::after {
    width: 80px;
}.ycourse_structure .sdescription_wrap .description {
    padding: 20px;
}.ycourse_structure .Fimg_display {
    height: 250px;
}}.kthxFrame {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(204,211,195) 25%, rgba(rgb(176,182,167,0.5), 0.05) 100%);
    padding: 5rem 0;
}.kthxFrame::before {
    position: absolute;
    animation: float 15s ease-in-out infinite alternate;
    right: -10%;
    transform: rotate(35deg) skew(15deg);
    height: 70%;
    filter: blur(80px);
    background: linear-gradient(120deg, rgb(147,153,134), rgba(rgb(147,153,134,0.5), 0.2));
    opacity: 0.1;
    content: "";
    top: -15%;
    z-index: 0;
    width: 40%;
}.kthxFrame::after {
    height: 10px;
    content: "";
    width: 100%;
    z-index: 1;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(176,182,167) 20%, 
        rgb(147,153,134) 50%, 
        rgb(176,182,167) 80%, 
        transparent);
    position: absolute;
    opacity: 0.3;
    left: 0;
}.kthxFrame .container {
    max-width: 1140px;
    z-index: 2;
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
}.kthxFrame .Rclass_pro {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    flex-direction: column;
    position: relative;
    padding: 3.5rem;
    box-shadow: 
        0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
        0 1px 0 rgba(rgb(255, 255, 255, 0.5), 0.95) inset,
        0 -20px 50px rgba(rgb(147,153,134,0.5), 0.1) inset;
    gap: 2rem;
    backdrop-filter: blur(10px);
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
    transform: perspective(1000px) rotateY(1deg);
    display: flex;
}.kthxFrame .Rclass_pro:hover {
    box-shadow: 
        0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
        0 1px 0 rgba(rgb(255, 255, 255, 0.5), 0.95) inset,
        0 -20px 50px rgba(rgb(147,153,134,0.5), 0.15) inset;
    transform: perspective(1000px) rotateY(-1deg);
}.kthxFrame .Rclass_pro > div:first-child {
    position: relative;
    padding-bottom: 1.5rem;
}.kthxFrame .Rclass_pro > div:first-child::after {
    height: 3px;
    width: 60px;
    bottom: 0;
    position: absolute;
    background: rgb(176,182,167);
    left: 0;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    content: "";
    transform-origin: left;
}.kthxFrame .Rclass_pro:hover > div:first-child::after {
    width: 120px;
}.kthxFrame h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #000000;
    line-height: 1.4;
    position: relative;
    transform: translateX(-5px);
    transition: transform 0.4s ease;
}.kthxFrame .Rclass_pro:hover h5 {
    transform: translateX(0);
}.kthxFrame a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease-out;
    position: relative;
}.kthxFrame a:hover {
    transform: translateY(-3px);
}.kthxFrame p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
    position: relative;
    margin: 0;
}.kthxFrame a:hover p {
    color: rgb(176,182,167);
}.kthxFrame a::before {
    left: 0;
    height: 1px;
    opacity: 0.7;
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(90deg, 
        rgb(176,182,167), 
        rgb(147,153,134));
    width: 0;
    position: absolute;
    bottom: -10px;
    content: "";
}.kthxFrame a:hover::before {
    width: 100%;
}.kthxFrame .Rclass_pro > div:first-child::before {
    font-size: calc(35px * 1.5);
    top: -20px;
    opacity: 0.1;
    content: "✓";
    transform: rotate(-5deg) scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgb(147,153,134);
    position: absolute;
    right: 0;
}.kthxFrame .Rclass_pro:hover > div:first-child::before {
    opacity: 0.2;
    transform: rotate(5deg) scale(1.1);
}

@keyframes float {
    0% {
        transform: rotate(35deg) skew(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(38deg) skew(12deg) translate(-20px, 20px);
    }
    100% {
        transform: rotate(32deg) skew(18deg) translate(20px, -10px);
    }
}

@media (max-width: 992px) {.kthxFrame {
    padding: 4rem 0;
}.kthxFrame .Rclass_pro {
    padding: 2.5rem;
}.kthxFrame h5 {
    font-size: calc(18px * 0.9);
}
}

@media (max-width: 768px) {.kthxFrame {
    padding: 3rem 0;
}.kthxFrame .Rclass_pro {
    padding: 2rem;
    gap: 1.5rem;
    transform: perspective(1000px) rotateY(0deg);
}.kthxFrame .Rclass_pro:hover {
    transform: perspective(1000px) rotateY(0deg);
}.kthxFrame h5 {
    font-size: calc(18px * 0.85);
    transform: translateX(0);
}.kthxFrame p {
    font-size: calc(17px * 0.95);
}.kthxFrame::before {
    height: 50%;
    width: 60%;
    top: -10%;
    right: -30%;
}
}

@media (max-width: 576px) {.kthxFrame {
    padding: 2.5rem 0;
}.kthxFrame .Rclass_pro {
    padding: 1.5rem;
    gap: 1.25rem;
}.kthxFrame h5 {
    font-size: calc(18px * 0.8);
}.kthxFrame p {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}.kthxFrame .Rclass_pro > div:first-child {
    padding-bottom: 1rem;
}.kthxFrame .Rclass_pro > div:first-child::after {
    width: 40px;
    height: 2px;
}.kthxFrame .Rclass_pro:hover > div:first-child::after {
    width: 80px;
}.kthxFrame .Rclass_pro > div:first-child::before {
    font-size: calc(35px * 1.2);
    top: -15px;
}}.acookie_overlay_dialog {
    bottom: 0;
    position: fixed;
    padding: 20px 0;
    z-index: 100;
    justify-content: center;
    width: 100%;
    background: rgb(204,211,195);
    display: flex;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
    border-top: 3px solid rgb(176,182,167);
}.Donline_tracking {
    align-items: center;
    width: 90%;
    margin: auto;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(176,182,167);
    padding: 20px;
    border-radius: 26px;
    display: flex;
    justify-content: space-between;
}.mdigital_cookies {
    margin-right: 20px;
    flex-shrink: 0;
}.mdigital_cookies svg {
    width: 50px;
    fill: rgb(176,182,167);
    height: 50px;
}.Kvisitor_settings {
    color: #ffffff;
    text-align: left;
    flex-grow: 1;
}.Kvisitor_settings h5 {
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: rgb(176,182,167);
    text-transform: uppercase;
}.Kvisitor_settings p {
    font-size: 17px;
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
}.Kvisitor_settings p a {
    color: rgb(176,182,167);
    text-decoration: underline;
}.ecookie_necessary {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;
    min-width: 120px;
    border-radius: 10px;
    border: none;
    flex-shrink: 0;
    font-size: 14px;
    background: rgb(176,182,167);
}.cookie_button.Sprivacy_switch {
    margin-right: 10px;
}#gcookie_overlay_box {
    display: none;
}#gcookie_overlay_box:checked ~ .acookie_overlay_dialog {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.Donline_tracking {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.mdigital_cookies {
    margin-bottom: 20px;
    margin-right: 0;
}.ecookie_necessary {
    margin: 10px 0;
    width: 100%;
    max-width: 250px;
}}
.Gwelcome_page {
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    width: 100%;
}.Gwelcome_page .ledu_online {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
}.Gwelcome_page .ledu_online::before {
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
    rgb(176,182,167,0.5) 0%, 
    rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    top: 0;
    left: 0;
    content: "";
    position: absolute;
}.Gwelcome_page .ymaster_program {
    max-width: 1200px;
    backdrop-filter: blur(8px);
    width: 90%;
    transform: perspective(1000px) rotateY(-2deg);
    background: linear-gradient(
    170deg, 
    rgba(255, 255, 255, 0.15), 
    rgba(255, 255, 255, 0.05)
  );
    border-left: 3px solid rgb(147,153,134);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
              0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slide-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    position: relative;
    z-index: 2;
    padding: 3rem;
}.Gwelcome_page h1 {
    color: #ffffff;
    animation: fade-slide-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
    font-size: clamp(2.5rem, 5vw, 42px);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}.Gwelcome_page h1::after {
    transform-origin: left;
    width: 80px;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    height: 4px;
    bottom: -10px;
    animation: scale-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
    content: "";
    background: rgb(147,153,134);
}.Gwelcome_page h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    max-width: 800px;
    font-weight: 400;
    color: rgb(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    animation: fade-slide-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    opacity: 0;
    line-height: 1.5;
    transform: translateX(-10px);
}.Gwelcome_page p {
    padding-left: 1.5rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    transform: translateX(-10px);
    position: relative;
    font-size: clamp(1rem, 2vw, 12px);
    animation: fade-slide-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
    opacity: 0;
    max-width: 700px;
    color: #ffffff;
}.Gwelcome_page p::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    height: 10px;
    width: 10px;
    position: absolute;
    left: 0;
    content: "";
    background-color: rgb(147,153,134);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateY(-5deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(-2deg) translateY(0);
  }
}

@keyframes fade-slide-right {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (min-width: 768px) {.Gwelcome_page .ymaster_program {
    margin-left: 10%;
    padding: 4rem;
    width: 80%;
}.Gwelcome_page h1 {
    margin-bottom: 2rem;
}.Gwelcome_page h1::after {
    width: 120px;
}
}

@media (min-width: 1200px) {.Gwelcome_page .ymaster_program {
    width: 75%;
    padding: 5rem;
    margin-left: 15%;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
}.Gwelcome_page h1 {
    margin-bottom: 2.5rem;
}.Gwelcome_page h1::after {
    width: 150px;
    height: 5px;
}.Gwelcome_page h3 {
    max-width: 80%;
    font-size: 1.8rem;
}.Gwelcome_page p {
    padding-left: 2rem;
    font-size: 12px;
}.Gwelcome_page p::before {
    width: 12px;
    height: 12px;
}
}

@media (max-width: 767px) {.Gwelcome_page .ledu_online {
    padding: 2rem 1rem;
}.Gwelcome_page .ymaster_program {
    padding: 2rem;
    backdrop-filter: blur(5px);
}.Gwelcome_page h1 {
    font-size: 2.2rem;
}.Gwelcome_page h3 {
    font-size: 1.2rem;
}
}

@media (hover: hover) {.Gwelcome_page .ymaster_program:hover {
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}.Gwelcome_page .ymaster_program:hover h1::after {
    transition: width 0.5s ease;
    width: 200px;
}
}

@media (prefers-reduced-motion: reduce) {.Gwelcome_page .ymaster_program,
  .Gwelcome_page h1,
  .Gwelcome_page h3,
  .Gwelcome_page p {
    transform: none;
    opacity: 1;
    animation: none;
}.Gwelcome_page h1::after {
    animation: none;
    transform: scaleX(1);
}}.dgive_it_a_try {
    padding: 100px 0;
    z-index: 1;
    background: linear-gradient(135deg, rgb(176,182,167) 0%, rgb(147,153,134) 100%);
    overflow: hidden;
    position: relative;
}.dgive_it_a_try::before {
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    position: absolute;
    background-size: 20px 20px;
    top: 0;
    content: '';
    left: 0;
    z-index: -1;
    background: 
        linear-gradient(45deg, rgb(147,153,134,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(147,153,134,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(147,153,134,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(147,153,134,0.5) 75%);
    width: 100%;
    opacity: 0.05;
    height: 100%;
}.dgive_it_a_try::after {
    left: -50%;
    opacity: 0.1;
    background: radial-gradient(circle, #ffffff 0%, transparent 60%);
    z-index: -1;
    position: absolute;
    right: -50%;
    top: -50%;
    animation: rotateRadial 30s linear infinite;
    bottom: -50%;
    content: '';
}.dgive_it_a_try .Rclass_pro {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: column;
    position: relative;
}.dgive_it_a_try .Rclass_pro::before {
    position: absolute;
    opacity: 0.1;
    width: 100%;
    border: 2px solid #ffffff;
    height: 100%;
    content: '';
    z-index: -1;
    animation: clipFrameAnimate 10s ease-in-out infinite alternate;
    clip-path: polygon(
        0% 15%, 
        15% 15%, 
        15% 0%, 
        85% 0%, 
        85% 15%, 
        100% 15%, 
        100% 85%, 
        85% 85%, 
        85% 100%, 
        15% 100%, 
        15% 85%, 
        0% 85%
    );
}.dgive_it_a_try .Rclass_pro::after {
    z-index: -1;
    position: absolute;
    width: 120%;
    left: -10%;
    opacity: 0.1;
    animation: pulseSpots 6s ease-in-out infinite alternate;
    content: '';
    top: -10%;
    height: 120%;
    background: 
        radial-gradient(circle at 30% 30%, #ffffff 0%, transparent 10%),
        radial-gradient(circle at 70% 70%, #ffffff 0%, transparent 10%),
        radial-gradient(circle at 30% 70%, #ffffff 0%, transparent 10%),
        radial-gradient(circle at 70% 30%, #ffffff 0%, transparent 10%),
        radial-gradient(circle at 50% 50%, #ffffff 0%, transparent 10%);
}.dgive_it_a_try h3 {
    position: relative;
    margin-bottom: 40px;
    text-shadow: 0 0 15px #ffffff;
    letter-spacing: 3px;
    font-family: Arial, sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    animation: pulseText 4s ease-in-out infinite alternate;
}.dgive_it_a_try h3::before {
    bottom: -15px;
    height: 2px;
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    position: absolute;
    box-shadow: 0 0 10px #ffffff;
    background-color: #ffffff;
}.dgive_it_a_try h3::after {
    width: 10px;
    content: '';
    height: 10px;
    position: absolute;
    box-shadow: 0 0 10px #ffffff;
    transform: translateX(-50%);
    bottom: -19px;
    background-color: #ffffff;
    left: 50%;
    border-radius: 50%;
}.dgive_it_a_try .Acontact_us {
    z-index: 1;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 18px 45px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    letter-spacing: 2px;
    box-shadow: 0 0 20px #ffffff;
    font-size: 15px;
}.dgive_it_a_try .Acontact_us::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    transition: all 0.3s ease;
    opacity: 0.2;
    background-color: #ffffff;
}.dgive_it_a_try .Acontact_us::after {
    top: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    content: '';
    left: -100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}.dgive_it_a_try .Acontact_us:hover {
    color: rgb(176,182,167);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    transform: translateY(-5px);
}.dgive_it_a_try .Acontact_us:hover::before {
    opacity: 0.9;
}.dgive_it_a_try .Acontact_us:hover::after {
    left: 100%;
}

@media screen and (max-width: 992px) {.dgive_it_a_try {
    padding: 80px 0;
}.dgive_it_a_try h3 {
    font-size: calc(35px * 0.9);
    margin-bottom: 35px;
}.dgive_it_a_try .Acontact_us {
    padding: 16px 40px;
}
}

@media screen and (max-width: 768px) {.dgive_it_a_try {
    padding: 70px 0;
}.dgive_it_a_try h3 {
    letter-spacing: 2px;
    font-size: calc(35px * 0.8);
    margin-bottom: 30px;
}.dgive_it_a_try .Acontact_us {
    font-size: calc(15px * 0.95);
    padding: 14px 35px;
}
}

@media screen and (max-width: 576px) {.dgive_it_a_try {
    padding: 60px 0;
}.dgive_it_a_try h3 {
    margin-bottom: 25px;
    font-size: calc(35px * 0.7);
    letter-spacing: 1px;
}.dgive_it_a_try .Acontact_us {
    font-size: calc(15px * 0.9);
    padding: 12px 30px;
}}

@keyframes rotateRadial {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes clipFrameAnimate {
    0% {
        clip-path: polygon(
            0% 15%, 
            15% 15%, 
            15% 0%, 
            85% 0%, 
            85% 15%, 
            100% 15%, 
            100% 85%, 
            85% 85%, 
            85% 100%, 
            15% 100%, 
            15% 85%, 
            0% 85%
        );
    }
    50% {
        clip-path: polygon(
            0% 10%, 
            10% 10%, 
            10% 0%, 
            90% 0%, 
            90% 10%, 
            100% 10%, 
            100% 90%, 
            90% 90%, 
            90% 100%, 
            10% 100%, 
            10% 90%, 
            0% 90%
        );
    }
    100% {
        clip-path: polygon(
            0% 15%, 
            15% 15%, 
            15% 0%, 
            85% 0%, 
            85% 15%, 
            100% 15%, 
            100% 85%, 
            85% 85%, 
            85% 100%, 
            15% 100%, 
            15% 85%, 
            0% 85%
        );
    }
}

@keyframes pulseSpots {
    0% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        opacity: 0.05;
    }
}

@keyframes pulseText {
    0% {
        text-shadow: 0 0 10px #ffffff;
    }
    50% {
        text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff;
    }
    100% {
        text-shadow: 0 0 10px #ffffff;
    }
}.Qpricing_matrix {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(204,211,195), rgba(0, 0, 0, 0.5));
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}.Qpricing_matrix::before {
    top: 0;
    pointer-events: none;
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    background: linear-gradient(45deg, transparent 0%, rgb(176,182,167,0.5) 30%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
    height: 100%;
}.Qpricing_matrix .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.Qpricing_matrix .Ppricing_schemes {
    gap: 3rem;
    flex-direction: column;
    display: flex;
}.Qpricing_matrix .Zfee_schemes {
    text-align: center;
    transform: translateY(20px);
    order: -1;
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}.Qpricing_matrix .Zfee_schemes h2 {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    font-size: 33px;
    color: #000000;
}.Qpricing_matrix .Zfee_schemes h2::after {
    border-radius: 10px;
    height: 3px;
    bottom: -10px;
    transform: translateX(-50%);
    content: "";
    width: 80px;
    background: linear-gradient(90deg, rgb(176,182,167), rgb(147,153,134));
    left: 50%;
    position: absolute;
}.Qpricing_matrix .Hlearn_offers {
    color: #000000;
    max-width: 90%;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto;
}.Qpricing_matrix .ystudy_offers {
    perspective: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}.Qpricing_matrix .hprice_choices {
    background: #ffffff;
    animation: fadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    color: #000000;
    overflow: hidden;
    opacity: 0;
    text-decoration: none;
    display: block;
    transform: translateZ(0) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border-radius: 26px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}.Qpricing_matrix .hprice_choices:nth-child(1) {
    animation-delay: 0.1s;
}.Qpricing_matrix .hprice_choices:nth-child(2) {
    animation-delay: 0.2s;
}.Qpricing_matrix .hprice_choices:nth-child(3) {
    animation-delay: 0.3s;
}.Qpricing_matrix .hprice_choices:nth-child(4) {
    animation-delay: 0.4s;
}.Qpricing_matrix .hprice_choices::before {
    transform-origin: left;
    transform: scaleX(0);
    height: 5px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    content: "";
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(176,182,167), rgb(147,153,134));
    position: absolute;
    left: 0;
}.Qpricing_matrix .hprice_choices:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateZ(30px) scale(1.03);
}.Qpricing_matrix .hprice_choices:hover::before {
    transform: scaleX(1);
}.Qpricing_matrix .wcost_deals {
    height: 100%;
    flex-direction: column;
    display: flex;
}.Qpricing_matrix .jfee_plan {
    display: flex;
    flex-grow: 1;
    padding: 2rem;
    flex-direction: column;
}.Qpricing_matrix .jfee_plan h3 {
    font-size: 20px;
    color: #000000;
    margin: 0 0 1rem;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}.Qpricing_matrix .hprice_choices:hover .jfee_plan h3 {
    color: rgb(176,182,167);
}.Qpricing_matrix .flearn_deals {
    position: relative;
    color: rgb(176,182,167);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}.Qpricing_matrix .flearn_deals::after {
    left: 0;
    width: 40px;
    bottom: -8px;
    transition: width 0.3s ease;
    position: absolute;
    height: 2px;
    background-color: rgb(147,153,134);
    content: "";
}.Qpricing_matrix .hprice_choices:hover .flearn_deals {
    transform: translateY(-3px);
}.Qpricing_matrix .hprice_choices:hover .flearn_deals::after {
    width: 80px;
}.Qpricing_matrix .jfee_plan p {
    font-size: calc(15px - 2px);
    overflow-wrap: break-word;
    margin: 0;
    flex-grow: 1;
    line-height: 1.6;
    color: #000000;
    word-break: break-word;
}.Qpricing_matrix .Fimg_display {
    width: 100%;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 200px;
    overflow: hidden;
}.Qpricing_matrix .Fimg_display::after {
    top: 0;
    opacity: 0.7;
    position: absolute;
    transition: opacity 0.5s ease;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    left: 0;
    content: "";
    right: 0;
}.Qpricing_matrix .hprice_choices:hover .Fimg_display {
    transform: scale(1.05);
}.Qpricing_matrix .hprice_choices:hover .Fimg_display::after {
    opacity: 0.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

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

@media (min-width: 768px) {.Qpricing_matrix {
    padding: 7rem 2rem;
}.Qpricing_matrix .Ppricing_schemes {
    align-items: flex-start;
    flex-direction: row;
}.Qpricing_matrix .Zfee_schemes {
    order: 0;
    flex: 0 0 30%;
    margin: 0;
    justify-content: center;
    flex-direction: column;
    padding-right: 2rem;
    display: flex;
    text-align: left;
}.Qpricing_matrix .Zfee_schemes h2 {
    text-align: left;
}.Qpricing_matrix .Zfee_schemes h2::after {
    transform: none;
    left: 0;
}.Qpricing_matrix .Hlearn_offers {
    max-width: 100%;
    margin: 0;
}.Qpricing_matrix .ystudy_offers {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 1rem), 1fr));
    flex: 0 0 70%;
}
}

@media (min-width: 992px) {.Qpricing_matrix .ystudy_offers {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {.Qpricing_matrix {
    padding: 8rem 2rem;
}.Qpricing_matrix .Zfee_schemes {
    flex: 0 0 25%;
}.Qpricing_matrix .ystudy_offers {
    flex: 0 0 75%;
}.Qpricing_matrix .jfee_plan {
    padding: 2.5rem;
}
}

@media (max-width: 767px) {.Qpricing_matrix .hprice_choices {
    margin: 0 auto;
    max-width: 400px;
}.Qpricing_matrix .Zfee_schemes h2 {
    font-size: calc(33px * 0.9);
}.Qpricing_matrix .Hlearn_offers {
    font-size: calc(15px * 0.95);
}}footer {
    position: relative;
    width: 100%;
}footer .Uclass_guide {
    padding: 120px 0 30px;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgb(176,182,167), rgb(147,153,134));
    position: relative;
    color: #ffffff;
}footer .Uclass_guide::before {
    left: 0;
    transform: rotateX(180deg);
    position: absolute;
    content: "";
    opacity: 0.25;
    width: 100%;
    height: 100px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    top: 0;
    background: #ffffff;
}footer .Uclass_guide::after {
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    opacity: 0.15;
    width: 100%;
    height: 50px;
    background: #ffffff;
}footer .fpress_room {
    position: relative;
    z-index: 1;
}footer .dcontact_details {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}footer .info_item {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0 25px;
    backdrop-filter: blur(5px);
    border-radius: 40px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 80px;
    display: flex;
    flex: 1 1 200px;
    position: relative;
    max-width: 300px;
}footer .info_item::before {
    animation: waveAnimation 15s linear infinite;
    content: "";
    width: 100%;
    height: 100%;
    left: -100%;
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    background: #ffffff;
}@keyframes waveAnimation {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

footer .info_item:hover {
    background-color: rgb(147,153,134,0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}footer .info_item svg {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    fill: #ffffff;
    margin-right: 15px;
}footer .info_item p,
footer .info_item a {
    transition: all 0.3s ease;
    font-size: 15px;
    text-decoration: none;
    color: #ffffff;
}footer .info_item a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}footer .text_main_holder {
    flex-wrap: wrap;
    display: flex;
    position: relative;
    gap: 25px;
}footer .psite_navbar {
    flex: 1 1 100%;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}footer .psite_navbar svg {
    width: auto;
    filter: brightness(0) invert(1);
    height: 50px;
    margin: 0 auto 20px;
}footer .itestimonial {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}footer .ftop_start,footer .subscribe_holder {
    flex: 1 1 300px;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 29px;
    backdrop-filter: blur(5px);
}footer .ftop_start::before,footer .subscribe_holder::before {
    content: "";
    top: 0;
    animation: waveAnimation 20s linear infinite;
    background: #ffffff;
    opacity: 0.1;
    position: absolute;
    left: -100%;
    width: 300%;
    height: 100%;
    z-index: -1;
}footer .ftop_start h5, footer .subscribe_holder h5 {
    font-size: 19px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 10px;
}footer .ftop_start h5::after, footer .subscribe_holder h5::after {
    bottom: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    position: absolute;
}footer .Tmain_header {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}footer .Tmain_header a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    text-align: center;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 20px;
    flex: 1 1 calc(50% - 10px);
    background-color: rgb(176,182,167,0.5);
}footer .Tmain_header a::before {
    height: 2px;
    width: 100%;
    left: -100%;
    transition: left 0.3s ease;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    position: absolute;
    bottom: 0;
    content: "";
}footer .Tmain_header a:hover {
    transform: translateY(-3px);
    background-color: rgb(147,153,134,0.5);
}footer .Tmain_header a:hover::before {
    left: 0;
}footer .subscribe_holder p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}footer .input_holder {
    position: relative;
    flex-direction: column;
    display: flex;
    gap: 15px;
}footer .input_holder input[type="email"] {
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    font-size: 15px;
    color: #ffffff;
    border-radius: 25px;
    padding: 15px 20px;
    border: none;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgb(176,182,167,0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .ksubscribe_feature {
    border: none;
    color: rgb(176,182,167);
    background-color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
}footer .ksubscribe_feature::after {
    transition: left 0.7s ease;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    content: "";
}footer .ksubscribe_feature:hover {
    transform: translateY(-3px);
    background-color: rgb(204,211,195);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .ksubscribe_feature:hover::after {
    left: 100%;
}footer .lmentor_cta {
    position: relative;
    margin-top: 60px;
    text-align: center;
}footer .qhonor_cta {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}footer .qhonor_cta::before,
footer .qhonor_cta::after {
    position: absolute;
    width: 20px;
    top: 50%;
    content: "";
    background-color: rgba(255, 255, 255, 0.3);
    height: 1px;
}footer .qhonor_cta::before {
    left: 0;
}footer .qhonor_cta::after {
    right: 0;
}

@media (min-width: 768px) {footer .psite_navbar {
    flex: 1 1 100%;
}footer .ftop_start, footer .subscribe_holder {
    flex: 1 1 300px;
}footer .input_holder {
    flex-direction: row;
}footer .ksubscribe_feature {
    white-space: nowrap;
}
}

@media (max-width: 991px) {footer .Uclass_guide {
    padding: 100px 0 30px;
}footer .text_main_holder {
    gap: 20px;
}
}

@media (max-width: 767px) {footer .Uclass_guide {
    padding: 80px 0 30px;
}footer .Uclass_guide::before {
    background-size: 100% 60px;
    height: 60px;
}footer .dcontact_details {
    margin-bottom: 40px;
}footer .info_item {
    height: auto;
    padding: 15px 20px;
}footer .ftop_start, footer .subscribe_holder {
    padding: 25px 20px;
}footer .lmentor_cta {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .Uclass_guide {
    padding: 60px 0 20px;
}footer .Uclass_guide::before {
    height: 40px;
    background-size: 100% 40px;
}footer .ftop_start h5, footer .subscribe_holder h5 {
    margin-bottom: 15px;
    font-size: calc(19px - 2px);
}footer .Tmain_header a {
    flex: 1 1 100%;
}footer .input_holder input[type="email"],
    footer .ksubscribe_feature {
    padding: 12px 15px;
}}.zsecure_fortification {
    font-family: Arial, sans-serif;
    overflow: hidden;
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(145deg, rgb(204,211,195), rgba(245, 245, 250, 0.9));
    color: #000000;
}.zsecure_fortification::before {
    background: linear-gradient(120deg, rgb(176,182,167,0.5), rgb(147,153,134,0.5));
    opacity: 0.3;
    filter: blur(60px);
    z-index: 0;
    position: absolute;
    top: -10%;
    height: 250px;
    transform: rotate(-15deg);
    width: 250px;
    content: "";
    right: -5%;
}.zsecure_fortification::after {
    bottom: -10%;
    transform: rotate(15deg);
    background: linear-gradient(230deg, rgb(147,153,134,0.5), rgb(176,182,167,0.5));
    height: 200px;
    content: "";
    width: 200px;
    position: absolute;
    z-index: 0;
    left: -5%;
    filter: blur(50px);
    opacity: 0.2;
}.zsecure_fortification .container {
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 15px),
        calc(100% - 15px) 100%,
        0 100%
    );
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateZ(0);
    backdrop-filter: blur(10px) saturate(120%);
    max-width: 1140px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 
                0 1px 5px rgba(0, 0, 0, 0.02),
                0 20px 50px rgba(50, 50, 93, 0.05);
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    margin: 0 auto;
}.zsecure_fortification .container:hover {
    transform: translateY(-5px) translateZ(0);
}.zsecure_fortification h1 {
    font-size: 42px;
    transform: translateZ(0);
    margin-bottom: 2rem;
    color: #000000;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    position: relative;
}.zsecure_fortification h1::after {
    transform-origin: left center;
    left: 0;
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgb(176,182,167), rgb(147,153,134));
    bottom: 0;
    width: 80px;
    transition: width 0.3s ease-out;
    height: 4px;
}.zsecure_fortification .container:hover h1::after {
    width: 120px;
}.zsecure_fortification h2 {
    margin: 2.5rem 0 1.25rem;
    font-size: 28px;
    color: #000000;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: -0.01em;
}.zsecure_fortification h2::before {
    transform: skewX(-15deg);
    z-index: -1;
    transition: height 0.3s, opacity 0.3s;
    position: absolute;
    background-color: rgb(176,182,167,0.5);
    opacity: 0.25;
    content: "";
    height: 12px;
    left: 0;
    bottom: 5px;
    width: 100%;
}.zsecure_fortification h2:hover::before {
    height: 8px;
    opacity: 0.4;
}.zsecure_fortification h3 {
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #000000;
    font-size: calc(28px * 0.8);
    padding-left: 15px;
    position: relative;
}.zsecure_fortification h3::before {
    background: linear-gradient(to bottom, rgb(176,182,167), rgb(147,153,134));
    left: 0;
    content: "";
    border-radius: 1px;
    height: 70%;
    position: absolute;
    top: 0.25em;
    width: 4px;
}.zsecure_fortification h4 {
    opacity: 0.85;
    margin: 1.5rem 0 0.75rem;
    letter-spacing: 0.05em;
    color: #000000;
    font-size: calc(28px * 0.7);
    text-transform: uppercase;
    font-weight: 600;
}.zsecure_fortification p {
    font-size: 17px;
    position: relative;
    z-index: 1;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}.zsecure_fortification strong {
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    color: #000000;
}.zsecure_fortification strong::after {
    content: "";
    left: 0;
    height: 1px;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgb(176,182,167,0.5);
}.zsecure_fortification ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}.zsecure_fortification ul::before {
    content: "";
    top: 0;
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, 
        rgb(176,182,167,0.5),
        rgb(147,153,134,0.5),
        transparent);
    height: 100%;
    left: 0;
}.zsecure_fortification li {
    padding-left: 0.5rem;
    position: relative;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 17px;
}.zsecure_fortification li::before {
    width: 8px;
    transform: rotate(45deg);
    transition: transform 0.3s, background-color 0.3s;
    background-color: #ffffff;
    border: 1px solid rgb(176,182,167);
    left: -1.5rem;
    content: "";
    position: absolute;
    top: 0.7em;
    height: 8px;
}.zsecure_fortification li:hover::before {
    transform: rotate(135deg);
    background-color: rgb(176,182,167,0.5);
}.zsecure_fortification span {
    padding-left: 1rem;
    color: #000000;
    line-height: 1.75;
    display: block;
    border-left: 1px dashed rgb(147,153,134,0.5);
    font-size: 17px;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {.zsecure_fortification {
    padding: 3rem 1.5rem;
}.zsecure_fortification .container {
    padding: 2.5rem;
}.zsecure_fortification h1 {
    font-size: calc(42px * 0.9);
}.zsecure_fortification h2 {
    font-size: calc(28px * 0.9);
}
}

@media (max-width: 768px) {.zsecure_fortification {
    padding: 2.5rem 1rem;
}.zsecure_fortification .container {
    padding: 2rem;
    clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            0 100%
        );
}.zsecure_fortification h1 {
    margin-bottom: 1.5rem;
    font-size: calc(42px * 0.8);
}.zsecure_fortification h2 {
    font-size: calc(28px * 0.8);
    margin: 2rem 0 1rem;
}.zsecure_fortification h3 {
    font-size: calc(28px * 0.7);
}.zsecure_fortification h4 {
    font-size: calc(28px * 0.6);
}.zsecure_fortification p, 
    .zsecure_fortification li,
    .zsecure_fortification span {
    font-size: calc(17px * 0.95);
}
}

@media (max-width: 576px) {.zsecure_fortification {
    padding: 2rem 0.75rem;
}.zsecure_fortification .container {
    padding: 1.5rem;
    clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 8px),
            calc(100% - 8px) 100%,
            0 100%
        );
}.zsecure_fortification h1 {
    font-size: calc(42px * 0.7);
    padding-bottom: 0.75rem;
}.zsecure_fortification h1::after {
    width: 60px;
    height: 3px;
}.zsecure_fortification h2 {
    font-size: calc(28px * 0.7);
}.zsecure_fortification h2::before {
    height: 8px;
}.zsecure_fortification h3 {
    font-size: calc(28px * 0.6);
    padding-left: 12px;
}.zsecure_fortification h3::before {
    width: 3px;
}.zsecure_fortification h4 {
    font-size: calc(28px * 0.55);
}.zsecure_fortification p, 
    .zsecure_fortification li,
    .zsecure_fortification span {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}.zsecure_fortification ul {
    padding-left: 1.25rem;
}.zsecure_fortification span {
    padding-left: 0.75rem;
}}.Ydata_analysis {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(204,211,195), rgba(rgb(147,153,134,0.5), 0.1));
}.Ydata_analysis::before {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    background: radial-gradient(circle at 70% 30%, rgba(rgb(176,182,167,0.5), 0.15), transparent 70%);
    content: "";
    top: 0;
    left: 0;
}.Ydata_analysis::after {
    right: -50px;
    background: radial-gradient(circle, rgba(rgb(147,153,134,0.5), 0.2), transparent 70%);
    width: 200px;
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    height: 200px;
    z-index: 1;
    content: "";
    filter: blur(20px);
}.Ydata_analysis h3 {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    z-index: 2;
}.Ydata_analysis h3::after {
    width: 80px;
    left: 50%;
    bottom: -10px;
    height: 3px;
    transform: translateX(-50%);
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(176,182,167), rgb(147,153,134));
}.Ydata_analysis .container {
    z-index: 2;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
    max-width: 1200px;
}.Ydata_analysis ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 0;
    list-style: none;
    gap: 25px;
    display: grid;
    padding: 0;
    perspective: 1000px;
}.Ydata_analysis .xcareer_statistics {
    padding: 25px 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(rgba(0, 0, 0, 0.5), 0.07), 
                0 1px 3px rgba(rgba(0, 0, 0, 0.5), 0.05);
    background: linear-gradient(145deg, rgba(rgb(255, 255, 255, 0.5), 0.9), rgba(rgb(255, 255, 255, 0.5), 0.7));
    position: relative;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) rotateX(2deg);
}.Ydata_analysis .xcareer_statistics::before {
    top: 0;
    position: absolute;
    transition: transform 0.3s ease;
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, rgb(147,153,134), rgb(176,182,167));
    content: "";
    transform: translateY(-5px);
    z-index: 1;
    height: 5px;
}.Ydata_analysis .xcareer_statistics:hover {
    box-shadow: 0 12px 40px rgba(rgba(0, 0, 0, 0.5), 0.1), 
                0 2px 5px rgba(rgba(0, 0, 0, 0.5), 0.07);
    transform: translateZ(20px) rotateX(0);
}.Ydata_analysis .xcareer_statistics:hover::before {
    transform: translateY(0);
}.Ydata_analysis .xcareer_statistics span {
    line-height: 1.4;
    font-weight: 600;
    z-index: 2;
    color: #000000;
    display: block;
    font-size: calc(12px * 0.95);
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
    position: relative;
}.Ydata_analysis .xcareer_statistics span::after {
    left: 0;
    background-color: rgba(rgb(147,153,134,0.5), 0.5);
    content: "";
    transition: width 0.3s ease;
    width: 40px;
    position: absolute;
    bottom: -5px;
    height: 2px;
}.Ydata_analysis .xcareer_statistics:hover span::after {
    width: 60px;
}.Ydata_analysis .xcareer_statistics p {
    font-weight: 700;
    display: flex;
    transition: transform 0.3s ease, color 0.3s ease;
    align-items: center;
    color: rgb(176,182,167);
    margin: 0;
    font-size: calc(23px * 1.2);
}.Ydata_analysis .xcareer_statistics p::before {
    height: 8px;
    transform: scale(0);
    margin-right: 10px;
    background-color: rgb(147,153,134);
    display: inline-block;
    content: "";
    transition: transform 0.3s ease 0.1s;
    border-radius: 50%;
    width: 8px;
}.Ydata_analysis .xcareer_statistics:hover p {
    transform: translateX(5px);
    color: rgb(176,182,167);
}.Ydata_analysis .xcareer_statistics:hover p::before {
    transform: scale(1);
}.Ydata_analysis .xcareer_statistics:nth-child(even) {
    animation-delay: calc(0.7s * var(--i, 1));
    animation: float 7s ease-in-out infinite;
}.Ydata_analysis .xcareer_statistics:nth-child(odd) {
    animation-delay: calc(0.5s * var(--i, 1));
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateZ(0) translateY(0) rotateX(2deg);
    }
    50% {
        transform: translateZ(0) translateY(-5px) rotateX(2deg);
    }
}

@media (max-width: 991px) {.Ydata_analysis {
    padding: 60px 0;
}.Ydata_analysis h3 {
    font-size: calc(28px * 0.9);
    margin-bottom: 30px;
}.Ydata_analysis ul {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}.Ydata_analysis .xcareer_statistics {
    padding: 20px 15px;
}.Ydata_analysis .xcareer_statistics p {
    font-size: calc(23px * 1.1);
}
}

@media (max-width: 767px) {.Ydata_analysis {
    padding: 50px 0;
}.Ydata_analysis h3 {
    font-size: calc(28px * 0.8);
    margin-bottom: 25px;
}.Ydata_analysis ul {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}.Ydata_analysis .xcareer_statistics span {
    font-size: calc(12px * 0.9);
}.Ydata_analysis .xcareer_statistics p {
    font-size: 23px;
}
}

@media (max-width: 480px) {.Ydata_analysis {
    padding: 40px 0;
}.Ydata_analysis h3 {
    font-size: calc(28px * 0.75);
}.Ydata_analysis ul {
    gap: 15px;
    grid-template-columns: 1fr;
}.Ydata_analysis .xcareer_statistics {
    padding: 18px 15px;
}.Ydata_analysis .xcareer_statistics p {
    font-size: calc(23px * 0.95);
}.Ydata_analysis .xcareer_statistics:nth-child(n) {
    animation: none;
}.Ydata_analysis::after {
    display: none;
}
}