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

header,footer {
    width: 100%;
}

header {
    width: 100%;
    z-index: 99;
    position: relative;
    background: linear-gradient(to bottom, rgb(211,209,202), rgba(0, 0, 0, 0.5));
    overflow: visible;
}

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


.id-thankbar {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(211,209,202) 0%, rgb(193,174,174,0.5) 100%);
    position: relative;
    padding: 120px 0;
}

.id-thankbar::after {
    z-index: 1;
    bottom: -5%;
    left: -10%;
    width: 45%;
    height: 65%;
    transform: rotate(12deg) skew(-5deg);
    position: absolute;
    pointer-events: none;
    background: linear-gradient(45deg, rgb(193,174,174) 0%, transparent 80%);
    content: "";
    opacity: 0.1;
}

.id-thankbar h2 {
    line-height: 1.3;
    font-size: 36px;
    margin-bottom: 35px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 90%;
    position: relative;
    color: rgb(193,174,174);
    transform: translateX(-5%);
}

.id-thankbar .pedagogy-info {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 50px 40px 50px 60px;
    transform: translateX(5%);
    background-color: #ffffff;
    position: relative;
}

.id-thankbar .pedagogy-info::after {
    top: 20px;
    content: "";
    right: 20px;
    z-index: -1;
    width: 100px;
    height: 100px;
    opacity: 0.3;
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(164,106,121,0.5) 0%, transparent 70%);
}

.id-thankbar li span {
    display: block;
    color: #000000;
    line-height: 1.7;
    max-width: 95%;
    position: relative;
    font-weight: 400;
    font-size: calc(14px + 0.1rem);
}

.id-thankbar:hover h2::after {
    transform: scaleX(1.3);
}

.privacy-vault h1 {
    margin-top: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    font-weight: 700;
    text-align: center;
    font-size: 42px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 3px solid rgb(193,174,174);
}

.privacy-vault h3, .privacy-vault h4, .privacy-vault h5, .privacy-vault h6 {
    padding-bottom: 5px;
    font-size: 22px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

.privacy-vault section {
    background: #ffffff;
}

.privacy-vault p, .privacy-vault span, .privacy-vault div {
    margin-bottom: 15px;
    font-size: 14px;
    color: #000000;
    padding-bottom: 10px;
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

.title-portal > div {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.title-portal .learn-legacy {
    position: relative;
    margin-bottom: 2.5rem;
    animation: slideInLeft 0.8s ease-out forwards;
    transform: translateX(-30px);
    opacity: 0;
}

.title-portal .study-express::before {
    top: 0;
    position: absolute;
    width: 5px;
    left: 0;
    transform: scaleY(0);
    transform-origin: top;
    height: 100%;
    background: linear-gradient(to bottom, rgb(193,174,174), rgb(164,106,121));
    animation: scaleVertical 0.5s 0.3s ease-out forwards;
    content: "";
}

.title-portal .edu-online::before {
    right: 0;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
    top: 0;
    background: linear-gradient(135deg, rgb(193,174,174,0.5), rgba(0, 0, 0, 0.7));
    content: "";
}

.title-portal .edu-online p {
    max-width: 80%;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s 0.6s ease-out forwards;
    transform: translateX(-20px);
    opacity: 0;
    font-size: calc(18px * 1.2);
    position: relative;
}

.price-deck-grid {
    overflow: hidden;
    padding: 120px 0;
    background-color: rgb(211,209,202);
    position: relative;
}

.price-deck-grid::before {
    top: -10%;
    width: 110%;
    background: linear-gradient(135deg, 
        rgba(var(--secondary-color-rgb), 0.03) 0%,
        rgba(var(--secondary-color-rgb), 0.01) 40%, 
        rgba(var(--primary-color-rgb), 0.02) 60%, 
        rgba(var(--primary-color-rgb), 0.05) 100%);
    left: -5%;
    transform: rotate(-3deg);
    content: "";
    z-index: 0;
    height: 120%;
    position: absolute;
}

.price-deck-grid .study-costs h2 {
    font-size: 28px;
    -webkit-background-clip: text !important;
    color: #000000;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-text-fill-color: transparent;
    background: linear-gradient(120deg, rgb(164,106,121), rgb(193,174,174));
    margin-bottom: 15px;
    transform: translateY(0);
    font-weight: 700;
}

.price-deck-grid .study-costs:hover .cost-levels::after {
    transform: translateX(-50%) scaleX(1);
}

.price-deck-grid .learning-packages {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    order: 2;
    gap: 30px;
    width: 100%;
}

.price-deck-grid .access-cost {
    z-index: 1;
    perspective: 1000px;
    border-radius: 18px;
    text-decoration: none;
    transform-style: preserve-3d;
    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);
    display: block;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    overflow: hidden;
}

.price-deck-grid .access-cost:hover::before {
    transform: scaleX(1);
}

.price-deck-grid .monthly-rate {
    overflow: hidden;
    flex-direction: column;
    padding: 30px;
    flex-grow: 1;
    display: flex;
    z-index: 1;
    position: relative;
}

.price-deck-grid .monthly-rate h3 {
    transition: transform 0.4s ease;
    font-size: calc(22px + 2px);
    position: relative;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.price-deck-grid .deal-grid {
    transition: transform 0.4s ease, color 0.4s ease;
    position: relative;
    color: rgb(193,174,174);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: calc(22px + 8px);
    padding: 5px 10px;
}

.price-deck-grid .access-cost:hover .deal-grid {
    transform: translateY(-5px);
    color: rgb(164,106,121);
}

.price-deck-grid .access-cost:hover .deal-grid::before {
    transform: scaleX(1);
}

.price-deck-grid .pic-img-wrap {
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 200px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.price-deck-grid .pic-img-wrap::after {
    position: absolute;
    content: "";
    height: 100%;
    z-index: 1;
    top: 0;
    background: linear-gradient(0deg, 
        rgba(var(--dark-color-rgb), 0.4) 0%, 
        rgba(var(--dark-color-rgb), 0) 40%);
    left: 0;
    width: 100%;
}

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

.course-program .training-plan {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    transform: perspective(1000px) rotateX(0deg);
    display: grid;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.course-program .training-plan:hover {
    transform: perspective(1000px) rotateX(1deg);
}

.course-program .pic-img-wrap::after {
    z-index: 1;
    inset: 0;
    position: absolute;
    content: '';
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.3) 100%
    );
}

.course-program .text-display {
    border-left: 4px solid rgb(193,174,174);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    transform: translateZ(10px);
    position: relative;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    padding: 2.5rem;
}

.course-program h3 {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 22px;
    padding-bottom: 0.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    transform: translateY(0);
}

.course-program .text-display:hover h3 {
    transform: translateY(-5px);
}

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

.about-this::before {
    opacity: 0.05;
    z-index: -1;
    left: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgb(193,174,174,0.5) 10px,
            rgb(193,174,174,0.5) 11px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgb(164,106,121,0.5) 10px,
            rgb(164,106,121,0.5) 11px
        );
}

.about-this h2::after {
    position: absolute;
    bottom: -3px;
    animation: float 3s ease-in-out infinite;
    width: 10px;
    height: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    content: "";
    background: rgb(164,106,121);
}

.about-this .learn-corner:nth-child(1) {
    border-top-color: rgb(193,174,174);
}



.about-this .learn-corner:nth-child(1) {
    animation: fadeInUp 0.7s ease-out forwards;
}

.about-this .learn-corner:nth-child(2) {
    border-top-color: rgb(164,106,121);
}

.about-this .learn-corner:nth-child(2) {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
}

.about-this .learn-corner:nth-child(2)::before {
    top: -100px;
    left: -100px;
    background: linear-gradient(45deg, rgb(164,106,121,0.5), transparent);
}

.about-this .learn-corner:hover::before {
    transform: scale(1.5);
}

.about-this .learn-corner::after {
    opacity: 0.1;
    bottom: 0;
    position: absolute;
    height: 5px;
    left: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    width: 100%;
}

.about-this .learn-corner:nth-child(2) h3 {
    color: rgb(164,106,121);
}

.about-this .learn-corner:hover h3::after {
    width: 100%;
}

.about-this .learn-corner p {
    margin-bottom: 0;
    line-height: 1.8;
    color: #000000;
    font-size: 17px;
    position: relative;
    z-index: 2;
}



.about-this .container::before,
.about-this .container::after {
    z-index: -1;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(193,174,174,0.5), transparent);
    content: "";
    top: 0;
    animation: scanline 3s linear infinite;
    width: 2px;
    position: absolute;
}

.about-this .container::before {
    left: 10%;
    animation-delay: 1s;
    height: 50%;
}

footer {
    width: 100%;
    position: relative;
}

.data-viz::before {
    height: 120px;
    background: 
        linear-gradient(135deg, rgb(211,209,202) 25%, transparent 25%) -50px 0,
        linear-gradient(225deg, rgb(211,209,202) 25%, transparent 25%) -50px 0,
        linear-gradient(315deg, rgb(211,209,202) 25%, transparent 25%),
        linear-gradient(45deg, rgb(211,209,202) 25%, transparent 25%);
    width: 100%;
    content: "";
    background-color: rgb(193,174,174,0.5);
    left: 0;
    top: 0;
    position: absolute;
    background-size: 100px 100px;
}

footer .info_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

footer .info_item::before {
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    border-radius: 3px 0 0 3px;
    height: 100%;
    width: 3px;
    background-color: rgb(193,174,174);
    content: "";
    opacity: 0;
}

footer .info_item a:hover {
    color: rgb(193,174,174);
}

footer .text_main_holder {
    position: relative;
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr;
}

footer .top-navbar {
    position: relative;
    padding: 0 30px;
}

footer .top-navbar::after {
    position: absolute;
    right: 30px;
    bottom: -15px;
    left: 30px;
    background: linear-gradient(90deg, rgb(193,174,174), transparent);
    height: 1px;
    content: "";
}

footer .cloud-lab {
    max-width: 330px;
    color: #000000;
    line-height: 1.6;
    font-size: 13px;
}

footer .nav-lesson h5 {
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

footer .nav-lesson h5::after {
    background-color: rgb(193,174,174);
    bottom: -7px;
    height: 2px;
    content: "";
    width: 50px;
    left: 0;
    position: absolute;
}

footer .header-mainbar a {
    transition: all 0.3s ease;
    padding: 8px 0;
    color: #000000;
    display: inline-block;
    font-size: 17px;
    text-decoration: none;
    position: relative;
}

footer .header-mainbar a:hover {
    color: rgb(193,174,174);
    transform: translateX(5px);
}

footer .subscribe_holder::before {
    z-index: -1;
    position: absolute;
    content: "";
    top: -15px;
    background-color: rgb(193,174,174);
    height: 30px;
    transform: rotate(45deg);
    width: 30px;
    right: 30px;
}

footer .subscribe_holder h5 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

footer .input_holder {
    position: relative;
    flex-direction: column;
    display: flex;
    gap: 15px;
}

footer .input_holder input[type="email"]:focus {
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

footer .input_holder input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

footer .sub-backdrop:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(164,106,121);
}

footer .training-zone {
    z-index: 1;
    position: relative;
    margin-top: 60px;
    text-align: center;
}

header::before {
    content: "";
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    opacity: 0.1;
    width: 100%;
}

header .header-lead .top-navbar {
    margin-right: 40px;
    z-index: 2;
    position: relative;
}

header .header-lead .top-navbar .main-know {
    position: relative;
    display: block;
    padding: 5px;
}

header .header-lead .top-navbar .main-know:hover::before {
    transform: scale(1);
    opacity: 0.1;
}

header .header-lead .top-navbar .main-know svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    height: 45px;
    width: auto;
}

header .header-lead .nav-lesson {
    display: flex;
    margin: 0;
    perspective: 1000px;
    padding: 0;
    list-style: none;
}

header .header-lead .nav-lesson .first-expert a {
    font-size: 13px;
    display: block;
    color: #000000;
    transform-style: preserve-3d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    background: linear-gradient(to bottom, transparent, transparent);
    font-weight: 600;
    position: relative;
    padding: 12px 20px;
}

header .header-lead .nav-lesson .first-expert a::after {
    transform-origin: bottom center;
    background: linear-gradient(to top, rgb(164,106,121,0.5), transparent);
    transform: translateZ(-2px) rotateX(-10deg);
    opacity: 0;
}

header .header-lead .nav-lesson .first-expert:hover a::before,
header .header-lead .nav-lesson .first-expert:hover a::after {
    opacity: 0.1;
}

header .header-lead .nav-lesson .first-expert:hover a::before {
    transform: translateZ(-5px) rotateX(15deg);
}

.data-approval {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookieDisclosurePanel h5 {
    font-size: 22px;
    margin-bottom: 6px;
}

.user-default {
    flex-shrink: 0;
    margin-right: 10px;
}

.cookie-show {
    color: rgb(193,174,174);
    flex-shrink: 0;
    font-size: 24px;
    white-space: nowrap;
    text-align: center;
    margin-left: 10px;
    border-bottom: 2px solid rgb(193,174,174);
    text-decoration: none;
    line-height: 35px;
    min-width: 120px;
    cursor: pointer;
}

.inner-container .cookie-show {
    margin-left: 30px;
    color: #ffffff;
    font-weight: 400;
    border: none;
    padding: 10px;
    background: rgb(193,174,174);
    font-size: 20px;
}

.inner-container .user-default svg, .inner-container .user-default svg path, .inner-container .user-default img {
    height: 40px;
    width: 40px;
    fill:#000000;
}

.teacher-profile::before {
    background: repeating-linear-gradient(
        45deg,
        rgb(164,106,121,0.5),
        rgb(164,106,121,0.5) 5px,
        transparent 5px,
        transparent 20px
    );
    right: -10%;
    z-index: 1;
    height: 70%;
    content: "";
    width: 60%;
    transform: rotateZ(-15deg) rotateX(45deg) rotateY(15deg);
    opacity: 0.2;
    position: absolute;
    top: -20%;
}

.teacher-profile .testimonials-track {
    max-width: 1000px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.teacher-profile .pic-img-wrap:hover {
    transform: 
        translateZ(80px) 
        rotateY(5deg) 
        rotateX(0deg);
    filter: brightness(1.1);
    box-shadow: 30px 30px 40px -10px rgba(0, 0, 0, 0.5);
}

.teacher-profile .employee-content {
    padding: 2.5rem 2.5rem 2.5rem 8rem;
    margin-left: auto;
    box-shadow: 15px 15px 30px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 16px;
    position: relative;
    transform: 
        translateZ(30px) 
        rotateY(-10deg) 
        rotateX(3deg);
    z-index: 2;
    width: 550px;
    background: #ffffff;
}

.teacher-profile .employee-content:hover::before {
    left: 8px;
    opacity: 0.5;
    top: 8px;
}

.teacher-profile .name {
    transform: translateY(30px);
    z-index: 2;
    opacity: 0;
    position: relative;
    color: rgb(193,174,174);
    font-size: 29px;
    animation: slide-up 0.7s forwards 0.2s;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.teacher-profile .career-milestones {
    font-size: 14px;
    z-index: 2;
    animation: slide-up 0.7s forwards 0.6s;
    line-height: 1.7;
    color: #000000;
    transform: translateY(30px);
    font-style: italic;
    font-weight: 400;
    position: relative;
    opacity: 0;
}



.teacher-profile .testimonials-track:hover .pic-img-wrap {
    animation: floating 6s ease-in-out infinite;
}

.client-comments::before {
    opacity: 0.6;
    left: 0;
    background: 
        radial-gradient(ellipse at top left, rgb(193,174,174,0.5) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgb(164,106,121,0.5) 0%, transparent 50%);
    top: 0;
    position: absolute;
    height: 100%;
    content: "";
    z-index: 0;
    width: 100%;
}

.client-comments .pedagogy-info {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
}

.client-comments h4 {
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 1px;
    position: relative;
    font-size: 34px;
    color: #000000;
    font-weight: 700;
}

.client-comments h4::after {
    border-radius: 50%;
    background: rgb(193,174,174);
    position: absolute;
    content: "";
    bottom: -20px;
    transform: translateX(-50%);
    height: 12px;
    left: 50%;
    width: 12px;
}

.client-comments .testimonials-track {
    margin: 0 20px 40px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 29px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    width: calc(33.33% - 40px);
    backdrop-filter: blur(10px);
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.client-comments .testimonials-track::after {
    right: 15px;
    opacity: 0.3;
    border: 2px solid rgb(193,174,174,0.5);
    height: 30px;
    top: 15px;
    z-index: 0;
    content: "";
    width: 30px;
    position: absolute;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.client-comments .testimonials-track:hover .pic-img-wrap {
    transform: scale(1.1);
    margin-bottom: 10px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgb(193,174,174,0.5);
}

.client-comments .testimonials-track:hover span {
    white-space: normal;
    margin-top: 15px;
    margin-left: 20px;
    color: rgb(193,174,174);
}

.client-comments .testimonials-track p {
    color: #000000;
    -webkit-line-clamp: 5;
    font-size: 18px;
    -webkit-box-orient: vertical;
    margin: 0 20px;
    transition: all 0.5s ease;
    line-height: 1.6;
    opacity: 0;
    overflow: hidden;
    display: -webkit-box;
    max-height: 0;
}

.client-comments .testimonials-track:nth-child(3n+2) {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(rgb(193,174,174,0.5), 0.05) 100%
    );
}

.register-now {
    margin: 0;
    box-shadow: inset 0 0 70px rgba(rgb(193,174,174), 0.3);
    background: linear-gradient(125deg, rgb(164,106,121,0.5) 0%, rgb(193,174,174,0.5) 100%);
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}



.register-now::after {
    filter: blur(1px);
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 5px),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 4px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 6px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 5px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.3) 0%, transparent 7px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 4px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 6px);
    z-index: 1;
    animation: particlesMove 25s linear infinite;
    content: '';
}

.register-now::after {
    top: 0;
    content: '';
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 21px
        );
    left: 0;
    z-index: 3;
    height: 100%;
    position: absolute;
    width: 100%;
}



.register-now::after {
    filter: blur(2px);
    height: 100%;
    z-index: 3;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgb(193,174,174) 25%,
        #ffffff 50%,
        rgb(164,106,121) 75%,
        transparent 100%
    );
    animation: spectrumVertical 15s linear infinite;
    left: 50%;
    top: 0;
    position: absolute;
    opacity: 0.5;
    content: '';
}



.register-now .pedagogy-info {
    text-align: center;
    justify-content: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 100px rgba(255, 255, 255, 0.2);
    display: flex;
    border-radius: 20px;
    z-index: 5;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    backdrop-filter: blur(15px);
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    flex-direction: column;
    align-items: center;
    padding: 4rem 3rem;
    position: relative;
}

.register-now .pedagogy-info:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 120px rgba(255, 255, 255, 0.3);
}



.register-now .pedagogy-info::after {
    inset: -10px;
    border-radius: 30px;
    z-index: -2;
    opacity: 0.4;
    position: absolute;
    background: linear-gradient(
        125deg,
        rgb(193,174,174,0.5),
        rgba(255, 255, 255, 0.4),
        rgb(164,106,121,0.5)
    );
    content: '';
    filter: blur(15px);
    animation: spectrumPulse 8s ease-in-out infinite;
}

.register-now h3::after {
    bottom: -12px;
    transform: translateX(-50%);
    width: 60%;
    position: absolute;
    content: '';
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    left: 50%;
    height: 2px;
    animation: lineGlow 3s ease-in-out infinite;
}



.register-now .support-info {
    font-size: 14px;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    align-items: center;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 15px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    background: linear-gradient(125deg, rgb(193,174,174), rgb(164,106,121));
    font-weight: 600;
    border: none;
    position: relative;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    justify-content: center;
}



.register-now .support-info:hover {
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.03);
}

.register-now .support-info:hover::after {
    opacity: 0.5;
}

.contact-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ffffff 50%, rgb(211,209,202) 50%);
    padding: 100px 0;
}

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

.contact-panel h2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
    position: relative;
    color: rgb(193,174,174);
}

.contact-panel h2::after {
    bottom: -15px;
    height: 3px;
    background: rgb(193,174,174);
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 60px;
    position: absolute;
}

.contact-panel .feedback-request::before {
    height: 5px;
    top: 0;
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, rgb(193,174,174), rgb(164,106,121));
    left: 0;
}

.contact-panel .query-grid {
    position: relative;
    background: #ffffff;
    flex: 0 0 50%;
    padding: 60px 50px;
}

.contact-panel .query-grid::before {
    content: "";
    top: 0;
    height: 100%;
    background: rgb(211,209,202);
    width: 10px;
    left: 0;
    position: absolute;
}

.contact-panel h3::after {
    height: 2px;
    bottom: 0;
    position: absolute;
    background: rgb(193,174,174,0.5);
    content: "";
    width: 100%;
    left: 0;
}

.contact-panel input[type="text"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: rgb(193,174,174);
    outline: none;
}

.contact-panel input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.6;
}

.contact-panel .request-block input[type="checkbox"] {
    cursor: pointer;
    width: 24px;
    position: relative;
    height: 24px;
    margin-top: 2px;
    appearance: none;
    border: 2px solid rgb(211,209,202);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-panel .request-block label {
    line-height: 1.5;
    color: #000000;
    font-size: 13px;
}

.contact-panel .request-block a {
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgb(193,174,174);
}

.contact-panel .support-map {
    font-size: 17px;
    overflow: hidden;
    position: relative;
    align-self: flex-start;
    border-radius: 10px;
    margin-top: 20px;
    padding: 16px 40px;
    transition: all 0.3s ease;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 8px 20px rgb(193,174,174,0.5);
    border: none;
    background: rgb(193,174,174);
}

.contact-panel .support-map:hover::before {
    left: 100%;
}

.contact-panel svg {
    transition: all 0.3s ease;
    fill: rgb(193,174,174);
    width: 22px;
    height: 22px;
}

.contact-panel svg:hover path {
    fill: rgb(164,106,121);
}

header .top_plank .main-menu div svg, header .top_plank .main-menu div svg path {
    fill: #ffffff;
}

header .top_plank .main-menu {
    line-height: 21px;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    font-size: 14px;
    display: flex;
    padding: 15px 0 10px 0;
    justify-content: flex-start;
}


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



@media (max-width: 991px) {.id-thankbar {
    padding: 90px 0;
}.id-thankbar h2 {
    transform: translateX(0);
    max-width: 100%;
    font-size: calc(36px - 0.2rem);
}.id-thankbar .pedagogy-info {
    padding: 40px 30px 40px 45px;
    transform: translateX(0);
}.id-thankbar:hover .pedagogy-info {
    transform: translateX(0) translateY(-5px);
}
}



@media (max-width: 575px) {.id-thankbar {
    padding: 60px 0;
}.id-thankbar .container {
    transform: perspective(1000px) rotateX(1deg);
}.id-thankbar h2 {
    font-size: calc(36px - 0.5rem);
    margin-bottom: 25px;
}.id-thankbar h2::after {
    height: 2px;
    width: 60px;
}.id-thankbar .pedagogy-info {
    padding: 25px 20px 25px 25px;
}.id-thankbar .pedagogy-info::before {
    width: 4px;
}.id-thankbar li::before {
    font-size: 70px;
    top: -20px;
    left: -10px;
}.id-thankbar li span {
    font-size: calc(14px - 0.1rem);
    line-height: 1.6;
}}



@media (min-width: 768px) {.title-portal {
    padding: 5rem 2rem;
}.title-portal .learn-legacy {
    margin-bottom: 3.5rem;
}.title-portal .study-express {
    padding-left: 2rem;
    font-size: calc(42px * 1.2);
}.title-portal .study-express::before {
    width: 8px;
}.title-portal .edu-online {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}.title-portal .edu-online > div {
    padding: 5rem 4rem;
    min-height: 500px;
}.title-portal .edu-online p {
    max-width: 70%;
    padding-left: 2rem;
    font-size: calc(18px * 1.4);
}.title-portal .edu-online p::before {
    width: 25px;
}.title-portal .edu-online h3 {
    font-size: calc(19px * 1.2);
    padding: 2rem;
    max-width: 75%;
}
}



@media (min-width: 1200px) {.title-portal .study-express {
    font-size: calc(42px * 1.6);
}.title-portal .edu-online > div {
    padding: 6rem;
}.title-portal .edu-online::after {
    position: absolute;
    width: 150px;
    top: -50px;
    content: "";
    right: -50px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
    height: 150px;
    background: linear-gradient(135deg, rgb(164,106,121), rgb(193,174,174));
}
}



@media (min-width: 768px) {.price-deck-grid .learning-packages {
    grid-template-columns: repeat(2, 1fr);
}.price-deck-grid .monthly-rate {
    padding: 35px;
}.price-deck-grid .pic-img-wrap {
    height: 220px;
}
}



@media (min-width: 992px) {.price-deck-grid .training-sub {
    flex-direction: row;
    gap: 60px;
    align-items: center;
}.price-deck-grid .study-costs {
    margin-bottom: 0;
    text-align: left;
    flex: 0 0 30%;
    order: 2;
}.price-deck-grid .learning-packages {
    flex: 0 0 65%;
    grid-template-columns: repeat(2, 1fr);
    order: 1;
}.price-deck-grid .cost-levels::after {
    transform: translateX(0) scaleX(0.7);
    left: 0;
}.price-deck-grid .study-costs:hover .cost-levels::after {
    transform: translateX(0) scaleX(1);
}
}



@media (min-width: 768px) {.course-program {
    padding: 7rem 0;
}.course-program .training-plan {
    gap: 3.5rem;
    align-items: center;
    grid-template-columns: 40% 1fr;
}.course-program .pic-img-wrap {
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    height: 450px;
}.course-program h3 {
    font-size: calc(22px * 1.2);
}.course-program .description {
    column-count: 2;
    column-gap: 2.5rem;
}
}



@media (max-width: 767px) {.course-program .container {
    padding: 0 15px;
}.course-program .pic-img-wrap {
    margin-bottom: 1rem;
    margin-top: 1rem;
}.course-program .text-display {
    padding: 1.5rem;
}.course-program h3 {
    font-size: calc(22px * 0.9);
}.course-program .description {
    font-size: calc(16px * 0.95);
}}



@media (max-width: 576px) {.about-this {
    padding: 50px 0;
}.about-this h2 {
    margin-bottom: 35px;
    font-size: calc(33px * 0.8);
    letter-spacing: 1px;
}.about-this h2::before {
    width: 40px;
    height: 4px;
}.about-this .learn-corner {
    padding: 20px;
}.about-this .learn-corner p {
    font-size: calc(17px * 0.95);
    line-height: 1.6;
}.about-this .container::before,
    .about-this .container::after {
    display: none;
}}



@media (max-width: 991px) {footer .text_main_holder {
    gap: 50px;
}
}



@media (max-width: 576px) {footer .data-viz {
    padding: 60px 0 20px;
}footer .edu-tutor {
    transform: translateY(-20px);
    padding: 15px;
    margin-bottom: 40px;
}footer .text_main_holder::before {
    top: -30px;
    height: calc(100% + 60px);
}footer .top-navbar {
    padding: 0 20px;
}footer .top-navbar::after {
    left: 20px;
    right: 20px;
}footer .nav-lesson h5, footer .subscribe_holder h5 {
    font-size: calc(24px - 2px);
}footer .header-mainbar a {
    padding: 6px 0;
}footer .input_holder input[type="email"],
    footer .sub-backdrop {
    padding: 12px 15px;
}}



@media (max-width: 767px) {header .header-lead .nav-lesson .first-expert a {
    font-size: calc(13px - 2px);
    padding: 8px 12px;
}}


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


@media only screen and (max-width: 800px) {.user-default {
    display: none;
}.data-approval {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.cookieDisclosurePanel h5 {
    text-align: center;
}.cookieDisclosurePanel p {
    text-align: center;
}.policy-ack {
    margin-bottom: 20px;
}body .inner-container .cookie-show {
    margin-bottom: 10px;
    margin-left: 0;
}}



@media (max-width: 1200px) {.client-comments .testimonials-track {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
}
}



@media (max-width: 992px) {.client-comments .testimonials-track {
    height: 100px;
}.client-comments .testimonials-track:hover {
    height: 250px;
}.client-comments .pic-img-wrap {
    width: 60px;
    height: 60px;
    margin: 20px 15px;
}.client-comments .testimonials-track span {
    font-size: 18px;
    margin-top: 32px;
}
}



@media screen and (max-width: 991px) {.register-now {
    padding: 5rem 1.5rem;
}.register-now .pedagogy-info {
    padding: 3.5rem 2.5rem;
}.register-now h3 {
    margin-bottom: 2.2rem;
    font-size: calc(30px * 0.9);
}.register-now .support-info {
    padding: 1.1rem 3rem;
}
}



@media screen and (max-width: 767px) {.register-now {
    padding: 4rem 1.2rem;
}.register-now .pedagogy-info {
    padding: 3rem 2rem;
}.register-now h3 {
    font-size: calc(30px * 0.8);
    margin-bottom: 2rem;
}.register-now .support-info {
    font-size: calc(14px * 0.95);
    padding: 1rem 2.5rem;
}
}



@media screen and (max-width: 480px) {.register-now {
    padding: 3.5rem 1rem;
}.register-now .pedagogy-info {
    padding: 2.5rem 1.5rem;
}.register-now h3 {
    font-size: calc(30px * 0.7);
    margin-bottom: 1.8rem;
}.register-now .support-info {
    font-size: calc(14px * 0.9);
    padding: 0.9rem 2.2rem;
}}



@media (max-width: 768px) {.contact-panel {
    padding: 60px 0;
}.contact-panel h2 {
    margin-bottom: 40px;
    font-size: calc(36px - 4px);
}.contact-panel .query-grid {
    padding: 40px 30px;
}.contact-panel #contact {
    gap: 25px;
}.contact-panel .pic-img-wrap {
    min-height: 300px;
}
}



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



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



@keyframes scaleVertical {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}



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

@keyframes moveDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 500px;
    }
}



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

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

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

@keyframes holoBorderShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes spectrumPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(15px);
    }
    50% {
        opacity: 0.5;
        filter: blur(20px);
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
        width: 60%;
    }
    50% {
        opacity: 1;
        width: 80%;
    }
}

@keyframes buttonSpark {
    0% {
        left: -50%;
    }
    30%, 100% {
        left: 150%;
    }
}

@keyframes spectrumHorizontal {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

