@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary: #cc33ff;
}

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

button {
    cursor: pointer;
    border: none;
}

li {
    list-style: none;
}

.wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

header {
    width: 100%;
    background-color: #fff;
}

.top-header {
    background-color: #f5f3ef;
}

.top-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.company-name {
    font-size: 15px;
    font-weight: 500;
}

.company-hotline {
    font-size: 15px;
    font-weight: 600;
}

.tel-hotline {
    font-weight: 400;
}

.nav-bar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    width: 130px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 14px;
}

.nav-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.search-icon {
    font-size: 20px;
    cursor: pointer;
    border-right: 2px solid #000;
    padding-right: 24px;
}

.login-button {
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 5px;
}

.login-button i {
    font-size: 20px;
}

.get-started-button {
    background-color: var(--primary);
    color: #fff;
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s;
}

.get-started-button:hover {
    background-color: #c026d3;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 75vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-1 {
    background-image: url('https://images.pexels.com/photos/380769/pexels-photo-380769.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}

.slider-2 {
    background-image: url('https://images.pexels.com/photos/6801648/pexels-photo-6801648.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.slider-3 {
    background-image: url('https://images.pexels.com/photos/1181396/pexels-photo-1181396.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}

.slide-content {
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content-box {
    position: relative;
    background-color: var(--primary);
    padding: 40px;
    max-width: 500px;
    color: #fff;
    z-index: 2;
}

.hero-tagline {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 35px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: #fff;
    color: var(--primary);
}

.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #b24de9;
    width: 25px;
    border-radius: 10px;
}

.feature {
    background-color: #f5f3ef;
    padding: 100px 0;
}

.feature-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 15px;
}

.feature-card {
    flex: 0 0 calc(33.3% - 15px);
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-icon i {
    font-size: 28px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
}

.feature-description {
    line-height: 1.5;
    font-size: 14px;
}

.about {
    background-color: #fff;
    padding: 100px 0;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.about-left {
    flex: 0 0 calc(45% - 20px);
}

.about-left img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-right {
    flex: 0 0 calc(55% - 20px);
}

.about-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-right: 15px;
}

.about-subtitle h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}


.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.about-description-highlight {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(230, 46, 205, 0.3);
}

.cta-button:hover {
    background-color: #d01bb5;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 46, 205, 0.4);
}

.stat {
    background-color: #f5f3ef;
    padding: 100px 0;
}

.stat-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    flex: 0 0 calc(33.33% - 20px);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    background-color: var(--primary);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.stat-icon i{
    color: #fff;
    font-size: 32px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.stat-text {
    font-size: 14px;
    position: relative;
}

.blog {
    background-color: #fff;
    padding: 100px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 32px;
}

.blog-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-right: 15px;
}

.blog-subtitle h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.blog-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.blog-card {
    flex: 0 0 calc(33.33% - 20px);
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-description {
    font-size: 15px;
    line-height: 1.7;
}

.benefits {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/1024248/pexels-photo-1024248.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
}

.benefit-content {
    max-width: 600px;
}

.benefit-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-right: 15px;
}

.benefit-subtitle h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.benefit-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.faq-row {
    display: flex;
    min-height: 400px;
}

.faq-left {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-right {
    flex: 1;
    background-color: var(--primary);
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.faq-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-right: 15px;
}

.faq-subtitle h3 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-description {
    margin-bottom: 35px;
    max-width: 500px;
}

.progress-wrapper {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background-color: #ff0066;
    border-radius: 4px;
    position: relative;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.accordion-container {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

.accordion-item {
    border-bottom: 1px solid #f0f0f0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-icon {
    color: #bf4bff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-content-inner {
    padding-bottom: 20px;
}

.accordion-item.active .accordion-header {
    background-color: #f9f9f9;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.faq-wrapper {
    max-width: 100% !important;
    width: 100%;
}

.pricing {
    background-color: #fff;
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-right: 15px;
}

.pricing-subtitle h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pricing-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    flex: 0 0 calc(350px - 30px);
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f4f4f4;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 20px;
}

.pricing-icon i {
    font-size: 28px;
    color: #fff;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.plan-duration {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 25px;
    display: block;
}

.plan-features {
    list-style-type: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.plan-features li::before {
    content: "•";
    color: var(--primary);
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
}

.get-started-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.get-started-btn:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.3);
}

.certificate {
    padding: 100px 0;
    background-color: #fff;
}

.certificate-header {
    margin-bottom: 50px;
    text-align: center;
}

.certificate-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.certificate-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-right: 15px;
}

.certificate-subtitle h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
}

.certicate-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.certificate-card {
    flex: 0 0 calc(50% - 30px);
}

.certificate-card img {
    width: 100%;
    height: auto;
}

.footer {
    background-color: #1c1c35;
    color: #fff;
    position: relative;
}

.newsletter-bar {
    background-color: #252547;
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-text {
    font-size: 20px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    justify-content: flex-end;
    max-width: 500px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #a82df0;
    transform: translateY(-2px);
}

.footer-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 70px 20px 40px;
}

.footer-col {
    flex: 0 0 calc(25% - 20px);
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-logo span:first-child {
    color: #4e96ff;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #bf4bff;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 18px;
    color: white;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #bf4bff;
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info i {
    margin-right: 10px;
    font-size: 18px;
    color: #bf4bff;
}

.cta-box {
    background-color: rgba(191, 75, 255, 0.1);
    border-left: 4px solid #bf4bff;
    padding: 25px;
    border-radius: 5px;
}

.cta-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #bf4bff;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-btn:hover {
    background-color: #a82df0;
    transform: translateY(-2px);
}

.bottom-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.page {
    background-image: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%), url('https://images.pexels.com/photos/1181396/pexels-photo-1181396.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}

.banner-content {
    text-align: center;
}

.page-title {
    font-size: 46px;
    font-weight: 700;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.contact {
    padding: 100px 0;
}

.contact-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.contact-card {
    flex: 0 0 calc(33.33% - 20px);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 36px;
    color: #fff;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #15264b;
}

.contact-info {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary);
}