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

html,body {
    scroll-behavior: auto;
    auto
contain
touch-action: none;
    min-height: 100%;
    height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
}

header,footer {
    width: 100%;
}


header {
    z-index: 100;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100%;
    padding: 0;
    background: #ffffff;
}

.thanksBox::before {
    animation: constellation 20s infinite linear;
    position: absolute;
    content: "";
    z-index: 1;
    left: 0;
    background-size: 40px 40px;
    width: 100%;
    top: 0;
    opacity: 0.6;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(255,255,255,0.1) 1px, transparent 1px);
    height: 100%;
}

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

.thanksBox .master-sessions:hover {
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 1px 0 rgba(255,255,255,0.15) inset;
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.thanksBox .master-sessions > div:first-child {
    padding-left: 25px;
    align-items: center;
    display: flex;
    position: relative;
}

.thanksBox .master-sessions > div:first-child::before {
    left: 0;
    transform: translateY(-50%);
    content: "";
    top: 50%;
    width: 15px;
    height: 2px;
    position: absolute;
    transition: width 0.3s ease;
    background: rgb(136,154,141);
}

.thanksBox p {
    animation: fadeSlideIn 0.8s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    margin: 0;
    z-index: 2;
    color: #000000;
    position: relative;
    opacity: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    transform: translateY(20px);
}

.thanksBox a {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
}

.thanksBox a:hover {
    transform: translateX(5px);
}

.thanksBox a:hover::after {
    width: 100%;
}

.leadership-experience {
    padding: 4rem 2rem;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, rgb(230,229,208) 0%, rgb(184,199,191,0.5) 100%);
}

.leadership-experience .student-feedback {
    grid-template-columns: 1fr 1.2fr;
    display: grid;
    transition: transform 0.5s ease;
    gap: 2rem;
    transform: perspective(1000px) rotateY(5deg);
    position: relative;
    z-index: 2;
}

.leadership-experience .image-box-wrap {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    position: relative;
    height: 400px;
    transform: rotate(-3deg) translateY(20px);
}

.leadership-experience .student-feedback:hover .image-box-wrap {
    transform: rotate(0deg) translateY(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.leadership-experience .student-feedback:hover .emp-achievements {
    transform: translateY(0) rotate(0deg);
}

.leadership-experience .name {
    font-weight: 700;
    color: rgb(184,199,191);
    font-family: Arial, sans-serif;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 29px;
}

.leadership-experience .student-feedback:hover .name::after {
    transform: scaleX(1);
}

.leadership-experience .emp-achievements > div:nth-child(2) {
    opacity: 0.8;
    font-size: 17px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transform: translateX(5px);
    color: rgb(136,154,141);
}

.leadership-experience .work-achievements::before {
    background: linear-gradient(to bottom, rgb(184,199,191), rgb(136,154,141));
    height: 100%;
    top: 0;
    position: absolute;
    width: 3px;
    left: 0;
    content: "";
}

.welcome-page .learn-team {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.welcome-page .student-journey {
    z-index: 2;
    transform-style: preserve-3d;
    clip-path: polygon(
    0 0,
    100% 0,
    98% 96%,
    2% 100%
  );
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(2deg);
    max-width: 1200px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 90%;
    padding: 4rem;
    background: linear-gradient(
    170deg,
    rgb(184,199,191,0.5) 0%,
    rgba(35, 35, 55, 0.9) 100%
  );
}

.welcome-page .student-journey > div:nth-child(2) {
    animation-delay: 0.5s;
}

.welcome-page p {
    color: #ffffff;
    transform: translateX(-20px);
    margin-bottom: 1.5rem;
    animation: slideRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: calc(17px * 1.2);
    position: relative;
}

.welcome-page h3 {
    opacity: 0.95;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    transform: translateY(20px);
    padding-left: 20px;
    position: relative;
    max-width: 90%;
    animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.8s;
    font-size: calc(21px * 1.1);
}

.welcome-page h3::before {
    animation: scaleIn 0.6s ease forwards 1.4s;
    left: 0;
    width: 4px;
    transform-origin: top;
    height: 100%;
    position: absolute;
    background: rgb(136,154,141);
    content: "";
    top: 0;
    transform: scaleY(0);
}

.newsletter {
    position: relative;
    padding: 4.5rem 0;
    background: linear-gradient(135deg, rgb(230,229,208) 0%, rgb(136,154,141,0.5) 100%);
    box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.05) inset;
    overflow: hidden;
}

.newsletter::after {
    background: radial-gradient(circle, rgb(184,199,191,0.5) 0%, transparent 70%);
    top: -150px;
    animation: pulse 15s infinite alternate ease-in-out;
    border-radius: 50%;
    width: 300px;
    opacity: 0.15;
    content: "";
    right: -50px;
    filter: blur(50px);
    height: 300px;
    position: absolute;
}

.newsletter .master-sessions {
    background: #ffffff;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.03),
                -15px -15px 30px rgba(255, 255, 255, 0.6),
                inset 2px 2px 4px rgba(255, 255, 255, 0.8),
                inset -2px -2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 3.5rem;
}

.newsletter h3::after {
    bottom: -12px;
    width: 60px;
    position: absolute;
    border-radius: 3px;
    left: 0;
    content: "";
    height: 3px;
    background: linear-gradient(90deg, rgb(184,199,191) 0%, rgb(136,154,141) 100%);
}

.newsletter .input_holder input[type="email"] {
    color: #000000;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03),
                -8px -8px 16px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(0, 0, 0, 0.05),
                inset -1px -1px 2px rgba(255, 255, 255, 0.7);
    width: 100%;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    font-family: Arial, sans-serif;
    border: none;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: calc(15px * 0.95);
}

.newsletter .sub-texts {
    padding: 0.8rem 2rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                -5px -5px 15px rgba(255, 255, 255, 0.8),
                inset 1px 1px 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgb(184,199,191) 0%, rgb(136,154,141) 100%);
    color: #ffffff;
    overflow: hidden;
    font-size: 19px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.newsletter .sub-texts:active {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1),
                -3px -3px 10px rgba(255, 255, 255, 0.7),
                inset 2px 2px 5px rgba(0, 0, 0, 0.1),
                inset -2px -2px 5px rgba(255, 255, 255, 0.5);
    transform: translateY(1px);
}


#cookiePopupMessage {
    display: none;
}

#cookiePopupMessage:checked ~ .modalTrackingConsent {
    opacity: 0;
    visibility: hidden;
}

.modalTrackingConsent h5 {
    font-weight: 700;
    font-family: Arial, sans-serif;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 21px;
    text-transform: uppercase;
}

.cookie-control {
    flex-shrink: 0;
    justify-content: center;
    margin-right: 15px;
    align-items: center;
    filter: drop-shadow(0 0 10px rgb(184,199,191));
    display: flex;
}

.cookie-screen {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 20px;
    min-width: 140px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgb(184,199,191);
    color: #000000;
    font-size: 14px;
    text-align: center;
    background: linear-gradient(90deg, rgb(184,199,191), rgb(136,154,141));
    cursor: pointer;
    line-height: 40px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 10px;
    flex-shrink: 0;
}

header::before {
    top: 0;
    content: '';
    z-index: 0;
    left: 0;
    position: absolute;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, rgb(184,199,191), rgb(136,154,141));
}

header .nav-block {
    width: 35%;
    text-decoration: none;
    padding: 1.2rem 0;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
}

header .nav-block:hover svg {
    transform: scale(1.05);
}

header .first-section::before {
    position: absolute;
    width: 1px;
    top: 0;
    content: '';
    background: linear-gradient(to bottom, transparent, rgb(184,199,191,0.5), transparent);
    height: 100%;
    left: 0;
}

header .top-sitewrap::before {
    height: 100%;
    border-radius: 10px;
    width: 100%;
    position: absolute;
    content: '';
    z-index: -1;
    transition: opacity 0.3s ease;
    left: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgb(184,199,191,0.5), rgb(136,154,141,0.5));
    top: 0;
}

header .top-sitewrap:hover::before {
    opacity: 1;
}

.pricing-item {
    overflow: hidden;
    z-index: 1;
    padding: 120px 0 100px;
    position: relative;
}

.pricing-item::after {
    pointer-events: none;
    content: "";
    position: absolute;
    animation: rotateBackground 180s linear infinite;
    width: 200%;
    left: -50%;
    z-index: -1;
    top: -50%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
}

.pricing-item h2::after {
    width: 80px;
    background: linear-gradient(90deg, transparent, rgb(184,199,191), transparent);
    height: 3px;
    position: absolute;
    content: "";
    bottom: -10px;
    transform: translateX(-50%);
    left: 50%;
}

.pricing-item .access-rates {
    perspective: 1000px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.pricing-item .access-rates li {
    transition: transform 0.5s ease-out;
    transform-style: preserve-3d;
}

.pricing-item .bundle-rate {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    height: 100%;
    padding: 30px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2),
              -10px -10px 30px rgba(255, 255, 255, 0.05),
              inset 2px 2px 4px rgba(255, 255, 255, 0.05),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
}

.pricing-item .price-options {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.pricing-item .price-deals h4::after {
    position: absolute;
    height: 2px;
    width: 40px;
    bottom: -8px;
    left: 0;
    transition: width 0.3s ease;
    background: rgb(184,199,191);
    content: "";
}

.pricing-item .edu-rates {
    position: relative;
    font-weight: 700;
    text-align: right;
    margin-top: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: calc(22px + 6px);
    color: #ffffff;
    display: block;
}

.pricing-item .price-deals:hover .bundle-rate {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.25),
              -15px -15px 40px rgba(255, 255, 255, 0.07),
              inset 2px 2px 4px rgba(255, 255, 255, 0.05),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px) translateZ(0);
}

.pricing-item .price-deals:hover .bundle-rate::after {
    transform: scaleX(1);
}

.pricing-item .price-deals:hover .edu-rates::before {
    transform: scaleX(1);
}

.course-structure::before {
    top: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(rgb(184,199,191,0.5), 0.03) 20px,
        rgba(rgb(184,199,191,0.5), 0.03) 21px
    );
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    content: "";
}

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

.course-structure h2::before {
    transform: translateY(-50%) scaleY(0);
    content: "";
    top: 50%;
    animation: growUp 1.2s 0.3s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    width: 4px;
    transform-origin: bottom;
    position: absolute;
    background: rgb(184,199,191);
    height: 60%;
    left: -10px;
}

.course-structure .training-map {
    gap: 2.5rem;
    position: relative;
    animation: fadeUp 0.8s 0.3s forwards ease-out;
    transform: translateY(20px);
    flex-direction: column;
    display: flex;
    opacity: 0;
}

.course-structure .image-box-wrap {
    height: 380px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.course-structure .image-box-wrap::after {
    z-index: 2;
    animation: moveGradient 20s infinite alternate ease-in-out;
    position: absolute;
    left: -30%;
    width: 60%;
    top: -30%;
    content: "";
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    height: 60%;
}

.course-structure .description:last-child {
    margin-bottom: 0;
}

.course-structure .description::before {
    height: 4px;
    left: 0;
    content: "";
    background: rgb(136,154,141);
    border-radius: 50%;
    top: 0.5rem;
    width: 4px;
    position: absolute;
}

.launch-now::before {
    height: 100%;
    z-index: -1;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            transparent 10deg,
            rgba(255, 255, 255, 0.03) 10deg,
            rgba(255, 255, 255, 0.03) 20deg
        );
    width: 100%;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    animation: rotateQuantum 30s linear infinite;
}

.launch-now .master-sessions {
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    display: flex;
    padding: 60px 40px;
    border-radius: 28px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    z-index: 2;
    backdrop-filter: blur(10px);
    justify-content: center;
}

.launch-now .master-sessions::after {
    top: -50%;
    left: -50%;
    position: absolute;
    content: '';
    animation: rotateQuantumGradient 20s linear infinite;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgb(184,199,191,0.5) 0deg,
        rgb(136,154,141,0.5) 120deg,
        rgb(184,199,191,0.5) 240deg,
        rgb(136,154,141,0.5) 360deg
    );
    opacity: 0.1;
    height: 200%;
    z-index: -1;
    width: 200%;
}

.launch-now h3::before {
    transform: translateX(-50%);
    position: absolute;
    width: 80px;
    content: '';
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    height: 1px;
    left: 50%;
    box-shadow: 0 0 10px #ffffff;
    bottom: -20px;
}

.launch-now .contact-details {
    color: #ffffff;
    text-decoration: none;
    border-radius: 28px;
    position: relative;
    font-weight: 600;
    transition: all 0.4s ease;
    overflow: hidden;
    text-transform: uppercase;
    background: transparent;
    z-index: 1;
    padding: 18px 45px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.launch-now .contact-details:hover {
    border-color: transparent;
    transform: translateY(-5px);
    color: rgb(184,199,191);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.launch-now .contact-details:hover::after {
    left: 120%;
}

.our-background::before {
    content: "";
    width: 100%;
    left: 0;
    background: linear-gradient(120deg, rgb(184,199,191,0.5) 0%, transparent 30%),
                linear-gradient(240deg, rgb(136,154,141,0.5) 0%, transparent 30%);
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 1;
}

.our-background h2::after {
    background: linear-gradient(90deg, rgb(184,199,191), rgb(136,154,141));
    content: "";
    position: absolute;
    height: 3px;
    width: 100px;
    transform: translateX(-50%);
    border-radius: 10px;
    left: 50%;
    bottom: -15px;
}

.our-background .timeline-hist:nth-child(2) {
    border-left-color: rgb(136,154,141);
}

.our-background .timeline-hist::before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
}

.our-background .timeline-hist:nth-child(2)::after {
    border-color: rgb(136,154,141,0.5);
    animation-delay: 2s;
}



.our-background .timeline-hist:hover {
    background: linear-gradient(to right, rgba(rgb(184,199,191,0.5), 0.03), rgba(255, 255, 255, 0.05));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.our-background .timeline-hist:nth-child(2) h3 {
    color: rgb(136,154,141);
}

.our-background .timeline-hist:hover h3::before {
    width: 100%;
}

.our-background .timeline-hist p {
    line-height: 1.8;
    padding-left: 0;
    font-size: 14px;
    position: relative;
    transition: padding-left 0.3s ease;
    color: #000000;
}

.our-background .timeline-hist:last-child {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s forwards 0.5s;
}

.our-background .container::before,
.our-background .container::after {
    content: "";
    height: 200px;
    z-index: -1;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    background: radial-gradient(circle, rgb(184,199,191,0.5) 0%, transparent 70%);
    width: 200px;
}

.our-background .container::before {
    top: -100px;
    right: -100px;
}

.contact-information {
    position: relative;
    padding: 0;
}

.contact-information .container {
    padding: 0;
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
}

.contact-information .query-form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
}

.contact-information .inquiry-widget h3 {
    color: #ffffff;
    padding: 40px;
    margin: 0;
    font-weight: 700;
    font-size: 28px;
    background: rgb(184,199,191);
    text-align: center;
}

.contact-information .inquiry-widget svg {
    height: 50px;
    background: rgb(230,229,208);
    margin-bottom: 15px;
    border-radius: 50%;
    width: 50px;
    padding: 10px;
}

.contact-information .inquiry-widget span {
    color: #000000;
    font-size: 17px;
}

.contact-information .inquiry-widget a:hover {
    color: rgb(136,154,141);
}

.contact-information .inquiry-request {
    background: rgb(184,199,191);
    grid-column: 1 / 13;
    grid-row: 2 / 4;
    padding: 170px 0 100px;
    margin-top: -100px;
}

.contact-information form h3 {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
}

.contact-information form input[type="text"],
.contact-information form input[type="email"] {
    border: 1px solid rgb(230,229,208);
    padding: 18px 20px;
    margin-bottom: 25px;
    font-size: 17px;
    color: #000000;
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 10px;
    width: 100%;
}

.contact-information .feedback-support {
    margin: 25px 0;
    align-items: flex-start;
    display: flex;
}

.contact-information .feedback-support input[type="checkbox"]:checked {
    background-color: rgb(184,199,191);
    border-color: rgb(184,199,191);
}

.contact-information .feedback-support input[type="checkbox"]:checked::before {
    height: 10px;
    left: 7px;
    border-width: 0 2px 2px 0;
    top: 4px;
    content: '';
    border: solid #ffffff;
    position: absolute;
    transform: rotate(45deg);
    width: 6px;
}

.contact-information .feedback-support a:hover {
    color: rgb(136,154,141);
}

.contact-information .connect-panel {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 10px;
    background: rgb(184,199,191);
    border: none;
}

.confidential-zone:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.confidential-zone h1 {
    font-weight: 700;
    border-bottom: 2px solid rgb(136,154,141);
    font-size: 48px;
    color: rgb(184,199,191);
    margin-top: 40px;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.confidential-zone h3, .confidential-zone h4, .confidential-zone h5, .confidential-zone h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    color: rgb(184,199,191,0.5);
    font-weight: 400;
}

.confidential-zone li {
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 15px;
    color: #000000;
    padding-left: 10px;
}

.confidential-zone p, .confidential-zone span, .confidential-zone div {
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

footer .glossary::before {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, 
                      rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    position: absolute;
    top: 0;
    background-size: 60px 60px;
    left: 0;
    content: "";
    opacity: 0.1;
}

footer .info_item:nth-child(even) {
    transform: translateY(30px);
}

footer .info_item::before {
    left: 0;
    background-color: rgb(184,199,191);
    position: absolute;
    transition: height 0.3s ease, top 0.3s ease;
    height: 50%;
    width: 6px;
    top: 25%;
    content: "";
}

footer .info_item:hover::before {
    top: 0;
    height: 100%;
}

footer .info_item p,
footer .info_item a {
    transition: all 0.3s ease;
    z-index: 1;
    color: #2c3e50;
    position: relative;
    text-decoration: none;
    font-size: 17px;
}

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

footer .nav-header:hover, footer .subscribe_holder:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

footer .first-section {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    display: grid;
}

footer .tiktok-edu {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

footer .first-section h5::after {
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
    bottom: 0;
    content: "";
    background-color: rgb(184,199,191);
}

footer .head-mainbar:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

footer .head-mainbar a:last-child {
    border-bottom: none;
}

footer .head-mainbar a::before {
    transform: translateX(-10px);
    content: "→";
    transition: opacity 0.3s ease, transform 0.3s ease;
    right: 0;
    position: absolute;
    opacity: 0;
}

footer .head-mainbar a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

footer .subscribe_holder h5::after {
    left: 0;
    bottom: 0;
    background-color: rgb(184,199,191);
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
}

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

footer .input_holder input[type="email"] {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 17px;
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

footer .sub-texts:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background-color: rgb(136,154,141);
}

footer .cert-block {
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.data-insights {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(230,229,208) 0%, rgb(136,154,141,0.5) 100%);
    overflow: hidden;
}

.data-insights::before {
    content: "";
    height: 100%;
    top: 0;
    z-index: 1;
    position: absolute;
    left: 0;
    width: 100%;
    background-image: linear-gradient(30deg, rgb(184,199,191,0.5) 5%, transparent 35%);
}

.data-insights h3 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    font-size: 32px;
    text-align: center;
    transform: perspective(1000px) translateZ(20px);
    z-index: 2;
    position: relative;
}

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

.data-insights .statistics-tracks {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    padding: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    border-left: 4px solid rgb(184,199,191);
    transform: perspective(800px) rotateX(2deg) translateZ(0);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    transform-origin: center bottom;
}

.data-insights .statistics-tracks:hover::before {
    transform: translateX(100%);
}

.data-insights .statistics-tracks span {
    position: relative;
    font-size: calc(17px * 0.9);
    font-weight: 600;
    margin-bottom: 0.75rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
    color: #000000;
    display: block;
}

.data-insights .statistics-tracks p::after {
    content: "+";
    font-size: calc(20px * 0.8);
    right: -15px;
    top: 0;
    position: absolute;
    opacity: 0.7;
}

.pricing-item .price-deals p::-webkit-scrollbar {
    width: 4px;
}

.pricing-item .price-deals p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.pricing-item .price-deals p::-webkit-scrollbar-thumb {
    background: rgb(184,199,191);
    border-radius: 10px;
}

.course-structure .content-wrapper::-webkit-scrollbar {
    width: 6px;
}

.course-structure .content-wrapper::-webkit-scrollbar-track {
    border-radius: 3px;
    background: rgba(rgb(184,199,191,0.5), 0.1);
}

.course-structure .content-wrapper::-webkit-scrollbar-thumb {
    background-color: rgb(184,199,191);
    border-radius: 3px;
}



@media (min-width: 992px) {.thanksBox {
    padding: 8rem 0;
}.thanksBox .master-sessions {
    gap: 3rem;
    padding: 6rem 5rem;
    margin-left: 8rem;
}.thanksBox h5 {
    font-size: calc(22px * 1.2);
}.thanksBox p {
    max-width: 80%;
    font-size: calc(14px * 1.05);
}
}



@media (max-width: 480px) {.thanksBox {
    padding: 3rem 0;
}.thanksBox .master-sessions {
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
}.thanksBox h5 {
    font-size: calc(22px * 0.85);
}.thanksBox p {
    font-size: calc(14px * 0.95);
}.thanksBox .master-sessions > div:first-child {
    padding-left: 20px;
}}



@media (max-width: 992px) {.welcome-page .student-journey {
    width: 95%;
    transform: perspective(800px) rotateX(1deg);
    padding: 3rem;
}.welcome-page .title_style_header {
    font-size: calc(41px * 1.1);
}.welcome-page h3 {
    max-width: 100%;
    font-size: 21px;
}
}



@media (max-width: 576px) {.welcome-page .student-journey {
    padding: 2rem 1.5rem;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 98%,
      0 100%
    );
    width: 96%;
    transform: none;
}.welcome-page .title_style_header {
    letter-spacing: 1px;
    font-size: calc(31px * 0.9);
}.welcome-page p {
    font-size: calc(17px * 0.95);
    margin-bottom: 1rem;
}.welcome-page h3 {
    padding-left: 12px;
    font-size: 16px;
}.welcome-page h3::before {
    width: 2px;
}.welcome-page p::before {
    left: -20px;
    width: 15px;
}}



@media (max-width: 480px) {.newsletter {
    padding: 2.5rem 0;
}.newsletter .master-sessions {
    padding: 1.5rem;
}.newsletter h3 {
    font-size: calc(21px * 0.8);
    margin-bottom: 1.2rem;
}.newsletter h3::after {
    bottom: -8px;
    width: 40px;
    height: 2px;
}.newsletter .input_holder {
    gap: 0.8rem;
    margin-top: 1.5rem;
}
}



@media (hover: none) {.newsletter .sub-texts:hover {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                    -5px -5px 15px rgba(255, 255, 255, 0.8),
                    inset 1px 1px 1px rgba(255, 255, 255, 0.3);
    transform: none;
}.newsletter .sub-texts:active {
    transform: translateY(1px);
}}



@media (max-width: 991px) {header::before {
    width: 30%;
}header .nav-block {
    width: 30%;
    padding: 1rem 0;
}header .nav-block svg {
    width: 130px;
}header .first-section {
    gap: 0.5rem;
    width: 70%;
    padding: 1rem 2.5%;
}header .top-sitewrap {
    padding: 0.5rem 1rem;
    font-size: calc(17px);
}
}



@media (max-width: 480px) {header .nav-block {
    padding: 0.7rem 0;
}header .nav-block svg {
    width: 110px;
}header .first-section {
    padding: 0.7rem 2%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
}header .first-section::-webkit-scrollbar {
    height: 3px;
}header .first-section::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(184,199,191);
}header .top-sitewrap {
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 2px;
    padding: 0.45rem 0.9rem;
    font-size: calc(17px - 1px);
}}



@media screen and (min-width: 1200px) {.pricing-item .access-rates {
    grid-template-columns: repeat(4, 1fr);
}
}



@media screen and (min-width: 768px) and (max-width: 991px) {.pricing-item .access-rates {
    grid-template-columns: repeat(2, 1fr);
}.pricing-item {
    padding: 80px 0 60px;
}.pricing-item .cost-deals {
    margin-bottom: 50px;
}
}



@media (hover: none) {.pricing-item .bundle-rate {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2),
                -8px -8px 20px rgba(255, 255, 255, 0.05);
}.pricing-item .price-deals:active .bundle-rate {
    transform: translateY(-5px);
}
}



@media (min-width: 768px) {.course-structure {
    padding: 140px 0 100px;
}.course-structure h2 {
    max-width: 80%;
    font-size: calc(37px * 1.1);
}.course-structure .training-map {
    flex-direction: row;
    gap: 4rem;
}.course-structure .image-box-wrap {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 40%;
    height: auto;
}.course-structure .image-box-wrap:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.02) translateY(-5px);
}.course-structure .content-wrapper {
    width: 60%;
    padding: 0 1.5rem 0 2.5rem;
    max-height: 400px;
}.course-structure h2::after {
    width: 120px;
}
}



@media (max-width: 767px) {.course-structure {
    padding: 80px 0 60px;
}.course-structure h2 {
    max-width: 100%;
    margin-bottom: 2rem;
    font-size: calc(37px * 0.9);
}.course-structure .training-map {
    gap: 2rem;
}.course-structure .image-box-wrap {
    height: 280px;
}.course-structure .content-wrapper {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    max-height: 300px;
}.course-structure .description {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
    margin-bottom: 1rem;
}}



@media screen and (max-width: 768px) {.launch-now {
    padding: 80px 0;
}.launch-now .master-sessions {
    padding: 40px 25px;
}.launch-now h3 {
    letter-spacing: 2px;
    margin-bottom: 45px;
    font-size: calc(28px * 0.8);
}.launch-now h3::before {
    bottom: -15px;
    width: 60px;
}.launch-now .contact-details {
    padding: 14px 35px;
    font-size: calc(15px * 0.9);
    letter-spacing: 1.5px;
}
}



@media (max-width: 992px) {.our-background {
    padding: 80px 0;
}.our-background h2 {
    margin-bottom: 50px;
}.our-background .timeline-hist {
    padding: 30px;
}
}



@media (max-width: 576px) {.our-background {
    padding: 40px 0;
}.our-background h2 {
    margin-bottom: 30px;
    font-size: calc(35px * 0.8);
}.our-background .timeline-hist {
    padding: 20px;
    border-left-width: 3px;
}.our-background .timeline-hist::after {
    right: 20px;
    width: 15px;
    top: 20px;
    height: 15px;
}.our-background .timeline-hist p {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
}.our-background .container::before,
    .our-background .container::after {
    height: 150px;
    width: 150px;
}}



@media (max-width: 576px) {.contact-information .inquiry-widget {
    margin: 40px 15px 0;
}.contact-information .inquiry-widget h3 {
    font-size: calc(28px * 0.85);
    padding: 25px 20px;
}.contact-information .inquiry-request {
    padding: 130px 15px 60px;
}.contact-information form {
    padding: 30px 20px;
}.contact-information form input[type="text"],
    .contact-information form input[type="email"] {
    margin-bottom: 20px;
    padding: 15px;
}}



@media (min-width: 768px) {footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 2fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .sub-texts {
    white-space: nowrap;
}
}



@media (max-width: 991px) {footer .info_item:nth-child(even) {
    transform: translateY(15px);
}footer .first-section {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}



@media (max-width: 576px) {footer .glossary {
    padding: 50px 0 20px;
}footer .head-mainbar {
    padding: 15px;
}footer .first-section h5, footer .subscribe_holder h5 {
    font-size: calc(20px - 2px);
}footer .input_holder input[type="email"],
    footer .sub-texts {
    padding: 12px;
}}



@media (max-width: 768px) {.data-insights {
    padding: 3rem 0;
}.data-insights h3 {
    margin-bottom: 2rem;
    font-size: calc(32px * 0.9);
}.data-insights ul {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}.data-insights .statistics-tracks {
    transform: perspective(800px) rotateX(0) translateZ(0);
}.data-insights .statistics-tracks p {
    font-size: calc(32px * 1);
}
}



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



@keyframes constellation {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100px 100px;
    }
}



@keyframes pulse {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}



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



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



@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 20px) rotate(-3deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(2deg);
    }
}



@keyframes expand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}



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



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



@keyframes pulseGrid {
    0% {
        opacity: 0.2;
        background-size: 40px 40px;
    }
    100% {
        opacity: 0.3;
        background-size: 45px 45px;
    }
}



@keyframes floatTitle {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: translateY(-10px);
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }
}

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

