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

header,footer {
    width: 100%;
}

header {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 97% 100%, 3% 100%, 0 85%);
    z-index: 1000;
    padding: 1.2rem 0;
    background-color: rgb(213,199,219);
}

.head-teach-log {
    flex: 1 0 auto;
}

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

.developer-experience-log::before {
    width: 100%;
    position: absolute;
    background-size: 40px 40px;
    content: "";
    top: 0;
    opacity: 0.07;
    left: 0;
    height: 100%;
    background: 
        linear-gradient(to right, transparent 49.5%, rgb(190,152,200,0.5) 49.5%, rgb(190,152,200,0.5) 50.5%, transparent 50.5%),
        linear-gradient(to bottom, transparent 49.5%, rgb(190,152,200,0.5) 49.5%, rgb(190,152,200,0.5) 50.5%, transparent 50.5%);
}

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

.developer-experience-log .user-praise-log {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    overflow: hidden;
    border-radius: 0;
    background: #ffffff;
    position: relative;
    display: grid;
}

.developer-experience-log .user-praise-log::after {
    animation: scanner 4s linear infinite;
    left: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgb(190,152,200,0.5) 0%,
        transparent 20%,
        rgb(190,152,200,0.5) 40%,
        transparent 60%,
        rgb(145,112,178,0.5) 80%,
        transparent 100%
    );
    width: 100%;
    content: "";
    top: 6px;
    position: absolute;
}

.developer-experience-log .img-hover-log::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    inset: 0;
    z-index: 1;
    content: "";
    position: absolute;
}

.developer-experience-log .name {
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
    border-left: 4px solid rgb(190,152,200);
    color: #000000;
    font-weight: 700;
    padding-left: 16px;
    font-size: 34px;
}

.developer-experience-log .user-praise-log:hover .name::before {
    height: 100%;
}

.developer-experience-log .user-praise-log span:not(.name) {
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding: 6px 12px;
    color: rgba(0, 0, 0, 0.5);
    background: rgb(213,199,219);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 22px;
    display: inline-block;
}

.developer-experience-log .career-exp-log {
    margin: 0;
    position: relative;
    color: #000000;
    line-height: 1.8;
    font-size: 17px;
    border-radius: 10px;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(
        to right,
        rgb(213,199,219) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    padding: 25px 30px;
    border-left: 1px solid rgb(190,152,200);
}

.developer-experience-log .user-praise-log:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

footer {
    font-family: Arial, sans-serif;
    perspective: 1000px;
    position: relative;
    color: #ffffff;
}

footer::before {
    height: 100%;
    opacity: 0.85;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.5) 0%, 
                rgb(190,152,200,0.5) 50%, 
                rgba(0, 0, 0, 0.5) 100%);
    top: 0;
    content: "";
    z-index: -1;
    width: 100%;
}

.idea-pool-log::before {
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgb(145,112,178) 50%, 
                transparent 100%);
    width: 100%;
    position: absolute;
    height: 2px;
    content: "";
    left: 0;
    animation: glowPulse 3s ease-in-out infinite alternate;
    top: 0;
}

.idea-pool-log .company_holder:hover {
    transform: translateZ(20px) rotateX(2deg) rotateY(-2deg);
    border-left: 3px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 20px rgb(190,152,200,0.5);
}

.idea-pool-log .company_holder h3::after {
    transition: width 0.4s ease-in-out;
    position: absolute;
    background: rgb(190,152,200);
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    content: "";
}

.idea-pool-log .company_holder:hover h3::after {
    width: 100%;
}

.idea-pool-log .credit-info-log::before {
    top: 0;
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, 
                rgb(190,152,200) 0%, 
                transparent 100%);
    left: 0;
}

.idea-pool-log .main-primary-log {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.idea-pool-log .main-primary-log:hover::before {
    left: -100%;
    top: -100%;
}

.idea-pool-log .main-primary-log::after {
    transform: translateZ(5px);
    transform-style: preserve-3d;
    height: 0;
    transition: all 0.4s ease;
    position: absolute;
    border-width: 0 25px 25px 0;
    content: "";
    border-style: solid;
    right: 0;
    border-color: transparent rgb(190,152,200) transparent transparent;
    width: 0;
    top: 0;
}

.idea-pool-log .main-primary-log h5 {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 18px;
}

.idea-pool-log .main-primary-log h5::after {
    background: rgb(190,152,200);
    position: absolute;
    bottom: -8px;
    transition: width 0.4s ease-in-out;
    width: 30%;
    height: 3px;
    content: "";
    left: 0;
}

.idea-pool-log .main-primary-log a {
    display: block;
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    font-size: 15px;
}

.idea-pool-log .main-primary-log a:hover::before {
    left: 0;
    opacity: 1;
}

.biz-learnings-log {
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.biz-learnings-log .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-learnings-log .guide-section-log {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 30px;
    position: relative;
    padding: 0.5rem 1.5rem;
    font-size: 16px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.idea-pool-log .company_holder:hover::before,
.idea-pool-log .main-primary-log:hover::before {
    opacity: 0.5;
}

.idea-pool-log .company_holder::after {
    border-right: 2px solid rgb(190,152,200);
    opacity: 0.7;
    width: 30px;
    transition: all 0.4s ease;
    position: absolute;
    content: "";
    border-top: 2px solid rgb(190,152,200);
    right: 20px;
    top: 20px;
    height: 30px;
}

.idea-pool-log .company_holder:hover::after {
    height: 40px;
    width: 40px;
    transform: rotate(45deg);
}

.idea-pool-log .company_holder:hover .credit-info-log::after {
    width: calc(100% - 1rem);
}

.idea-pool-log::after {
    content: "";
    background-size: 40px 40px;
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.02) 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 50%, transparent 50%);
    opacity: 0.3;
    top: 0;
    z-index: -2;
}

.idea-pool-log .first-pagebar-log a::after {
    height: 1px;
    content: "";
    background: linear-gradient(to right, rgb(190,152,200), rgb(145,112,178));
    width: 0;
    position: absolute;
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;
}

.pricing-container-log .container {
    max-width: 1320px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 15px;
}

.pricing-container-log .bundle-offer-log {
    position: relative;
}

.pricing-container-log h2 {
    font-size: 37px;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.15);
    -webkit-background-clip: text !important;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    color: transparent;
    position: relative;
    display: inline-block;
    background-clip: text !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-container-log h2:hover::after {
    transform: scaleX(1.2);
}

.pricing-container-log .program-price-log {
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    font-size: calc(16px + 2px);
    opacity: 0.9;
    max-width: 700px;
}

.pricing-container-log .tuition-grid-log li {
    perspective: 1000px;
    height: 100%;
}

.pricing-container-log .study-sub-log {
    transform-style: preserve-3d;
    display: block;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 3px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.pricing-container-log .study-sub-log::after {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 50%;
    position: absolute;
    height: 10px;
    box-shadow: 0 0 20px 5px rgb(190,152,200,0.5);
    opacity: 0.8;
    left: -5px;
    top: -5px;
    width: 10px;
    background: rgb(190,152,200);
    content: "";
}

.pricing-container-log .study-sub-log h4 {
    font-weight: 600;
    color: #ffffff;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    font-size: 18px;
    padding-bottom: 15px;
}

.pricing-container-log .study-sub-log:hover h4::after {
    width: 60px;
}

.pricing-container-log .study-sub-log p {
    margin-bottom: 30px;
    font-size: 16px;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    white-space: normal;
    max-height: 200px;
    overflow-wrap: break-word;
    word-break: normal;
    padding-right: 10px;
}

.pricing-container-log .study-sub-log:hover .fee-plans-log {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-container-log .fee-plans-log::before {
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    content: "";
    height: 100%;
    transform: skewX(-20deg) translateX(-100%);
    left: 0;
    position: absolute;
    transition: transform 0.6s ease;
    top: 0;
}

.secure-habitat-log::before {
    background: 
        radial-gradient(circle at 10% 90%, rgb(145,112,178,0.5), transparent 40%),
        radial-gradient(circle at 90% 10%, rgb(190,152,200,0.5), transparent 45%);
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    content: "";
    top: 0;
}

.secure-habitat-log h1::after {
    transform-origin: left;
    position: absolute;
    left: 0;
    width: 3.5rem;
    height: 3px;
    background: rgb(190,152,200);
    bottom: -0.5rem;
    animation: expandLine 0.7s ease-out forwards 0.7s;
    content: "";
    transform: scaleX(0);
}

.secure-habitat-log h2::before {
    height: 85%;
    border-radius: 2px;
    position: absolute;
    width: 4px;
    left: 0;
    top: 0.25rem;
    background: rgb(145,112,178);
    content: "";
}

.secure-habitat-log h3::before {
    position: absolute;
    height: 80%;
    left: 0;
    top: 0.25rem;
    content: "";
    width: 3px;
    border-radius: 1.5px;
    background: rgb(145,112,178);
    opacity: 0.8;
}

.secure-habitat-log h4::before {
    content: "";
    left: 0;
    height: 75%;
    border-radius: 1px;
    opacity: 0.7;
    background: rgb(145,112,178);
    top: 0.25rem;
    width: 2px;
    position: absolute;
}

.secure-habitat-log p {
    line-height: 1.75;
    font-size: 16px;
    opacity: 0;
    animation: slideUp 0.7s ease-out forwards 0.4s;
    max-width: 90ch;
    transform: translateY(10px);
    margin-bottom: 1.5rem;
    color: #000000;
}

.secure-habitat-log li::marker {
    color: rgb(190,152,200);
    font-size: 1.2em;
}

.secure-habitat-log span {
    color: #000000;
    max-width: 90ch;
    padding-left: 1rem;
    font-size: 16px;
    border-left: 1px solid rgb(145,112,178,0.5);
    opacity: 0;
    line-height: 1.75;
    transform: translateY(10px);
    animation: slideUp 0.7s ease-out forwards 0.5s;
    margin-bottom: 1.5rem;
    display: block;
}

.program-structure-log::before {
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 20% 30%, rgb(145,112,178,0.5) 0%, transparent 60%);
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
}

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

.program-structure-log h2::after {
    left: 0;
    bottom: -1rem;
    height: 0.25rem;
    position: absolute;
    background: linear-gradient(90deg, rgb(190,152,200) 0%, rgb(145,112,178) 100%);
    content: "";
    width: 8rem;
}

.program-structure-log .img-hover-log {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 0.5rem;
    height: 400px;
    transform: perspective(1000px) rotateY(-2deg);
}

.program-structure-log .img-hover-log:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.program-structure-log .description {
    position: relative;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.program-structure-log .description:last-of-type {
    border-left: 3px solid rgb(145,112,178,0.5);
    position: relative;
    padding-left: 1.5rem;
}

.our-story-log::before {
    right: 0;
    top: 0;
    background: radial-gradient(circle at top right, rgb(190,152,200,0.5) 0%, transparent 70%);
    z-index: 1;
    height: 100%;
    position: absolute;
    opacity: 0.4;
    width: 40%;
    content: "";
}

.our-story-log .container {
    z-index: 2;
    position: relative;
}

.our-story-log .virtual-track-log {
    grid-gap: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.our-story-log h3::after {
    transform: translateX(-50%);
    left: 50%;
    bottom: -15px;
    position: absolute;
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(to right, rgb(190,152,200), rgb(145,112,178));
    content: "";
}

.our-story-log .training-classes-log:hover {
    transform: translateX(10px);
}

.our-story-log .training-classes-log span {
    color: rgb(190,152,200);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.our-story-log .training-classes-log span::after {
    height: 2px;
    left: 0;
    content: "";
    bottom: -5px;
    position: absolute;
    background-color: rgb(145,112,178);
    width: 40px;
}

.our-story-log .img-hover-log {
    position: relative;
    border-radius: 22px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 250px;
    overflow: hidden;
}

.our-story-log .who-weare-log {
    transform: translateX(0);
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    position: relative;
    padding: 30px;
    border-radius: 22px;
}

.our-story-log .who-weare-log {
    border-color: rgb(145,112,178);
}

.our-story-log .class-sessions-log::after {
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, transparent 75%, rgba(0, 0, 0, 0.3));
    width: 100%;
    height: 100%;
}

.our-story-log .virtual-track-log::after {
    opacity: 0.4;
    border-radius: 50%;
    border: 2px dotted rgb(145,112,178,0.5);
    animation: rotate 20s linear infinite reverse;
    width: 150px;
    content: "";
    bottom: -75px;
    right: -75px;
    position: absolute;
    z-index: -1;
    height: 150px;
}

.our-story-log .who-weare-log::before {
    background: rgb(145,112,178);
}

.our-story-log .training-classes-log::after,
.our-story-log .who-weare-log::after {
    content: "";
    width: 100px;
    opacity: 0.2;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    right: -50%;
    top: -50%;
    position: absolute;
    height: 100px;
}

.teaching-process-log::before {
    width: 100%;
    content: "";
    animation: bg-shift 20s linear infinite;
    position: absolute;
    top: 0;
    height: 100%;
    background: repeating-linear-gradient(
        120deg,
        rgb(190,152,200,0.5) 0%,
        transparent 10%,
        rgb(145,112,178,0.5) 20%,
        transparent 30%,
        rgb(190,152,200,0.5) 40%
    );
    opacity: 0.3;
    left: 0;
    z-index: -1;
}

.teaching-process-log .virtual-track-log {
    perspective: 1000px;
    padding: 40px;
    align-items: center;
    display: flex;
    transform-style: preserve-3d;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.teaching-process-log .virtual-track-log {
    padding: 25px 20px;
}

.teaching-process-log .virtual-track-log {
    padding: 20px 15px;
}

.teaching-process-log .virtual-track-log::after {
    border-radius: 30px;
    z-index: -1;
    backdrop-filter: blur(10px);
    inset: 0;
    content: "";
    animation: holographic-shimmer 4s ease-in-out infinite alternate;
    position: absolute;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.teaching-process-log h3::before {
    animation: underline-pulse 3s ease-in-out infinite;
    position: absolute;
    background: linear-gradient(
        90deg,
        rgb(190,152,200) 0%,
        rgb(145,112,178) 100%
    );
    content: "";
    top: 110%;
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    border-radius: 10px;
    left: 50%;
    opacity: 0.8;
}

.teaching-process-log h3::before {
    width: 50px;
}

.teaching-process-log h3::before {
    height: 2px;
    width: 40px;
}

.teaching-process-log span::before {
    height: 100%;
    position: absolute;
    animation: shadow-dance 8s ease-in-out infinite alternate;
    background: rgb(190,152,200,0.5);
    content: "";
    opacity: 0.2;
    top: 10px;
    width: 100%;
    filter: blur(20px);
    left: 10px;
    z-index: -1;
}

.explore-now-log {
    overflow: hidden;
    z-index: 1;
    background-color: rgb(213,199,219);
    padding: 100px 0;
    position: relative;
}

.explore-now-log::after {
    background-image: 
        radial-gradient(rgb(190,152,200,0.5) 1px, transparent 2px),
        radial-gradient(rgb(145,112,178,0.5) 1px, transparent 2px);
    content: '';
    top: 0;
    opacity: 0.06;
    left: 0;
    position: absolute;
    background-position: 0 0, 25px 25px;
    width: 100%;
    height: 100%;
    animation: bgPulse 10s ease-in-out infinite alternate;
    background-size: 30px 30px, 50px 50px;
    z-index: -1;
}



.explore-now-log::after {
    animation: 
        bgPulse 10s ease-in-out infinite alternate,
        moveBackground 30s linear infinite;
}

.explore-now-log .virtual-track-log:hover {
    transform: translateY(-5px);
    box-shadow: 
        15px 15px 50px rgba(0, 0, 0, 0.07),
        -15px -15px 50px rgba(255, 255, 255, 0.7),
        inset 3px 3px 6px rgba(255, 255, 255, 0.6),
        inset -3px -3px 6px rgba(0, 0, 0, 0.06);
}

.explore-now-log h3::before {
    position: absolute;
    transform: translateY(-50%);
    height: 10px;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -2px -2px 4px rgba(255, 255, 255, 0.7);
    content: '';
    background: rgb(190,152,200);
    left: -20px;
    width: 10px;
    top: 50%;
    border-radius: 50%;
}

.explore-now-log .get-helpdesk-log {
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgb(213,199,219);
    color: #000000;
    margin-top: 20px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 19px;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 0.7),
        inset 2px 2px 4px rgba(255, 255, 255, 0.5),
        inset -2px -2px 4px rgba(0, 0, 0, 0.05);
    padding: 16px 40px;
    z-index: 1;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.explore-now-log .get-helpdesk-log:hover::before {
    opacity: 0.2;
}

.explore-now-log .get-helpdesk-log:active {
    box-shadow: 
        inset 5px 5px 10px rgba(0, 0, 0, 0.05),
        inset -5px -5px 10px rgba(255, 255, 255, 0.6);
    transform: translateY(0);
}

.explore-now-log .virtual-track-log::after {
    bottom: -30px;
    right: -30px;
    width: 150px;
    background: linear-gradient(135deg, rgb(145,112,178), rgb(190,152,200));
    height: 150px;
    animation: pulse 8s ease-in-out 2s infinite alternate;
}

.explore-now-log .virtual-track-log::after {
    width: calc(100% - 40px);
    height: 1px;
    position: absolute;
    content: '';
    opacity: 0.3;
    left: 20px;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(190,152,200,0.5), 
        rgb(145,112,178,0.5), 
        rgb(190,152,200,0.5), 
        transparent
    );
    bottom: 20px;
}

.explore-now-log:hover .virtual-track-log::before {
    opacity: 0.05;
    background-size: 40px 100%;
}

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

.title-portal-log .learn-lead-log {
    animation: fadeIn 1.2s ease-out forwards;
    position: relative;
    width: 100%;
    z-index: 2;
    max-width: 1200px;
    transform: translateY(0);
}

.title-portal-log .learn-lead-log > div {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

.title-portal-log .learn-lead-log > div {
    grid-template-columns: 0.35fr 0.65fr;
    gap: 4rem;
}

.title-portal-log h3 {
    font-size: calc(19px * 1.1);
    letter-spacing: 0.02em;
    animation: slideUp 0.8s ease-out 0.2s both;
    margin: 0;
    line-height: 1.4;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.title-portal-log h3 {
    font-size: calc(19px * 1.1);
}

.title-portal-log .expert-sessions-log {
    overflow: hidden;
    height: 380px;
    clip-path: polygon(3% 0, 100% 0, 100% 100%, 0% 100%);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateX(-2deg);
}

.title-portal-log .expert-sessions-log {
    height: 450px;
}

.title-portal-log .expert-sessions-log > div {
    z-index: 2;
    display: flex;
    position: relative;
    justify-content: flex-end;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem;
}

.title-portal-log .expert-sessions-log > div {
    padding: 3rem;
}

.title-portal-log .title_style_header {
    letter-spacing: 0.03em;
    font-size: 48px;
    padding-bottom: 0.5rem;
    line-height: 1.1;
    margin: 0.5rem 0 0;
    color: #ffffff;
    animation: slideUp 0.8s ease-out 0.7s both;
    max-width: 95%;
    position: relative;
    font-weight: 700;
}

.title-portal-log .title_style_header {
    max-width: 90%;
    font-size: calc(48px * 1.2);
}

.contact-box-log {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: rgb(213,199,219);
}

.contact-box-log::before {
    content: "";
    background: linear-gradient(90deg, rgb(190,152,200), rgb(145,112,178));
    position: absolute;
    height: 5px;
    top: 0;
    width: 100%;
    left: 0;
}

.contact-box-log h2::before {
    top: 0;
    width: 5px;
    content: "";
    left: 0;
    height: 100%;
    position: absolute;
    background: rgb(190,152,200);
    border-radius: 10px;
}

.contact-box-log .img-hover-log {
    box-shadow: -15px 15px 0 rgb(190,152,200,0.5);
    order: 2;
    min-height: 500px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.contact-box-log form h3 {
    letter-spacing: 1px;
    font-size: 19px;
    margin-bottom: 35px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    font-family: Arial, sans-serif;
}

.contact-box-log form input[type="text"]:focus {
    box-shadow: 0 0 0 2px rgb(190,152,200,0.5);
    background: #ffffff;
    outline: none;
}

.contact-box-log form input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.5;
}

.contact-box-log .support-card-log input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.contact-box-log .support-card-log label {
    font-size: 12px;
    position: relative;
    color: #000000;
    line-height: 1.5;
    cursor: pointer;
    padding-left: 35px;
}

.contact-box-log .support-card-log input[type="checkbox"]:checked + label::before {
    background: rgb(190,152,200);
}

.contact-box-log .support-card-log label a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(190,152,200);
    font-weight: 600;
}

.contact-box-log .support-card-log label a:hover {
    color: rgb(145,112,178);
}

.contact-box-log form .request-support-log {
    cursor: pointer;
    overflow: hidden;
    font-size: 20px;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    color: #ffffff;
    padding: 18px 40px;
    font-family: Arial, sans-serif;
    position: relative;
    transition: all 0.3s ease;
    background: #000000;
    display: inline-block;
}

header::after {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(90deg, 
        rgb(190,152,200) 0%, 
        rgb(145,112,178) 50%, 
        rgb(190,152,200) 100%);
    left: 0;
    content: '';
    height: 4px;
}

header .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 1.5rem;
}

header .site-top-log {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-start-log {
    padding: 0.7rem 1.2rem;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    position: relative;
    font-family: Arial, sans-serif;
    border-radius: 10px;
}

header .header-start-log::after {
    top: 0;
    z-index: -1;
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(190,152,200);
    border-radius: 10px;
}

header .header-start-log:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

header .nav-mentor-log::before {
    height: 100%;
    content: '';
    top: 0;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    left: -100%;
    position: absolute;
    transition: 0.5s;
}

header .nav-mentor-log svg {
    position: relative;
    width: 160px;
    height: auto;
    z-index: 2;
}

.cookie-preference-log {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 30px;
    max-width: 1200px;
    align-items: center;
    margin: auto;
    justify-content: space-between;
}

.cookieUsagePromptBar-log h5 {
    font-size: 18px;
    transition: color 0.3s ease-in-out;
    margin-bottom: 6px;
    font-weight: 700;
    color: #ffffff;
}

.data-control-log svg, .data-control-log svg path {
    height: 80px;
    width: 80px;
    fill: rgb(190,152,200);
    transition: transform 0.3s ease-in-out;
}

.cookie_button.privacy-switch-log {
    background: rgb(190,152,200);
}

.cookie_button.user-default-log {
    background: rgb(145,112,178);
}

.cookies-tech-log:hover {
    transform: scale(1.05);
    box-shadow: rgb(190,152,200,0.5) 0px 6px 15px 0px;
}

.cookieUsagePromptBar-log p a {
    color: rgb(190,152,200);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-weight: 600;
}

.wrapper-segment-log .cookies-tech-log {
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    padding: 10px;
    font-size: 19px;
    border: none;
    border-radius: 10px;
    font-weight: 400;
    margin-left: 30px;
    color: #ffffff;
    background: rgb(190,152,200);
}

.locate-log {
    padding: 80px 0;
    background: rgb(213,199,219);
    overflow: hidden;
    position: relative;
}

.locate-log::after {
    transform: translate(-50%, -50%);
    opacity: 0.2;
    left: 50%;
    z-index: 0;
    background: radial-gradient(circle, rgb(190,152,200,0.5) 0%, transparent 60%);
    top: 50%;
    width: 200%;
    content: "";
    animation: pulse 15s infinite alternate;
    position: absolute;
    height: 200%;
}

.locate-log .message-request-log::before {
    opacity: 0.4;
    top: -75px;
    filter: blur(30px);
    right: -75px;
    width: 150px;
    position: absolute;
    content: "";
    background: linear-gradient(45deg, rgb(190,152,200) 0%, rgb(145,112,178) 100%);
    z-index: -1;
    height: 150px;
    border-radius: 50%;
}



.locate-log h2 {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    font-size: 37px;
    color: #000000;
    font-weight: 700;
}

.locate-log h2::after {
    left: 0;
    content: "";
    border-radius: 10px;
    height: 4px;
    background: linear-gradient(90deg, rgb(190,152,200) 0%, rgb(145,112,178) 100%);
    bottom: -10px;
    position: absolute;
    width: 50%;
}

.locate-log .ask-feedback-log::before {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(190,152,200,0.5), transparent);
}

.locate-log .get-helpdesk-log::before {
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    top: 0;
    background: conic-gradient(from 135deg, rgb(190,152,200) 0%, transparent 60%, rgb(145,112,178) 120%, rgb(190,152,200) 180%);
    height: 100%;
    transform: scale(0.85);
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    transition: all 0.4s ease;
}



.locate-log .get-helpdesk-log:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 
                0 0 15px rgb(190,152,200,0.5),
                0 0 30px rgb(145,112,178,0.5);
    transform: translateY(-5px) scale(1.15);
}

.locate-log .get-helpdesk-log:hover::before {
    opacity: 0.6;
    transform: scale(1);
}

.locate-log .get-helpdesk-log svg {
    height: 28px;
    stroke: rgb(190,152,200);
    filter: drop-shadow(0 0 3px rgb(190,152,200,0.5));
    width: 28px;
    transition: all 0.4s ease;
    fill: rgb(190,152,200);
}

.locate-log .get-helpdesk-log svg path {
    fill: rgb(190,152,200);
    stroke: rgb(190,152,200);
    transition: all 0.4s ease;
}

.locate-log p svg {
    stroke: rgb(190,152,200);
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
    fill: rgb(190,152,200);
}

.locate-log p:hover svg path {
    stroke: rgb(145,112,178);
    fill: rgb(145,112,178);
}

.learning-profits-log::before {
    height: 120%;
    transform: rotate(-15deg);
    right: -10%;
    background: linear-gradient(135deg, transparent 0%, rgb(190,152,200,0.5) 100%);
    position: absolute;
    z-index: 1;
    width: 70%;
    content: '';
    opacity: 0.5;
    top: -10%;
}

.learning-profits-log .img-hover-log:hover {
    transform: rotateY(5deg) translateX(-3vw);
}

.learning-profits-log .img-hover-log::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgb(190,152,200,0.5) 0%, transparent 100%);
    content: '';
}

.learning-profits-log .content-box-log:hover {
    transform: rotateY(0deg);
}

.learning-profits-log h2 {
    border-left: 5px solid rgb(190,152,200);
    position: relative;
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 28px;
    padding-left: 2rem;
    color: #000000;
}

.learning-profits-log .text_main_holder > div {
    z-index: 1;
    display: flex;
    transition: all 0.4s ease;
    position: relative;
    align-items: flex-start;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.learning-profits-log .text_main_holder > div:hover::before {
    opacity: 1;
}

.learning-profits-log .text_main_holder svg {
    height: 3rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 3rem;
}

.learning-profits-log .text_main_holder > div:hover svg path {
    fill: rgb(145,112,178);
}

.tyBlock-log {
    z-index: 1;
    position: relative;
    background: linear-gradient(135deg, rgb(213,199,219) 0%, rgba(rgb(190,152,200,0.5), 0.1) 100%);
    overflow: hidden;
    padding: 6rem 0;
}

.tyBlock-log::after {
    width: 40%;
    right: -5%;
    content: "";
    height: 70%;
    filter: blur(80px);
    background: linear-gradient(45deg, rgb(190,152,200) 0%, rgba(rgb(145,112,178,0.5), 0.8) 100%);
    transform: rotate(-15deg) translateZ(-10px);
    animation: float 15s ease-in-out infinite;
    position: absolute;
    top: -10%;
    z-index: -1;
    opacity: 0.15;
}

.tyBlock-log .virtual-track-log {
    padding: 3.5rem;
    gap: 2.5rem;
    backdrop-filter: blur(10px);
    grid-template-columns: 1fr;
    box-shadow: 
        0 10px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.12),
        0 0 0 1px rgba(rgb(190,152,200,0.5), 0.08);
    display: grid;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(0);
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
}

.tyBlock-log .virtual-track-log:hover::before {
    transform: scaleY(1);
}

.tyBlock-log h5 {
    font-weight: 700;
    padding-bottom: 1rem;
    position: relative;
    overflow: hidden;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: calc(21px * 1.1);
}

.tyBlock-log .virtual-track-log:hover h5::after {
    transform: translateX(10px);
    width: 7rem;
}

.tyBlock-log p {
    transition: color 0.3s ease;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
    color: #000000;
    position: relative;
    transform: translateZ(0);
    font-size: 12px;
    margin: 0;
}

.tyBlock-log a:hover {
    transform: translateY(-2px);
}

.tyBlock-log a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.tyBlock-log a:hover p {
    color: rgb(190,152,200);
}

.pricing-container-log .study-sub-log p::-webkit-scrollbar {
    width: 4px;
}

.pricing-container-log .study-sub-log p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.pricing-container-log .study-sub-log p::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.program-structure-log .content-box-log::-webkit-scrollbar {
    width: 4px;
}

.program-structure-log .content-box-log::-webkit-scrollbar-track {
    background: rgb(255, 255, 255, 0.5);
}

.program-structure-log .content-box-log::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(190,152,200,0.5);
}



@media (max-width: 575px) {.developer-experience-log {
    padding: 50px 0;
}.developer-experience-log .user-praise-log {
    gap: 20px;
    padding: 30px 20px;
}.developer-experience-log .img-hover-log {
    min-height: 220px;
}.developer-experience-log .name {
    padding-left: 12px;
    font-size: calc(34px * 0.8);
}.developer-experience-log .user-praise-log span:not(.name) {
    padding: 4px 10px;
    font-size: calc(22px * 0.9);
    margin-bottom: 15px;
}.developer-experience-log .career-exp-log {
    font-size: calc(17px * 0.9);
    padding: 15px 18px;
}}



@media (max-width: 768px) {.idea-pool-log {
    padding: 3.5rem 0 1.5rem;
}.idea-pool-log .first-pagebar-log {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.idea-pool-log .company_holder,
    .idea-pool-log .main-primary-log {
    padding: 1.5rem;
}.idea-pool-log .company_holder h3,
    .idea-pool-log .main-primary-log h5 {
    margin-bottom: 1.25rem;
}.biz-learnings-log {
    padding: 1.25rem 0;
    margin-top: 2rem;
}
}



@media (max-width: 991px) {.pricing-container-log {
    padding: 80px 0 100px;
}.pricing-container-log .tuition-grid-log {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.pricing-container-log .study-sub-log {
    min-height: 450px;
}.pricing-container-log .trial-rates-log {
    padding: 25px 20px;
}.pricing-container-log h2 {
    font-size: calc(37px - 4px);
}.pricing-container-log .program-price-log {
    font-size: 16px;
    margin-bottom: 40px;
}
}



@media (max-width: 480px) {.pricing-container-log {
    padding: 50px 0 70px;
}.pricing-container-log .trial-rates-log {
    padding: 20px 15px;
}.pricing-container-log h2 {
    font-size: calc(37px - 10px);
}.pricing-container-log .fee-plans-log {
    font-size: 18px;
    padding: 8px 20px;
}.pricing-container-log .study-sub-log h4 {
    margin-bottom: 15px;
    font-size: calc(18px - 2px);
}}



@media (min-width: 992px) {.secure-habitat-log {
    padding: 7rem 4rem;
    background: linear-gradient(165deg, rgb(213,199,219), #ffffff);
}.secure-habitat-log .container {
    padding: 0 3rem;
}.secure-habitat-log h1 {
    margin-bottom: 3.5rem;
    font-size: calc(39px * 1.2);
}.secure-habitat-log h1::after {
    height: 4px;
    width: 5rem;
}.secure-habitat-log p {
    margin-bottom: 2rem;
}.secure-habitat-log h2::before {
    background: linear-gradient(to bottom, rgb(190,152,200), rgb(145,112,178));
}.secure-habitat-log li {
    margin-bottom: 1.2rem;
}.secure-habitat-log span {
    padding-left: 1.5rem;
    border-left: 2px solid rgb(145,112,178,0.5);
}
}



@media (hover: hover) {.secure-habitat-log li:hover::marker {
    color: rgb(145,112,178);
}.secure-habitat-log strong:hover {
    transition: color 0.3s ease;
    color: rgb(190,152,200);
}
}



@media (max-width: 767px) {.secure-habitat-log {
    padding: 3rem 1.5rem;
}.secure-habitat-log h1 {
    margin-bottom: 1.8rem;
    font-size: calc(39px * 0.9);
}.secure-habitat-log h2 {
    margin: 2rem 0 1.2rem;
    font-size: calc(28px * 0.95);
}.secure-habitat-log p, 
    .secure-habitat-log li,
    .secure-habitat-log span {
    line-height: 1.7;
    font-size: calc(16px * 0.98);
}.secure-habitat-log ul {
    padding-left: 1.5rem;
}
}



@media (min-width: 768px) {.program-structure-log {
    padding: 8rem 0;
}.program-structure-log h2 {
    max-width: 75%;
    margin-bottom: 4rem;
    font-size: calc(35px * 1.1);
}.program-structure-log h2::after {
    width: 12rem;
}.program-structure-log .learn-route-log {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}.program-structure-log .img-hover-log {
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    height: 500px;
}.program-structure-log .content-box-log {
    max-height: 500px;
}
}



@media (min-width: 1200px) {.program-structure-log .container {
    padding: 0 2rem;
}.program-structure-log h2 {
    font-size: calc(35px * 1.3);
    transform: translateX(-1rem);
    max-width: 65%;
}.program-structure-log .learn-route-log {
    gap: 6rem;
}.program-structure-log .img-hover-log {
    transform: perspective(1200px) rotateY(-8deg) translateZ(0);
}.program-structure-log .img-hover-log:hover {
    transform: perspective(1200px) rotateY(-3deg) translateZ(0) scale(1.02);
}
}



@media (max-width: 1200px) {.our-story-log {
    padding: 80px 0;
}.our-story-log .virtual-track-log {
    grid-gap: 40px;
}.our-story-log h3 {
    margin-bottom: 40px;
}
}



@media (max-width: 992px) {.our-story-log .virtual-track-log {
    grid-template-columns: 1fr;
    grid-gap: 50px;
}.our-story-log h3 {
    margin-bottom: 35px;
}.our-story-log .training-classes-log:hover,
    .our-story-log .who-weare-log:hover {
    transform: translateY(-10px);
}
}



@media (max-width: 576px) {.our-story-log {
    padding: 50px 0;
}.our-story-log h3 {
    margin-bottom: 30px;
    font-size: calc(34px * 0.8);
}.our-story-log .training-classes-log,
    .our-story-log .who-weare-log {
    padding: 20px;
}.our-story-log .training-classes-log p,
    .our-story-log .who-weare-log p {
    font-size: calc(15px * 0.95);
    line-height: 1.6;
    margin-bottom: 20px;
}.our-story-log .img-hover-log,
    .our-story-log .class-sessions-log {
    height: 200px;
}}



@media screen and (max-width: 992px) {.explore-now-log {
    padding: 80px 0;
}.explore-now-log .virtual-track-log {
    max-width: 90%;
    padding: 40px;
}.explore-now-log h3 {
    font-size: calc(38px * 0.9);
}.explore-now-log .virtual-track-log::before {
    height: 150px;
    width: 150px;
}.explore-now-log .virtual-track-log::after {
    height: 120px;
    width: 120px;
}
}



@media (min-width: 768px) {.title-portal-log .learn-lead-log > div {
    gap: 3rem;
    grid-template-columns: 0.4fr 0.6fr;
}.title-portal-log h3 {
    font-size: 19px;
}.title-portal-log .expert-sessions-log {
    height: 420px;
}.title-portal-log .title_style_header {
    font-size: calc(48px * 1.1);
}
}



@media screen and (max-width: 991px) {.contact-box-log {
    padding: 90px 0;
}.contact-box-log .inquiry-query-log {
    gap: 40px;
    grid-template-columns: 1fr;
}.contact-box-log .img-hover-log {
    max-width: 600px;
    order: 1;
    margin: 0 auto;
    min-height: 400px;
}.contact-box-log .request-feedback-log {
    order: 2;
}.contact-box-log form {
    margin: 0 auto;
    max-width: 600px;
}
}



@media screen and (max-width: 767px) {.contact-box-log {
    padding: 70px 0;
}.contact-box-log h2 {
    font-size: calc(36px * 0.9);
    margin-bottom: 40px;
}.contact-box-log .img-hover-log {
    width: 100%;
    box-shadow: -10px 10px 0 rgb(190,152,200,0.5);
    min-height: 300px;
}.contact-box-log form {
    padding: 40px 30px;
}
}



@media (max-width: 991px) {header {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 5% 100%, 0 90%);
}header .main-primary-log {
    gap: 0.3rem;
}header .header-start-log {
    padding: 0.6rem 0.8rem;
    font-size: calc(17px - 1px);
}header .nav-mentor-log svg {
    width: 140px;
}
}



@media (max-width: 767px) {header {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 90% 100%, 10% 100%, 0 95%);
    padding: 1rem 0 1.5rem;
}header .site-top-log {
    flex-direction: column;
}header .main-primary-log {
    margin-top: 1rem;
    padding: 10px;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    order: 2;
    flex-wrap: wrap;
}header .header-start-log {
    padding: 0.5rem 0.7rem;
    font-size: calc(17px - 2px);
}header .nav-mentor-log {
    order: 1;
    margin-bottom: 0.5rem;
}header .nav-mentor-log svg {
    width: 130px;
}
}


@media only screen and (max-width: 800px) {.data-control-log {
    display: none;
}.cookie-preference-log {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.cookieUsagePromptBar-log h5 {
    text-align: center;
}.cookieUsagePromptBar-log p {
    text-align: center;
}.cookie-option-log {
    text-align: center;
    margin-bottom: 20px;
}.cookies-tech-log {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    max-width: 300px;
}}



@media (max-width: 576px) {.locate-log {
    padding: 40px 0;
}.locate-log .message-request-log {
    padding: 20px;
    border-radius: calc(23px * 0.8);
}.locate-log h2 {
    font-size: calc(37px * 0.7);
    margin-bottom: 15px;
}.locate-log h2::after {
    height: 3px;
    bottom: -8px;
}.locate-log p {
    margin-bottom: 15px;
    font-size: calc(14px * 0.9);
}.locate-log .ask-feedback-log {
    gap: 15px;
    margin-top: 25px;
}.locate-log .get-helpdesk-log {
    height: 50px;
    width: 50px;
}.locate-log .get-helpdesk-log svg {
    width: 20px;
    height: 20px;
}.locate-log .get-helpdesk-log::after {
    top: -1px;
    border-width: 1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}.locate-log .get-helpdesk-log:hover::after {
    border-width: 2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    top: -2px;
}
}



@media (max-width: 768px) {.learning-profits-log {
    padding: 5rem 0;
}.learning-profits-log .img-hover-log {
    height: 350px;
}.learning-profits-log h2 {
    font-size: calc(28px * 0.9);
    margin-bottom: 2.5rem;
}.learning-profits-log .text_main_holder > div {
    padding: 1.5rem;
}
}



@media (max-width: 576px) {.learning-profits-log .virtual-track-log {
    max-width: 95%;
}.learning-profits-log .img-hover-log {
    height: 250px;
}.learning-profits-log h2 {
    padding-left: 1.5rem;
}.learning-profits-log .text_main_holder > div {
    padding: 1.2rem;
}.learning-profits-log .text_main_holder svg {
    width: 2.5rem;
    margin-right: 1rem;
    height: 2.5rem;
}}



@media (min-width: 1024px) {.tyBlock-log .virtual-track-log {
    gap: 4rem;
    padding: 5rem;
}.tyBlock-log h5 {
    font-size: calc(21px * 1.3);
}.tyBlock-log::after {
    right: -10%;
    width: 50%;
}
}



@media (max-width: 480px) {.tyBlock-log {
    padding: 3rem 0;
}.tyBlock-log .virtual-track-log {
    padding: 2rem 1.5rem;
}.tyBlock-log h5 {
    font-size: calc(21px * 0.9);
}.tyBlock-log p {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
        opacity: 0.5;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(100%);
        opacity: 0.5;
    }
}



@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgb(145,112,178,0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(145,112,178);
    }
}



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



@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}



@keyframes holographic-shimmer {
    0% {
        opacity: 0.5;
        transform: rotate(0deg) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: rotate(0.5deg) scale(1.02);
    }
}



@keyframes text-float {
    0%, 100% {
        transform: translateZ(10px) translateY(0);
    }
    50% {
        transform: translateZ(20px) translateY(-5px);
    }
}



@keyframes text-glow {
    0% {
        filter: blur(4px);
        opacity: 0.5;
        transform: translateX(-3px) translateY(-3px);
    }
    100% {
        filter: blur(7px);
        opacity: 0.8;
        transform: translateX(3px) translateY(3px);
    }
}

@keyframes underline-pulse {
        0%, 100% {
            width: 40px;
        }
        50% {
            width: 60px;
        }
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.15;
    }
}



@keyframes moveBackground {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 30px 30px, 55px 55px;
    }
}



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



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



@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

@keyframes slideLine {
    0% {
        transform: translateX(-100%);
        opacity: 0.7;
    }
    50% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0.7;
    }
}



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

