.container {
    width: 1173px;
    margin: auto;
    max-width: 100%;
}

svg {
    width: 30px;
    height: 30px;
}

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


.learning_impact {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(145deg, rgb(182,191,205) 40%, rgba(248, 249, 250, 0.9) 100%);
}

.learning_impact .vision_mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

.learning_impact .paragraph_box h4 {
    font-size: 20px;
    margin: 0 0 30px;
    position: relative;
    color: #000000;
    font-weight: 700;
    padding-bottom: 15px;
}

.learning_impact .paragraph_box li {
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(0);
}

.learning_impact .paragraph_box p span:last-child {
    padding-top: 4px;
}

.learning_impact .paragraph_box svg path {
    transition: fill 0.3s ease;
}

.learning_impact .img_overlay {
    transition: transform 0.5s ease;
    object-fit: cover;
    transform: translateZ(0) perspective(1000px) rotateY(-5deg);
    border-radius: 10px;
    position: relative;
    box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

.education_history .student_stories {
    grid-template-rows: auto auto 1fr;
    position: relative;
    grid-template-columns: 45% 1fr;
    display: grid;
    min-height: 580px;
    gap: 20px 30px;
    background: transparent;
    grid-template-areas:
        "photo name"
        "photo job"
        "photo quote";
}

.education_history .student_stories:hover .img_overlay {
    transform: scale(1.02);
    filter: contrast(1.2) brightness(1.1);
}

.education_history .img_overlay::before {
    z-index: 3;
    position: absolute;
    left: 0;
    width: 10px;
    background: rgb(130,150,181);
    animation: pulseOpacity 3s ease-in-out infinite;
    content: "";
    height: 100%;
    opacity: 0.7;
    top: 0;
}

.education_history .student_stories:hover span:not(.name) {
    transform: translateX(15px);
    background: rgba(0, 0, 0, 0.3);
}

.education_history .container::after {
    content: "";
    animation: pulseGlow 10s ease-in-out infinite alternate;
    z-index: -1;
    bottom: -150px;
    right: -150px;
    height: 300px;
    filter: blur(70px);
    width: 300px;
    position: absolute;
    opacity: 0.3;
    background: radial-gradient(circle, rgb(74,103,161,0.5) 0%, transparent 70%);
}

.start_now .container {
    position: relative;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
    transform: perspective(1000px) rotateX(2deg);
    display: grid;
    gap: 3rem;
    z-index: 2;
    transform-origin: center bottom;
}

.start_now .container > div {
    justify-content: center;
    position: relative;
    display: flex;
    align-items: center;
}

.start_now .container > div span {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform: translateZ(40px);
    display: inline-block;
}

.start_now .support_feedback::before {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    content: "";
    z-index: 1;
    position: absolute;
    height: 100%;
    top: 0;
    transform: translateX(-100%);
    left: 0;
    background: linear-gradient(135deg, transparent 20%, rgba(255, 255, 255, 0.2) 40%, transparent 60%);
}

.future_learners .vision_mission {
    padding: 0 30px;
    max-width: 1200px;
    z-index: 10;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.future_learners ul {
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.future_learners ul li {
    position: relative;
    padding: 35px 30px;
    border-radius: 20px;
    gap: 20px;
    width: calc(33.333% - 24px);
    background-color: #edf0f8;
    display: flex;
    box-shadow: 
        10px 10px 20px rgba(166, 180, 208, 0.5),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
    text-align: left;
    min-width: 280px;
    align-items: flex-start;
    transition: all 0.4s ease;
}



.future_learners ul li {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.future_learners ul li:nth-child(3) {
    animation-delay: 0.3s;
}

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

footer .qna_board {
    position: relative;
    z-index: 1;
}

footer .info_item {
    display: flex;
    transition: all 0.3s ease;
    flex: 1 1 250px;
    justify-content: flex-start;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    position: relative;
    padding: 25px;
}

footer .info_item svg {
    width: 22px;
    fill: rgb(130,150,181);
    margin-right: 15px;
    flex-shrink: 0;
    height: 22px;
}

footer .head_learn svg {
    height: 45px;
    margin-bottom: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

footer .site_navbar {
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 20px;
}

footer .site_navbar a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    background-color: rgb(130,150,181);
}

footer .subscribe_holder p {
    margin-bottom: 25px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

footer .input_holder input[type="email"] {
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: rgb(74,103,161);
    font-size: 17px;
    padding: 15px;
    border-radius: 10px;
    border: none;
}

footer .join_us:hover {
    background-color: rgb(74,103,161);
}

footer .webinar_cta {
    padding-top: 20px;
    text-align: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.thanksHub::before {
    position: absolute;
    animation: movePattern 40s linear infinite;
    height: 100%;
    top: 0;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(74,103,161,0.5) 49.5%, rgb(74,103,161,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(74,103,161,0.5) 49.5%, rgb(74,103,161,0.5) 50.5%, transparent 50.5%);
    opacity: 0.2;
    z-index: 1;
    left: 0;
    width: 100%;
    content: "";
    background-size: 60px 60px;
}

.thanksHub ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.thanksHub li::before {
    left: 0;
    transform: rotate(45deg);
    position: absolute;
    width: 8px;
    animation: pulse 3s infinite;
    background: rgb(130,150,181);
    top: 8px;
    content: "";
    opacity: 0.9;
    height: 8px;
}

.title_welcome .edu_begin {
    position: relative;
    gap: 2.5rem;
    margin: 0 auto;
    transform: translateY(-2%);
    z-index: 10;
    max-width: 1200px;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
}

.title_welcome .edu_begin > div:last-child {
    position: relative;
    transform: translateX(5%);
    opacity: 0;
    animation: slideInRight 1s forwards 0.6s ease-out;
}

.title_welcome h1::after {
    content: "";
    transform-origin: left center;
    animation: expandLine 1.2s forwards 1s ease-in-out;
    background: rgb(74,103,161);
    transform: scaleX(0);
    left: 0;
    width: 80px;
    bottom: -0.5rem;
    height: 4px;
    position: absolute;
}

.title_welcome .skill_mastery > div::before {
    z-index: 1;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    inset: 0;
    position: absolute;
}

.our_mission {
    padding: 120px 0;
    background: linear-gradient(145deg, rgb(182,191,205) 30%, rgba(rgb(130,150,181,0.5), 0.05) 100%);
    overflow: hidden;
    position: relative;
}

.our_mission h1::after {
    width: 80px;
    left: 0;
    bottom: -12px;
    background: rgb(130,150,181);
    animation: expandLine 0.6s ease-out forwards 1s;
    content: "";
    transform-origin: left;
    transform: scaleX(0);
    position: absolute;
    height: 4px;
}

.our_mission .edu_ethos::before {
    left: 0;
    width: 4px;
    transform: scaleY(0);
    background: linear-gradient(to bottom, rgb(130,150,181), rgb(74,103,161));
    content: "";
    height: 100%;
    position: absolute;
    animation: expandHeight 0.6s ease-out forwards 1.2s;
    top: 0;
    transform-origin: top;
}

.privacy_panel h1 {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 40px;
    color: rgb(130,150,181);
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(130,150,181);
}

.privacy_panel ul li {
    position: relative;
    font-size: 17px;
    padding-left: 30px;
    margin-bottom: 10px;
}

.privacy_panel span {
    font-weight: 600;
    color: rgb(130,150,181);
}

.statistical_details::before {
    left: 0;
    top: 0;
    content: "";
    animation: gradientShift 15s infinite alternate;
    width: 100%;
    opacity: 0.4;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgb(130,150,181,0.5) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgb(74,103,161,0.5) 0%, transparent 30%);
    height: 100%;
    position: absolute;
}

.statistical_details .study_gain:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.statistical_details .benefits_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.statistical_details .benefits_block:hover::before {
    transform: scaleX(1);
}

.statistical_details .benefits_block h4::after {
    content: "";
    border-radius: 2px;
    bottom: -5px;
    transform: translateX(-50%);
    left: 50%;
    height: 2px;
    width: 40px;
    position: absolute;
    background: rgb(74,103,161);
}

.statistical_details .boost_experts::after {
    background: linear-gradient(90deg, rgb(130,150,181), rgb(74,103,161));
    height: 3px;
    bottom: 0;
    width: 80px;
    position: absolute;
    content: "";
    left: 0;
    border-radius: 3px;
}

.statistical_details svg:hover {
    fill: rgb(74,103,161);
}

.user_reviews::before {
    position: absolute;
    background-image: radial-gradient(circle at 20% 30%, rgb(130,150,181,0.5) 0%, transparent 70%);
    left: 0;
    opacity: 0.4;
    content: "";
    z-index: 1;
    width: 100%;
    top: 0;
    height: 100%;
}

.user_reviews h2::before {
    top: 50%;
    background: linear-gradient(to bottom, rgb(130,150,181), rgb(74,103,161));
    left: 0;
    position: absolute;
    height: 80%;
    content: "";
    width: 8px;
    transform: translateY(-50%);
}

.user_reviews .student_stories::after {
    opacity: 0.8;
    position: absolute;
    left: 0;
    background: radial-gradient(circle at 10% 10%, #ffffff 0%, transparent 70%);
    height: 100%;
    z-index: 0;
    top: 0;
    content: "";
    transition: transform 1.5s ease-out;
    width: 100%;
}

.user_reviews .student_stories:hover h4::after {
    width: 100%;
}

.user_reviews .description {
    color: #000000;
    margin: 0;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    z-index: 2;
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

.user_reviews a:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.course_offering {
    overflow: hidden;
    max-height: 900px;
    background-color: #ffffff;
    min-height: 600px;
    position: relative;
    height: 100vh;
}

.course_offering .tech_classes {
    animation: carousel-slide 30s infinite linear;
    height: 100%;
    width: 500%;
    left: 0;
    top: 0;
    display: flex;
    position: absolute;
}

.course_offering .container {
    z-index: 2;
    justify-content: flex-start;
    display: flex;
    width: 65%;
    padding-left: 0;
    position: relative;
    align-items: center;
    height: 100%;
}

.course_offering .learn_coding .support_feedback {
    font-weight: 600;
    font-size: 16px;
    z-index: 1;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 1rem 2rem;
    background: linear-gradient(to right, rgb(130,150,181), rgb(74,103,161));
}

header .nav_sitebar {
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
}

header .head_main::before {
    height: 120px;
    animation: rotate 10s linear infinite;
    content: "";
    z-index: -1;
    background: 
        conic-gradient(
            transparent 0deg,
            rgb(74,103,161,0.5) 120deg,
            transparent 180deg,
            rgb(130,150,181,0.5) 240deg,
            transparent 360deg
        );
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    width: 120px;
}

header .nav_page::before {
    content: "";
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    top: 0;
    border: 1px solid transparent;
    left: 0;
    position: absolute;
    z-index: -1;
    transform: translateZ(-10px);
    height: 100%;
}

header .nav_page:hover::after {
    width: 80%;
}

.connect_form {
    position: relative;
    background: linear-gradient(
        -45deg, 
        rgb(182,191,205) 0%, 
        rgb(74,103,161,0.5) 100%
    );
    overflow: hidden;
    padding: 6rem 0;
}

.connect_form .query_help {
    flex: 0 0 55%;
    flex-direction: column;
    padding: 4rem 3rem 4rem 10%;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.connect_form .query_help h3 {
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 31px;
}

.connect_form .query_help input:not([type="checkbox"]):not([type="submit"])::after {
    background: rgb(130,150,181);
    position: absolute;
    left: 0;
    transition: width 0.3s ease;
    bottom: -2px;
    height: 2px;
    content: '';
    width: 0;
}

.connect_form .query_help .inquiry_form input[type="checkbox"]:checked::after {
    content: '✔';
    left: 50%;
    color: #ffffff;
    transform: translate(-50%, -50%);
    position: absolute;
    font-size: 0.8rem;
    top: 50%;
}

.connect_form .query_help .support_feedback::before {
    left: -50%;
    position: absolute;
    height: 200%;
    top: -50%;
    width: 200%;
    opacity: 0;
    background: linear-gradient(
        135deg, 
        transparent, 
        rgb(130,150,181,0.5), 
        transparent
    );
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    content: '';
}

.plan_list h2::after {
    width: 80px;
    position: absolute;
    content: "";
    animation: expandLine 1.2s 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    left: 50%;
    height: 3px;
    bottom: -15px;
    transform: translateX(-50%) scaleX(0);
    background: rgb(130,150,181);
}

.plan_list .class_cost li:nth-child(2) {
    animation-delay: 0.6s;
}

.plan_list .plan_cost {
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.2, 1, 0.3, 1);
    text-decoration: none;
    will-change: transform;
    color: #000000;
    display: block;
}

.plan_list .bundle_offer {
    position: relative;
    padding: 35px 30px;
}

.plan_list .bundle_offer h4 {
    color: #000000;
    transition: color 0.35s ease;
    font-size: calc(22px * 1.1);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.plan_list .plan_cost:hover .pricing_fees {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.plan_list .plan_cost:hover .pricing_fees::before {
    transform: translateX(100%);
}


@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 (min-width: 768px) {.learning_impact .vision_mission {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}.learning_impact .paragraph_box {
    padding: 50px;
}.learning_impact .paragraph_box > div {
    gap: 30px;
    display: flex;
}.learning_impact .paragraph_box > div > ul {
    flex: 1;
}.learning_impact .paragraph_box h4 {
    font-size: calc(20px * 1.1);
}
}



@media (max-width: 480px) {.learning_impact {
    padding: 60px 0;
}.learning_impact .paragraph_box {
    padding: 25px 20px;
}.learning_impact .paragraph_box h4 {
    font-size: calc(20px * 0.85);
}.learning_impact .paragraph_box p {
    font-size: calc(16px * 0.9);
}.learning_impact .paragraph_box p span:first-child {
    padding: 6px;
}.learning_impact .paragraph_box svg {
    height: 20px;
    width: 20px;
}}



@media screen and (min-width: 768px) {.start_now {
    padding: 8rem 4rem;
}.start_now .container {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}.start_now h6 {
    text-align: left;
    font-size: calc(19px * 1.5);
}.start_now .container > div {
    justify-content: flex-end;
}.start_now .container > div::before {
    transform: translateY(-50%);
    left: -2rem;
    background: linear-gradient(180deg, transparent, rgb(255, 255, 255, 0.5), transparent);
    max-height: 100px;
    height: 80%;
    top: 50%;
    width: 1px;
}
}



@media (max-width: 768px) {.future_learners ul li {
    width: 100%;
    max-width: 400px;
}
}



@media (prefers-reduced-motion: reduce) {.future_learners ul li {
    opacity: 1;
    animation: none;
}.future_learners ul li:hover {
    transform: none;
}}



@media (max-width: 767px) {footer .info_item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}footer .info_item:last-child {
    border-bottom: none;
}footer .head_teach, footer .subscribe_holder, footer .head_learn {
    padding: 20px;
}footer .webinar_cta {
    margin-top: 40px;
}
}



@media (max-width: 576px) {.thanksHub {
    padding: 50px 0;
}.thanksHub h2 {
    margin-bottom: 25px;
    font-size: calc(34px * 0.7);
}.thanksHub .vision_mission {
    padding: 20px 25px 15px;
    border-left-width: 3px;
}.thanksHub li {
    padding-left: 20px;
}.thanksHub li::before {
    top: 8px;
    height: 6px;
    width: 6px;
}.thanksHub li span {
    line-height: 1.6;
    font-size: calc(16px * 0.9);
}.thanksHub::before {
    background-size: 40px 40px;
}
}



@media (min-width: 768px) {.our_mission {
    padding: 150px 0;
}.our_mission h1 {
    font-size: calc(41px * 1.1);
    margin-bottom: 80px;
}.our_mission h1::after {
    width: 120px;
}.our_mission .skill_lab ul {
    gap: 60px;
    grid-template-columns: repeat(2, 1fr);
}.our_mission .edu_ethos {
    padding: 40px;
}.our_mission .edu_ethos:nth-child(1) {
    transform: translateY(25px) translateX(-15px) rotate(-1deg);
}.our_mission .edu_ethos:nth-child(2) {
    transform: translateY(-25px) translateX(15px) rotate(1deg);
}
}



@media (max-width: 480px) {.statistical_details {
    padding: 40px 0;
}.statistical_details .container {
    padding: 0 15px;
}.statistical_details .study_gain {
    padding: 20px;
}.statistical_details .boost_experts {
    font-size: calc(30px - 0.5rem);
}.statistical_details .statistics_advance {
    font-size: calc(18px - 0.1rem);
}}



@media screen and (max-width: 1200px) {.course_offering .container {
    width: 70%;
}.course_offering::before {
    width: 75%;
}
}



@media screen and (max-width: 768px) {.course_offering .study_route {
    height: 350px;
}.course_offering .container {
    padding: 3rem 1.5rem;
}.course_offering .learn_coding {
    padding: 2rem;
}.course_offering .learn_coding h3 {
    font-size: calc(30px * 0.9);
}
}



@media screen and (max-width: 576px) {.course_offering .study_route {
    height: 250px;
}.course_offering .container {
    padding: 2.5rem 1rem;
}.course_offering .learn_coding {
    padding: 1.5rem;
}.course_offering .learn_coding h3 {
    font-size: calc(30px * 0.8);
}.course_offering .learn_coding p {
    font-size: calc(12px * 0.9);
    margin-bottom: 1.5rem;
}.course_offering .learn_coding .support_feedback {
    padding: 0.8rem 1.5rem;
    text-align: center;
    width: 100%;
}}



@media screen and (max-width: 480px) {.connect_form .support_support {
    border-radius: 0;
}.connect_form .query_help {
    padding: 2rem 1.5rem;
}}



@media (max-width: 991px) {.plan_list {
    padding: 80px 0;
}.plan_list h2 {
    font-size: calc(36px * 0.9);
}.plan_list .premium_plan {
    margin-bottom: 50px;
    font-size: 15px;
}.plan_list .class_cost {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}.plan_list .bundle_offer {
    padding: 25px 20px;
}
}



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



@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateZ(10px) translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateZ(10px) translateY(10px);
    }
}



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



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



@keyframes expandHeight {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}



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



@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-80%);
    }
}



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

