* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}.main-base {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}.inner-container {
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1117px;
}.news-feed {
    flex: 0 0 auto;
}a {
    color: inherit;
    text-decoration: none;
}header,footer {
    width: 100%;
}html,body {
    scroll-snap-type: none;
    height: 100%;
    font-family: Arial, sans-serif;
    auto;
    min-height: 100%;
    color: #000000;
    auto
contain
touch-action: none;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.about-this {
    z-index: 1;
    padding: 140px 0;
    position: relative;
    background: rgb(211,209,191);
    overflow: hidden;
}.about-this::before {
    left: 0;
    animation: gradientFlow 15s ease infinite;
    background: 
        linear-gradient(217deg, rgb(175,176,174,0.5), transparent 70%),
        linear-gradient(127deg, rgb(132,134,132,0.5), transparent 70%),
        linear-gradient(336deg, rgb(175,176,174,0.5), transparent 70%);
    height: 100%;
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
    filter: blur(20px);
    transform-origin: center center;
    opacity: 0.15;
    z-index: -1;
}@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
        filter: blur(20px) brightness(1);
    }
    50% {
        background-position: 100% 100%;
        filter: blur(15px) brightness(1.1);
    }
    100% {
        background-position: 0% 0%;
        filter: blur(20px) brightness(1);
    }
}

.about-this::after {
    left: 0;
    content: "";
    z-index: -2;
    width: 100%;
    opacity: 0.2;
    height: 100%;
    top: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(175,176,174,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(132,134,132,0.5) 0%, transparent 50%);
    position: absolute;
    animation: pulsateBackground 20s ease-in-out infinite alternate;
}@keyframes pulsateBackground {
    0% {
        opacity: 0.1;
        background-size: 100% 100%;
    }
    50% {
        opacity: 0.2;
        background-size: 120% 120%;
    }
    100% {
        opacity: 0.1;
        background-size: 100% 100%;
    }
}

.about-this .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}.about-this .container::before {
    top: -100px;
    height: 200px;
    right: -100px;
    position: absolute;
    background: rgb(175,176,174,0.5);
    width: 200px;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite alternate;
    content: "";
    filter: blur(80px);
    border-radius: 50%;
}@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.about-this .pedagogy-way {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    position: relative;
    gap: 60px;
}.about-this .pedagogy-way::before {
    left: 30%;
    background: linear-gradient(90deg, transparent, rgb(175,176,174), transparent);
    opacity: 0.4;
    animation: scanline 4s ease-in-out infinite;
    height: 1px;
    content: "";
    top: 50%;
    position: absolute;
    width: 40%;
}@keyframes scanline {
    0% {
        opacity: 0;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0.5);
    }
}

.about-this .heritage-edu {
    z-index: 3;
    background: rgba(255, 255, 255, 0.02);
    align-items: center;
    border-radius: 23px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    flex-direction: column;
    margin-bottom: 20px;
    padding: 50px 35px;
    perspective: 1000px;
    display: flex;
    position: relative;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 500px;
}.about-this .heritage-edu:hover {
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12), 0 0 30px rgb(175,176,174,0.5);
    transform: translateY(-15px) rotateX(5deg);
    border-color: rgb(175,176,174,0.5);
}.about-this .heritage-edu::before {
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, transparent 0%, rgb(175,176,174,0.5) 100%);
    z-index: -1;
    position: absolute;
    inset: 0;
    border-radius: 23px;
    opacity: 0.07;
    content: "";
}.about-this .heritage-edu:hover::before {
    opacity: 0.12;
}.about-this .heritage-edu::after {
    animation: borderGlow 4s linear infinite;
    inset: -1px;
    background: linear-gradient(90deg, transparent, rgb(175,176,174,0.5), transparent);
    z-index: -2;
    content: "";
    border-radius: calc(23px + 1px);
    position: absolute;
    transition: opacity 0.4s ease;
    opacity: 0;
}@keyframes borderGlow {
    0% {
        opacity: 0;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.5;
        background-position: 100% 50%;
    }
    100% {
        opacity: 0;
        background-position: 0% 50%;
    }
}

.about-this .heritage-edu:hover::after {
    opacity: 1;
}.about-this .background-image {
    transition: all 0.5s ease;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    height: 220px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.8);
    width: 220px;
    margin-bottom: 30px;
    position: relative;
}.about-this .background-image::before {
    padding: 3px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    background: conic-gradient(rgb(175,176,174), rgb(132,134,132), rgb(175,176,174));
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    animation: rotate 8s linear infinite;
    position: absolute;
    border-radius: 50%;
    inset: -3px;
    content: "";
}.about-this .background-image::after {
    inset: -10px;
    position: absolute;
    content: "";
    border-radius: 50%;
    animation: rotateReverse 20s linear infinite;
    opacity: 0.5;
    border: 1px dashed rgb(175,176,174,0.5);
}@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.about-this .study-space {
    position: relative;
    padding-top: 15px;
    text-align: center;
    width: 100%;
}.about-this .study-space::before {
    content: "";
    position: absolute;
    height: 2px;
    opacity: 0.8;
    background: linear-gradient(90deg, transparent, rgb(175,176,174), transparent);
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    width: 70px;
}.about-this .learn-academy {
    color: #000000;
    display: inline-block;
    letter-spacing: 0.5px;
    font-size: calc(22px * 1.15);
    position: relative;
    margin-bottom: 10px;
    font-weight: 700;
}.about-this .learn-academy::after {
    transform: translateX(-50%);
    width: 0;
    content: "";
    position: absolute;
    height: 2px;
    left: 50%;
    background: rgb(175,176,174);
    bottom: -4px;
    transition: width 0.4s ease;
}.about-this .heritage-edu:hover .learn-academy::after {
    width: 80%;
}.about-this .vision-mission {
    font-size: calc(15px * 1.05);
    color: rgb(175,176,174);
    opacity: 0.9;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    font-weight: 600;
}.about-this .heritage-edu:hover .vision-mission {
    transform: translateY(2px);
    color: rgb(132,134,132);
    opacity: 1;
}.about-this .text-wrap {
    width: 100%;
    border-radius: 23px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
    padding: 50px 45px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    backdrop-filter: blur(10px);
}.about-this .text-wrap:hover {
    border-color: rgb(132,134,132,0.5);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 30px rgb(132,134,132,0.5);
}.about-this .text-wrap::before,
.about-this .text-wrap::after {
    z-index: -1;
    filter: blur(60px);
    height: 500px;
    border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
    animation: blobAnimation 25s infinite alternate;
    content: "";
    opacity: 0.03;
    position: absolute;
    width: 500px;
    transition: all 0.8s ease;
    background: rgb(175,176,174,0.5);
}@keyframes blobAnimation {
    0% {
        border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        border-radius: 60% 40% 55% 45% / 45% 65% 35% 55%;
        transform: translate(-20px, 10px) rotate(60deg) scale(1.05);
    }
    66% {
        border-radius: 50% 50% 35% 65% / 50% 50% 65% 35%;
        transform: translate(20px, -10px) rotate(120deg) scale(0.95);
    }
    100% {
        border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
        transform: translate(0, 0) rotate(180deg) scale(1);
    }
}

.about-this .text-wrap::before {
    top: -250px;
    right: -250px;
}.about-this .text-wrap::after {
    animation-delay: -15s;
    background: rgb(132,134,132,0.5);
    left: -250px;
    bottom: -250px;
}.about-this .text-wrap:hover::before,
.about-this .text-wrap:hover::after {
    opacity: 0.08;
    filter: blur(40px);
}.about-this .learn-lab {
    font-size: calc(17px * 1.2);
    transition: all 0.3s ease;
    align-items: center;
    position: relative;
    color: rgb(175,176,174);
    margin-bottom: 25px;
    display: flex;
    gap: 16px;
    font-weight: 600;
}.about-this .learn-lab::after {
    left: 0;
    background: linear-gradient(90deg, rgb(175,176,174), transparent);
    bottom: -8px;
    transition: width 0.4s ease;
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
}.about-this .text-wrap:hover .learn-lab::after {
    width: 50%;
}.about-this .learn-lab svg {
    fill: rgb(175,176,174);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
    width: 48px;
    height: 48px;
}.about-this .learn-lab svg path {
    transition: fill 0.4s ease;
}.about-this .learn-lab:hover svg {
    fill: rgb(132,134,132);
    transform: rotateY(180deg);
}.about-this .learn-lab:hover svg path {
    fill: rgb(132,134,132);
}.about-this .text-wrap h2 {
    color: #000000;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    font-size: calc(29px * 1.1);
    letter-spacing: 0.5px;
}.about-this .text-wrap:hover h2 {
    transform: translateX(5px);
}.about-this .text-wrap h2::after {
    content: "";
    position: absolute;
    height: 3px;
    bottom: 0;
    background: linear-gradient(90deg, rgb(175,176,174), rgb(132,134,132,0.5), transparent);
    border-radius: 10px;
    left: 0;
    width: 100px;
    transition: width 0.5s ease;
}.about-this .text-wrap:hover h2::after {
    width: 150px;
}.about-this .text-wrap p {
    font-size: calc(15px * 1.05);
    transition: all 0.4s ease;
    position: relative;
    color: #000000;
    line-height: 1.9;
    margin-bottom: 0;
}.about-this .text-wrap:hover p {
    transform: translateY(3px);
}.about-this .text-wrap::before,
.about-this .text-wrap::after,
.about-this .heritage-edu::before,
.about-this .heritage-edu::after,
.about-this .background-image::before,
.about-this .background-image::after {
    pointer-events: none;
}.about-this .pedagogy-way::after {
    pointer-events: none;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: -1;
    height: 100%;
    top: 0;
    background-position: 0 0, 20px 20px;
    content: "";
    opacity: 0.03;
    background-image: 
        radial-gradient(rgb(175,176,174,0.5) 1px, transparent 1px),
        radial-gradient(rgb(132,134,132,0.5) 1px, transparent 1px);
    background-size: 40px 40px;
}.about-this .pedagogy-way::after {
    z-index: 0;
    top: 350px;
    height: 40px;
    width: 2px;
    content: "";
    animation: pulseHeight 3s infinite;
    background: linear-gradient(to bottom, rgb(175,176,174), transparent);
    position: absolute;
    left: 50%;
}

@keyframes pulseHeight {
    0%, 100% {
        height: 40px;
        opacity: 0.6;
    }
    50% {
        height: 60px;
        opacity: 0.8;
    }
}

@media (max-width: 1199px) {.about-this {
    padding: 120px 0;
}.about-this .pedagogy-way {
    gap: 50px;
}.about-this .text-wrap {
    padding: 40px 35px;
}.about-this .heritage-edu {
    padding: 40px 30px;
}.about-this .pedagogy-way::after {
    top: 320px;
}
}

@media (max-width: 991px) {.about-this {
    padding: 100px 0;
}.about-this .pedagogy-way {
    gap: 50px;
}.about-this .text-wrap {
    padding: 40px 30px;
}.about-this .heritage-edu {
    padding: 40px 30px;
}.about-this .text-wrap h2 {
    font-size: 29px;
}.about-this .pedagogy-way::after {
    top: 300px;
}
}

@media (max-width: 767px) {.about-this {
    padding: 80px 0;
}.about-this .background-image {
    width: 180px;
    height: 180px;
}.about-this .heritage-edu {
    padding: 35px 25px;
}.about-this .text-wrap {
    padding: 35px 25px;
}.about-this .text-wrap h2 {
    font-size: calc(29px * 0.9);
    margin-bottom: 25px;
    padding-bottom: 15px;
}.about-this .learn-academy {
    font-size: 22px;
}.about-this .vision-mission {
    font-size: 15px;
}.about-this .learn-lab {
    font-size: 17px;
}.about-this .learn-lab svg {
    height: 40px;
    width: 40px;
}.about-this .pedagogy-way::after {
    top: 280px;
}
}

@media (max-width: 575px) {.about-this {
    padding: 60px 0;
}.about-this .background-image {
    margin-bottom: 20px;
    height: 150px;
    width: 150px;
}.about-this .heritage-edu {
    padding: 30px 20px;
}.about-this .text-wrap {
    padding: 30px 20px;
}.about-this .learn-lab {
    font-size: calc(17px * 0.95);
}.about-this .learn-lab svg {
    height: 35px;
    width: 35px;
}.about-this .text-wrap h2 {
    font-size: calc(29px * 0.8);
    margin-bottom: 20px;
}.about-this .text-wrap p {
    font-size: 15px;
    line-height: 1.8;
}.about-this .learn-academy {
    font-size: calc(22px * 0.95);
}.about-this .vision-mission {
    font-size: calc(15px * 0.95);
}.about-this .pedagogy-way::after {
    top: 250px;
}}.contact-form-box {
    background: rgb(211,209,191);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.contact-form-box::before {
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
    opacity: 0.3;
    background: repeating-linear-gradient(
        45deg,
        rgb(175,176,174,0.5) 0,
        rgb(175,176,174,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    left: 0;
    width: 100%;
    z-index: 1;
}.contact-form-box::after {
    filter: blur(60px);
    opacity: 0.2;
    bottom: 0;
    background: radial-gradient(circle, rgb(132,134,132) 0%, transparent 70%);
    z-index: 1;
    width: 300px;
    position: absolute;
    content: "";
    right: 0;
    height: 300px;
    animation: float 10s ease-in-out infinite;
}.contact-form-box .background-image {
    top: 0;
    opacity: 0.08;
    position: absolute;
    height: 100%;
    width: 100%;
    filter: blur(2px) saturate(0.8);
    left: 0;
    z-index: 0;
}.contact-form-box .background-image::after {
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to bottom, rgb(132,134,132,0.5) 0%, transparent 100%);
    left: 0;
    position: absolute;
    top: 0;
}.contact-form-box .container {
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    z-index: 5;
}.contact-form-box h3 {
    letter-spacing: 1px;
    position: relative;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #000000;
    margin-bottom: 50px;
}.contact-form-box h3::before {
    top: -20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 40px;
    background: rgb(175,176,174);
    height: 4px;
}.contact-form-box h3::after {
    background: linear-gradient(to right, transparent, rgb(175,176,174), transparent);
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    bottom: -20px;
    width: 100px;
    position: absolute;
}.message-feedback {
    grid-template-columns: 1fr 1fr;
    backdrop-filter: blur(10px);
    background: #ffffff;
    z-index: 10;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    gap: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}.message-feedback::before {
    position: absolute;
    width: 200%;
    z-index: 0;
    height: 200%;
    left: -50%;
    animation: rotate 60s linear infinite;
    top: -50%;
    background: radial-gradient(circle at center, rgb(132,134,132,0.5) 0%, transparent 50%);
    opacity: 0.2;
    content: "";
}.message-feedback .request-reach {
    padding: 60px 50px;
    position: relative;
    z-index: 2;
}.message-feedback .request-reach::before {
    width: 1px;
    top: 15%;
    content: "";
    right: 0;
    position: absolute;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgb(175,176,174,0.5), transparent);
}.message-feedback .request-reach h3 {
    text-align: left;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 35px;
    font-weight: 600;
}.message-feedback .request-reach h3::before {
    display: none;
}.message-feedback .request-reach h3::after {
    height: 2px;
    background: rgb(175,176,174);
    width: 60px;
    transform: none;
    left: 0;
    bottom: -15px;
}.message-feedback .request-reach form {
    display: flex;
    flex-direction: column;
}.message-feedback .request-reach input[type="text"],
.message-feedback .request-reach textarea {
    border-radius: 10px;
    padding: 18px 22px;
    background: rgba(240, 240, 240, 0.5);
    border: none;
    font-size: 12px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    width: 100%;
}.message-feedback .request-reach input[type="text"]:focus,
.message-feedback .request-reach textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(175,176,174,0.5), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}.message-feedback .request-reach textarea {
    min-height: 150px;
    resize: vertical;
}.message-feedback .request-reach .query-support {
    margin-bottom: 30px;
    display: flex;
    position: relative;
    align-items: flex-start;
}.message-feedback .request-reach .query-support input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.message-feedback .request-reach .query-support label {
    font-size: calc(12px - 2px);
    cursor: pointer;
    color: #000000;
    padding-left: 30px;
    line-height: 1.5;
    position: relative;
}.message-feedback .request-reach .query-support label::before {
    border-radius: 10px;
    width: 20px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
    top: 2px;
    transition: all 0.3s ease;
    left: 0;
    position: absolute;
    content: "";
    background: rgba(240, 240, 240, 0.8);
    height: 20px;
}.message-feedback .request-reach .query-support input[type="checkbox"]:checked + label::before {
    background: rgb(175,176,174);
}.message-feedback .request-reach .query-support input[type="checkbox"]:checked + label::after {
    border: solid #ffffff;
    top: 5px;
    left: 8px;
    height: 10px;
    transform: rotate(45deg);
    width: 5px;
    position: absolute;
    border-width: 0 2px 2px 0;
    content: "";
}.message-feedback .request-reach .query-support a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: rgb(175,176,174);
}.message-feedback .request-reach .query-support a::after {
    background-color: rgb(175,176,174);
    position: absolute;
    height: 1px;
    left: 0;
    transition: width 0.3s ease;
    content: "";
    bottom: -2px;
    width: 0;
}.message-feedback .request-reach .query-support a:hover::after {
    width: 100%;
}.message-feedback .request-reach .request-box {
    padding: 15px 30px;
    font-size: 19px;
    z-index: 1;
    color: #000000;
    position: relative;
    border: 2px solid rgb(175,176,174);
    cursor: pointer;
    border-radius: 10px;
    align-self: flex-start;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    display: inline-block;
    font-weight: 600;
}.message-feedback .request-reach .request-box::before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    content: "";
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    background: rgb(175,176,174);
}.message-feedback .request-reach .request-box:hover {
    color: #ffffff;
}.message-feedback .request-reach .request-box:hover::before {
    width: 100%;
}.message-feedback .contact-request {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 245, 245, 1) 100%);
    position: relative;
    padding: 60px 50px;
    z-index: 2;
}.message-feedback .contact-request::before {
    background-size: 20px 20px;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0.5;
    width: 100%;
    background: linear-gradient(45deg, transparent 25%, rgba(0, 0, 0, 0.02) 25%, rgba(0, 0, 0, 0.02) 50%, transparent 50%, transparent 75%, rgba(0, 0, 0, 0.02) 75%);
    height: 100%;
}.message-feedback .contact-request h4 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000000;
    position: relative;
    margin-bottom: 35px;
}.message-feedback .contact-request h4::after {
    height: 2px;
    content: "";
    bottom: -15px;
    width: 60px;
    left: 0;
    position: absolute;
    background: rgb(175,176,174);
}.message-feedback .contact-request .inquiry-request {
    list-style: none;
    margin: 0;
    padding: 0;
}.message-feedback .contact-request .inquiry-request li {
    display: flex;
    position: relative;
    align-items: center;
    z-index: 1;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 15px;
}.message-feedback .contact-request .inquiry-request li:last-child {
    margin-bottom: 0;
}.message-feedback .contact-request .inquiry-request li:hover {
    padding-left: 20px;
    border-left-color: rgb(175,176,174);
}.message-feedback .contact-request .inquiry-request li svg {
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 22px;
    margin-right: 18px;
    opacity: 0.8;
    width: 22px;
}.message-feedback .contact-request .inquiry-request li:hover svg {
    transform: scale(1.1);
    opacity: 1;
}.message-feedback .contact-request .inquiry-request li svg path {
    transition: all 0.3s ease;
    fill: rgb(175,176,174);
}.message-feedback .contact-request .inquiry-request li:hover svg path {
    fill: rgb(132,134,132);
}.message-feedback .contact-request .inquiry-request li span {
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
}.message-feedback .contact-request .inquiry-request li a {
    text-decoration: none;
    position: relative;
    color: #000000;
    transition: all 0.3s ease;
}.message-feedback .contact-request .inquiry-request li a::after {
    left: 0;
    width: 0;
    bottom: -3px;
    background-color: rgb(175,176,174);
    content: "";
    height: 1px;
    transition: width 0.3s ease;
    position: absolute;
}.message-feedback .contact-request .inquiry-request li a:hover {
    color: rgb(175,176,174);
}.message-feedback .contact-request .inquiry-request li a:hover::after {
    width: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 992px) {.contact-form-box {
    padding: 80px 0;
}.message-feedback {
    grid-template-columns: 1fr;
}.message-feedback .request-reach::before {
    right: auto;
    top: auto;
    bottom: 0;
    width: 70%;
    left: 15%;
    height: 1px;
}.message-feedback .request-reach,
    .message-feedback .contact-request {
    padding: 50px 40px;
}
}

@media screen and (max-width: 768px) {.contact-form-box {
    padding: 60px 0;
}.contact-form-box h3 {
    font-size: calc(28px - 4px);
    margin-bottom: 40px;
}.message-feedback .request-reach,
    .message-feedback .contact-request {
    padding: 40px 30px;
}.message-feedback .request-reach h3,
    .message-feedback .contact-request h4 {
    margin-bottom: 30px;
    font-size: calc(22px - 2px);
}.message-feedback .request-reach input[type="text"],
    .message-feedback .request-reach textarea {
    margin-bottom: 20px;
    padding: 15px 18px;
}.message-feedback .request-reach .request-box {
    text-align: center;
    width: 100%;
}
}

@media screen and (max-width: 480px) {.contact-form-box {
    padding: 50px 0;
}.message-feedback {
    border-radius: 10px;
}.message-feedback .request-reach,
    .message-feedback .contact-request {
    padding: 30px 25px;
}.message-feedback .contact-request .inquiry-request li {
    align-items: flex-start;
}.message-feedback .contact-request .inquiry-request li svg {
    margin-top: 3px;
}}.confidential-nest {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    color: #000000;
    padding: 40px;
    font-family: Arial, sans-serif;
    background: rgb(175,176,174,0.5);
}.confidential-nest h1 {
    text-transform: uppercase;
    color: #000000;
    margin-top: 30px;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}.confidential-nest h2 {
    border-bottom: 2px solid rgb(132,134,132,0.5);
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 32px;
    color: rgb(132,134,132);
    font-weight: 600;
    padding-bottom: 5px;
}.confidential-nest ul, .confidential-nest ol {
    padding-left: 20px;
    padding-top: 10px;
    list-style-type: disc;
    margin-bottom: 20px;
}.confidential-nest li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}.confidential-nest div {
    line-height: 1.8;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
}

@media only screen and (max-width: 800px) {.confidential-nest {
    box-shadow: none;
    padding: 20px;
}.confidential-nest h1 {
    font-size: calc(24px - 10px);
}.confidential-nest h2 {
    font-size: calc(24px - 5px);
}}

.confidential-nest h3, .confidential-nest h4, .confidential-nest h5, .confidential-nest h6 {
    color: rgb(175,176,174);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}.confidential-nest p, .confidential-nest span {
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
}.confidential-nest a {
    color: rgb(132,134,132);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}.confidential-nest a:hover {
    text-decoration: underline;
    color: rgb(175,176,174);
}.confidential-nest button {
    font-size: 14px;
    background: rgb(132,134,132);
    color: #ffffff;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
    border: none;
}.confidential-nest button:hover {
    background: rgb(175,176,174);
}header {
    background: rgb(211,209,191);
    overflow: visible;
    width: 100%;
    position: relative;
    z-index: 99;
}header::before {
    left: 0;
    content: "";
    height: 100%;
    top: 0;
    width: 100%;
    opacity: 0.2;
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgb(175,176,174,0.5) 0%, transparent 70%);
}header .site-start {
    display: flex;
    padding: 25px 30px;
    justify-content: space-between;
    position: relative;
    align-items: center;
}header .site-start::before {
    position: absolute;
    height: 5px;
    filter: blur(5px);
    width: 30%;
    content: "";
    left: 10%;
    background: linear-gradient(90deg, rgb(175,176,174), transparent);
    top: -10px;
}header .site-start::after {
    background: linear-gradient(90deg, transparent, rgb(132,134,132));
    position: absolute;
    content: "";
    bottom: -10px;
    height: 5px;
    width: 30%;
    right: 10%;
    filter: blur(5px);
}header .site-start .nav-know {
    position: relative;
    z-index: 2;
    padding: 5px;
}header .site-start .nav-know::before {
    left: -5px;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgb(175,176,174), rgb(132,134,132));
    opacity: 0;
    height: calc(100% + 10px);
    position: absolute;
    z-index: -1;
    content: "";
    top: -5px;
    filter: blur(15px);
    width: calc(100% + 10px);
}header .site-start .nav-know:hover::before {
    opacity: 0.7;
}header .site-start .nav-know .top-wrap {
    display: block;
    position: relative;
    transition: transform 0.3s ease;
}header .site-start .nav-know:hover .top-wrap {
    transform: scale(1.05);
}header .site-start .nav-know .top-wrap svg {
    width: auto;
    height: 45px;
}header .site-start .main-bar {
    padding: 10px;
    border-radius: 30px;
    list-style: none;
    position: relative;
    display: flex;
    margin: 0;
}header .site-start .main-bar::before {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 30px;
    content: "";
    z-index: -1;
    backdrop-filter: blur(5px);
    left: 0;
    position: absolute;
    top: 0;
}header .site-start .main-bar .main-teach {
    position: relative;
    margin: 0 3px;
}header .site-start .main-bar .main-teach a {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
    color: #000000;
    text-decoration: none;
    display: block;
    font-size: 18px;
    padding: 8px 15px;
    z-index: 1;
    font-weight: 600;
}header .site-start .main-bar .main-teach a::before {
    top: 0;
    position: absolute;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    width: 100%;
    content: "";
    opacity: 0;
    height: 100%;
    background: linear-gradient(135deg, rgb(175,176,174), rgb(132,134,132));
}header .site-start .main-bar .main-teach a::after {
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    height: 150%;
    opacity: 0;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    z-index: -1;
    width: 150%;
    left: 50%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    content: "";
    top: 50%;
}header .site-start .main-bar .main-teach:hover a::before {
    opacity: 1;
}header .site-start .main-bar .main-teach:hover a {
    color: #ffffff;
}header .site-start .main-bar .main-teach:active a::after {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
}header .site-start .main-bar .main-teach:nth-child(odd) a::before {
    background: linear-gradient(to right, rgb(175,176,174), rgb(132,134,132));
}header .site-start .main-bar .main-teach:nth-child(even) a::before {
    background: linear-gradient(to left, rgb(175,176,174), rgb(132,134,132));
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(rgb(175,176,174), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(rgb(175,176,174), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(rgb(175,176,174), 0);
    }
}

@media (max-width: 992px) {header .site-start {
    flex-direction: column;
    padding: 20px 15px;
}header .site-start .nav-know {
    margin-bottom: 15px;
}header .site-start .main-bar {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}header .site-start .main-bar .main-teach {
    margin: 3px;
}header .site-start .main-bar .main-teach a {
    padding: 6px 12px;
    font-size: calc(18px - 1px);
}
}

@media (max-width: 767px) {header .site-start {
    padding: 15px 10px;
}header .site-start .nav-know .top-wrap svg {
    height: 40px;
}header .site-start .main-bar {
    padding: 5px;
}header .site-start .main-bar .main-teach a {
    font-size: calc(18px - 2px);
    padding: 5px 10px;
}}footer {
    position: relative;
    width: 100%;
}.news-feed {
    background-color: #000000;
    overflow: hidden;
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: Arial, sans-serif;
    position: relative;
}.news-feed::before {
    top: -100px;
    position: absolute;
    width: 500px;
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 10px,
        rgba(0, 0, 0, 0.5) 10px,
        rgba(0, 0, 0, 0.5) 20px
    );
    transform: rotate(45deg);
    content: "";
    height: 500px;
    opacity: 0.4;
    right: -100px;
}.news-feed::after {
    position: absolute;
    transform: rotate(30deg);
    bottom: -50px;
    content: "";
    left: -50px;
    background: repeating-linear-gradient(
        -45deg,
        #000000,
        #000000 15px,
        rgb(132,134,132,0.5) 15px,
        rgb(132,134,132,0.5) 30px
    );
    width: 300px;
    opacity: 0.2;
    height: 300px;
}footer .grant-info {
    z-index: 1;
    position: relative;
}footer .get-contact {
    border-left: 4px solid rgb(175,176,174);
    margin-bottom: 60px;
    gap: 20px;
    border-radius: 0 28px 28px 0;
    background-color: rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 30px;
}footer .info_item {
    align-items: center;
    display: flex;
}footer .info_item svg {
    margin-right: 15px;
    height: 20px;
    flex-shrink: 0;
    fill: rgb(175,176,174);
    width: 20px;
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    font-size: 15px;
    color: #ffffff;
}footer .info_item a:hover {
    color: rgb(175,176,174);
}footer .text_main_holder {
    grid-template-columns: 1fr;
    display: grid;
    gap: 50px;
}footer .nav-know {
    position: relative;
}footer .nav-know::after {
    background-color: rgb(175,176,174);
    width: 30%;
    bottom: -30px;
    height: 3px;
    left: 0;
    content: "";
    position: absolute;
}footer .nav-know svg {
    margin-bottom: 20px;
    height: 45px;
    filter: brightness(0) invert(1);
    width: auto;
}footer .abuse-ctrl {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 330px;
    line-height: 1.6;
}footer .main-bar {
    position: relative;
}footer .main-bar h5 {
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 22px;
}footer .main-bar h5::after {
    width: 40px;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: rgb(175,176,174);
    height: 3px;
}footer .head-site {
    margin-bottom: 30px;
}footer .head-site a {
    padding: 8px 0;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    font-size: 15px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}footer .head-site a:hover {
    border-bottom-color: rgb(175,176,174,0.5);
    padding-left: 10px;
    color: #ffffff;
}footer .subscribe_holder {
    padding: 35px;
    border-radius: 28px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
}footer .subscribe_holder::before {
    content: "";
    background: linear-gradient(135deg, rgb(175,176,174,0.5), transparent);
    opacity: 0.1;
    position: absolute;
    right: 0;
    border-radius: 28px;
    top: 0;
    bottom: 0;
    left: 0;
}footer .subscribe_holder h5 {
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}footer .subscribe_holder p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}footer .input_holder {
    gap: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}footer .input_holder input[type="email"] {
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 15px;
}footer .input_holder input[type="email"]:focus {
    border-color: rgb(175,176,174);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .sub-form {
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    background-color: rgb(175,176,174);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 15px 20px;
    cursor: pointer;
}footer .sub-form::after {
    width: 30px;
    height: 300px;
    top: -100px;
    position: absolute;
    content: "";
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0.2);
    left: -100px;
    transition: all 0.7s ease;
}footer .sub-form:hover {
    background-color: rgb(132,134,132);
}footer .sub-form:hover::after {
    left: 120%;
}footer .degree-path {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}footer .footer-workshops {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes pulseLight {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

@media (min-width: 768px) {footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
    align-items: stretch;
}footer .sub-form {
    white-space: nowrap;
}
}

@media (max-width: 767px) {footer .news-feed {
    padding: 60px 0 30px;
}footer .get-contact {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    padding: 20px;
}footer .main-bar h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
}footer .main-bar h5::after {
    bottom: -8px;
}footer .subscribe_holder {
    padding: 25px 20px;
}footer .degree-path {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .news-feed {
    padding: 50px 0 20px;
}footer .get-contact {
    padding: 15px;
    margin-bottom: 30px;
}footer .nav-know::after {
    width: 50px;
}footer .main-bar h5, footer .subscribe_holder h5 {
    font-size: calc(22px - 2px);
}footer .subscribe_holder p, footer .head-site a, footer .info_item p, footer .info_item a {
    font-size: calc(15px - 1px);
}footer .subscribe_holder {
    padding: 20px 15px;
}footer .input_holder input[type="email"],
    footer .sub-form {
    padding: 12px 15px;
}}.primary-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000000;
}.primary-page::before {
    opacity: 0.3;
    background: 
        repeating-conic-gradient(
            #000000 0deg 10deg, 
            rgba(0, 0, 0, 0.5) 10deg 15deg
        );
    width: 100%;
    position: absolute;
    left: 0;
    background-size: 100px 100px;
    content: "";
    z-index: 0;
    top: 0;
    height: 100%;
}.primary-page .pedagogy-way {
    width: 100%;
    position: relative;
    height: 100vh;
    z-index: 1;
}.primary-page .skill-trackfast {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
}.primary-page .skill-trackfast input {
    display: none;
}.primary-page .learn-techfast {
    position: absolute;
    width: 100%;
    transition: none;
    height: 100%;
}.primary-page .fast-knowledge {
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    transition: clip-path 0.8s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    width: 100%;
}.primary-page .fast-knowledge img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}.primary-page .skill-trackfast input:nth-child(1):checked ~ .learn-techfast .fast-knowledge:nth-child(1),
.primary-page .skill-trackfast input:nth-child(2):checked ~ .learn-techfast .fast-knowledge:nth-child(2),
.primary-page .skill-trackfast input:nth-child(3):checked ~ .learn-techfast .fast-knowledge:nth-child(3),
.primary-page .skill-trackfast input:nth-child(4):checked ~ .learn-techfast .fast-knowledge:nth-child(4),
.primary-page .skill-trackfast input:nth-child(5):checked ~ .learn-techfast .fast-knowledge:nth-child(5),
.primary-page .skill-trackfast input:nth-child(6):checked ~ .learn-techfast .fast-knowledge:nth-child(6),
.primary-page .skill-trackfast input:nth-child(7):checked ~ .learn-techfast .fast-knowledge:nth-child(7),
.primary-page .skill-trackfast input:nth-child(8):checked ~ .learn-techfast .fast-knowledge:nth-child(8),
.primary-page .skill-trackfast input:nth-child(9):checked ~ .learn-techfast .fast-knowledge:nth-child(9),
.primary-page .skill-trackfast input:nth-child(10):checked ~ .learn-techfast .fast-knowledge:nth-child(10) {
    z-index: 2;
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}.primary-page .course-lead {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 50px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}.primary-page .course-lead label {
    width: 50px;
    cursor: pointer;
    opacity: 0.3;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 4px;
    background: #ffffff;
}.primary-page .course-lead label::after {
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(175,176,174);
    top: 0;
    transition: transform 0.3s ease;
    left: -100%;
    position: absolute;
}.primary-page .skill-trackfast input:nth-child(1):checked ~ .course-lead label:nth-child(1)::after,
.primary-page .skill-trackfast input:nth-child(2):checked ~ .course-lead label:nth-child(2)::after,
.primary-page .skill-trackfast input:nth-child(3):checked ~ .course-lead label:nth-child(3)::after,
.primary-page .skill-trackfast input:nth-child(4):checked ~ .course-lead label:nth-child(4)::after,
.primary-page .skill-trackfast input:nth-child(5):checked ~ .course-lead label:nth-child(5)::after,
.primary-page .skill-trackfast input:nth-child(6):checked ~ .course-lead label:nth-child(6)::after,
.primary-page .skill-trackfast input:nth-child(7):checked ~ .course-lead label:nth-child(7)::after,
.primary-page .skill-trackfast input:nth-child(8):checked ~ .course-lead label:nth-child(8)::after,
.primary-page .skill-trackfast input:nth-child(9):checked ~ .course-lead label:nth-child(9)::after,
.primary-page .skill-trackfast input:nth-child(10):checked ~ .course-lead label:nth-child(10)::after {
    transform: translateX(100%);
}.primary-page .skill-trackfast input:nth-child(1):checked ~ .course-lead label:nth-child(1),
.primary-page .skill-trackfast input:nth-child(2):checked ~ .course-lead label:nth-child(2),
.primary-page .skill-trackfast input:nth-child(3):checked ~ .course-lead label:nth-child(3),
.primary-page .skill-trackfast input:nth-child(4):checked ~ .course-lead label:nth-child(4),
.primary-page .skill-trackfast input:nth-child(5):checked ~ .course-lead label:nth-child(5),
.primary-page .skill-trackfast input:nth-child(6):checked ~ .course-lead label:nth-child(6),
.primary-page .skill-trackfast input:nth-child(7):checked ~ .course-lead label:nth-child(7),
.primary-page .skill-trackfast input:nth-child(8):checked ~ .course-lead label:nth-child(8),
.primary-page .skill-trackfast input:nth-child(9):checked ~ .course-lead label:nth-child(9),
.primary-page .skill-trackfast input:nth-child(10):checked ~ .course-lead label:nth-child(10) {
    background: #ffffff;
    opacity: 1;
    width: 80px;
}.primary-page .text-wrap {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 25px;
    z-index: 3;
    text-align: center;
    transform: translate(-50%, -50%);
    max-width: 700px;
    padding: 40px;
    position: absolute;
    top: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    width: 80%;
    left: 50%;
}.primary-page .text-wrap::before,
.primary-page .text-wrap::after {
    width: 20px;
    height: 20px;
    position: absolute;
    border-style: solid;
    content: "";
    border-color: rgb(175,176,174);
}.primary-page .text-wrap::before {
    border-width: 2px 0 0 2px;
    top: 15px;
    left: 15px;
}.primary-page .text-wrap::after {
    border-width: 0 2px 2px 0;
    right: 15px;
    bottom: 15px;
}.primary-page .text-wrap .container {
    padding: 0;
}.primary-page .text-wrap h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}.primary-page .text-wrap h3 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 25px;
    color: rgb(175,176,174);
}.primary-page .text-wrap p {
    line-height: 1.6;
    opacity: 0.8;
    font-size: 13px;
    margin-bottom: 0;
    color: #ffffff;
}.primary-page .fast-knowledge::after {
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    top: 0;
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
}.primary-page .course-lead label:hover {
    opacity: 0.8;
}.primary-page .course-lead label:active {
    opacity: 1;
}@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.primary-page .text-wrap h1,
.primary-page .text-wrap h3,
.primary-page .text-wrap p {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}.primary-page .text-wrap h1 {
    animation-delay: 0.2s;
}.primary-page .text-wrap h3 {
    animation-delay: 0.4s;
}.primary-page .text-wrap p {
    animation-delay: 0.6s;
}@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.primary-page .fast-knowledge {
    overflow: hidden;
}.primary-page .fast-knowledge img {
    transition: transform 10s ease;
}.primary-page .skill-trackfast input:checked ~ .learn-techfast .fast-knowledge img {
    transform: scale(1.1);
}

@media (max-width: 992px) {.primary-page .text-wrap {
    width: 90%;
    padding: 30px;
}.primary-page .text-wrap h1 {
    font-size: calc(42px * 0.9);
}
}

@media (max-width: 768px) {.primary-page .course-lead {
    bottom: 30px;
}.primary-page .course-lead label {
    height: 3px;
    width: 40px;
}.primary-page .skill-trackfast input:nth-child(1):checked ~ .course-lead label:nth-child(1),
    .primary-page .skill-trackfast input:nth-child(2):checked ~ .course-lead label:nth-child(2),
    .primary-page .skill-trackfast input:nth-child(3):checked ~ .course-lead label:nth-child(3),
    .primary-page .skill-trackfast input:nth-child(4):checked ~ .course-lead label:nth-child(4),
    .primary-page .skill-trackfast input:nth-child(5):checked ~ .course-lead label:nth-child(5),
    .primary-page .skill-trackfast input:nth-child(6):checked ~ .course-lead label:nth-child(6),
    .primary-page .skill-trackfast input:nth-child(7):checked ~ .course-lead label:nth-child(7),
    .primary-page .skill-trackfast input:nth-child(8):checked ~ .course-lead label:nth-child(8),
    .primary-page .skill-trackfast input:nth-child(9):checked ~ .course-lead label:nth-child(9),
    .primary-page .skill-trackfast input:nth-child(10):checked ~ .course-lead label:nth-child(10) {
    width: 60px;
}.primary-page .text-wrap {
    padding: 25px;
}.primary-page .text-wrap h1 {
    margin-bottom: 10px;
    font-size: calc(42px * 0.8);
}.primary-page .text-wrap h3 {
    font-size: calc(18px * 0.9);
    margin-bottom: 15px;
}.primary-page .text-wrap p {
    font-size: calc(13px * 0.9);
}
}

@media (max-width: 576px) {.primary-page .course-lead {
    bottom: 20px;
}.primary-page .course-lead label {
    height: 3px;
    width: 30px;
}.primary-page .skill-trackfast input:nth-child(1):checked ~ .course-lead label:nth-child(1),
    .primary-page .skill-trackfast input:nth-child(2):checked ~ .course-lead label:nth-child(2),
    .primary-page .skill-trackfast input:nth-child(3):checked ~ .course-lead label:nth-child(3),
    .primary-page .skill-trackfast input:nth-child(4):checked ~ .course-lead label:nth-child(4),
    .primary-page .skill-trackfast input:nth-child(5):checked ~ .course-lead label:nth-child(5),
    .primary-page .skill-trackfast input:nth-child(6):checked ~ .course-lead label:nth-child(6),
    .primary-page .skill-trackfast input:nth-child(7):checked ~ .course-lead label:nth-child(7),
    .primary-page .skill-trackfast input:nth-child(8):checked ~ .course-lead label:nth-child(8),
    .primary-page .skill-trackfast input:nth-child(9):checked ~ .course-lead label:nth-child(9),
    .primary-page .skill-trackfast input:nth-child(10):checked ~ .course-lead label:nth-child(10) {
    width: 45px;
}.primary-page .text-wrap {
    padding: 20px;
    width: 95%;
}.primary-page .text-wrap::before,
    .primary-page .text-wrap::after {
    height: 15px;
    width: 15px;
}.primary-page .text-wrap h1 {
    font-size: calc(42px * 0.7);
}.primary-page .text-wrap h3 {
    font-size: calc(18px * 0.8);
}}

.primary-page .fast-knowledge:not(:checked) {
    pointer-events: none;
}.primary-page::after {
    background: 
        linear-gradient(135deg, rgb(132,134,132,0.5) 0%, transparent 20%),
        linear-gradient(225deg, rgb(175,176,174,0.5) 0%, transparent 20%);
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    z-index: 0;
}.tySection {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(175,176,174,0.5), rgb(132,134,132,0.5));
    padding: 120px 0;
    position: relative;
}.tySection::before {
    content: "";
    left: 0;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 40%);
}.tySection::after {
    transform: rotate(35deg) scale(2);
    top: -50%;
    pointer-events: none;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgb(175,176,174,0.5), transparent);
    z-index: 0;
    position: absolute;
    right: -50%;
    content: "";
    animation: shimmer 8s infinite linear;
    width: 100%;
}.tySection .container {
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}.tySection .pedagogy-way {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.15),
        inset 0 0 20px rgba(rgb(175,176,174),0.05);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    position: relative;
    gap: 40px;
    transform: perspective(1000px) rotateX(2deg);
    display: flex;
    flex-direction: column;
}.tySection .pedagogy-way:hover {
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.2),
        inset 0 0 30px rgba(rgb(175,176,174),0.08);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.tySection .pedagogy-way::before {
    left: 20px;
    top: -10px;
    content: "";
    height: 10px;
    background: rgb(175,176,174);
    filter: blur(10px);
    right: 20px;
    z-index: -1;
    position: absolute;
    opacity: 0.4;
}.tySection .pedagogy-way > div:first-child {
    position: relative;
    padding-bottom: 30px;
}.tySection .pedagogy-way > div:first-child::after {
    content: "";
    transform-origin: left center;
    background: linear-gradient(90deg, rgb(175,176,174), rgb(132,134,132));
    transition: transform 0.4s ease;
    left: 0;
    height: 3px;
    position: absolute;
    width: 80px;
    bottom: 0;
}.tySection .pedagogy-way:hover > div:first-child::after {
    transform: scaleX(1.5);
}.tySection h5 {
    position: relative;
    letter-spacing: -0.01em;
    font-weight: 700;
    z-index: 2;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 20px;
    margin: 0 0 15px;
    line-height: 1.4;
}.tySection h5::before {
    width: 10px;
    height: 10px;
    position: absolute;
    opacity: 0.8;
    left: -20px;
    top: 50%;
    content: "";
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
    background: rgb(175,176,174);
}.tySection .pedagogy-way:hover h5::before {
    transform: translateY(-50%) rotate(135deg);
}.tySection a {
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
}.tySection a:hover {
    transform: translateX(5px);
}.tySection p {
    color: #000000;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
    font-family: Arial, sans-serif;
    z-index: 2;
    font-size: 13px;
}.tySection a:hover p {
    color: rgb(175,176,174);
}

@keyframes shimmer {
    0% { transform: rotate(35deg) translateX(-30%) scale(2); }
    100% { transform: rotate(35deg) translateX(30%) scale(2); }
}

@media (min-width: 992px) {.tySection .pedagogy-way {
    padding: 80px 70px;
    flex-direction: row;
    align-items: center;
}.tySection .pedagogy-way > div:first-child {
    padding-right: 50px;
    flex: 0 0 40%;
    padding-bottom: 0;
}.tySection .pedagogy-way > div:first-child::after {
    left: auto;
    right: 0;
    bottom: auto;
    width: 3px;
    top: 50%;
    transform-origin: center top;
    height: 80px;
}.tySection .pedagogy-way:hover > div:first-child::after {
    transform: scaleY(1.5);
}.tySection h5 {
    font-size: calc(20px * 1.1);
    margin-bottom: 0;
}.tySection h5::before {
    height: 15px;
    left: -30px;
    width: 15px;
}.tySection a:hover {
    transform: translateX(10px);
}
}

@media (max-width: 991px) {.tySection {
    padding: 80px 0;
}.tySection .pedagogy-way {
    padding: 50px 35px;
}.tySection h5 {
    font-size: calc(20px * 0.95);
}
}

@media (max-width: 767px) {.tySection {
    padding: 60px 0;
}.tySection .pedagogy-way {
    gap: 30px;
    padding: 40px 25px;
}.tySection h5 {
    font-size: calc(20px * 0.9);
}.tySection p {
    font-size: calc(13px * 0.95);
    line-height: 1.7;
}.tySection .pedagogy-way > div:first-child {
    padding-bottom: 20px;
}
}

@media (max-width: 480px) {.tySection {
    padding: 50px 0;
}.tySection .pedagogy-way {
    padding: 30px 20px;
    gap: 25px;
}.tySection h5 {
    font-size: calc(20px * 0.85);
}.tySection p {
    line-height: 1.6;
    font-size: calc(13px * 0.9);
}.tySection .pedagogy-way > div:first-child {
    padding-bottom: 15px;
}.tySection .pedagogy-way > div:first-child::after {
    width: 60px;
}}.course-rewards {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(110deg, rgb(211,209,191) 0%, rgb(211,209,191) 48%, rgb(175,176,174,0.5) 48%, rgb(175,176,174,0.5) 100%);
}.course-rewards::before {
    width: 100%;
    height: 100%;
    left: 0;
    content: '';
    z-index: 0;
    background-image: repeating-linear-gradient(45deg, #ffffff 0, #ffffff 1px, transparent 1px, transparent 40px);
    top: 0;
    opacity: 0.03;
    position: absolute;
}.course-rewards::after {
    content: '';
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgb(132,134,132,0.5) 0%, transparent 60%);
    width: 80%;
    position: absolute;
    top: 0;
    opacity: 0.4;
    z-index: 0;
    right: 0;
}.course-rewards .pedagogy-way {
    max-width: 1280px;
    padding: 0 20px;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    position: relative;
}.course-rewards .text-wrap {
    position: relative;
    justify-content: center;
    display: flex;
    flex-direction: column;
}.course-rewards h2 {
    font-weight: 700;
    padding-bottom: 20px;
    margin: 0 0 40px;
    font-size: 42px;
    position: relative;
    color: #ffffff;
}.course-rewards h2::after {
    left: 0;
    background: rgb(132,134,132);
    content: '';
    position: absolute;
    width: 80px;
    bottom: 0;
    border-radius: 10px;
    height: 4px;
}.course-rewards .text_main_holder {
    flex-direction: column;
    gap: 25px;
    display: flex;
    position: relative;
}.course-rewards .text_main_holder::before {
    width: 180px;
    position: absolute;
    z-index: -1;
    top: -100px;
    animation: rotate 40s linear infinite;
    height: 180px;
    border-radius: 40%;
    border: 2px solid rgb(132,134,132,0.5);
    left: -80px;
    content: '';
    opacity: 0.15;
}.course-rewards .text_main_holder > div {
    gap: 20px;
    align-items: flex-start;
    transform: translateX(-20px);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid rgb(132,134,132);
    animation-delay: calc(var(--i, 0) * 0.1s);
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    backdrop-filter: blur(5px);
    animation: slideIn 0.4s forwards;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}.course-rewards .text_main_holder > div:nth-child(1) {
    --i: 1;
}.course-rewards .text_main_holder > div:nth-child(2) {
    --i: 2;
}.course-rewards .text_main_holder > div:nth-child(3) {
    --i: 3;
}.course-rewards .text_main_holder > div:nth-child(4) {
    --i: 4;
}.course-rewards .text_main_holder > div:nth-child(5) {
    --i: 5;
}.course-rewards .text_main_holder > div:nth-child(6) {
    --i: 6;
}.course-rewards .text_main_holder > div:hover {
    transform: translateX(0) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}.course-rewards .text_main_holder svg {
    transition: transform 0.3s ease;
    height: 32px;
    width: 32px;
    flex-shrink: 0;
}.course-rewards .text_main_holder > div:hover svg {
    transform: scale(1.1);
}.course-rewards .text_main_holder svg path {
    transition: fill 0.3s ease;
    fill: rgb(175,176,174);
}.course-rewards .text_main_holder > div:hover svg path {
    fill: rgb(132,134,132);
}.course-rewards .text_main_holder p {
    line-height: 1.6;
    color: #ffffff;
    font-size: 17px;
    margin: 0;
}.course-rewards .background-image {
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 0;
    position: relative;
    overflow: hidden;
    width: 120%;
    right: -20%;
    height: 120%;
    top: -10%;
    border-radius: 11px 0 0 11px;
}.course-rewards .background-image::before {
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(110deg, rgb(175,176,174,0.5) 0%, transparent 60%);
    z-index: 1;
    position: absolute;
}.course-rewards .background-image::after {
    position: absolute;
    height: 40%;
    background: linear-gradient(to top, rgb(132,134,132,0.5) 0%, transparent 100%);
    z-index: 2;
    bottom: 0;
    width: 100%;
    content: '';
    left: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {.course-rewards {
    background: linear-gradient(180deg, rgb(211,209,191) 0%, rgb(175,176,174,0.5) 100%);
}.course-rewards .pedagogy-way {
    gap: 40px;
    grid-template-columns: 1fr;
}.course-rewards .background-image {
    order: -1;
    right: 0;
    border-radius: 11px;
    height: 400px;
    top: 0;
    width: 100%;
}.course-rewards h2 {
    margin-bottom: 30px;
}
}

@media (max-width: 768px) {.course-rewards {
    padding: 80px 0;
}.course-rewards h2 {
    font-size: calc(42px * 0.8);
}.course-rewards .background-image {
    height: 350px;
}.course-rewards .text_main_holder > div {
    gap: 15px;
    padding: 15px;
}.course-rewards .text_main_holder svg {
    height: 28px;
    width: 28px;
}
}

@media (max-width: 576px) {.course-rewards {
    padding: 60px 0;
}.course-rewards h2 {
    font-size: 33px;
}.course-rewards .background-image {
    height: 280px;
}}.pricing-row-item {
    position: relative;
    background-color: var(--pricing-bg);
    --card-bg: #ffffff;
    --card-border: linear-gradient(135deg, rgb(175,176,174), rgb(132,134,132));
    --card-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --card-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    --pricing-bg: #f5f7fa;
    --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    padding: 120px 0 80px;
    --card-accent: rgb(175,176,174);
}.pricing-row-item::before {
    position: absolute;
    height: 50%;
    content: "";
    top: -10%;
    opacity: 0.5;
    right: -5%;
    width: 35%;
    z-index: 1;
    transform: rotate(-15deg);
    background: linear-gradient(135deg, rgb(175,176,174,0.5), rgb(132,134,132,0.5));
    filter: blur(60px);
}.pricing-row-item::after {
    content: "";
    left: -5%;
    width: 30%;
    transform: rotate(15deg);
    z-index: 1;
    position: absolute;
    filter: blur(50px);
    opacity: 0.4;
    height: 40%;
    background: linear-gradient(225deg, rgb(132,134,132,0.5), rgb(175,176,174,0.5));
    bottom: -10%;
}.pricing-row-item .container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}.pricing-row-item .pricing-list {
    flex-direction: column;
    display: flex;
}.pricing-row-item .price-panel {
    margin-bottom: 60px;
    margin-right: auto;
    order: -1;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
}.pricing-row-item .price-panel h2 {
    font-size: 30px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000000;
}.pricing-row-item .price-panel h2::after {
    background: linear-gradient(to right, rgb(175,176,174), rgb(132,134,132));
    bottom: -10px;
    height: 3px;
    content: "";
    position: absolute;
    left: 50%;
    width: 80px;
    transform: translateX(-50%);
}.pricing-row-item .learning-pricing {
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    color: #000000;
    font-size: calc(15px + 2px);
}.pricing-row-item .fee-package {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    width: 100%;
    display: grid;
}.pricing-row-item .cost-deals {
    transition: transform var(--card-transition);
    color: inherit;
    height: 100%;
    display: block;
    text-decoration: none;
    transform: translateY(0);
}.pricing-row-item .cost-deals:hover {
    transform: translateY(-10px);
}.pricing-row-item .edu-rates {
    background-color: var(--card-bg);
    display: flex;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border-radius: 15px;
    transition: box-shadow var(--card-transition);
    flex-direction: column;
    height: 100%;
    position: relative;
}.pricing-row-item .cost-deals:hover .edu-rates {
    box-shadow: var(--card-hover-shadow);
}.pricing-row-item .edu-rates::before {
    position: absolute;
    width: 100%;
    top: 0;
    height: 5px;
    background: var(--card-border);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    left: 0;
    transition: transform 0.5s ease;
}.pricing-row-item .cost-deals:hover .edu-rates::before {
    transform: scaleX(1);
}.pricing-row-item .study-costs {
    display: flex;
    padding: 35px 30px;
    flex-grow: 1;
    z-index: 1;
    position: relative;
    flex-direction: column;
}.pricing-row-item .study-costs h3 {
    margin-bottom: 15px;
    font-size: calc(21px + 2px);
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: #000000;
    transition: color 0.3s ease;
}.pricing-row-item .cost-deals:hover .study-costs h3 {
    color: var(--card-accent);
}.pricing-row-item .rate-list {
    margin-bottom: 20px;
    color: var(--card-accent);
    display: inline-block;
    font-weight: 700;
    font-size: calc(21px + 6px);
    position: relative;
}.pricing-row-item .rate-list::after {
    content: "";
    position: absolute;
    background-color: var(--card-accent);
    transition: width 0.3s ease;
    bottom: -10px;
    height: 2px;
    width: 40px;
    left: 0;
}.pricing-row-item .cost-deals:hover .rate-list::after {
    width: 60px;
}.pricing-row-item .study-costs p {
    font-size: 15px;
    flex-grow: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    color: #000000;
    line-height: 1.6;
    margin-top: 15px;
    hyphens: auto;
    white-space: normal;
}.pricing-row-item .background-image {
    height: 200px;
    transition: transform 0.6s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}.pricing-row-item .background-image::after {
    left: 0;
    top: 0;
    content: "";
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    position: absolute;
    transition: opacity 0.4s ease;
    opacity: 0;
    right: 0;
}.pricing-row-item .cost-deals:hover .background-image::after {
    opacity: 1;
}.pricing-row-item .cost-deals:hover .background-image {
    transform: scale(1.05);
}

@media (min-width: 992px) {.pricing-row-item .pricing-list {
    align-items: center;
    gap: 60px;
    flex-direction: row;
}.pricing-row-item .price-panel {
    width: 30%;
    margin: 0;
    text-align: left;
    order: 0;
}.pricing-row-item .price-panel h2 {
    text-align: left;
    display: block;
}.pricing-row-item .price-panel h2::after {
    transform: none;
    left: 0;
}.pricing-row-item .learning-pricing {
    text-align: left;
    margin: 0;
}.pricing-row-item .fee-package {
    width: 70%;
}
}

@media (max-width: 991px) {.pricing-row-item {
    padding: 80px 0 60px;
}.pricing-row-item .fee-package {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
}

@media (max-width: 767px) {.pricing-row-item {
    padding: 60px 0 40px;
}.pricing-row-item .price-panel {
    margin-bottom: 40px;
}.pricing-row-item .fee-package {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 450px;
}.pricing-row-item .study-costs {
    padding: 25px 20px;
}.pricing-row-item .study-costs h3 {
    font-size: 21px;
}.pricing-row-item .rate-list {
    font-size: calc(21px + 2px);
}.pricing-row-item .study-costs p {
    font-size: calc(15px - 1px);
}.pricing-row-item .background-image {
    height: 180px;
}
}

@media (max-width: 480px) {.pricing-row-item {
    padding: 50px 0 30px;
}.pricing-row-item .price-panel h2 {
    font-size: calc(30px - 4px);
}.pricing-row-item .learning-pricing {
    font-size: 15px;
}.pricing-row-item .study-costs {
    padding: 20px 15px;
}.pricing-row-item .background-image {
    height: 160px;
}}.academic-expertise {
    overflow: hidden;
    position: relative;
    padding: 7rem 2rem;
    background: radial-gradient(circle at 70% 30%, rgb(175,176,174,0.5) 0%, transparent 40%), 
              radial-gradient(circle at 30% 70%, rgb(132,134,132,0.5) 0%, transparent 40%), 
              #000000;
}.academic-expertise::before {
    width: 150%;
    content: "";
    top: -25%;
    left: -25%;
    opacity: 0.3;
    position: absolute;
    animation: backgroundMovement 30s linear infinite alternate;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, #000000 100%), 
              repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0px, rgba(0, 0, 0, 0.5) 1px, transparent 1px, transparent 10px);
    height: 150%;
}.academic-expertise .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}.academic-expertise .user-feedback {
    gap: 0;
    position: relative;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    overflow: hidden;
    display: grid;
    border-radius: 11px;
}.academic-expertise .user-feedback::after {
    width: 100%;
    background: linear-gradient(135deg, rgb(175,176,174,0.5) 0%, transparent 50%);
    pointer-events: none;
    top: 0;
    opacity: 0.3;
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
    mix-blend-mode: overlay;
}.academic-expertise .user-feedback .background-image {
    border-radius: 0;
    grid-column: 1 / 2;
    box-shadow: 0 0 30px rgb(175,176,174,0.5);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    transition: all 0.5s ease;
    grid-row: 1 / 4;
    transform: scale(1.05) translateX(-5%);
    position: relative;
    z-index: 1;
    min-height: 500px;
}.academic-expertise .user-feedback .background-image:hover {
    box-shadow: 0 0 50px rgb(175,176,174);
    transform: scale(1.07) translateX(-4%);
}.academic-expertise .user-feedback .name {
    animation: neonPulse 4s infinite alternate;
    padding: 3.5rem 2rem 0.5rem 3rem;
    grid-row: 1 / 2;
    z-index: 2;
    position: relative;
    grid-column: 2 / 3;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(175,176,174,0.5), 0 0 20px rgb(175,176,174,0.5);
    font-size: 33px;
    color: #ffffff;
}.academic-expertise .user-feedback span:not(.name) {
    letter-spacing: 1px;
    font-size: 19px;
    grid-row: 2 / 3;
    z-index: 2;
    grid-column: 2 / 3;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 2rem 1rem 3rem;
    position: relative;
    color: rgb(132,134,132);
}.academic-expertise .user-feedback .career-explore {
    z-index: 2;
    grid-row: 3 / 4;
    border-radius: 0 10px 0 0;
    line-height: 1.7;
    border-top: 1px solid rgb(132,134,132,0.5);
    grid-column: 2 / 3;
    margin-right: 1.5rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    padding: 2rem 2rem 2.5rem 3rem;
    backdrop-filter: blur(5px);
    position: relative;
    font-size: 18px;
    color: #ffffff;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgb(175,176,174,0.5), 0 0 20px rgb(175,176,174,0.5);
  }
  50% {
    text-shadow: 0 0 20px rgb(175,176,174), 0 0 30px rgb(175,176,174);
  }
}

@keyframes backgroundMovement {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(50px, 50px) rotate(10deg);
  }
}

@media (max-width: 992px) {.academic-expertise {
    padding: 5rem 1.5rem;
}.academic-expertise .user-feedback {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
}.academic-expertise .user-feedback .background-image {
    min-height: 350px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transform: scale(1.02) translateY(-5%);
}.academic-expertise .user-feedback .background-image:hover {
    transform: scale(1.03) translateY(-4%);
}.academic-expertise .user-feedback .name {
    grid-row: 2 / 3;
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    grid-column: 1 / 2;
}.academic-expertise .user-feedback span:not(.name) {
    grid-row: 3 / 4;
    padding: 0 1.5rem 1rem 1.5rem;
    grid-column: 1 / 2;
}.academic-expertise .user-feedback .career-explore {
    border-radius: 10px;
    margin-right: 0;
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    padding: 1.5rem;
}
}

@media (max-width: 576px) {.academic-expertise {
    padding: 4rem 1rem;
}.academic-expertise .user-feedback .background-image {
    min-height: 280px;
}.academic-expertise .user-feedback .name {
    padding: 1.5rem 1rem 0.5rem 1rem;
}.academic-expertise .user-feedback span:not(.name) {
    padding: 0 1rem 1rem 1rem;
}.academic-expertise .user-feedback .career-explore {
    padding: 1.2rem;
}}.course-features {
    background: linear-gradient(135deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, rgb(175,176,174,0.5) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}.course-features::before {
    left: 0;
    content: '';
    top: 0;
    z-index: 1;
    bottom: 0;
    position: absolute;
    right: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(175,176,174,0.5) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgb(132,134,132,0.5) 0%, transparent 40%);
}.course-features::after {
    opacity: 0.1;
    animation: backgroundShift 30s linear infinite;
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(175,176,174,0.5) 49%, rgb(175,176,174,0.5) 51%, transparent 52%) 0 0 / 20px 20px,
        linear-gradient(-45deg, transparent 48%, rgb(132,134,132,0.5) 49%, rgb(132,134,132,0.5) 51%, transparent 52%) 10px 0 / 20px 20px;
    width: 100%;
    content: '';
}@keyframes backgroundShift {
    0% {
        background-position: 0 0, 10px 0;
    }
    100% {
        background-position: 500px 500px, 510px 500px;
    }
}

.course-features .container {
    max-width: 1200px;
    padding: 0 15px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.course-features .pedagogy-way {
    backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgb(175,176,174,0.5),
                inset 0 0 20px rgb(175,176,174,0.5);
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(145deg, 
                rgba(255, 255, 255, 0.05) 0%, 
                rgba(255, 255, 255, 0.02) 100%);
    position: relative;
    display: grid;
    gap: 40px;
}.course-features .pedagogy-way::before {
    right: -100px;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    background: radial-gradient(circle, rgb(175,176,174) 0%, transparent 70%);
    position: absolute;
    animation: pulseLight 8s ease-in-out infinite;
    top: -100px;
    filter: blur(20px);
    opacity: 0.2;
    content: '';
}.course-features .pedagogy-way::after {
    bottom: -100px;
    content: '';
    width: 200px;
    position: absolute;
    opacity: 0.2;
    animation: pulseLight 8s ease-in-out infinite 4s;
    filter: blur(20px);
    background: radial-gradient(circle, rgb(132,134,132) 0%, transparent 70%);
    left: -100px;
    border-radius: 50%;
    height: 200px;
}@keyframes pulseLight {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

.course-features .program-flow {
    display: flex;
    padding-right: 20px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}.course-features .nav-know {
    display: inline-block;
    transition: transform 0.5s ease;
    transform: perspective(1000px) rotateY(5deg);
    position: relative;
    margin-bottom: 25px;
}.course-features .nav-know:hover {
    transform: perspective(1000px) rotateY(0deg);
}.course-features .nav-know svg {
    filter: drop-shadow(0 5px 15px rgb(175,176,174,0.5));
    height: 50px;
    width: 50px;
    transition: all 0.3s ease;
}.course-features .nav-know svg path {
    fill: rgb(175,176,174);
    transition: fill 0.3s ease;
}.course-features .nav-know:hover svg path {
    fill: rgb(132,134,132);
}.course-features h3 {
    font-weight: 700;
    transform: translateZ(0);
    font-family: Arial, sans-serif;
    font-size: 36px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backface-visibility: hidden;
    color: #ffffff;
    padding-bottom: 15px;
    position: relative;
}.course-features h3::after {
    left: 0;
    position: absolute;
    border-radius: 10px;
    animation: lineExpand 4s ease-in-out infinite;
    width: 60px;
    content: '';
    background: linear-gradient(90deg, rgb(175,176,174) 0%, rgb(132,134,132) 100%);
    height: 3px;
    bottom: 0;
}@keyframes lineExpand {
    0% {
        width: 60px;
        opacity: 1;
    }
    50% {
        width: 100px;
        opacity: 0.8;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

.course-features p {
    font-family: Arial, sans-serif;
    margin-bottom: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    font-size: 15px;
    color: #ffffff;
}.course-features .background-image {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgb(175,176,174,0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    overflow: hidden;
    height: 350px;
    transition: all 0.5s ease;
    position: relative;
    border-radius: calc(15px * 1.5);
}.course-features .background-image:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgb(175,176,174),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}.course-features .background-image::before {
    height: 100%;
    width: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    top: 0;
    z-index: 1;
    left: 0;
    position: absolute;
    content: '';
}.course-features .background-image::after {
    left: 0;
    animation: scanlines 10s linear infinite;
    z-index: 2;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    opacity: 0.5;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, transparent 50%) 0 0 / 30px 30px,
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, transparent 50%) 15px 0 / 30px 30px;
    content: '';
}

@keyframes scanlines {
    0% {
        background-position: 0 0, 15px 0;
    }
    100% {
        background-position: 300px 300px, 315px 300px;
    }
}


@media (max-width: 991px) {.course-features {
    padding: 60px 0;
}.course-features .pedagogy-way {
    padding: 30px;
    grid-template-columns: 1fr;
    gap: 30px;
}.course-features .program-flow {
    text-align: center;
    padding-right: 0;
}.course-features h3::after {
    left: 50%;
    transform: translateX(-50%);
}.course-features .background-image {
    min-height: 300px;
}
}

@media (max-width: 767px) {.course-features {
    padding: 40px 0;
}.course-features .pedagogy-way {
    padding: 25px;
    gap: 25px;
}.course-features h3 {
    margin-bottom: 20px;
    font-size: calc(36px * 0.85);
}.course-features p {
    font-size: calc(15px * 0.95);
}.course-features .background-image {
    min-height: 250px;
    clip-path: polygon(
            0% 5%, 
            5% 0%, 
            95% 0%, 
            100% 5%, 
            100% 95%, 
            95% 100%, 
            5% 100%, 
            0% 95%
        );
}
}

@media (max-width: 576px) {.course-features {
    padding: 30px 0;
}.course-features .pedagogy-way {
    gap: 20px;
    padding: 20px;
}.course-features .nav-know {
    margin-bottom: 15px;
}.course-features h3 {
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: calc(36px * 0.7);
}.course-features p {
    font-size: calc(15px * 0.9);
}.course-features .background-image {
    min-height: 200px;
}
}
