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

header,footer {
    width: 100%;
}

header {
    overflow: visible;
    position: relative;
    width: 100%;
    z-index: 99;
    background: #ffffff;
}

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

.nav-skill {
    flex: 1 0 auto;
}

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

.learn-intro {
    position: relative;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    max-width: 1400px;
}

.opening-page .learn-home {
    overflow: hidden;
    position: relative;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    gap: 2rem;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.opening-page .learn-home::after {
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    height: 100%;
    content: "";
    background: 
        linear-gradient(90deg, transparent 0%, rgb(179,158,135,0.5) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgb(209,190,169,0.5) 100%);
    opacity: 0.15;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

.opening-page .learn-home h1 {
    position: relative;
    color: #ffffff;
    opacity: 0;
    font-weight: 700;
    animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
    max-width: 800px;
    transform: translateY(15px);
    z-index: 5;
    font-size: 44px;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.opening-page .learn-home div div {
    opacity: 0;
    position: relative;
    transform: translateY(20px);
    z-index: 5;
    animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
}

.opening-page .learn-home p {
    max-width: 600px;
    line-height: 1.6;
    font-size: calc(15px * 1.2);
    font-weight: 400;
    color: #ffffff;
    padding-left: 1.5rem;
    position: relative;
}

.offer-selection {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(232,222,203) 0%, rgba(245, 247, 252, 1) 100%);
}

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

.offer-selection .value-deals {
    flex-direction: column-reverse;
    display: flex;
}

.offer-selection .learn-rates {
    text-align: center;
    margin-bottom: 50px;
    transition: transform 0.5s ease-out;
}

.offer-selection .learn-rates h2::after {
    height: 3px;
    background: rgb(209,190,169);
    content: "";
    left: 50%;
    position: absolute;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
}

.offer-selection .program-price {
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr;
}

.offer-selection .indv-sub:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.offer-selection .cost-card {
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.offer-selection .qtr-cost h3 {
    margin-bottom: 8px;
    transform: translateX(0);
    transition: transform 0.3s ease;
    color: #000000;
    font-size: calc(20px + 2px);
    position: relative;
    font-weight: 600;
}

.offer-selection .learning-pricing {
    margin: 15px 0;
    color: rgb(209,190,169);
    font-weight: 700;
    display: inline-block;
    font-size: calc(20px + 4px);
    position: relative;
}

.offer-selection .indv-sub:hover .learning-pricing::before {
    opacity: 1;
    transform: translateX(0);
}

.offer-selection .qtr-cost p {
    flex: 1;
    line-height: 1.6;
    white-space: normal;
    font-size: 13px;
    color: #000000;
    overflow-wrap: break-word;
    word-break: break-word;
    margin-top: 15px;
}

.offer-selection .indv-sub:hover .media-image {
    transform: scale(1.05);
}

.offer-selection .indv-sub:nth-child(odd) .cost-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 247, 252, 1) 100%);
}

.offer-selection .indv-sub:nth-child(even) .cost-card {
    background: linear-gradient(135deg, rgba(245, 247, 252, 1) 0%, #ffffff 100%);
}

.offer-selection .indv-sub:nth-child(3) {
    animation: fadeInUp 0.6s 0.3s both;
}

.get-in-touch {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(232,222,203) 0%, rgba(16, 22, 47, 0.95) 100%);
    position: relative;
    padding: 120px 0;
}

.get-in-touch::after {
    opacity: 0.6;
    left: 0;
    background: radial-gradient(
        circle at 20% 30%, 
        rgba(rgb(209,190,169), 0.15) 0%, 
        transparent 50%
    ), radial-gradient(
        circle at 80% 70%, 
        rgba(rgb(179,158,135), 0.15) 0%, 
        transparent 50%
    );
    width: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
}

.get-in-touch h2 {
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    font-family: Arial, sans-serif;
}

.get-in-touch .request-panel {
    display: grid;
    margin-top: 60px;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.get-in-touch .request-panel::after {
    height: 100%;
    bottom: -8px;
    border: 1px solid rgba(rgb(179,158,135), 0.2);
    content: "";
    width: 100%;
    z-index: -1;
    position: absolute;
    right: -8px;
    border-radius: 28px;
}

.get-in-touch .media-image::before {
    z-index: 1;
    top: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6));
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
}

.get-in-touch .query-message {
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.get-in-touch form {
    width: 100%;
}

.get-in-touch form h3 {
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 23px;
    color: #ffffff;
    margin-bottom: 30px;
}

.get-in-touch form input[type="text"] {
    font-family: Arial, sans-serif;
    padding: 18px 25px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 13px;
    width: 100%;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.get-in-touch .message-map {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.get-in-touch .message-map label {
    line-height: 1.5;
    font-size: 13px;
    padding-left: 35px;
    position: relative;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
}

.get-in-touch .message-map input[type="checkbox"]:checked + label::before {
    background: rgb(209,190,169);
    border-color: rgb(209,190,169);
}

.get-in-touch .message-map label a {
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    color: rgb(209,190,169);
}

.get-in-touch .message-map label a:hover {
    color: rgb(179,158,135);
}

.get-in-touch form .inquiry-map {
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    z-index: 1;
    background: linear-gradient(45deg, rgb(209,190,169), rgb(179,158,135));
    padding: 16px 40px;
    position: relative;
    overflow: hidden;
    border: none;
    font-family: Arial, sans-serif;
    font-size: 15px;
    display: inline-block;
}

.get-in-touch svg {
    height: 22px;
    fill: rgb(209,190,169);
    width: 22px;
}

.company-info {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.company-info::after {
    z-index: 2;
    background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 10px
  );
    top: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    right: 0;
    position: absolute;
    content: "";
}

.company-info .text-header {
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 
              0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    max-width: 900px;
    margin: 0 auto;
    animation: slide-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
    padding: 40px;
    backdrop-filter: blur(10px);
}

.company-info h1::after {
    transform-origin: left;
    bottom: -10px;
    transform: scaleX(0);
    height: 3px;
    width: 70px;
    left: 0;
    position: absolute;
    background: rgb(179,158,135);
    content: "";
    animation: line-grow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
}

.company-info h4 {
    font-weight: 600;
    font-size: calc(24px + 2px);
    padding-bottom: 10px;
    color: rgb(179,158,135);
    margin: 0 0 15px;
    display: inline-block;
    position: relative;
}

.company-info span {
    position: relative;
    column-gap: 40px;
    font-size: calc(17px + 1px);
    line-height: 1.8;
    opacity: 0.9;
    display: block;
    column-count: 1;
    color: #ffffff;
    text-align: justify;
}

.customer-experience::after {
    right: -5rem;
    animation: pulse 15s infinite alternate ease-in-out;
    width: 20rem;
    position: absolute;
    z-index: 0;
    filter: blur(50px);
    content: "";
    height: 20rem;
    border-radius: 50%;
    bottom: -5rem;
    background: linear-gradient(225deg, rgba(rgb(209,190,169,0.5), 0.1) 0%, transparent 70%);
}

.customer-experience h2::after {
    height: 0.25rem;
    background: linear-gradient(90deg, rgb(179,158,135) 0%, rgb(209,190,169) 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    width: 6rem;
    left: 50%;
    content: "";
    bottom: -0.5rem;
    transform: translateX(-50%);
    position: absolute;
}

.customer-experience .rating-insights {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backface-visibility: hidden;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05);
    transform-style: preserve-3d;
    border-radius: 10px;
    background: #ffffff;
    transform: translateZ(0) scale(1);
}

.customer-experience .rating-insights:hover {
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.1);
    transform: translateZ(10px) scale(1.02);
}

.customer-experience .rating-insights div {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.customer-experience .rating-insights:hover img {
    transform: scale(1.1) rotate(5deg);
}

.customer-experience .rating-insights h4 {
    margin: 0;
    color: #000000;
    font-weight: 600;
    font-size: 23px;
    position: relative;
}

.customer-experience .rating-insights:hover h4::after {
    transform: scaleX(1);
}

.customer-experience .description {
    font-size: 16px;
    position: relative;
    color: #000000;
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.6;
}

.customer-experience a {
    padding: 0.75rem 2rem;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(rgb(209,190,169,0.5), 0.2);
    transition: all 0.4s ease;
    font-size: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-top: 2.5rem;
    border-radius: 10px;
    z-index: 1;
    background: linear-gradient(135deg, rgb(209,190,169) 0%, rgb(179,158,135) 100%);
    transform: perspective(1000px) translateZ(0);
    font-weight: 600;
}

.customer-experience a:hover::before {
    left: 100%;
}

.customer-experience .value-prop {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.program-information .career-lab {
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
}

.program-information .career-lab:hover .tech-classes {
    animation-play-state: paused;
}

.program-information .program-route {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.program-information .program-route:nth-child(even) {
    mask-image: linear-gradient(to right, transparent 5%, black 20%, black 80%, transparent 95%);
}

.program-information .program-route:hover img {
    transform: scale(1.05);
    filter: grayscale(0) contrast(1.3);
}

.program-information .container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    z-index: 10;
    margin: 0 auto;
    padding: 0 1rem;
}

.program-information .knowledge-guide {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    border: 1px solid rgb(209,190,169,0.5);
    border-radius: 17px;
    text-align: center;
    padding: 3rem;
    max-width: 550px;
    position: relative;
}

.program-information .knowledge-guide h3 {
    font-weight: 700;
    font-size: 32px;
    display: inline-block;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
    margin-bottom: 1.5rem;
}

.program-information .knowledge-guide p {
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-size: 15px;
    position: relative;
}

.program-information .knowledge-guide .inquiry-map {
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgb(209,190,169);
    color: #ffffff;
    font-weight: 600;
    transition: all 0.4s ease;
    padding: 0.9rem 2.5rem;
    position: relative;
    background-color: transparent;
    z-index: 1;
}

.program-information .knowledge-guide .inquiry-map:hover::before {
    height: 300%;
    width: 300%;
}

.help-center::before {
    background: repeating-linear-gradient(
        45deg,
        rgb(209,190,169,0.5) 0,
        rgb(209,190,169,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    width: 100%;
    left: 0;
    position: absolute;
    height: 100%;
    content: '';
    top: 0;
    z-index: 0;
    opacity: 0.15;
}



.help-center .container {
    position: relative;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    padding: 0 1.5rem;
}

.help-center .get-contactbox:nth-child(1) {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    border-radius: 14px;
    flex-direction: column;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgb(209,190,169,0.5) 100%
    );
    display: flex;
    padding: 2.5rem;
    backdrop-filter: blur(5px);
    grid-area: info;
}

.help-center .get-contactbox:nth-child(2):hover {
    transform: perspective(1000px) rotateY(0deg);
}

.help-center .get-contactbox:nth-child(3) {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    grid-area: contact;
    position: relative;
    border-radius: 14px;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        rgb(209,190,169,0.5) 100%
    );
    padding: 2.5rem;
}

.help-center .get-contactbox h2::after {
    position: absolute;
    height: 3px;
    content: '';
    left: 0;
    border-radius: 3px;
    background: rgb(179,158,135);
    width: 60px;
    bottom: 0;
}

.help-center .get-contactus {
    line-height: 1.7;
    font-size: 12px;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.9;
}

.help-center .get-contactbox p span {
    font-weight: 600;
}

.help-center .write-page {
    border-top: 1px solid rgb(209,190,169,0.5);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.help-center .ask-questions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.help-center .ask-questions span {
    font-size: calc(12px * 0.9);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
}

.help-center .get-contactbox .media-image::before {
    top: 0;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        transparent 70%,
        #000000 100%
    );
    position: absolute;
    content: '';
    width: 100%;
    left: 0;
}

.help-center .chat-form a::before {
    height: 100%;
    animation-delay: calc(var(--i, 0) * 1s);
    left: -30px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    content: '';
    top: 0;
    position: absolute;
    width: 30px;
    animation: shine 4s infinite;
    transform: skewX(-20deg);
}



.help-center .chat-form a:hover {
    background: rgb(209,190,169,0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.help-center .chat-form a p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
}

.help-center .chat-form a:hover svg path {
    fill: #ffffff;
}

.program-assets {
    perspective: 1000px;
    overflow: hidden;
    background: linear-gradient(120deg, rgb(232,222,203), #ffffff);
    padding: 150px 0;
    position: relative;
}

.program-assets::after {
    width: 300px;
    content: '';
    z-index: 1;
    opacity: 0.5;
    bottom: -100px;
    background: rgb(179,158,135,0.5);
    border-radius: 50%;
    position: absolute;
    left: -100px;
    filter: blur(80px);
    height: 300px;
}

.program-assets .media-image:hover {
    transform: rotateY(0deg);
}

.program-assets .media-image::before {
    background: linear-gradient(135deg, rgb(209,190,169,0.5) 0%, transparent 70%);
    inset: 0;
    border-radius: inherit;
    content: '';
    z-index: 1;
    position: absolute;
}

.program-assets h2 {
    border-bottom: 3px solid rgb(209,190,169);
    font-weight: 700;
    color: #000000;
    position: relative;
    font-size: 30px;
    padding-bottom: 20px;
    width: fit-content;
    margin-bottom: 50px;
}

.program-assets .text_main_holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    transform-style: preserve-3d;
    display: grid;
}

.program-assets .text_main_holder > div:nth-child(even) {
    transform: rotateY(5deg);
}

.program-assets .text_main_holder > div:hover {
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: rotateY(0) translateZ(20px);
}

.program-assets .text_main_holder > div::before {
    content: '';
    opacity: 0;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, rgb(209,190,169,0.5) 0%, transparent 80%);
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    position: absolute;
}

.program-assets .text_main_holder svg path {
    transition: fill 0.3s ease;
    fill: rgb(209,190,169);
}

.program-assets .text_main_holder p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    transform: translateZ(5px);
    transition: transform 0.4s ease;
}

.honor-cta::after {
    height: 100%;
    top: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3) 0px,
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 20px
    );
    position: absolute;
    z-index: -1;
    width: 100%;
    opacity: 0.5;
    left: 0;
    content: "";
}

.honor-cta .company_holder {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 4rem;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(rgb(209,190,169), 0.3);
    clip-path: polygon(
        0 0,
        calc(100% - 30px) 0,
        100% 30px,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
    position: relative;
}

.honor-cta .company_holder h3 {
    font-size: calc(30px * 1.2);
    text-shadow: 0 0 10px rgb(209,190,169), 0 0 20px rgb(209,190,169), 0 0 30px rgb(209,190,169);
    color: #ffffff;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
}

.honor-cta .donate-books {
    opacity: 0.8;
    line-height: 1.6;
    border-left: 2px solid rgb(209,190,169);
    color: #ffffff;
    font-size: 12px;
    margin-top: 1.5rem;
    padding-left: 1rem;
}

.honor-cta .whatsapp-grp::before {
    position: absolute;
    content: "";
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(209,190,169), transparent);
    height: 1px;
    width: 100%;
    top: -20px;
}

.honor-cta .top-bar:hover {
    transform: translateY(-5px);
    background: rgba(rgb(209,190,169,0.5), 0.1);
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.4);
}

.honor-cta .top-bar h5 {
    margin-bottom: 1.5rem;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(179,158,135);
    position: relative;
}

.honor-cta .top-bar .head-train {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.honor-cta .top-bar .head-train a::before {
    content: "//";
    font-size: 0.8em;
    left: 0;
    position: absolute;
    transition: all 0.3s ease;
    color: rgb(209,190,169);
}

.honor-cta .top-bar .head-train a:hover {
    opacity: 1;
    color: rgb(209,190,169);
    text-shadow: 0 0 5px rgb(209,190,169);
}

.footer-caption::before {
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: 
        linear-gradient(90deg, transparent, rgb(209,190,169), transparent);
    height: 1px;
    content: "";
}

.footer-caption .webinar-arch {
    opacity: 0.7;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.leadership-experience::before {
    width: 100%;
    height: 100%;
    content: "";
    background: repeating-linear-gradient(45deg, rgb(179,158,135,0.5) 0px, transparent 2px, transparent 10px);
    z-index: 1;
    position: absolute;
    opacity: 0.1;
    left: 0;
    top: 0;
}

.leadership-experience .media-image {
    width: 40%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: all 0.4s ease;
    position: relative;
    flex-shrink: 0;
    height: 450px;
}

.leadership-experience .media-image::after {
    background: linear-gradient(135deg, rgb(209,190,169,0.5), transparent);
    content: "";
    position: absolute;
    height: 100%;
    opacity: 0.5;
    width: 100%;
    top: 0;
    left: 0;
}

.leadership-experience .name::after {
    left: 0;
    position: absolute;
    background: rgb(209,190,169);
    height: 3px;
    content: "";
    transition: width 0.3s ease;
    width: 50%;
    bottom: -8px;
}

.leadership-experience .career-milestones {
    font-family: Arial, sans-serif;
    font-size: 16px;
    padding-left: 1.5rem;
    line-height: 1.6;
    position: relative;
    color: #000000;
}

.leadership-experience .rating-insights:hover .media-image {
    transform: scale(1.03);
}

.stay-updated::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 8px
    );
    content: "";
    position: absolute;
    z-index: 1;
}

.stay-updated .container {
    z-index: 5;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 1.5rem;
}

.stay-updated .value-prop::before {
    z-index: 2;
    position: absolute;
    background: rgb(209,190,169);
    content: "";
    height: 100%;
    top: 0;
    width: 6px;
    left: 0;
}

.stay-updated .value-prop::after {
    transform-origin: right;
    width: 40%;
    position: absolute;
    content: "";
    height: 6px;
    background: rgb(179,158,135);
    z-index: 2;
    bottom: 0;
    right: 0;
}

.stay-updated .input_holder {
    display: grid;
    position: relative;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.stay-updated .input_holder span:hover {
    transform: translateY(-2px);
}

.stay-updated .input_holder input[type="email"]:focus {
    border-color: rgb(209,190,169);
    box-shadow: 0 0 0 3px rgb(209,190,169,0.5);
}

.stay-updated .input_holder input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}

.stay-updated .sub-col {
    font-family: Arial, sans-serif;
    cursor: pointer;
    background: rgb(209,190,169);
    font-weight: 600;
    border: none;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    color: #ffffff;
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 1rem 1.5rem;
    font-size: 20px;
}

.stay-updated .sub-col:hover::before {
    transform: translateX(200%);
}

.data-summary {
    overflow: hidden;
    padding: 120px 0;
    background-color: rgb(232,222,203);
    position: relative;
}

.data-summary::before {
    background: 
        radial-gradient(circle at 10% 90%, rgb(209,190,169,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgb(179,158,135,0.5) 0%, transparent 40%);
    height: 100%;
    opacity: 0.6;
    content: "";
    width: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
    left: 0;
}

.data-summary .knowledge-boosters::before {
    height: 30px;
    background-color: rgb(209,190,169);
    bottom: -40px;
    content: "";
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    width: 2px;
}

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

.data-summary .extra-pro {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
}

.data-summary .statistics-classes {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.data-summary .study-statistics:nth-child(even) {
    margin-top: 60px;
}

.data-summary .study-statistics::before {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    left: 0;
    width: 100%;
    z-index: -1;
    top: 0;
    content: "";
    position: absolute;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateZ(-10px);
}

.data-summary .study-statistics:hover h4 {
    transform: translate(-50%, -50%) scale(1.1);
    color: rgb(209,190,169);
}

.data-summary .study-statistics span {
    z-index: 3;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    color: #000000;
    bottom: 40px;
    padding: 0 20px;
    width: 100%;
    left: 0;
    position: absolute;
}

.data-summary svg path {
    fill: rgb(209,190,169);
}

.enroll-instantly {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgb(209,190,169), rgb(179,158,135));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.enroll-instantly::after {
    left: 0;
    height: 10px;
    clip-path: polygon(0% 0%, 2% 100%, 4% 0%, 6% 100%, 8% 0%, 10% 100%, 12% 0%, 14% 100%, 16% 0%, 18% 100%, 20% 0%, 22% 100%, 24% 0%, 26% 100%, 28% 0%, 30% 100%, 32% 0%, 34% 100%, 36% 0%, 38% 100%, 40% 0%, 42% 100%, 44% 0%, 46% 100%, 48% 0%, 50% 100%, 52% 0%, 54% 100%, 56% 0%, 58% 100%, 60% 0%, 62% 100%, 64% 0%, 66% 100%, 68% 0%, 70% 100%, 72% 0%, 74% 100%, 76% 0%, 78% 100%, 80% 0%, 82% 100%, 84% 0%, 86% 100%, 88% 0%, 90% 100%, 92% 0%, 94% 100%, 96% 0%, 98% 100%, 100% 0%);
    content: "";
    bottom: -5px;
    background: rgb(255, 255, 255, 0.5);
    width: 100%;
    z-index: 2;
    position: absolute;
}

.enroll-instantly .container > div {
    justify-content: center;
    position: relative;
    align-items: center;
    display: flex;
}

.enroll-instantly .container > div::before {
    height: 1px;
    content: "";
    top: -1.5rem;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255, 0.5), transparent);
    width: 100%;
    max-width: 600px;
}

.enroll-instantly .inquiry-map {
    text-decoration: none;
    background: #ffffff;
    transform-style: preserve-3d;
    overflow: hidden;
    padding: 1.2rem 2.5rem;
    position: relative;
    display: inline-block;
    font-size: 19px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #000000;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.enroll-instantly .inquiry-map span {
    position: relative;
    z-index: 2;
}

.enroll-instantly .inquiry-map:hover::before {
    transform: translateX(100%);
}

.enroll-instantly .inquiry-map:active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px) scale(0.98);
}

header .top-main {
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    display: flex;
}

header .top-main {
    padding: 20px 15px;
    flex-direction: column;
}

header .top-main .page-head {
    position: relative;
    z-index: 2;
}

header .top-main .page-head {
    margin-bottom: 20px;
}

header .top-main .page-head .head-info svg {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    width: auto;
    height: 40px;
}

header .top-main .top-bar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .top-main .top-bar {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

header .top-main .top-bar .nav-pagebar a {
    font-family: Arial, sans-serif;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    display: block;
    letter-spacing: 0.5px;
    font-size: 13px;
    position: relative;
    padding: 8px 0;
    overflow: hidden;
    color: #000000;
    font-weight: 400;
    text-decoration: none;
}

header .top-main .top-bar .nav-pagebar a {
    font-size: calc(13px - 1px);
    padding: 5px 0;
}

header .top-main .top-bar .nav-pagebar a::after {
    background-color: rgb(179,158,135);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

header .top-main .top-bar .nav-pagebar a::after {
    bottom: -2px;
    height: 3px;
    opacity: 0.3;
}

header .top-main .top-bar .nav-pagebar:hover {
    animation: subtle-float 2s infinite alternate ease-in-out;
}

.thanksBlock::before {
    animation: float 15s ease-in-out infinite;
    z-index: 1;
    height: 300px;
    top: -50px;
    right: -50px;
    width: 300px;
    position: absolute;
    content: "";
    background: linear-gradient(45deg, rgb(179,158,135,0.5) 0%, rgb(209,190,169,0.5) 100%);
    filter: blur(80px);
    opacity: 0.4;
}

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

.thanksBlock h2 {
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    font-size: 36px;
    color: #000000;
    transform: translateY(20px);
    position: relative;
    font-weight: 700;
    opacity: 0;
}

.thanksBlock .value-prop {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    padding: 50px;
    background: #ffffff;
    opacity: 0;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

.thanksBlock ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thanksBlock li {
    position: relative;
    padding-left: 25px;
}

.thanksBlock span {
    font-size: calc(18px * 1.05);
    font-family: Arial, sans-serif;
    display: block;
    line-height: 1.7;
    transform: translateY(15px);
    animation: fadeText 0.8s ease forwards 0.8s;
    color: #000000;
    opacity: 0;
}

.privacy-lock {
    padding: 40px;
    transition: all 0.3s ease-in-out;
    background: rgb(179,158,135,0.5);
    overflow: hidden;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.privacy-lock h2 {
    transition: color 0.3s ease;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 35px;
    color: rgb(179,158,135);
    font-size: 31px;
}

.privacy-lock ul, .privacy-lock ol {
    list-style-position: inside;
    padding: 15px 0;
    padding-left: 0;
    line-height: 1.6;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    margin-left: 20px;
    color: #000000;
}

.privacy-lock li:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background: rgb(179,158,135,0.5);
}

.privacy-lock section {
    background: var(--bg-color);
    padding: 20px;
    transition: background 0.3s ease;
}

.cookie-window-banner {
    z-index: 90;
    border-top: 2px solid rgb(209,190,169);
    box-shadow: 0 -10px 30px rgb(209,190,169,0.5);
    width: 100%;
    position: fixed;
    bottom: 0;
    animation: slideIn 0.5s ease-in-out;
    background: rgb(179,158,135);
}

.cookie-view {
    overflow: hidden;
    box-shadow: 0 0 15px rgb(209,190,169);
    margin-right: 20px;
    padding: 10px;
    border-radius: 17px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-view:hover svg {
    transform: rotate(20deg);
}

.edu-track {
    min-width: 300px;
    color: #ffffff;
    flex: 1;
}

.edu-track p {
    color: #ffffff;
    text-shadow: 0 0 5px rgb(209,190,169,0.5);
    font-size: 12px;
    margin-bottom: 0;
}

.visitor-acceptance:hover {
    background: rgb(179,158,135);
    box-shadow: 0 0 20px rgb(179,158,135,0.5);
}

.cookie-window-banner p a {
    color: rgb(209,190,169);
    transition: color 0.3s ease;
    text-decoration: underline;
}

.cookie-window-banner p a:hover {
    color: rgb(179,158,135);
}

#cookie-announcement {
    display: none;
}


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



@media (max-width: 992px) {.opening-page .learn-home {
    padding: 3rem 2rem;
}.opening-page .learn-home h1 {
    font-size: calc(44px * 0.85);
}.opening-page .learn-home h3 {
    font-size: calc(19px * 0.85);
    max-width: 550px;
}
}



@media (max-width: 576px) {.opening-page .learn-home {
    padding: 2rem 1.25rem;
}.opening-page .learn-home h1 {
    font-size: calc(44px * 0.6);
}.opening-page .learn-home h3 {
    padding: 0.7rem 1rem;
    font-size: calc(15px * 0.95);
    border-left-width: 3px;
}.opening-page .learn-home p {
    padding-left: 1rem;
}.opening-page .learn-home h1::after {
    bottom: -10px;
    width: 80px;
    height: 3px;
}
}



@media (min-width: 768px) {.offer-selection .program-price {
    grid-template-columns: repeat(2, 1fr);
}.offer-selection .learn-rates {
    margin-bottom: 60px;
}.offer-selection .qtr-cost h3 {
    font-size: 20px;
}.offer-selection .learning-pricing {
    font-size: calc(20px + 2px);
}.offer-selection .qtr-cost p {
    font-size: calc(13px - 1px);
}
}



@media (min-width: 1200px) {.offer-selection .program-price {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.offer-selection .cost-card {
    min-height: 500px;
}.offer-selection .media-image {
    height: 220px;
}.offer-selection .qtr-cost h3 {
    font-size: calc(20px + 2px);
}.offer-selection .learning-pricing {
    font-size: calc(20px + 6px);
}}



@media screen and (max-width: 767px) {.get-in-touch {
    padding: 70px 0;
}.get-in-touch h2 {
    font-size: calc(30px * 0.9);
}.get-in-touch .media-image {
    min-height: 350px;
}.get-in-touch .media-image::after,
    .get-in-touch .query-message::before {
    width: 40px;
    height: 40px;
}
}



@media (min-width: 768px) {.company-info {
    padding: 150px 0;
}.company-info .text-header {
    transform: translateY(0);
    padding: 60px;
}.company-info h1 {
    font-size: calc(40px + 10px);
    margin-bottom: 50px;
}.company-info span {
    column-count: 2;
    column-gap: 50px;
}.company-info h4 {
    font-size: calc(24px + 4px);
}
}



@media (min-width: 992px) {.company-info .text-header {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.11) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );
    padding: 70px;
}.company-info .text-header::before {
    width: 6px;
}.company-info span {
    font-size: calc(17px + 2px);
}.company-info h1::after {
    width: 90px;
    height: 4px;
}
}



@media (max-width: 480px) {.company-info {
    padding: 60px 0;
}.company-info .text-header {
    padding: 25px 15px;
}.company-info h1 {
    margin-bottom: 25px;
    font-size: calc(40px - 4px);
}.company-info h4::after {
    width: 30px;
}.company-info span {
    line-height: 1.5;
    font-size: calc(17px - 1px);
}}



@media (max-width: 576px) {.customer-experience {
    padding: 2.5rem 0;
}.customer-experience h2 {
    margin-bottom: 1.5rem;
    font-size: calc(29px * 0.7);
}.customer-experience h2::after {
    width: 4rem;
}.customer-experience .review-corner {
    gap: 1rem;
    grid-template-columns: 1fr;
}.customer-experience .rating-insights {
    padding: 1rem;
}.customer-experience .rating-insights img {
    width: 3rem;
    height: 3rem;
}.customer-experience .description {
    font-size: calc(16px * 0.95);
}.customer-experience a {
    padding: 0.6rem 1.5rem;
    font-size: calc(20px * 0.9);
}}



@media (max-width: 576px) {.program-information .container {
    padding: 0 1rem;
}.program-information .knowledge-guide {
    max-width: 100%;
    padding: 1.5rem;
}.program-information .knowledge-guide h3 {
    font-size: calc(32px * 0.7);
}.program-information .knowledge-guide .inquiry-map {
    width: 100%;
    padding: 0.8rem 1.5rem;
    display: block;
}.program-information .program-route img {
    filter: grayscale(0.2) contrast(1.1);
}
}



@media (max-width: 992px) {.help-center .quick-contact {
    grid-template-areas: 
            "info info"
            "photo photo"
            "contact contact";
}.help-center .chat-form {
    grid-template-columns: repeat(3, 1fr);
}.help-center .get-contactbox:nth-child(2) {
    height: 300px;
}
}



@media (max-width: 576px) {.help-center {
    padding: 3rem 0;
}.help-center .get-contactbox:nth-child(1),
    .help-center .get-contactbox:nth-child(3) {
    padding: 1.5rem;
}.help-center .chat-form {
    grid-template-columns: 1fr;
}.help-center .chat-form a:nth-child(3) {
    grid-column: auto;
}.help-center .ask-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
}}



@media (max-width: 992px) {.program-assets {
    padding: 100px 0;
}.program-assets .value-prop {
    padding: 0 20px;
    flex-direction: column;
}.program-assets .media-image {
    border-radius: 15px;
    position: relative;
    left: 0;
    top: 0;
    width: 90%;
    transform: rotateY(0);
    height: 400px;
    margin: 0 auto 50px;
}.program-assets .text-header {
    padding: 0;
    margin: 0;
    width: 100%;
}.program-assets .text_main_holder {
    grid-template-columns: 1fr;
}.program-assets .text_main_holder > div,
    .program-assets .text_main_holder > div:nth-child(even) {
    transform: rotateY(0);
}
}



@media screen and (max-width: 768px) {.honor-cta {
    padding: 4rem 0 2rem;
}.honor-cta .company_holder {
    margin-bottom: 3rem;
    padding: 1.5rem;
}.honor-cta .company_holder h3 {
    font-size: 30px;
}.honor-cta .top-bar h5 {
    font-size: calc(22px * 0.9);
}.footer-caption {
    padding: 1.2rem 0;
    margin-top: 2rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
}



@media (max-width: 992px) {.leadership-experience .rating-insights {
    gap: 2rem;
    flex-direction: column;
}.leadership-experience .media-image {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    width: 100%;
    height: 350px;
}.leadership-experience .career-table {
    width: 100%;
    padding: 0 2rem 2rem;
}
}



@media (max-width: 576px) {.leadership-experience {
    padding: 3rem 1rem;
}.leadership-experience .media-image {
    height: 280px;
}.leadership-experience .career-table {
    padding: 0 1.5rem 1.5rem;
}.leadership-experience .name {
    font-size: calc(28px * 0.85);
}.leadership-experience .career-milestones {
    font-size: calc(16px * 0.95);
}}



@media (min-width: 992px) {.stay-updated .value-prop {
    gap: 4rem;
    padding: 4rem;
}.stay-updated h4 {
    font-size: calc(19px * 1.2);
}.stay-updated .input_holder input[type="email"] {
    padding: 1.1rem 1.5rem;
}.stay-updated .sub-col {
    padding: 1.1rem 2rem;
}.stay-updated .value-prop:hover h4 {
    transform: translateY(-3px);
}
}



@media (max-width: 480px) {.stay-updated {
    padding: 2.5rem 0;
}.stay-updated .value-prop {
    padding: 1.5rem;
}.stay-updated h4 {
    font-size: calc(13px * 0.95);
}.stay-updated .value-prop::before {
    width: 4px;
}.stay-updated .value-prop::after {
    width: 50%;
    height: 4px;
}
}



@media (max-width: 1200px) {.data-summary .study-statistics {
    width: calc(25% - 20px);
    height: 300px;
    margin: 0 10px;
}.data-summary .study-statistics h4 {
    font-size: 3.5rem;
}
}



@media (max-width: 767px) {.data-summary {
    padding: 70px 0;
}.data-summary .knowledge-boosters {
    margin-bottom: 50px;
}.data-summary .key-statistics {
    font-size: calc(38px * 0.9);
}.data-summary .study-statistics {
    height: 240px;
}.data-summary .study-statistics h4 {
    font-size: 2.8rem;
}.data-summary .study-statistics span {
    bottom: 30px;
    font-size: calc(14px * 0.9);
}.data-summary svg {
    width: 30px;
    height: 30px;
    top: 30px;
}
}



@media screen and (min-width: 768px) {.enroll-instantly {
    padding: 8rem 4rem;
}.enroll-instantly .container {
    align-items: center;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}.enroll-instantly h6 {
    text-align: left;
    font-size: calc(18px * 1.5);
}.enroll-instantly .container > div {
    justify-content: flex-end;
}.enroll-instantly .container > div::before {
    height: 80%;
    left: -2rem;
    transform: translateY(-50%);
    top: 50%;
    width: 1px;
    max-height: 100px;
    background: linear-gradient(180deg, transparent, rgb(255, 255, 255, 0.5), transparent);
}
}



@media (hover: none) {.enroll-instantly .container {
    transform: none;
}.enroll-instantly h6 {
    transform: none;
    animation: none;
}.enroll-instantly .container > div span {
    transform: none;
}.enroll-instantly .container > div span:hover {
    transform: none;
}.enroll-instantly .inquiry-map:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: none;
}
}



@media (max-width: 991px) {.thanksBlock {
    padding: 90px 0 70px;
}.thanksBlock h2 {
    font-size: calc(36px * 0.9);
    margin-bottom: 35px;
}.thanksBlock .value-prop {
    padding: 40px 35px;
}.thanksBlock h2::after {
    width: 70px;
}
}



@media (max-width: 575px) {.thanksBlock {
    padding: 60px 0 40px;
}.thanksBlock h2 {
    margin-bottom: 25px;
    font-size: calc(36px * 0.7);
}.thanksBlock .value-prop {
    padding: 30px 20px;
}.thanksBlock li {
    padding-left: 20px;
}.thanksBlock li::before {
    width: 8px;
    top: 9px;
    height: 8px;
}.thanksBlock h2::after {
    width: 50px;
}
}



@media only screen and (max-width: 800px) {.privacy-lock {
    padding: 20px 10px;
}.privacy-lock h1 {
    margin-bottom: 20px;
    font-size: calc(22px - 10px);
    margin-top: 30px;
}.privacy-lock h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: calc(22px - 8px);
}.privacy-lock h3, .privacy-lock h4, .privacy-lock h5, .privacy-lock h6 {
    font-size: calc(22px - 6px);
}.privacy-lock ul, .privacy-lock ol {
    padding: 10px 0;
}.privacy-lock li {
    padding: 8px;
    margin-bottom: 10px;
}.privacy-lock p, .privacy-lock span, .privacy-lock div {
    margin-bottom: 8px;
    font-size: calc(15px - 2px);
}}



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



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



@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



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



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



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

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(100px) scale(1.1);
        opacity: 0.6;
    }
}



@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgb(209,190,169), 0 0 20px rgb(209,190,169);
    }
    20%, 24%, 55% {
        opacity: 0.5;
        text-shadow: none;
    }
}



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



@keyframes subtle-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-4px);
    }
}



@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



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



@keyframes popIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

