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

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

.story-spot {
    flex: 0 0 auto;
}

.story-spot {
    position: relative;
    padding: 0;
    color: #ffffff;
    background-color: rgb(188,148,137);
    font-family: Arial, sans-serif;
}

.head-know {
    flex: 1 0 auto;
}


.program-results {
    background: linear-gradient(120deg, rgb(243,209,200) 0%, rgb(216,178,166,0.5) 100%);
    overflow: hidden;
    font-family: Arial, sans-serif;
    padding: 100px 0;
    position: relative;
}



.program-results::after {
    position: absolute;
    opacity: 0.2;
    background: 
        linear-gradient(135deg, transparent 0%, rgb(188,148,137,0.5) 100%),
        linear-gradient(45deg, rgb(216,178,166,0.5) 0%, transparent 60%);
    content: "";
    z-index: 0;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}

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

.program-results .story-tl::before {
    z-index: -1;
    position: absolute;
    background: linear-gradient(
        -45deg,
        rgb(216,178,166) 0%,
        transparent 40%,
        transparent 60%,
        rgb(188,148,137) 100%
    );
    inset: -2px;
    border-radius: 22px;
    animation: borderGlow 8s infinite alternate;
    opacity: 0.6;
    content: "";
}

.program-results .text-card-wrap {
    order: 1;
    flex-direction: column;
    display: flex;
    padding: 40px;
    justify-content: center;
}

.program-results .image-section:hover {
    transform: scale(1.08) translateX(-3%);
}

.program-results h3 {
    margin-bottom: 30px;
    position: relative;
    font-size: 32px;
    letter-spacing: 0.5px;
    color: #000000;
    font-weight: 700;
}

.program-results h3::before {
    top: 50%;
    position: absolute;
    background: rgb(216,178,166);
    content: "";
    transform: translateY(-50%);
    left: -40px;
    width: 30px;
    height: 2px;
}

.program-results ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin: 0;
}

.program-results li {
    padding: 18px;
    transition: all 0.4s ease;
    border-radius: 12px;
    background: rgb(243,209,200);
    overflow: hidden;
    position: relative;
}

.program-results li::after {
    background: linear-gradient(
        to right,
        rgb(216,178,166,0.5) 0%,
        transparent 30%
    );
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 0;
    transition: all 0.4s ease;
    left: 0;
    content: "";
    z-index: -1;
    height: 100%;
}

.program-results li:hover::before {
    width: 6px;
}

.program-results li p {
    z-index: 2;
    align-items: center;
    margin: 0;
    gap: 15px;
    display: flex;
    font-size: 15px;
    color: #000000;
    position: relative;
}

.program-results svg path {
    transition: all 0.5s ease;
    fill: rgb(216,178,166);
}

.program-results li:hover svg {
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    transform: scale(1.15);
}

.contact-form-section::before {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgb(216,178,166,0.5) 0%, transparent 50%, rgb(188,148,137,0.5) 100%);
    top: 0;
    left: 0;
    content: "";
    z-index: 1;
}

.contact-form-section .container {
    padding: 0 20px;
    max-width: 1200px;
    z-index: 5;
    position: relative;
    margin: 0 auto;
}

.contact-form-section h3::after {
    transform: translateX(-50%);
    left: 50%;
    width: 80px;
    content: "";
    border-radius: 10px;
    background: rgb(216,178,166);
    bottom: -15px;
    height: 3px;
    position: absolute;
}

.contact-form-section .image-section::after {
    top: 0;
    left: 0;
    height: 100%;
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(to right, rgb(216,178,166,0.5) 0%, transparent 100%);
}

.help-card::before {
    left: 0;
    width: 10px;
    height: 100%;
    background: rgb(216,178,166);
    top: 0;
    z-index: 1;
    content: "";
    position: absolute;
}

.help-card .support-panel::before {
    height: 100%;
    top: 0;
    background: linear-gradient(to bottom, transparent, rgb(188,148,137,0.5), transparent);
    position: absolute;
    width: 1px;
    right: 0;
    content: "";
}

.help-card .support-panel form {
    flex-direction: column;
    display: flex;
}

.help-card .support-panel input[type="text"]:focus,
.help-card .support-panel textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(216,178,166,0.5);
    border-color: rgb(216,178,166);
}

.help-card .support-panel textarea {
    resize: vertical;
    min-height: 150px;
}

.help-card .support-panel .feedback-form {
    position: relative;
    align-items: flex-start;
    display: flex;
    margin-bottom: 30px;
}

.help-card .support-panel .feedback-form label::before {
    left: 0;
    transition: all 0.3s ease;
    width: 20px;
    border-radius: 10px;
    top: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 20px;
    position: absolute;
    content: "";
}

.help-card .support-panel .feedback-form input[type="checkbox"]:checked + label::after {
    transform: rotate(45deg);
    content: "";
    border-width: 0 2px 2px 0;
    border: solid #ffffff;
    position: absolute;
    left: 7px;
    top: 4px;
    height: 12px;
    width: 6px;
}

.help-card .support-panel .feedback-card {
    cursor: pointer;
    z-index: 1;
    padding: 15px 30px;
    border-radius: 10px;
    background: rgb(216,178,166);
    align-self: flex-start;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
    border: none;
    overflow: hidden;
}

.help-card .support-help {
    background: linear-gradient(135deg, rgb(216,178,166,0.5) 0%, rgb(243,209,200) 100%);
    overflow: hidden;
    padding: 50px;
    flex: 0 0 40%;
    position: relative;
}

.help-card .support-help h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
}

.help-card .support-help h4::after {
    position: absolute;
    height: 3px;
    bottom: -15px;
    left: 0;
    background: rgb(216,178,166);
    width: 60px;
    border-radius: 10px;
    content: "";
}

.help-card .support-help .help-reach li:last-child {
    margin-bottom: 0;
}

.help-card .support-help .help-reach li svg {
    height: 24px;
    width: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.help-card .support-help .help-reach li span {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
}

.help-card .support-help .help-reach li a:hover {
    color: rgb(216,178,166);
}

.our-background {
    color: #ffffff;
    overflow: hidden;
    padding: 120px 0 100px;
    position: relative;
}

.our-background::after {
    pointer-events: none;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    opacity: 0.5;
    left: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgb(216,178,166,0.5) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgb(188,148,137,0.5) 0%, transparent 40%);
    top: 0;
    z-index: 2;
}

.our-background h4::before {
    box-shadow: 0 0 15px rgba(rgb(216,178,166), 0.2);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(216,178,166), rgb(188,148,137));
    left: 50%;
    content: "";
    transform: translateX(-50%);
    border-radius: 1px;
    bottom: -12px;
    position: absolute;
}

.our-background .text-card-wrap::before {
    pointer-events: none;
    border-radius: 4px;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.our-background .text-card-wrap h6 {
    margin-bottom: 25px;
    position: relative;
    color: rgb(216,178,166);
    font-weight: 700;
    font-size: calc(20px * 1.4);
    display: inline-block;
}

.our-background .text-card-wrap h6::after {
    height: 2px;
    content: "";
    transition: transform 0.4s ease;
    transform: scaleX(1);
    transform-origin: left;
    left: 0;
    bottom: -8px;
    width: 40px;
    position: absolute;
    background: rgb(188,148,137);
}

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

header .top-navbar {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .nav-know::after {
    width: 100%;
    position: absolute;
    content: '';
    bottom: -5px;
    height: 2px;
    opacity: 0.7;
    background: linear-gradient(to right, transparent, rgb(216,178,166), transparent);
    left: 0;
}

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

header .top-wrap {
    padding: 0.6rem 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    background: #ffffff;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    color: #000000;
}

.cookie-alert-message {
    bottom: 0;
    border-top: 2px solid rgb(216,178,166);
    position: fixed;
    background: rgb(243,209,200);
    z-index: 90;
    width: 100%;
}

.cookie-alert-message h5 {
    margin-bottom: 6px;
    font-size: 22px;
}

.cookie-alert-message p {
    font-size: 18px;
}

.visitor-controls svg, .visitor-controls svg path, .visitor-controls img {
    width: 100px;
    fill: rgb(216,178,166);
    height: 100px;
}

.cookie-alert-message p a {
    text-decoration: none;
    color: rgb(216,178,166);
}


#cookiePromptPanel {
    display: none;
}

#cookiePromptPanel:checked ~ .cookie-alert-message {
    opacity: 0;
    visibility: hidden;
}

.leadership-profile::before {
    content: "";
    z-index: 1;
    transform: rotate(-15deg);
    top: -10%;
    background: rgb(216,178,166,0.5);
    border-radius: 11px;
    right: -10%;
    width: 60%;
    height: 80%;
    animation: float 8s ease-in-out infinite;
    position: absolute;
}

.leadership-profile .container {
    z-index: 2;
    position: relative;
}

.leadership-profile .testimonials-hub {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 11px;
    transform: rotate(-2deg);
    display: grid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 40px;
    grid-template-columns: 1fr 2fr;
    background: #ffffff;
    grid-template-areas: 
        "photo name"
        "photo job"
        "quote quote";
    gap: 15px;
}

.leadership-profile .testimonials-hub:hover .image-section {
    transform: rotate(0deg) scale(1.05);
}

.leadership-profile .testimonials-hub span:not(.name) {
    grid-area: job;
    color: #000000;
    font-size: 13px;
    font-style: italic;
    transform: translateX(20px);
}

.leadership-profile .work-box::before {
    left: 10px;
    top: -10px;
    content: "";
    color: rgb(216,178,166,0.5);
    line-height: 1;
    font-size: calc(45px * 2);
    font-family: serif;
    position: absolute;
}

.welcome-section {
    min-height: 100vh;
    background: rgb(243,209,200);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.welcome-section .edu-title {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.welcome-section .learn-welcome {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    width: 500%;
    height: 100%;
}

.welcome-section .learn-techfast::before {
    position: absolute;
    content: '';
    z-index: 2;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
}

.welcome-section .edu-page label:hover {
    opacity: 0.7;
}

.welcome-section .text-card-wrap {
    pointer-events: none;
    left: 0;
    bottom: 80px;
    z-index: 5;
    position: absolute;
    width: 100%;
}

.welcome-section .text-card-wrap h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 15px;
}

.welcome-section .text-card-wrap h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(216,178,166);
}

.welcome-section .edu-title input:nth-child(1):checked ~ .learn-welcome {
    transform: translateX(0%);
}

.welcome-section .edu-title input:nth-child(2):checked ~ .learn-welcome {
    transform: translateX(-20%);
}

.welcome-section .edu-title input:nth-child(4):checked ~ .learn-welcome {
    transform: translateX(-60%);
}

.welcome-section .edu-title input:nth-child(6):checked ~ .learn-welcome {
    transform: translateX(-100%);
}

.welcome-section .edu-title input:nth-child(8):checked ~ .learn-welcome {
    transform: translateX(-140%);
}

.welcome-section .edu-title input:nth-child(10):checked ~ .learn-welcome {
    transform: translateX(-180%);
}

.welcome-section::before {
    left: 0;
    pointer-events: none;
    top: 0;
    height: 100%;
    position: absolute;
    z-index: 0;
    background: radial-gradient(
        circle at 20% 30%,
        rgb(188,148,137,0.5) 0%,
        transparent 70%
    );
    content: '';
    width: 100%;
}

.welcome-section::after {
    z-index: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    content: '';
    background: radial-gradient(
        circle at 80% 70%,
        rgb(216,178,166,0.5) 0%,
        transparent 70%
    );
}

.appSection {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(243,209,200) 0%, rgba(rgb(216,178,166,0.5), 0.1) 100%);
    overflow: hidden;
    z-index: 1;
}

.appSection::before {
    content: "";
    top: 0;
    background-size: 20px 20px;
    transform: perspective(1000px) rotateX(5deg);
    position: absolute;
    opacity: 0.6;
    width: 100%;
    background-image: 
        linear-gradient(90deg, rgba(rgb(216,178,166,0.5), 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(rgb(216,178,166,0.5), 0.05) 1px, transparent 1px);
    z-index: -1;
    height: 100%;
    left: 0;
}

.appSection .story-tl {
    padding: 3.5rem;
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
    transform: translateY(0);
    gap: 2.5rem;
    box-shadow: 
        0 10px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.12),
        0 0 0 1px rgba(rgb(216,178,166,0.5), 0.08);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
}

.appSection .story-tl:hover::before {
    transform: scaleY(1);
}

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

.appSection .story-tl:hover h5::after {
    transform: translateX(10px);
    width: 7rem;
}

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

.appSection a::before {
    height: 1px;
    background: rgba(rgb(216,178,166,0.5), 0.3);
    position: absolute;
    content: "";
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    width: 100%;
    z-index: 1;
    transform-origin: right;
    transform: scaleX(0);
    bottom: 0;
}

.privacy-depot h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    margin-top: 40px;
    font-family: Arial, sans-serif;
}

.privacy-depot h4,.privacy-depot h3, .privacy-depot h5 {
    color: #ffffff;
}

.privacy-depot li {
    font-family: Arial, sans-serif;
    transition: background 0.3s ease;
    color: #000000;
    padding: 10px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 18px;
    border-radius: 10px;
    background: rgb(216,178,166,0.5);
}

.privacy-depot p, .privacy-depot span {
    margin-bottom: 10px;
    color: rgb(255, 255, 255, 0.5);
    line-height: 1.8;
}

.join-our-mailing-list::before {
    content: "";
    left: -50%;
    width: 200%;
    pointer-events: none;
    height: 200%;
    animation: pulse 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
    position: absolute;
    top: -50%;
}

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

.join-our-mailing-list .story-tl:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.join-our-mailing-list h3 {
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    font-size: calc(20px * 1.2);
    margin: 0;
    max-width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.join-our-mailing-list h3::after {
    content: "";
    transform: scaleX(0.8);
    left: 0;
    bottom: -12px;
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, rgb(216,178,166), rgb(188,148,137));
    transition: transform 0.4s ease;
    position: absolute;
    transform-origin: left;
}

.join-our-mailing-list .sub-alerts::placeholder {
    transition: color 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.join-our-mailing-list .sub-alerts:focus {
    border-color: rgb(216,178,166);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.join-our-mailing-list .updates-list {
    background: linear-gradient(135deg, rgb(216,178,166), rgb(188,148,137));
    padding: 1.2rem 2rem;
    color: #ffffff;
    overflow: hidden;
    font-size: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
}

.join-our-mailing-list .updates-list:hover::before {
    transform: translateX(100%);
}

.join-our-mailing-list .updates-list:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.membership-plan::before {
    z-index: 1;
    height: 100%;
    width: 100%;
    content: "";
    pointer-events: none;
    left: 0;
    position: absolute;
    top: 0;
    background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.02) 0px,
    rgba(0, 0, 0, 0.02) 1px,
    transparent 1px,
    transparent 11px
  );
}

.membership-plan .value-rates {
    transition: transform 0.5s ease-out;
    margin-bottom: 50px;
    text-align: center;
}

.membership-plan .value-rates h2::after {
    width: 80px;
    bottom: -10px;
    height: 3px;
    position: absolute;
    background: rgb(216,178,166);
    left: 50%;
    transform: translateX(-50%);
    content: "";
}

.membership-plan .price-options {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

.membership-plan .study-packages {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.membership-plan .value-plan {
    white-space: normal;
    z-index: 2;
    padding: 30px;
    word-break: break-word;
    flex-direction: column;
    flex: 1;
    position: relative;
    overflow-wrap: break-word;
    display: flex;
}

.membership-plan .study-packages:hover .value-plan h3 {
    transform: translateX(5px);
}

.membership-plan .learn-packs::before {
    height: 2px;
    transform: translateX(-10px);
    opacity: 0;
    position: absolute;
    left: -20px;
    background: rgb(216,178,166);
    top: 50%;
    width: 10px;
    transition: all 0.3s ease;
    content: "";
}

.membership-plan .image-section {
    width: 100%;
    position: relative;
    height: 200px;
    overflow: hidden;
    transition: transform 0.6s ease;
}

.membership-plan .image-section::after {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    background: linear-gradient(0deg, rgba(rgb(216,178,166,0.5), 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
}

.membership-plan .study-packages:nth-child(1) {
    animation: fadeInUp 0.6s 0.1s both;
}

.membership-plan .study-packages:nth-child(2) {
    animation: fadeInUp 0.6s 0.2s both;
}

.membership-plan .study-packages:nth-child(4) {
    animation: fadeInUp 0.6s 0.4s both;
}

.testimonials::before {
    content: "";
    pointer-events: none;
    transform: rotate(-15deg) skewX(15deg);
    width: 40%;
    height: 70%;
    z-index: 1;
    right: -5%;
    position: absolute;
    opacity: 0.7;
    background: linear-gradient(225deg, rgb(216,178,166,0.5) 10%, transparent 70%);
    top: -10%;
}

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

.testimonials h2::after {
    left: 50%;
    position: absolute;
    width: 80px;
    background: linear-gradient(90deg, rgb(216,178,166) 0%, rgb(188,148,137) 100%);
    height: 4px;
    transform: translateX(-50%);
    bottom: -15px;
    content: "";
}

.testimonials .testimonials-hub {
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    position: relative;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
    z-index: 1;
    border-radius: 8px;
    padding: 2rem;
}

.testimonials .testimonials-hub:hover {
    transform: translateY(-10px) translateZ(30px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonials .testimonials-hub:hover::before {
    transform: scaleX(1);
}

.testimonials .testimonials-hub img {
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 60px;
    height: 60px;
    border: 3px solid #ffffff;
    object-fit: cover;
}

.testimonials .testimonials-hub:hover h4 {
    transform: translateX(5px);
    color: rgb(216,178,166);
}

.testimonials .description::before {
    content: "";
    opacity: 0.3;
    line-height: 1;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: -1;
    color: rgb(188,148,137,0.5);
    font-size: 80px;
    left: -10px;
    top: -35px;
    position: absolute;
}

.testimonials a::before {
    top: 0;
    width: 100%;
    transition: left 0.6s ease;
    left: -100%;
    z-index: -1;
    content: "";
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.testimonials a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonials a:hover::before {
    left: 100%;
}

.program-overview {
    display: grid;
    grid-template-rows: 1fr;
    background-color: rgb(243,209,200);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    grid-template-columns: 1fr 1fr;
}

.program-overview .skill-path::before {
    background: linear-gradient(90deg, 
                rgba(0, 0, 0, 0.6) 70%,
                transparent 100%);
    z-index: 5;
    height: 100%;
    left: 0;
    width: 100%;
    position: absolute;
    content: '';
    top: 0;
}

.program-overview .knowledge-base {
    position: relative;
    height: 100%;
    width: 20%;
}

.program-overview .knowledge-base {
    width: 16.6667%;
}

.program-overview .knowledge-base:hover img {
    transform: scale(1.05);
}

.program-overview .story-tl {
    margin-right: 5%;
    width: 55%;
    position: relative;
    padding: 0;
}

.program-overview .fast-development {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    position: relative;
    width: 100%;
    padding: 3.5rem;
}

.program-overview .fast-development::after {
    width: 5px;
    position: absolute;
    content: '';
    top: 0;
    height: 100%;
    left: 0;
    background: linear-gradient(to bottom,
                rgb(216,178,166) 0%,
                rgb(188,148,137) 100%);
}

.program-overview .fast-development h3::after {
    bottom: -0.5rem;
    width: 50px;
    background-color: rgb(188,148,137);
    left: 1.5rem;
    position: absolute;
    content: '';
    height: 3px;
}

.program-overview .fast-development p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 13px;
    padding-left: 1.5rem;
}

.program-overview .fast-development .feedback-card::before {
    width: 100%;
    top: 0;
    transition: all 0.3s ease;
    z-index: -1;
    height: 100%;
    background-color: rgb(216,178,166);
    position: absolute;
    left: -100%;
    content: '';
}

.program-overview .fast-development .feedback-card:hover {
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(rgb(216,178,166), 0.3);
    transform: translateY(-2px);
}

.program-overview .fast-development .feedback-card:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(rgb(216,178,166), 0.2);
}

.story-spot .support-request {
    background-color: rgb(216,178,166);
    padding: 3rem 1.5rem 5rem;
    position: relative;
    margin-bottom: -2rem;
    z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}

.story-spot .info_item {
    position: relative;
    transition: transform 0.3s ease;
    padding: 0.5rem 1rem;
}

.story-spot .info_item:hover {
    transform: translateX(10px);
}

.story-spot .info_item svg {
    width: 20px;
    transition: transform 0.3s ease;
    height: 20px;
    fill: #ffffff;
}

.story-spot .info_item:hover svg {
    transform: scale(1.2);
}

.story-spot .head-info {
    background-color: rgb(188,148,137);
    padding: 4rem 2rem 3rem;
    z-index: 4;
    display: flex;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
    gap: 1.5rem;
    flex-direction: column;
    position: relative;
}

.story-spot .math-tools {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.story-spot .top-teach::before {
    width: 100%;
    content: '';
    top: 0;
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    z-index: -1;
    left: 0;
}

.story-spot .top-teach h5::after {
    height: 3px;
    background-color: rgb(216,178,166);
    width: 40px;
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
}

.story-spot .nav-lead:not(:last-child) {
    margin-bottom: 1rem;
}

.story-spot .nav-lead a::before {
    bottom: 0;
    background-color: rgb(216,178,166);
    height: 2px;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
    content: '';
    left: 0;
}

.story-spot .nav-lead a:hover::before {
    width: 30px;
}

.story-spot .subscribe_holder::before {
    width: 100%;
    left: 0;
    z-index: -1;
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.story-spot .input_holder {
    gap: 1rem;
    flex-direction: column;
    display: flex;
}

.story-spot .input_holder input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 17px;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.story-spot .updates-list {
    transition: all 0.3s ease;
    background-color: rgb(216,178,166);
    font-weight: 600;
    padding: 1rem 1.25rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    border: none;
    color: #ffffff;
    border-radius: 10px;
}

.story-spot .updates-list:hover::before {
    left: 100%;
}

.story-spot .discord-cta::before {
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    z-index: -1;
    width: 100%;
    content: '';
}

header .top_plank {
    color:  #ffffff;
    background: rgb(216,178,166);
}

header .top_plank .nav-row div svg, header .top_plank .nav-row div svg path {
    fill: #ffffff;
}

header .top_plank .nav-row div {
    justify-content: flex-start;
    display: flex;
    margin-right: 24px;
    align-items: center;
}

header .top_plank .nav-row div img, header .top_plank .nav-row div svg {
    height: 16px;
    width: 16px;
    margin-right: 8px;
}


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


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media (max-width: 992px) {.program-results {
    padding: 80px 0;
}.program-results .story-tl {
    gap: 30px;
}.program-results .text-card-wrap {
    padding: 30px;
}
}



@media (max-width: 576px) {.program-results {
    padding: 60px 0;
}.program-results .story-tl {
    gap: 30px;
}.program-results .image-section {
    max-height: 250px;
}.program-results .text-card-wrap {
    padding: 25px 20px;
}.program-results h3 {
    font-size: 20px;
    margin-bottom: 25px;
}.program-results h3::before {
    display: none;
}.program-results li {
    padding: 15px;
}.program-results li p {
    font-size: 15px;
    gap: 12px;
}.program-results svg {
    width: 22px;
    padding: 3px;
    height: 22px;
}}



@media screen and (max-width: 768px) {.contact-form-section {
    padding: 60px 0;
}.contact-form-section h3 {
    font-size: calc(34px - 4px);
}.help-card .support-panel,
    .help-card .support-help {
    padding: 30px;
}.help-card .support-panel h3,
    .help-card .support-help h4 {
    font-size: calc(18px - 2px);
}.help-card .support-panel input[type="text"],
    .help-card .support-panel textarea {
    padding: 12px 15px;
}.help-card .support-panel .feedback-card {
    text-align: center;
    width: 100%;
}
}



@media (min-width: 768px) {.our-background {
    padding: 140px 0 120px;
}.our-background h4 {
    font-size: calc(20px * 1.4);
    margin-bottom: 60px;
}.our-background h4::before {
    width: 80px;
}.our-background .text-card-wrap {
    padding: 60px;
    border-radius: 4px;
}.our-background .text-card-wrap span {
    column-count: 2;
}
}



@media (min-width: 1200px) {.our-background {
    padding: 180px 0 160px;
}.our-background .container {
    max-width: 1400px;
}.our-background .text-card-wrap {
    padding: 80px;
}.our-background .text-card-wrap span {
    column-count: 2;
    column-gap: 60px;
}
}



@media (max-width: 767px) {.our-background {
    padding: 80px 0 60px;
}.our-background h4 {
    margin-bottom: 30px;
    font-size: 20px;
}.our-background .text-card-wrap {
    padding: 30px;
}.our-background .text-card-wrap h6 {
    margin-bottom: 20px;
    font-size: 20px;
}.our-background .text-card-wrap span {
    line-height: 1.7;
    font-size: calc(16px * 0.95);
}
}



@media (max-width: 991px) {header {
    padding: 1.2rem 0;
}header .nav-know svg {
    width: 160px;
}header .top-teach {
    padding: 0.7rem;
}header .top-wrap {
    padding: 0.5rem 1rem;
    font-size: calc(16px - 1px);
}
}



@media (max-width: 480px) {header {
    padding: 0.8rem 0;
}header .top-navbar {
    gap: 0.8rem;
}header .nav-know svg {
    width: 120px;
}header .top-teach {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem;
}header .top-teach::-webkit-scrollbar {
    height: 3px;
}header .top-teach::-webkit-scrollbar-thumb {
    background: rgb(216,178,166);
    border-radius: 10px;
}header .top-wrap {
    font-size: calc(16px - 2px);
    flex-shrink: 0;
    padding: 0.4rem 0.7rem;
    white-space: nowrap;
}}



@media (max-width: 768px) {.leadership-profile {
    padding: 60px 0;
}.leadership-profile .testimonials-hub {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    grid-template-areas: 
            "image-section"
            "name"
            "experience-tasks"
            "work-box";
}.leadership-profile .image-section {
    height: 180px;
    margin: 0 auto;
    width: 80%;
}.leadership-profile .name,
    .leadership-profile .testimonials-hub span:not(.name) {
    text-align: center;
    transform: translateX(0);
}.leadership-profile .work-box {
    padding: 15px;
}}



@media (max-width: 767px) {.welcome-section .story-tl {
    height: 80vh;
}.welcome-section .text-card-wrap {
    bottom: 50px;
}.welcome-section .text-card-wrap .container {
    padding: 25px;
    margin: 0 15px;
}.welcome-section .text-card-wrap h1 {
    font-size: calc(48px * 0.85);
    margin-bottom: 10px;
}.welcome-section .text-card-wrap h3 {
    font-size: calc(18px * 0.85);
    margin-bottom: 15px;
}.welcome-section .text-card-wrap p {
    font-size: calc(15px * 0.9);
}.welcome-section .edu-page {
    bottom: 15px;
    gap: 10px;
}.welcome-section .edu-page label {
    width: 25px;
    height: 4px;
}.welcome-section .edu-title input:checked ~ .edu-page label {
    width: 35px;
}
}



@media (min-width: 768px) {.appSection {
    padding: 8rem 0;
}.appSection .story-tl {
    align-items: start;
    grid-template-columns: 1fr 1.5fr;
    padding: 4rem;
    gap: 3rem;
}.appSection h5 {
    font-size: calc(19px * 1.2);
    padding-bottom: 1.5rem;
}.appSection p {
    font-size: calc(12px * 1.05);
    line-height: 1.8;
}.appSection::before {
    background-size: 30px 30px;
}
}



@media (max-width: 480px) {.appSection {
    padding: 3rem 0;
}.appSection .story-tl {
    padding: 2rem 1.5rem;
}.appSection h5 {
    font-size: calc(19px * 0.9);
}.appSection p {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}}



@media (max-width: 991px) {.join-our-mailing-list {
    padding: 3rem 0;
}.join-our-mailing-list .story-tl {
    transform: perspective(1000px) rotateY(-1deg);
    padding: 2.5rem;
}.join-our-mailing-list h3 {
    max-width: 100%;
    font-size: 20px;
}
}



@media (max-width: 480px) {.join-our-mailing-list {
    padding: 2rem 0;
}.join-our-mailing-list .story-tl {
    gap: 1.5rem;
    padding: 1.5rem;
}.join-our-mailing-list h3 {
    font-size: 20px;
}.join-our-mailing-list .container {
    padding: 0 1rem;
}.join-our-mailing-list .sub-alerts {
    font-size: calc(13px * 0.9);
}.join-our-mailing-list .updates-list {
    font-size: calc(16px * 0.9);
}}



@media (min-width: 768px) {.membership-plan .price-options {
    grid-template-columns: repeat(2, 1fr);
}.membership-plan .value-rates {
    margin-bottom: 60px;
}.membership-plan .value-plan h3 {
    font-size: 24px;
}.membership-plan .learn-packs {
    font-size: calc(24px + 2px);
}.membership-plan .value-plan p {
    font-size: calc(17px - 1px);
}
}



@media (min-width: 1200px) {.membership-plan .price-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.membership-plan .premium-plan {
    min-height: 500px;
}.membership-plan .image-section {
    height: 220px;
}.membership-plan .value-plan h3 {
    font-size: calc(24px + 2px);
}.membership-plan .learn-packs {
    font-size: calc(24px + 6px);
}}



@media (max-width: 768px) {.testimonials {
    padding: 4rem 0;
}.testimonials .container {
    padding: 0 1.5rem;
}.testimonials .rating-showcase {
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.testimonials h2 {
    font-size: calc(31px * 0.85);
    margin-bottom: 2.5rem;
}.testimonials .testimonials-hub {
    padding: 1.8rem;
}
}



@media (prefers-reduced-motion: reduce) {.testimonials .testimonials-hub,
    .testimonials .testimonials-hub::before,
    .testimonials .testimonials-hub img,
    .testimonials .testimonials-hub h4,
    .testimonials .description::before,
    .testimonials a,
    .testimonials a::before {
    transition: none;
}}



@media (max-width: 480px) {.program-overview .skill-path {
    height: 300px;
}.program-overview .fast-development {
    padding: 2rem 1.5rem;
}.program-overview .fast-development h3 {
    padding-left: 1rem;
}.program-overview .fast-development p {
    padding-left: 1rem;
}.program-overview .fast-development .feedback-card {
    margin-left: 1rem;
}}



@media (max-width: 1200px) {.story-spot .support-request {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}.story-spot .text_main_holder {
    grid-template-columns: 1fr 1.5fr;
}.story-spot .subscribe_holder {
    grid-column: 1 / -1;
}
}



@media (max-width: 768px) {.story-spot .support-request {
    margin-bottom: 0;
    padding: 2.5rem 1.5rem 3rem;
    clip-path: none;
    grid-template-columns: 1fr;
}.story-spot .nav-lead {
    grid-template-columns: 1fr;
}.story-spot .top-teach h5,
    .story-spot .subscribe_holder h5 {
    display: block;
    text-align: center;
}.story-spot .top-teach h5::after {
    transform: translateX(-50%);
    left: 50%;
}.story-spot .subscribe_holder p {
    text-align: center;
}
}

@keyframes glow_scrollbar { 0% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } 50% { box-shadow: 0 0 15px rgba(0,0,0,0.5); } 100% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } }

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



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



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



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


    
    @keyframes carousel-slide {
        0%, 12% {
            transform: translateX(0);
        }
        16%, 28% {
            transform: translateX(-16.6667%);
        }
        32%, 44% {
            transform: translateX(-33.3334%);
        }
        48%, 60% {
            transform: translateX(-50%);
        }
        64%, 76% {
            transform: translateX(-66.6667%);
        }
        80%, 92% {
            transform: translateX(-83.3334%);
        }
        100% {
            transform: translateX(0);
        }
    }

