* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}html,body {
    scroll-snap-type: none;
    min-height: 100%;
    color: #000000;
    auto
    scroll-behavior: smooth;
    auto
contain
touch-action: none;
    height: 100%;
    font-family: Arial, sans-serif;
}a {
    text-decoration: none;
    color: inherit;
}.main-core {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}.warp-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}.container {
    margin: auto;
    width: 1171px;
    max-width: 100%;
}.news-feed {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.thanksGrid {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    perspective: 1000px;
    background: linear-gradient(135deg, rgb(134,144,143,0.5), rgb(171,181,180), rgb(98,107,106,0.5));
}.thanksGrid::before {
    top: 0;
    position: absolute;
    bottom: 0;
    z-index: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    content: "";
    background: 
        radial-gradient(circle at 20% 30%, rgb(134,144,143,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgb(98,107,106,0.5) 0%, transparent 60%);
    animation: pulse 10s infinite alternate ease-in-out;
}.thanksGrid::after {
    position: absolute;
    height: 200%;
    z-index: 1;
    content: "";
    top: -50%;
    width: 200%;
    transform: rotate(15deg);
    animation: patternMove 60s linear infinite;
    left: -50%;
    pointer-events: none;
}.thanksGrid .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}.thanksGrid h2 {
    transform: translateZ(30px);
    padding-left: 20px;
    font-weight: 700;
    transition: transform 0.5s ease;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    text-align: left;
    font-size: 34px;
    color: #000000;
    line-height: 1.3;
    border-left: 4px solid rgb(134,144,143);
    font-family: Arial, sans-serif;
}.thanksGrid h2::after {
    content: "";
    animation: lineGrow 1.2s 0.5s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    background: rgb(98,107,106);
    width: 60px;
    bottom: -12px;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    position: absolute;
    left: 20px;
}.thanksGrid .expert-program {
    overflow: hidden;
    background: #ffffff;
    position: relative;
    box-shadow: 
        0 15px 30px -10px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05),
        0 30px 60px -30px rgba(rgb(134,144,143), 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateZ(20px) rotateX(2deg);
    border-radius: 18px;
}.thanksGrid .expert-program::before {
    content: "";
    height: 5px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(134,144,143), rgb(98,107,106));
    width: 100%;
    top: 0;
    z-index: 3;
}.thanksGrid .expert-program:hover {
    transform: translateZ(30px) rotateX(0deg);
    box-shadow: 
        0 20px 40px -15px rgba(0,0,0,0.15),
        0 10px 20px rgba(0,0,0,0.08),
        0 40px 70px -40px rgba(rgb(134,144,143), 0.4);
}.thanksGrid ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.thanksGrid li {
    position: relative;
    padding: 40px;
    transition: transform 0.3s ease;
    background: #ffffff;
}.thanksGrid li::before {
    display: flex;
    width: 30px;
    top: -15px;
    left: 40px;
    border-radius: 50%;
    align-items: center;
    color: #ffffff;
    height: 30px;
    box-shadow: 0 5px 15px rgba(rgb(134,144,143), 0.3);
    content: "✓";
    position: absolute;
    justify-content: center;
    font-size: 16px;
    background: rgb(134,144,143);
}.thanksGrid span {
    line-height: 1.7;
    font-size: 17px;
    display: block;
    position: relative;
    z-index: 2;
    text-align: left;
    color: #000000;
    font-family: Arial, sans-serif;
}

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

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes patternMove {
    0% {
        transform: rotate(15deg) translateY(0);
    }
    100% {
        transform: rotate(15deg) translateY(-100px);
    }
}

@media (max-width: 991px) {.thanksGrid {
    padding: 80px 0;
}.thanksGrid h2 {
    font-size: calc(34px * 0.9);
    padding-left: 15px;
}.thanksGrid li {
    padding: 30px;
}.thanksGrid li::before {
    left: 30px;
}
}

@media (max-width: 767px) {.thanksGrid {
    padding: 60px 0;
}.thanksGrid h2 {
    margin-bottom: 30px;
    transform: translateZ(20px);
    font-size: calc(34px * 0.8);
}.thanksGrid h2::after {
    width: 40px;
}.thanksGrid .expert-program {
    transform: translateZ(10px) rotateX(1deg);
}.thanksGrid .expert-program:hover {
    transform: translateZ(15px) rotateX(0deg);
}.thanksGrid li {
    padding: 25px 20px;
}.thanksGrid li::before {
    width: 24px;
    font-size: 14px;
    height: 24px;
    top: -12px;
    left: 20px;
}.thanksGrid span {
    line-height: 1.6;
    font-size: calc(17px * 0.95);
}
}

@media (max-width: 480px) {.thanksGrid {
    padding: 40px 0;
}.thanksGrid h2 {
    padding-left: 12px;
    border-left: 3px solid rgb(134,144,143);
    font-size: calc(34px * 0.7);
}.thanksGrid .container {
    padding: 0 15px;
}.thanksGrid .expert-program {
    transform: translateZ(5px) rotateX(0.5deg);
}.thanksGrid .expert-program:hover {
    transform: translateZ(10px) rotateX(0deg);
}.thanksGrid li {
    padding: 20px 15px;
}.thanksGrid li::before {
    left: 15px;
    width: 20px;
    height: 20px;
    font-size: 12px;
}.thanksGrid span {
    line-height: 1.5;
    font-size: calc(17px * 0.9);
}}.instructor-history {
    background: linear-gradient(135deg, rgb(171,181,180) 0%, rgb(134,144,143,0.5) 50%, rgb(171,181,180) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.instructor-history::before {
    height: 100%;
    content: "";
    position: absolute;
    opacity: 0.05;
    left: 0;
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(134,144,143,0.5) 0,
        rgb(134,144,143,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    width: 100%;
}.instructor-history::after {
    top: 0;
    left: 0;
    opacity: 0.4;
    width: 100%;
    position: absolute;
    height: 100%;
    filter: blur(60px);
    content: "";
    background: 
        radial-gradient(circle at 20% 30%, rgb(134,144,143,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(98,107,106,0.5) 0%, transparent 50%);
}.instructor-history .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 2;
    position: relative;
}.instructor-history .review-grid {
    align-items: center;
    display: flex;
    border-radius: 21px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 60px 40px;
    position: relative;
    flex-direction: column;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}.instructor-history .review-grid::before {
    opacity: 0;
    transform: rotate(-45deg) scale(2);
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 15%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 85%,
        transparent 100%
    );
    content: "";
    z-index: 1;
    position: absolute;
    transition: opacity 0.6s ease;
}.instructor-history .review-grid:hover::before {
    animation: holographic-sweep 1.5s ease infinite;
    opacity: 1;
}@keyframes holographic-sweep {
    0% {
        transform: rotate(-45deg) translateX(-50%) scale(2);
        opacity: 0;
    }
    30% {
        opacity: 0.3;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(-45deg) translateX(50%) scale(2);
        opacity: 0;
    }
}

.instructor-history .image-cell {
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 0 5px rgba(255, 255, 255, 0.8),
        0 0 0 10px rgb(134,144,143,0.5);
    height: 180px;
    transition: all 0.5s ease;
    transform: rotate(-3deg);
    width: 180px;
    margin-bottom: 35px;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
}.instructor-history .image-cell::before {
    width: 100%;
    position: absolute;
    left: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    height: 100%;
    content: "";
    z-index: 3;
    top: 0;
}.instructor-history .image-cell::after {
    z-index: 1;
    position: absolute;
    width: 200%;
    content: "";
    top: -50%;
    animation: rotate 15s linear infinite;
    height: 200%;
    opacity: 0.15;
    left: -50%;
    mix-blend-mode: overlay;
    background: 
        conic-gradient(
            from 0deg,
            transparent 0deg,
            rgb(134,144,143,0.5) 90deg,
            transparent 180deg,
            rgb(98,107,106,0.5) 270deg,
            transparent 360deg
        );
}@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.instructor-history .name {
    position: relative;
    z-index: 2;
    font-size: 34px;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}.instructor-history .name::after {
    left: 50%;
    height: 2px;
    content: "";
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgb(134,144,143) 50%,
        transparent 100%
    );
    transform: translateX(-50%);
    width: 70px;
    bottom: -8px;
}.instructor-history .review-grid span:not(.name) {
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-size: 18px;
    z-index: 2;
}.instructor-history .emp-overview {
    color: #000000;
    position: relative;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.5);
    max-width: 85%;
    border-right: 3px solid rgb(98,107,106);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    font-size: 13px;
    margin: 0;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    border-left: 3px solid rgb(134,144,143);
    backdrop-filter: blur(5px);
}.instructor-history .emp-overview::before,
.instructor-history .emp-overview::after {
    content: "";
    width: 40px;
    position: absolute;
    background: rgb(134,144,143,0.5);
    height: 40px;
    opacity: 0.1;
}.instructor-history .emp-overview::before {
    left: -5px;
    border-left: 3px solid rgb(134,144,143);
    border-top: 3px solid rgb(134,144,143);
    top: -5px;
}.instructor-history .emp-overview::after {
    border-right: 3px solid rgb(98,107,106);
    right: -5px;
    border-bottom: 3px solid rgb(98,107,106);
    bottom: -5px;
}.instructor-history .review-grid:hover {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}.instructor-history .review-grid:hover .image-cell {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 5px rgba(255, 255, 255, 0.9),
        0 0 0 12px rgb(134,144,143,0.5);
    transform: rotate(0deg) scale(1.05);
}

@media (max-width: 991px) {.instructor-history {
    padding: 80px 0;
}.instructor-history .review-grid {
    padding: 50px 30px;
}.instructor-history .image-cell {
    height: 160px;
    margin-bottom: 30px;
    width: 160px;
}.instructor-history .emp-overview {
    max-width: 90%;
    padding: 20px 25px;
}
}

@media (max-width: 767px) {.instructor-history {
    padding: 60px 0;
}.instructor-history .review-grid {
    padding: 40px 25px;
}.instructor-history .image-cell {
    height: 140px;
    width: 140px;
    margin-bottom: 25px;
}.instructor-history .name {
    font-size: calc(34px * 0.9);
}.instructor-history .review-grid span:not(.name) {
    font-size: calc(18px * 0.95);
    margin-bottom: 20px;
}.instructor-history .emp-overview {
    font-size: calc(13px * 0.95);
    padding: 18px 20px;
}
}

@media (max-width: 575px) {.instructor-history {
    padding: 50px 0;
}.instructor-history .review-grid {
    padding: 35px 20px;
}.instructor-history .image-cell {
    height: 120px;
    width: 120px;
    margin-bottom: 20px;
}.instructor-history .name {
    font-size: calc(34px * 0.8);
}.instructor-history .review-grid span:not(.name) {
    font-size: calc(18px * 0.9);
    letter-spacing: 1px;
    margin-bottom: 15px;
}.instructor-history .emp-overview {
    padding: 15px;
    max-width: 100%;
    font-size: calc(13px * 0.9);
}}.welcome {
    background: linear-gradient(135deg, rgb(171,181,180), rgba(30, 40, 70, 0.9));
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 1rem;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
    align-items: center;
}.welcome > div {
    z-index: 2;
    width: 100%;
    position: relative;
    max-width: 1200px;
}.welcome .legacy-edu {
    position: relative;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
}.welcome .course-hero {
    position: relative;
    line-height: 1.2;
    font-size: 46px;
    color: #ffffff;
    padding-bottom: 1rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}.welcome .course-hero::after {
    left: 0;
    animation: expandWidth 1.2s ease-out 0.4s forwards;
    bottom: 0;
    transform: scaleX(0);
    position: absolute;
    content: "";
    transform-origin: left;
    height: 4px;
    background: rgb(134,144,143);
    width: 80px;
}.welcome .page-hero {
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    border-radius: 13px;
    padding: 3rem 2rem;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
}.welcome .page-hero::before {
    left: 0;
    top: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(to right, 
    rgba(var(--secondary-color-rgb, 30, 60, 110), 0.85), 
    rgba(var(--primary-color-rgb, 60, 90, 170), 0.75));
    position: absolute;
    bottom: 0;
    right: 0;
}.welcome .page-hero > div {
    z-index: 2;
    position: relative;
    color: #ffffff;
    margin: 0 auto;
    max-width: 800px;
}.welcome .page-hero p {
    transform: translateX(-20px);
    font-size: calc(15px * 1.2);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    animation: fadeInRight 0.8s ease-out 0.6s forwards;
    opacity: 0;
    line-height: 1.6;
}.welcome .page-hero p::before {
    width: 4px;
    top: 0.5rem;
    height: calc(100% - 1rem);
    content: "";
    background: rgb(134,144,143);
    left: 0;
    position: absolute;
}.welcome .page-hero h3 {
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    padding: 1.5rem;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.1);
    line-height: 1.5;
    backdrop-filter: blur(5px);
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    border-left: 3px solid rgb(134,144,143);
    font-weight: 600;
    font-size: 18px;
}.welcome .page-hero h3:hover {
    transform: translateY(-5px) !important;
    background: rgba(255, 255, 255, 0.15);
}@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.welcome::before {
    background: radial-gradient(circle, rgba(var(--primary-color-rgb, 60, 90, 170), 0.1), transparent 60%);
    width: 100%;
    position: absolute;
    right: -50%;
    content: "";
    top: -50%;
    animation: rotateBg 25s linear infinite;
    height: 100%;
    pointer-events: none;
}.welcome::after {
    background: radial-gradient(circle, rgba(var(--secondary-color-rgb, 30, 60, 110), 0.08), transparent 60%);
    pointer-events: none;
    left: -20%;
    height: 80%;
    width: 80%;
    bottom: -30%;
    position: absolute;
    animation: rotateBg 20s linear infinite reverse;
    content: "";
}

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


@media (max-width: 1200px) {.welcome {
    padding: 3rem 1.5rem;
}.welcome .course-hero {
    font-size: calc(46px * 0.9);
}.welcome .page-hero {
    padding: 2.5rem 1.5rem;
}
}

@media (max-width: 992px) {.welcome {
    padding: 2.5rem 1rem;
}.welcome .course-hero {
    font-size: calc(46px * 0.8);
}.welcome .page-hero p {
    font-size: calc(15px * 1.1);
}.welcome .page-hero h3 {
    font-size: calc(18px * 0.95);
    padding: 1.25rem;
}
}

@media (max-width: 768px) {.welcome {
    padding: 2rem 0.75rem;
    min-height: 80vh;
}.welcome .legacy-edu {
    margin-bottom: 2rem;
}.welcome .course-hero {
    font-size: calc(46px * 0.7);
}.welcome .page-hero {
    padding: 2rem 1.25rem;
}.welcome .page-hero p {
    padding-left: 1rem;
    font-size: 15px;
}.welcome .page-hero h3 {
    font-size: calc(18px * 0.9);
    padding: 1rem;
}
}

@media (max-width: 576px) {.welcome {
    padding: 1.5rem 0.5rem;
}.welcome .course-hero {
    font-size: calc(46px * 0.6);
}.welcome .course-hero::after {
    height: 3px;
    width: 60px;
}.welcome .page-hero {
    padding: 1.5rem 1rem;
}.welcome .page-hero p {
    margin-bottom: 1.5rem;
}.welcome .page-hero h3 {
    padding: 0.75rem;
    font-size: calc(18px * 0.85);
}}.cookie-warning-window {
    border-top: 2px solid rgb(134,144,143);
    bottom: 0;
    width: 100%;
    background: rgb(171,181,180);
    z-index: 90;
    position: fixed;
}.cookie-tips {
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
}.cookie-warning-window h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.cookie-warning-window p {
    font-size: 18px;
}.cookie-data {
    flex-shrink: 0;
    margin-right: 10px;
}.cookie-data svg, .cookie-data svg path, .cookie-data img {
    fill: rgb(134,144,143);
    width: 100px;
    height: 100px;
}.consent-track {
    text-decoration: none;
    line-height: 35px;
    min-width: 120px;
    white-space: nowrap;
    font-size: 24px;
    text-align: center;
    flex-shrink: 0;
    border-bottom: 2px solid rgb(134,144,143);
    margin-left: 10px;
    color: rgb(134,144,143);
    cursor: pointer;
}.cookie-warning-window p a {
    color: rgb(134,144,143);
    text-decoration: none;
}#cookie-alert-notice {
    display: none;
}#cookie-alert-notice:checked ~ .cookie-warning-window {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.cookie-warning-window {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.cookie-data {
    display: none;
}.cookie-tips {
    align-items: center;
    flex-direction: column;
    justify-content: center;
}.cookie-warning-window h5 {
    text-align: center;
}.cookie-warning-window p {
    text-align: center;
}.cookies-overview {
    margin-bottom: 20px;
}body .warp-container .consent-track {
    margin-left: 0;
}}
.warp-container .cookie-tips {
    justify-content: flex-end;
}.warp-container .consent-track {
    color: #ffffff;
    margin-left: 30px;
    background: rgb(134,144,143);
    font-size: 20px;
    padding: 10px;
}.warp-container .cookies-overview {
    text-align: right;
}
@media only screen and (max-width: 800px)  {.warp-container .consent-track {
    margin-left: 0;
    margin-bottom: 10px;
}}.our-story {
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}.our-story::before {
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}.our-story::after {
    width: 70%;
    height: 70%;
    top: -10%;
    filter: blur(70px);
    opacity: 0.15;
    transform: rotate(-15deg);
    z-index: 2;
    content: "";
    position: absolute;
    animation: pulseGlow 8s infinite alternate ease-in-out;
    background: rgb(134,144,143);
    right: -10%;
}.our-story .container {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    width: 90%;
    position: relative;
    z-index: 5;
    max-width: 1200px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: perspective(1000px) rotateY(-2deg);
    backdrop-filter: blur(10px);
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 2rem),
        calc(100% - 2rem) 100%,
        0 100%
    );
}.our-story .container:hover {
    transform: perspective(1000px) rotateY(0);
}.our-story .text-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
}.our-story .text-card > div:first-child {
    margin-bottom: 0.5rem;
    position: relative;
}.our-story .text-card > div:first-child::before {
    left: -1.5rem;
    background: rgb(134,144,143);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    animation: pulse 3s infinite;
    width: 0.75rem;
    content: "";
    position: absolute;
    height: 0.75rem;
}.our-story .text-card > div:first-child::after {
    content: "";
    width: calc(100% + 4rem);
    animation: lineGrow 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    background: linear-gradient(
        90deg,
        rgb(134,144,143) 0%,
        rgb(98,107,106) 50%,
        transparent 100%
    );
    bottom: -0.5rem;
    position: absolute;
    left: -3rem;
    height: 1px;
    transform-origin: left;
}.our-story h5 {
    margin: 0;
    letter-spacing: 1.5px;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    transition: transform 0.4s ease;
    padding-left: 1rem;
    transform: translateX(0);
    font-weight: 700;
    font-size: 20px;
}.our-story .text-card > div:first-child:hover h5 {
    transform: translateX(0.5rem);
}.our-story .text-card > div:nth-child(2) {
    position: relative;
}.our-story .text-card > div:nth-child(2) p {
    margin: 0;
    line-height: 1.2;
    -webkit-background-clip: text !important;
    font-weight: 700;
    transform: translateY(0);
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease, filter 0.4s ease;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    color: #ffffff;
    background-clip: text !important;
    font-size: calc(20px * 1.5);
    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgb(98,107,106) 100%
    );
}.our-story .text-card > div:nth-child(2):hover p {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}.our-story ol {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    counter-reset: about-counter;
    position: relative;
}.our-story ol::before {
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgb(134,144,143,0.5) 15%,
        rgb(134,144,143) 50%,
        rgb(134,144,143,0.5) 85%,
        transparent 100%
    );
    position: absolute;
    height: calc(100% + 2rem);
    content: "";
    top: -1rem;
    left: -2rem;
    z-index: 1;
}.our-story ol li {
    position: relative;
    text-align: justify;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    counter-increment: about-counter;
    padding: 1.5rem 2rem;
    color: #ffffff;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 17px;
    margin-bottom: 1.5rem;
    border-left: 3px solid rgb(134,144,143);
    line-height: 1.8;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    border-radius: 0 10px 10px 0;
}.our-story ol li::before {
    display: flex;
    z-index: 2;
    top: 1.5rem;
    align-items: center;
    border: 2px solid rgb(134,144,143);
    content: "";
    width: 2rem;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    left: -2.5rem;
    background: #000000;
    height: 2rem;
    position: absolute;
    box-shadow: 0 0 15px rgb(134,144,143,0.5);
}.our-story ol li:hover {
    transform: translateX(0.5rem);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}.our-story ol li:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgb(134,144,143);
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) rotate(45deg) scale(1); }
    50% { transform: translateY(-50%) rotate(45deg) scale(1.2); }
}

@keyframes lineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes pulseGlow {
    0% { opacity: 0.1; transform: rotate(-15deg) scale(1); }
    50% { opacity: 0.2; transform: rotate(-12deg) scale(1.05); }
    100% { opacity: 0.1; transform: rotate(-15deg) scale(1); }
}

@media (max-width: 991px) {.our-story .container {
    transform: perspective(1000px) rotateY(-1deg);
    width: 95%;
    padding: 2rem;
}.our-story h5 {
    font-size: calc(20px * 0.9);
}.our-story .text-card > div:nth-child(2) p {
    font-size: calc(20px * 1.3);
}.our-story ol li {
    padding: 1.25rem 1.5rem;
}
}

@media (max-width: 767px) {.our-story {
    min-height: auto;
    padding: 4rem 0;
}.our-story .container {
    transform: none;
    padding: 1.5rem;
    clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 1rem),
            calc(100% - 1rem) 100%,
            0 100%
        );
}.our-story .text-card > div:first-child::before {
    height: 0.5rem;
    left: -1rem;
    width: 0.5rem;
}.our-story .text-card > div:first-child::after {
    left: -1.5rem;
    width: calc(100% + 2rem);
}.our-story h5 {
    font-size: calc(20px * 0.8);
}.our-story .text-card > div:nth-child(2) p {
    font-size: calc(20px * 1.1);
}.our-story ol::before {
    left: -1.25rem;
}.our-story ol li {
    padding: 1rem;
    font-size: calc(17px * 0.9);
    line-height: 1.6;
}.our-story ol li::before {
    left: -1.75rem;
    width: 1.5rem;
    height: 1.5rem;
    top: 1rem;
}
}

@media (max-width: 480px) {.our-story {
    padding: 3rem 0;
}.our-story .container {
    padding: 1rem;
}.our-story .text-card {
    gap: 1rem;
}.our-story h5 {
    font-size: calc(20px * 0.7);
}.our-story .text-card > div:nth-child(2) p {
    font-size: 20px;
}.our-story ol li {
    line-height: 1.5;
    padding: 0.75rem;
    font-size: calc(17px * 0.85);
}}header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    background: linear-gradient(135deg, rgb(134,144,143,0.5) 0%, rgb(98,107,106,0.5) 100%);
    z-index: 100;
    position: relative;
    margin-top: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}header::before {
    content: '';
    top: 0;
    opacity: 0.5;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgb(134,144,143,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(98,107,106,0.5) 0%, transparent 30%);
    width: 100%;
    left: 0;
    z-index: -1;
    position: absolute;
}header .nav-section {
    position: relative;
    display: flex;
    padding: 1.2rem 2.5rem;
    z-index: 5;
    align-items: center;
    justify-content: space-between;
}header .header-top {
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    flex: 0 0 auto;
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 23px;
}header .header-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.25);
}header .top-learning {
    transition: all 0.3s ease;
    display: block;
}header .top-learning img {
    max-height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}header .head-edu {
    display: flex;
    z-index: 2;
    margin: 0;
    list-style: none;
    position: relative;
    padding: 0;
}header .page-header {
    margin: 0 0.3rem;
    position: relative;
}header .page-header a {
    padding: 0.8rem 1.2rem;
    z-index: 1;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-radius: 23px;
    color: #ffffff;
    font-size: 15px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
    position: relative;
}header .page-header a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}header .page-header a::before {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 23px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)
    );
    opacity: 0;
    height: 100%;
    content: '';
    left: 0;
}header .page-header a:hover::before {
    opacity: 1;
}header .page-header::after {
    opacity: 0.7;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    content: '';
    height: 3px;
    border-radius: 10px;
    position: absolute;
    background: #ffffff;
    left: 50%;
    width: 0;
    bottom: -3px;
}header .page-header:hover::after {
    width: 70%;
}header .nav-section::before {
    top: -20px;
    filter: blur(40px);
    border-radius: 50%;
    opacity: 0.5;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgb(134,144,143,0.5);
    content: '';
    z-index: -1;
    position: absolute;
}header .nav-section::after {
    position: absolute;
    border-radius: 50%;
    background: rgb(98,107,106,0.5);
    left: -20px;
    width: 80px;
    opacity: 0.5;
    z-index: -1;
    height: 80px;
    filter: blur(30px);
    bottom: -20px;
    content: '';
}header .main-core {
    padding-top: 2rem;
    background: rgb(171,181,180);
    position: relative;
    z-index: 1;
}@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

header .header-top::after {
    content: '';
    transition: all 0.4s ease;
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    position: absolute;
    bottom: -20px;
    opacity: 0.5;
    left: 0;
}header .header-top:hover::after {
    transform: scaleX(0.9);
    opacity: 0.7;
}

@media (min-width: 1400px) {header .nav-section {
    margin: 0 auto;
    max-width: 1320px;
}header .page-header {
    margin: 0 0.5rem;
}header .page-header a {
    padding: 0.8rem 1.5rem;
}
}

@media (max-width: 991px) {header {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}header .nav-section {
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
}header .header-top {
    margin-bottom: 0;
    padding: 0.6rem 1rem;
    border-radius: 10px;
}header .head-edu {
    margin-top: 1rem;
    flex-basis: 100%;
    justify-content: flex-end;
}header .page-header a {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: calc(15px - 1px);
}header .nav-section::before,
    header .nav-section::after {
    display: none;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .nav-section {
    padding: 0.8rem 1.2rem;
}header .header-top {
    padding: 0.5rem 0.8rem;
    max-width: 140px;
}header .top-learning img {
    max-height: 35px;
}header .head-edu {
    padding-bottom: 0.5rem;
    justify-content: flex-start;
    scrollbar-width: thin;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 0.8rem;
}header .head-edu::-webkit-scrollbar {
    height: 3px;
}header .head-edu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}header .page-header {
    margin: 0 0.15rem;
    flex: 0 0 auto;
}header .page-header a {
    white-space: nowrap;
    font-size: calc(15px - 2px);
    padding: 0.5rem 0.8rem;
}header .page-header::after {
    display: none;
}header .header-top::after {
    display: none;
}
}

@media (max-width: 479px) {header .nav-section {
    padding: 0.7rem 1rem;
}header .header-top {
    padding: 0.4rem 0.7rem;
    max-width: 120px;
}header .page-header a {
    padding: 0.4rem 0.6rem;
    font-size: calc(15px - 3px);
}}footer {
    position: relative;
}footer::before {
    content: '';
    right: 0;
    background: linear-gradient(45deg, rgb(98,107,106,0.5) 0%, rgb(134,144,143,0.5) 100%);
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
    top: 0;
}.news-feed {
    padding: 80px 0 40px;
    color: #ffffff;
    position: relative;
    font-family: Arial, sans-serif;
    z-index: 2;
}.news-feed .container {
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    display: grid;
}.news-feed .company_holder {
    grid-column: 1 / 5;
    z-index: 3;
    position: relative;
}.news-feed .company_holder h3 {
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 36px;
    position: relative;
    color: #ffffff;
    letter-spacing: 1px;
}.news-feed .company_holder h3::after {
    width: 40px;
    left: 0;
    content: '';
    border-radius: 10px;
    bottom: 0;
    background: rgb(134,144,143);
    position: absolute;
    height: 4px;
}.news-feed .collab-space {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    border-left: 4px solid rgb(134,144,143);
    background: rgba(255, 255, 255, 0.1);
    margin-top: 25px;
    border-radius: 21px;
    line-height: 1.6;
    font-size: 13px;
    padding: 20px;
    backdrop-filter: blur(10px);
}.news-feed .lecture-ref {
    grid-column: 5 / 13;
    position: relative;
}.news-feed .head-page {
    grid-gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}.news-feed .head-edu {
    position: relative;
}.news-feed .head-edu h5 {
    font-weight: 600;
    color: #ffffff;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    font-size: 18px;
}.news-feed .head-edu h5::before {
    left: -15px;
    content: '';
    height: 8px;
    top: 50%;
    border-radius: 50%;
    background: rgb(134,144,143);
    position: absolute;
    transform: translateY(-50%);
    width: 8px;
}.news-feed .head-edu .head-page {
    display: flex;
    flex-direction: column;
    gap: 15px;
}.news-feed .head-edu .head-page a {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-size: 13px;
    position: relative;
}.news-feed .head-edu .head-page a::before {
    height: 100%;
    left: 0;
    width: 3px;
    content: '';
    top: 0;
    position: absolute;
    transition: all 0.3s ease;
    z-index: -1;
    background: rgb(134,144,143);
}.news-feed .head-edu .head-page a:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}.news-feed .head-edu .head-page a:hover::before {
    width: 100%;
    background: rgb(134,144,143,0.5);
}.progress-bar {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    z-index: 2;
    position: relative;
}.progress-bar::before {
    position: absolute;
    left: 15%;
    height: 1px;
    right: 15%;
    opacity: 0.2;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    top: 0;
    content: '';
}.progress-bar .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.progress-bar .fellow-prog {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    color: #ffffff;
}@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

footer::after {
    left: 0;
    top: 0;
    z-index: 1;
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    right: 0;
    content: '';
    bottom: 0;
}

@media (max-width: 992px) {.news-feed .container {
    grid-template-columns: repeat(1, 1fr);
}.news-feed .company_holder {
    margin-bottom: 40px;
    grid-column: 1 / -1;
}.news-feed .lecture-ref {
    grid-column: 1 / -1;
}.news-feed .head-page {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {.news-feed {
    padding: 60px 0 30px;
}.news-feed .head-page {
    grid-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}.news-feed .head-edu {
    padding: 0;
}}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.news-feed::before {
    background: linear-gradient(90deg, rgb(134,144,143), rgb(98,107,106), rgb(134,144,143));
    left: 0;
    animation: gradientShift 5s infinite;
    background-size: 200% 200%;
    width: 100%;
    height: 5px;
    top: 0;
    content: '';
    position: absolute;
}.news-feed .company_holder::after {
    width: 150px;
    border-radius: 50%;
    filter: blur(60px);
    content: '';
    z-index: -1;
    position: absolute;
    right: -50px;
    opacity: 0.4;
    top: 40px;
    height: 150px;
    background: rgb(134,144,143,0.5);
}.news-feed .company_holder::before {
    height: 100px;
    width: 100px;
    z-index: -1;
    left: -30px;
    filter: blur(40px);
    position: absolute;
    background: rgb(98,107,106,0.5);
    opacity: 0.3;
    border-radius: 50%;
    content: '';
    bottom: 0;
}.news-feed .lecture-ref::after {
    width: 120px;
    opacity: 0.2;
    position: absolute;
    content: '';
    z-index: -1;
    border-radius: 50%;
    right: 100px;
    top: -20px;
    background: rgb(134,144,143,0.5);
    filter: blur(50px);
    height: 120px;
}.news-feed .lecture-ref::before {
    bottom: -50px;
    filter: blur(70px);
    height: 180px;
    z-index: -1;
    left: 80px;
    content: '';
    position: absolute;
    width: 180px;
    border-radius: 50%;
    opacity: 0.25;
    background: rgb(98,107,106,0.5);
}@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.3);
    }
}

.news-feed .head-edu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    animation: borderPulse 4s infinite;
}.news-feed .head-edu h5 {
    letter-spacing: 0.5px;
}.news-feed .head-edu h5::after {
    background: rgb(98,107,106);
    bottom: -5px;
    left: 0;
    position: absolute;
    height: 2px;
    width: 30px;
    content: '';
}@keyframes movingGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.progress-bar {
    animation: movingGradient 10s ease infinite;
    background-size: 200% 200%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
}.privacy-niche {
    color: #ffffff;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 15px rgb(134,144,143,0.5);
    background-color: rgb(98,107,106);
    padding: 50px;
}.privacy-niche h3, .privacy-niche h4, .privacy-niche h5, .privacy-niche h6 {
    margin: 1rem 0;
}.privacy-niche h1 {
    margin-bottom: 30px;
    color: rgb(134,144,143);
    font-weight: 700;
    font-size: 48px;
    text-shadow: 0 0 8px rgb(134,144,143,0.5);
}.privacy-niche h2 {
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: rgb(134,144,143);
    font-size: 30px;
    text-shadow: 0 0 5px rgb(98,107,106,0.5);
}.privacy-niche h3, .privacy-niche h4, .privacy-niche h5, .privacy-niche h6 {
    color: rgb(134,144,143);
    margin-top: 30px;
}.privacy-niche h3 {
    font-weight: 700;
    font-size: calc(21px - 2px);
    text-shadow: 0 0 6px rgb(134,144,143,0.5);
}.privacy-niche h4 {
    font-size: calc(21px + 2px);
    font-weight: 600;
    text-shadow: 0 0 4px rgb(134,144,143,0.5);
}.privacy-niche h5 {
    font-weight: 400;
    text-shadow: 0 0 3px rgb(134,144,143,0.5);
    font-size: 21px;
}.privacy-niche h6 {
    text-shadow: 0 0 2px rgb(134,144,143,0.5);
    font-size: 17px;
    font-weight: 300;
}.privacy-niche ul, .privacy-niche ol {
    list-style: none;
    padding-left: 25px;
    margin: 20px 0;
}.privacy-niche li {
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
    position: relative;
}.privacy-niche li::before {
    border-radius: 50%;
    content: '';
    transform: translateY(-50%);
    left: 0;
    box-shadow: 0 0 8px rgb(98,107,106,0.5);
    top: 50%;
    background-color: rgb(98,107,106);
    position: absolute;
    width: 10px;
    height: 10px;
}.privacy-niche section {
    padding-top: 30px;
    border-top: 1px solid rgb(98,107,106,0.5);
    margin-top: 50px;
}.privacy-niche p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 14px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}.privacy-niche span {
    font-weight: 600;
    text-shadow: 0 0 4px rgb(98,107,106,0.5);
    color: rgb(98,107,106);
}.privacy-niche div {
    margin-bottom: 25px;
}
@media only screen and (max-width: 800px) {.privacy-niche {
    padding: 30px;
    border-radius: 10px;
}.privacy-niche h1 {
    font-size: calc(21px - 8px);
}.privacy-niche h2 {
    font-size: calc(21px - 6px);
}.privacy-niche ul, .privacy-niche ol {
    padding-left: 20px;
}.privacy-niche li {
    font-size: calc(14px - 1px);
}.privacy-niche p {
    font-size: calc(14px - 1px);
}}.data-statistics {
    background: linear-gradient(135deg, rgb(134,144,143,0.5), rgb(171,181,180) 70%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}.data-statistics::before {
    content: "";
    right: 0;
    height: 4px;
    position: absolute;
    background: linear-gradient(90deg, rgb(98,107,106), transparent);
    z-index: 2;
    left: 0;
    top: 0;
}.data-statistics::after {
    top: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.2;
    position: absolute;
    background-size: 50px 50px, 60px 60px;
    content: "";
    background-image: radial-gradient(circle at 10% 30%, rgb(134,144,143,0.5) 1px, transparent 1px), 
                      radial-gradient(circle at 90% 60%, rgb(134,144,143,0.5) 1px, transparent 1px);
    height: 100%;
    left: 0;
}.data-statistics h3 {
    color: #000000;
    transform: translateX(-1rem);
    padding-left: 2rem;
    margin-bottom: 3rem;
    font-size: calc(28px * 0.9);
    font-weight: 700;
    position: relative;
}.data-statistics h3::before {
    transform: translateY(-50%);
    content: "";
    top: 50%;
    background-color: rgb(134,144,143);
    width: 1.5rem;
    left: 0;
    height: 2px;
    position: absolute;
}.data-statistics .container {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.data-statistics ul {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    list-style: none;
    display: grid;
    padding: 0;
    margin: 0;
    gap: 2rem;
}.data-statistics .value-statistics {
    padding: 1.8rem;
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.35, 1), 
                box-shadow 0.3s ease;
    min-height: 180px;
    justify-content: space-between;
    box-shadow: 0 8px 25px -15px rgba(0, 0, 0, 0.5), 
                0 1px 3px rgba(0,0,0,0.05);
    background: linear-gradient(145deg, #ffffff, rgb(255, 255, 255, 0.5));
    display: flex;
    transform: translateY(0);
    position: relative;
    flex-direction: column;
    overflow: hidden;
}.data-statistics .value-statistics::before {
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    top: 0;
    height: 0;
    width: 4px;
    background: linear-gradient(to bottom, rgb(134,144,143), rgb(98,107,106));
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
}.data-statistics .value-statistics:hover {
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.5), 
                0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}.data-statistics .value-statistics:hover::before {
    height: 100%;
}.data-statistics .value-statistics span {
    z-index: 2;
    display: block;
    padding-bottom: 0.5rem;
    transition: transform 0.3s ease;
    font-weight: 600;
    font-size: calc(15px * 1.1);
    line-height: 1.3;
    position: relative;
    margin-bottom: 1.5rem;
    color: #000000;
}.data-statistics .value-statistics span::after {
    height: 2px;
    bottom: 0;
    background-color: rgb(98,107,106,0.5);
    transition: width 0.3s ease-out;
    left: 0;
    width: 40px;
    position: absolute;
    content: "";
}.data-statistics .value-statistics:hover span::after {
    width: 70px;
}.data-statistics .value-statistics p {
    z-index: 2;
    margin: 0;
    font-weight: 700;
    color: rgb(134,144,143);
    display: flex;
    transition: color 0.3s ease;
    position: relative;
    font-size: calc(41px * 1.2);
    align-items: center;
}.data-statistics .value-statistics p::before {
    opacity: 0.6;
    content: "";
    transform: scale(0);
    position: absolute;
    z-index: -1;
    width: 30px;
    bottom: -10px;
    height: 30px;
    background: radial-gradient(circle, rgb(98,107,106,0.5) 20%, transparent 70%);
    right: -10px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}.data-statistics .value-statistics:hover p::before {
    transform: scale(3);
}.data-statistics .value-statistics:hover p {
    color: rgb(98,107,106);
}.data-statistics .value-statistics:nth-child(odd) {
    transform: translateY(10px);
}.data-statistics .value-statistics:nth-child(even) {
    transform: translateY(-10px);
}.data-statistics .value-statistics:nth-child(odd):hover {
    transform: translateY(5px);
}.data-statistics .value-statistics:nth-child(even):hover {
    transform: translateY(-15px);
}

@media (max-width: 991px) {.data-statistics {
    padding: 4rem 1rem;
}.data-statistics h3 {
    margin-bottom: 2rem;
    font-size: calc(28px * 0.8);
}.data-statistics ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}.data-statistics .value-statistics {
    min-height: 150px;
    padding: 1.5rem;
}.data-statistics .value-statistics span {
    font-size: 15px;
}.data-statistics .value-statistics p {
    font-size: 41px;
}
}

@media (max-width: 767px) {.data-statistics {
    padding: 3rem 1rem;
}.data-statistics h3 {
    margin-bottom: 1.5rem;
    transform: translateX(0);
    padding-left: 1.5rem;
}.data-statistics ul {
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}.data-statistics .value-statistics {
    min-height: 130px;
    padding: 1.2rem;
}.data-statistics .value-statistics:nth-child(odd),
    .data-statistics .value-statistics:nth-child(even) {
    transform: translateY(0);
}.data-statistics .value-statistics:nth-child(odd):hover,
    .data-statistics .value-statistics:nth-child(even):hover {
    transform: translateY(-5px);
}
}

@media (max-width: 480px) {.data-statistics {
    padding: 2.5rem 0.75rem;
}.data-statistics h3 {
    font-size: calc(28px * 0.7);
}.data-statistics ul {
    gap: 1rem;
    grid-template-columns: 1fr;
}.data-statistics .value-statistics {
    padding: 1.2rem;
    min-height: auto;
}.data-statistics .value-statistics span {
    margin-bottom: 1rem;
}}.course-structure {
    background: linear-gradient(135deg, rgb(171,181,180) 0%, rgb(171,181,180) 60%, rgba(rgb(134,144,143,0.5), 0.1) 100%);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}.course-structure::before {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: 
    radial-gradient(circle at 20% 30%, rgba(rgb(134,144,143,0.5), 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(rgb(98,107,106,0.5), 0.06) 0%, transparent 40%);
    content: "";
    height: 100%;
    position: absolute;
}.course-structure .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 1;
}.course-structure .skill-plan {
    gap: 40px;
    grid-template-columns: 1fr;
    display: grid;
    position: relative;
}.course-structure .image-cell {
    transform: perspective(1000px) rotateY(-2deg);
    box-shadow: 0 25px 50px -12px rgba(rgba(0, 0, 0, 0.5), 0.25);
    position: relative;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%);
    height: 350px;
}.course-structure .image-cell::after {
    inset: 0;
    z-index: 1;
    content: '';
    background: linear-gradient(135deg, rgba(rgb(134,144,143,0.5), 0.2) 0%, transparent 70%);
    position: absolute;
}.course-structure .text-card {
    transform: perspective(1000px) rotateY(1deg) translateZ(0);
    position: relative;
    background: #ffffff;
    padding: 30px;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
    box-shadow: 0 15px 30px -10px rgba(rgba(0, 0, 0, 0.5), 0.1);
}.course-structure .text-card::before {
    top: 0;
    height: 100%;
    width: 5px;
    content: '';
    position: absolute;
    transform: scaleY(0.95);
    transition: transform 0.5s ease;
    background: linear-gradient(to bottom, rgb(134,144,143), rgb(98,107,106));
    left: 0;
}.course-structure h3 {
    color: #000000;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    transform: translateZ(0);
    padding-bottom: 15px;
    font-size: calc(18px * 1.1);
    position: relative;
}.course-structure h3::after {
    height: 3px;
    background: rgb(134,144,143);
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 60px;
}.course-structure .description {
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    transition: opacity 0.3s ease;
    margin: 0 0 20px;
    color: #000000;
    opacity: 0.9;
}.course-structure p.description {
    display: block;
}.course-structure span.description {
    display: none;
}.course-structure .text-card:hover {
    box-shadow: 0 20px 40px -15px rgba(rgba(0, 0, 0, 0.5), 0.15);
    transform: perspective(1000px) rotateY(0) translateZ(10px);
}.course-structure .text-card:hover h3::after {
    width: 100px;
}.course-structure .text-card:hover::before {
    transform: scaleY(1);
}.course-structure .image-cell:hover {
    transform: perspective(1000px) rotateY(0) translateZ(10px);
    box-shadow: 0 30px 60px -15px rgba(rgba(0, 0, 0, 0.5), 0.3);
}

@media (min-width: 768px) {.course-structure .skill-plan {
    grid-template-columns: 45% 55%;
    align-items: center;
}.course-structure .image-cell {
    height: 500px;
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%);
}.course-structure .text-card {
    z-index: 2;
    margin-left: -80px;
    padding: 50px 50px 50px 80px;
}.course-structure h3 {
    font-size: 18px;
}
}

@media (min-width: 992px) {.course-structure {
    padding: 120px 0;
}.course-structure .skill-plan {
    gap: 60px;
}.course-structure .image-cell {
    height: 550px;
    transform: perspective(1000px) rotateY(-3deg);
}.course-structure .text-card {
    transform: perspective(1000px) rotateY(2deg) translateZ(0);
    padding: 60px 60px 60px 120px;
    margin-left: -120px;
}.course-structure h3 {
    font-size: calc(18px * 1.2);
    margin-bottom: 30px;
}
}

@media (min-width: 1200px) {.course-structure .image-cell {
    height: 600px;
}.course-structure .text-card {
    margin-left: -150px;
}.course-structure h3 {
    font-size: calc(18px * 1.3);
}
}

@media (max-width: 767px) {.course-structure {
    padding: 70px 0;
}.course-structure .image-cell {
    margin-bottom: -20px;
    height: 250px;
}.course-structure .text-card {
    padding: 25px;
}.course-structure h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: calc(18px * 0.9);
}.course-structure .description {
    line-height: 1.6;
    font-size: calc(17px * 0.95);
}
}

@media (prefers-reduced-motion: reduce) {.course-structure .image-cell,
  .course-structure .text-card,
  .course-structure h3::after,
  .course-structure .text-card::before {
    transition: none;
    transform: none;
}}.contact-box {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: rgb(171,181,180);
}.contact-box::before {
    filter: blur(70px);
    right: -150px;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 400px;
    top: -150px;
    width: 400px;
    content: "";
    background: linear-gradient(45deg, rgb(134,144,143,0.5), rgb(98,107,106,0.5));
}.contact-box::after {
    height: 300px;
    background: linear-gradient(225deg, rgb(98,107,106,0.5), rgb(134,144,143,0.5));
    width: 300px;
    filter: blur(60px);
    content: "";
    z-index: 1;
    left: -100px;
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
}.contact-box .container {
    padding: 0 30px;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}.contact-box h2 {
    font-weight: 700;
    color: #000000;
    font-size: 28px;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}.contact-box h2::before {
    background: rgb(134,144,143,0.5);
    top: -25px;
    content: "";
    position: absolute;
    height: 50px;
    left: calc(50% - 120px);
    z-index: -1;
    border-radius: 50%;
    width: 50px;
}.contact-box h2::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    bottom: -15px;
    right: calc(50% - 100px);
    background: rgb(98,107,106,0.5);
    height: 30px;
    width: 30px;
}.contact-box .message-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    display: flex;
}.contact-box .message-map::before {
    z-index: 0;
    pointer-events: none;
    inset: 0;
    background: radial-gradient(
        circle at 0% 0%,
        transparent 98%,
        rgb(134,144,143,0.5) 99%
    ), radial-gradient(
        circle at 100% 100%,
        transparent 98%,
        rgb(98,107,106,0.5) 99%
    );
    content: "";
    position: absolute;
}.contact-box .image-cell {
    flex: 0 0 45%;
    min-height: 500px;
    transition: transform 0.5s ease;
    position: relative;
}.contact-box .image-cell::before {
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    position: absolute;
    z-index: 1;
}.contact-box .image-cell::after {
    position: absolute;
    pointer-events: none;
    left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    right: 20px;
    content: "";
    top: 20px;
    z-index: 2;
    bottom: 20px;
}.contact-box .query-widget {
    flex-direction: column;
    flex: 0 0 55%;
    position: relative;
    padding: 60px;
    display: flex;
    justify-content: center;
}.contact-box form {
    position: relative;
    z-index: 3;
}.contact-box form h3 {
    font-size: 23px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 30px;
}.contact-box form input[type="text"] {
    background: rgb(171,181,180);
    color: #000000;
    width: 100%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
}.contact-box form input[type="text"]:focus {
    background: linear-gradient(rgb(171,181,180), rgb(171,181,180)) padding-box,
                linear-gradient(to right, rgb(134,144,143), rgb(98,107,106)) border-box;
    box-shadow: 0 5px 15px rgba(rgb(134,144,143), 0.1);
    border: 1px solid transparent;
    outline: none;
}.contact-box form input[type="text"]::placeholder {
    color: rgba(#000000, 0.5);
}.contact-box .message-box {
    margin-bottom: 30px;
    position: relative;
}.contact-box .message-box input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact-box .message-box label {
    padding-left: 35px;
    align-items: center;
    color: #000000;
    cursor: pointer;
    position: relative;
    display: flex;
    font-size: 15px;
}.contact-box .message-box label::before {
    background: rgb(171,181,180);
    height: 22px;
    content: "";
    transition: all 0.3s ease;
    left: 0;
    width: 22px;
    top: 0;
    position: absolute;
    border-radius: 6px;
}.contact-box .message-box input[type="checkbox"]:checked + label::before {
    background: linear-gradient(135deg, rgb(134,144,143), rgb(98,107,106));
}.contact-box .message-box input[type="checkbox"]:checked + label::after {
    transform: rotate(45deg);
    content: "";
    top: 4px;
    border: solid #ffffff;
    left: 8px;
    border-width: 0 2px 2px 0;
    height: 12px;
    width: 6px;
    position: absolute;
}.contact-box .message-box label a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    color: rgb(134,144,143);
}.contact-box .message-box label a:hover {
    color: rgb(98,107,106);
}.contact-box .inquiry-map {
    background: linear-gradient(135deg, rgb(134,144,143), rgb(98,107,106));
    border: none;
    transition: all 0.5s ease;
    font-size: 20px;
    color: #ffffff;
    width: 100%;
    font-weight: 600;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    cursor: pointer;
}.contact-box .inquiry-map::before {
    height: 100%;
    left: 0;
    transform: scaleX(0);
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgb(98,107,106), rgb(134,144,143));
    transform-origin: right;
    content: "";
    z-index: -1;
    transition: transform 0.5s ease;
    position: absolute;
}.contact-box .inquiry-map:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.contact-box svg {
    width: 24px;
    fill: none;
    stroke: rgb(134,144,143);
    height: 24px;
    transition: all 0.3s ease;
    margin-right: 12px;
}.contact-box svg path {
    transition: all 0.3s ease;
    stroke-width: 2;
    fill: none;
    stroke: rgb(134,144,143);
}.contact-box svg:hover,
.contact-box svg:hover path {
    stroke: rgb(98,107,106);
}

@media (max-width: 1024px) {.contact-box {
    padding: 70px 0;
}.contact-box .query-widget {
    padding: 45px;
}.contact-box .image-cell {
    min-height: 450px;
}
}

@media (max-width: 768px) {.contact-box {
    padding: 60px 0;
}.contact-box h2 {
    margin-bottom: 40px;
}.contact-box .message-map {
    flex-direction: column;
}.contact-box .image-cell {
    min-height: 300px;
    flex: 0 0 300px;
    width: 100%;
}.contact-box .query-widget {
    padding: 40px 30px;
    flex: 0 0 auto;
}.contact-box form h3 {
    margin-bottom: 25px;
}.contact-box form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}
}

@media (max-width: 480px) {.contact-box {
    padding: 50px 0;
}.contact-box h2 {
    font-size: calc(28px * 0.9);
    margin-bottom: 30px;
}.contact-box .image-cell {
    min-height: 220px;
}.contact-box .query-widget {
    padding: 30px 20px;
}.contact-box form h3 {
    font-size: calc(23px * 0.9);
    margin-bottom: 20px;
}.contact-box form input[type="text"] {
    margin-bottom: 16px;
    font-size: calc(14px * 0.95);
    padding: 14px 16px;
}.contact-box .inquiry-map {
    padding: 16px;
}.contact-box .message-box label {
    font-size: calc(15px * 0.95);
}}.training-benefits {
    padding: 90px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, rgb(171,181,180) 60%, rgba(rgb(98,107,106,0.5), 0.1) 100%);
}.training-benefits::before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    z-index: 0;
    left: 0;
    background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(rgb(98,107,106,0.5), 0.03) 30px,
    rgba(rgb(98,107,106,0.5), 0.03) 60px
  );
}.training-benefits .container {
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}.training-benefits .expert-program {
    align-items: center;
    display: flex;
    position: relative;
    transform-style: preserve-3d;
    flex-direction: column;
}.training-benefits .text-card {
    width: 100%;
    border-left: 4px solid rgb(134,144,143);
    padding: 40px 30px;
    backdrop-filter: blur(8px);
    border-radius: 2px;
    background: linear-gradient(
    135deg,
    rgba(rgb(255, 255, 255, 0.5), 0.95),
    rgba(rgb(255, 255, 255, 0.5), 0.85)
  );
    transform: translateZ(0);
    box-shadow: 
    0 15px 30px rgba(rgba(0, 0, 0, 0.5), 0.1),
    0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.05);
}.training-benefits .text-card h4 {
    font-size: 26px;
    margin-bottom: 30px;
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    color: rgb(98,107,106);
    font-weight: 700;
}.training-benefits .text-card h4::after {
    background: rgb(134,144,143);
    content: "";
    width: 60px;
    transform-origin: left;
    height: 3px;
    bottom: -10px;
    position: absolute;
    transform: scaleX(1);
    left: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}.training-benefits .text-card:hover h4 {
    transform: translateX(5px);
}.training-benefits .text-card:hover h4::after {
    transform: scaleX(1.2);
}.training-benefits .text-card > div {
    margin-bottom: 20px;
}.training-benefits .text-card ul {
    list-style: none;
    padding: 0;
}.training-benefits .text-card li {
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-bottom: 18px;
    transform: translateY(0);
}.training-benefits .text-card li:hover {
    transform: translateY(-3px);
    opacity: 1;
}.training-benefits .text-card li p {
    align-items: flex-start;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
    display: flex;
}.training-benefits .text-card li p span:first-child {
    transform: translateY(2px);
    margin-right: 12px;
    flex-shrink: 0;
}.training-benefits .text-card li p span:last-child {
    color: #000000;
}.training-benefits .text-card svg {
    transition: transform 0.3s ease;
    height: 24px;
    filter: drop-shadow(0 2px 3px rgba(rgb(134,144,143,0.5), 0.3));
    width: 24px;
}.training-benefits .text-card li:hover svg {
    transform: scale(1.1) rotate(5deg);
}.training-benefits .text-card svg path {
    fill: rgb(134,144,143);
    transition: fill 0.3s ease;
}.training-benefits .text-card li:hover svg path {
    fill: rgb(98,107,106);
}.training-benefits .image-cell {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    object-fit: cover;
    border-radius: 2px;
    height: auto;
    margin-top: 40px;
    box-shadow: 
    0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.15),
    0 10px 20px rgba(rgba(0, 0, 0, 0.5), 0.1);
    transform: translateY(0) rotate(0);
    width: 100%;
    filter: saturate(1.05);
    max-width: 500px;
}.training-benefits .image-cell:hover {
    transform: translateY(-10px) rotate(1deg);
}

@media (min-width: 768px) {.training-benefits {
    padding: 120px 0;
}.training-benefits .expert-program {
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}.training-benefits .text-card {
    width: 60%;
    padding: 50px 40px;
    margin-right: -20px;
    z-index: 2;
}.training-benefits .image-cell {
    transform: translateY(0) rotate(-2deg);
    width: 40%;
    margin-top: 60px;
    margin-left: -20px;
    z-index: 1;
    height: 400px;
}.training-benefits .image-cell:hover {
    transform: translateY(-10px) rotate(0);
}.training-benefits .text-card > div {
    gap: 30px;
    justify-content: space-between;
    display: flex;
}.training-benefits .text-card > div > ul {
    flex: 1;
}.training-benefits .text-card h4 {
    font-size: 32px;
}
}

@media (min-width: 992px) {.training-benefits {
    padding: 140px 0;
}.training-benefits .expert-program {
    gap: 60px;
}.training-benefits .text-card {
    padding: 60px 50px;
}.training-benefits .image-cell {
    height: 500px;
}.training-benefits::after {
    position: absolute;
    right: -100px;
    animation: pulse 15s infinite alternate ease-in-out;
    width: 300px;
    border-radius: 50%;
    content: "";
    top: 15%;
    background: radial-gradient(circle, rgba(rgb(134,144,143,0.5), 0.08) 0%, rgba(rgb(134,144,143,0.5), 0) 70%);
    height: 300px;
}
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.8;
    }
  }
}

@media (max-width: 767px) {.training-benefits {
    padding: 60px 0;
}.training-benefits .text-card {
    padding: 30px 20px;
}.training-benefits .text-card h4 {
    font-size: 22px;
    margin-bottom: 25px;
}.training-benefits .text-card li {
    margin-bottom: 15px;
}.training-benefits .text-card li p {
    font-size: 14px;
}.training-benefits .image-cell {
    max-width: 100%;
    height: 300px;
}}.plan-display {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}.plan-display::before {
    top: 0;
    bottom: 0;
    content: "";
    right: 0;
    z-index: 1;
    left: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.85) 100%);
    position: absolute;
}.plan-display .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}.plan-display .program-rate {
    position: relative;
}.plan-display h2 {
    font-size: 28px;
    transform: perspective(1000px) translateZ(30px);
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}.plan-display h2::after {
    height: 4px;
    content: "";
    bottom: -15px;
    position: absolute;
    background: linear-gradient(90deg, rgb(134,144,143,0.5), rgb(134,144,143), rgb(134,144,143,0.5));
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}.plan-display .basic-rates {
    opacity: 0.9;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
    transform: perspective(1000px) translateZ(20px);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: calc(13px * 1.1);
}.plan-display .discount-plan {
    list-style: none;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0;
    margin: 0;
    display: grid;
}.plan-display .discount-plan li {
    transform-style: preserve-3d;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}.plan-display .pay-options {
    transform-style: preserve-3d;
    display: block;
    height: 100%;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}.plan-display .rate-packages {
    overflow: hidden;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}.plan-display .rate-packages::before {
    content: "";
    top: 0;
    opacity: 0.8;
    position: absolute;
    transform: scaleX(0.8);
    left: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    background: linear-gradient(90deg, rgb(134,144,143), rgb(98,107,106));
    height: 5px;
    width: 100%;
}.plan-display .rate-packages::after {
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    background: radial-gradient(circle, rgb(134,144,143,0.5) 0%, transparent 70%);
    content: "";
    position: absolute;
    transform: translate(30%, 30%);
    right: 0;
    opacity: 0.2;
    transition: all 0.6s ease;
}.plan-display .pricing-block {
    transition: transform 0.5s ease;
    position: relative;
    transform-style: preserve-3d;
}.plan-display .pricing-block h4 {
    font-size: calc(21px * 1.2);
    margin: 0 0 25px;
    padding-bottom: 15px;
    position: relative;
    color: #ffffff;
    transform: translateZ(10px);
    font-weight: 600;
}.plan-display .pricing-block h4::after {
    bottom: 0;
    position: absolute;
    background: rgb(98,107,106);
    content: "";
    width: 50px;
    left: 0;
    height: 2px;
    transition: width 0.4s ease;
}.plan-display .pricing-block p {
    overflow-wrap: break-word;
    font-size: 13px;
    max-height: 250px;
    word-break: break-word;
    opacity: 0.8;
    overflow-y: auto;
    font-weight: 300;
    color: #ffffff;
    padding-right: 5px;
    transform: translateZ(5px);
    line-height: 1.7;
    margin: 0 0 30px;
}.plan-display .pricing-block p::-webkit-scrollbar {
    width: 4px;
}.plan-display .pricing-block p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(134,144,143,0.5);
}.plan-display .pricing-block p::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}.plan-display .plan-fee {
    transform: translateZ(15px);
    display: inline-block;
    color: #ffffff;
    transition: all 0.4s ease;
    padding: 10px 5px;
    font-weight: 700;
    position: relative;
    font-size: calc(21px * 1.5);
}.plan-display .plan-fee::before {
    background: linear-gradient(90deg, transparent, rgb(98,107,106), transparent);
    position: absolute;
    bottom: 5px;
    transform-origin: center;
    left: 0;
    width: 100%;
    height: 2px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: scaleX(0.5);
    content: "";
    opacity: 0.6;
}.plan-display .pay-options:hover .rate-packages {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.15);
}.plan-display .pay-options:hover .rate-packages::before {
    transform: scaleX(1);
    opacity: 1;
}.plan-display .pay-options:hover .rate-packages::after {
    transform: translate(20%, 20%) scale(1.2);
    opacity: 0.4;
}.plan-display .pay-options:hover .pricing-block h4::after {
    width: 80px;
}.plan-display .pay-options:hover .plan-fee {
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateZ(25px) scale(1.05);
}.plan-display .pay-options:hover .plan-fee::before {
    opacity: 1;
    transform: scaleX(0.8);
}

@media (max-width: 1200px) {.plan-display {
    padding: 80px 0;
}.plan-display .discount-plan {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
}

@media (max-width: 991px) {.plan-display {
    padding: 70px 0;
}.plan-display h2 {
    font-size: calc(28px * 0.9);
}.plan-display .basic-rates {
    margin-bottom: 40px;
    font-size: 13px;
}.plan-display .discount-plan {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}.plan-display .rate-packages {
    padding: 30px 25px;
}
}

@media (max-width: 767px) {.plan-display {
    padding: 60px 0;
}.plan-display h2 {
    margin-bottom: 15px;
    font-size: calc(28px * 0.8);
}.plan-display .basic-rates {
    margin-bottom: 30px;
}.plan-display .discount-plan {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 450px;
}.plan-display .pricing-block h4 {
    font-size: 21px;
}.plan-display .plan-fee {
    font-size: calc(21px * 1.3);
}
}

@media (max-width: 480px) {.plan-display {
    padding: 50px 0;
}.plan-display .rate-packages {
    padding: 25px 20px;
}.plan-display .pricing-block p {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
    max-height: 200px;
}.plan-display .plan-fee {
    font-size: calc(21px * 1.2);
}
}

@media (hover: none) {.plan-display .rate-packages {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.1) !important;
}.plan-display .rate-packages::before {
    transform: scaleX(0.9);
    opacity: 0.9;
}.plan-display .pricing-block h4::after {
    width: 60px;
}}.connect {
    background: linear-gradient(135deg, rgb(171,181,180) 0%, rgba(245, 247, 250, 0.9) 100%);
    padding: 120px 0 100px;
    overflow: hidden;
    position: relative;
}.connect::before {
    right: -100px;
    animation: floating 8s infinite ease-in-out;
    transform: rotate(30deg);
    top: -100px;
    border: 15px solid rgb(134,144,143,0.5);
    height: 300px;
    position: absolute;
    content: "";
    width: 300px;
    z-index: 0;
}.connect::after {
    bottom: -50px;
    transform: rotate(-15deg);
    width: 200px;
    position: absolute;
    content: "";
    left: -50px;
    background: linear-gradient(45deg, rgb(98,107,106,0.5), transparent);
    border-radius: 10px;
    height: 200px;
    z-index: 0;
    animation: floating 10s infinite ease-in-out alternate;
}.connect h1 {
    margin-bottom: 50px;
    color: #000000;
    position: relative;
    transform: perspective(1000px) translateZ(0px);
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    transition: transform 0.5s ease;
    z-index: 1;
    font-size: 45px;
}.connect h1::after {
    content: "";
    left: 50%;
    height: 4px;
    bottom: -15px;
    position: absolute;
    width: 80px;
    background: rgb(134,144,143);
    transform: translateX(-50%);
}.connect .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
}.connect .contact-query {
    grid-template-columns: 1fr;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    gap: 40px;
    transition: transform 0.5s ease;
    background: #ffffff;
    border-radius: 16px;
    transform-style: preserve-3d;
    padding: 40px;
    display: grid;
    transform: perspective(1000px) rotateX(0deg);
}.connect .contact-query:hover {
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.connect .contact-query > div {
    border-left: 4px solid rgb(134,144,143);
    padding: 20px;
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom right, rgba(250, 250, 250, 0.9), rgba(255, 255, 255, 0.7));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}.connect .contact-query > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid rgb(98,107,106);
}.connect .contact-query > div > div {
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}.connect h6 {
    font-size: 22px;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 12px;
    font-weight: 600;
    align-items: center;
    display: flex;
}.connect h6 svg {
    transition: transform 0.3s ease;
    transform: scale(0.85);
    margin-left: 10px;
}.connect .contact-query > div:hover h6 svg {
    transform: scale(1);
}.connect span {
    margin-left: 25px;
    font-family: Arial, sans-serif;
    display: block;
    font-size: calc(16px - 1px);
    color: #000000;
}.connect .get-contactblock {
    flex-direction: column;
    display: flex;
    gap: 15px;
}.connect .edu-help {
    text-decoration: none;
    display: flex;
    color: #000000;
    font-size: 16px;
    align-items: center;
    padding-bottom: 5px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 400;
}.connect .edu-help::after {
    transition: width 0.3s ease;
    height: 2px;
    width: 0;
    background: rgb(134,144,143);
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
}.connect .edu-help:hover {
    color: rgb(134,144,143);
    transform: translateX(5px);
}.connect .edu-help:hover::after {
    width: 100%;
}.connect .edu-help svg {
    transform: scale(0.85);
    margin-left: 10px;
    transition: transform 0.3s ease;
}.connect .edu-help:hover svg {
    transform: scale(1) rotate(5deg);
}.connect svg {
    transition: all 0.3s ease;
}.connect svg:hover {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}.connect svg path {
    transition: fill 0.3s ease;
}.connect .edu-help:hover svg path,
.connect h6:hover svg path {
    fill: rgb(134,144,143);
}

@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) rotate(30deg);
    }
    50% {
        transform: translate(15px, 15px) rotate(35deg);
    }
}

@media (min-width: 768px) {.connect {
    padding: 150px 0 120px;
}.connect .contact-query {
    padding: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}.connect .contact-query > div:first-child {
    grid-column: 1 / -1;
}.connect h1 {
    margin-bottom: 60px;
    font-size: calc(45px + 5px);
}.connect h1::after {
    width: 100px;
}
}

@media (min-width: 992px) {.connect .contact-query {
    grid-template-columns: 3fr 2fr 2fr;
}.connect .contact-query > div:first-child {
    grid-column: auto;
}.connect .contact-query > div {
    padding: 30px;
}.connect h1 {
    transform: perspective(1000px) translateZ(10px);
}.connect .get-contactblock {
    gap: 20px;
}
}

@media (max-width: 576px) {.connect {
    padding: 80px 0 60px;
}.connect .contact-query {
    padding: 30px 20px;
}.connect .contact-query > div {
    padding: 15px;
}.connect h1 {
    font-size: calc(45px - 5px);
    margin-bottom: 40px;
}.connect h1::after {
    width: 60px;
    height: 3px;
}
}