
img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #6b46c1, #a3bffa);
    z-index: 1000;
    padding: 20px 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2rem;
    color: #fff;
    animation: fadeIn 1s ease-in;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.nav-links a:hover {
    color: #1a1a1a;
    transform: translateY(-3px);
}
.burger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}
.section {
    padding: 80px 0;
}
.section-top{
    padding-top: 130px;
}
h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}
.section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.section ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}
.section ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.hero {
    height: 100vh;
    max-height: 1200px;
    display: flex;
    align-items: center;
    background: url('image/banner.webp') center/cover no-repeat;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    animation: slideUp 1s ease-out;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #6b46c1;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 15px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
    transform: scale(1.1);
    background: #a3bffa;
    box-shadow: 0 0 20px rgba(107, 70, 193, 0.5);
}
.image-text {
    display: flex;
    gap: 40px;
    align-items: center;
}
.image-text img {
    max-width: 50%;
    border-radius: 10px;
    animation: slideInRight 1s ease-out;
}
.text-image {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: slideInLeft 1s ease-out;
}
.text-image img {
    max-width: 40%;
    border-radius: 10px;
}
.text-image.reverse {
    flex-direction: row-reverse;
}
.slider-container {
    position: relative;
    overflow: hidden;
}
.slider {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.slider-text {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 40%;
    animation: slideInLeft 1s ease-out;
}
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.slider-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.slider-nav button.active {
    opacity: 1;
    background: #6b46c1;
}
.why-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.why-works-card {
    background: #f7fafc;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.why-works-card i {
    font-size: 2rem;
    color: #6b46c1;
    margin-bottom: 10px;
}
.accordion {
    margin: 40px 0;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.accordion-header:hover {
    background: #f7fafc;
}
.accordion-content {
    display: none;
    padding: 20px;
    animation: slideDown 0.5s ease;
}
.accordion-item.active .accordion-content {
    display: block;
}
.learning-reimagined, .why-worldspeak {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.learning-item, .why-item {
    background: #f7fafc;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.learning-item img, .why-item img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}
.parallax {
    background: url('image/parallax.webp') center/cover fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
}
.parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.parallax-content {
    position: relative;
    z-index: 1;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #6b46c1;
}
.contact-form label{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.contact-form label input{
    width: auto;
    margin: 0;
}
.contact-form button {
    background: #6b46c1;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.contact-form button:hover {
    background: #a3bffa;
    transform: scale(1.05);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.feature-card {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.feature-card i {
    font-size: 2rem;
    color: #6b46c1;
    margin-bottom: 10px;
}
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 4px;
    height: 70%;
    background: #6b46c1;
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item.left {
    justify-content: flex-start;
}
.timeline-item.right {
    justify-content: flex-end;
}
.timeline-content {
    width: 45%;
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    animation: slideInRight 1s ease-out;
}
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #6b46c1;
    border-radius: 50%;
    transform: translateY(-50%);
}
.timeline-item.left .timeline-content::before {
    right: -30px;
}
.timeline-item.right .timeline-content::before {
    left: -30px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.stat-item {
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: #6b46c1;
}
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.course-card {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.course-card .btn {
    padding: 12px 25px;
}
.learning-path {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.path-item {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.path-item img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}
.testimonial-block {
    background: #6b46c1;
    color: #fff;
    text-align: center;
}
.faq {
    margin: 40px 0;
}
.faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-header:hover {
    background: #f7fafc;
}
.faq-content {
    display: none;
    padding: 20px;
    animation: slideDown 0.5s ease;
}
.faq-item.active .faq-content {
    display: block;
}
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}
.comparison-item {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
}
.comparison-item h3 {
    color: #6b46c1;
}
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.member-card {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.member-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.event-timeline {
    position: relative;
    padding: 20px 0;
}
.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    animation: slideInRight 1s ease-out;
}
.event-item.left {
    justify-content: flex-start;
}
.event-item.right {
    justify-content: flex-end;
}
.event-content {
    width: 45%;
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
}
.event-content i {
    font-size: 1.5rem;
    color: #6b46c1;
    margin-bottom: 10px;
}
.challenge-block {
    background: #6b46c1;
    color: #fff;
    text-align: center;
}
.challenge-block .btn {
    background: #a3bffa;
    color: #1a1a1a;
}
.challenge-block .btn:hover {
    background: #fff;
}
.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.connect-item {
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
}
.connect-item i {
    font-size: 2rem;
    color: #6b46c1;
    margin-bottom: 10px;
}
.thanks-page {
    background: linear-gradient(135deg, #6b46c1, #a3bffa);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.thanks-page .section {
    padding: 80px 20px;
}
.thanks-page .section h1 {
    font-size: 3rem;
    animation: fadeIn 1s ease-in;
}
.thanks-page .section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.thanks-page .btn {
    background: #fff;
    color: #6b46c1;
    font-weight: 600;
}
.thanks-page .btn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-content div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-content h3 {
    margin-bottom: 20px;
}
.footer-content a {
    color: #a3bffa;
    text-decoration: none;
}
.footer-content a:hover {
    text-decoration: underline;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 500px; opacity: 1; }
}
@media (max-width: 768px) {
    .nav-links {
        transform: translateX(100%);
        transition: transform 0.3s ease;
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        height: 100%;
        background: #6b46c1;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }
    .nav-links.active {
        transform: translateX(0%);
    }
    .burger {
        display: block;
    }
    .no-scroll {
        overflow: hidden;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .image-text, .text-image, .text-image.reverse, .path-item, .learning-item, .why-item{
        flex-direction: column;
    }
    .image-text img, .text-image img {
        max-width: 100%;
        min-height: 300px;
    }
    .event-content{
        width: 100%;
    }
    .slider-text {
        max-width: 80%;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item.left, .timeline-item.right {
        justify-content: flex-start;
    }
    .timeline-content {
        width: 80%;
    }
    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -30px;
    }
    .comparison-table {
        grid-template-columns: 1fr;
    }
    .section h1 {
        font-size: 2rem;
    }
    .section h2 {
        font-size: 1.5rem;
    }
    .thanks-page .section h1 {
        font-size: 2rem;
    }
    .thanks-page .section p {
        font-size: 1rem;
    }
    .container{
        padding: 0 10px;
    }
    .slide img{
        height: 350px;
    }
}