/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.my-15 {
    margin: 15px 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.dflex {
    display: flex;
}

.jc-center {
    justify-content: center;
}

.form-title {
    margin: 0;
    padding: 20px 0;
}

.section-padding {
    padding: 25px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}
ul.list-block {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.list-block li {
    margin-bottom: 5px;
}
.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    text-align: center;
}

.btn-primary {
    background-color: #3498db;
    border-color: #2980b9;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2472a4;
}

/* Header Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 24px;
}

.navbar-default {
    background-color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-section {
    background-image: url('../img/banner1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.banner-section {
    background-image: url('../img/banner1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.banner-section .breadcrumb {
    background-color: transparent !important;
    margin-bottom: 0
}

.banner-section .hero-title {
    margin-bottom: 0;
    margin-top: 40px;
}

.banner-section .breadcrumb li a {
    color: #fff !important;
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 30px 15px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 50px;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background-color: #f5f7fa;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

/* Solution Section */
.solution-card {
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.solution-card.education {
    border-top: 4px solid #3498db;
}

.solution-card.business {
    border-top: 4px solid #e74c3c;
}

.solution-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-item {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.solution-item:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #2ecc71;
}

/* Pricing Section */
.pricing-section {
    background-color: #f5f7fa;
    padding: 60px 0;
}

.pricing-card {
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3498db;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Process Section */
.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15%;
    width: 30%;
    height: 2px;
    background-color: #3498db;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.panel-heading {
    padding: 15px 20px;
}

.panel-title {
    font-size: 16px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #bdc3c7;
}


.chart-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.chart-subtitle {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.legend {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 3px;
}

/* Thêm style mới để giới hạn chiều cao */
#effectChartContainer {
    height: 200px;
    margin-bottom: 20px;
}

/* Bảng giá */

/* Tabs */
.tabs-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.tabs-btn a {
    padding: 12px 30px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tabs-btn a.active {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.tabs-btn a:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Tab Content */
.tabContainer {
    position: relative;
}

.Tabcondent {
    display: none;
    animation: fadeIn 0.5s ease;
}

.Tabcondent.active {
    display: block;
}
.btn-success {
    color: #fff !important;
}
.btn-action {
 padding: 5px 25px !important;
    margin-top: 9px !important;
}
.btn-rouded {
    border-radius: 20px;
}
.btn-middel {
    border-radius: 0;
}
.btn-first{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-last{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading */
.sec-heding {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.sec-heding span {
    color: #6c5ce7;
    position: relative;
}

.sec-heding span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, transparent);
    border-radius: 3px;
}

/* Sub Heading */
.sub-heding {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: black;
}

/* Pricing Cards */
.team-page-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

.plan-body {
    background: aqua;
    border-radius: 15px;
    padding: 20px 20px 50px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 0;
    max-width: 360px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.plan-body.hightlight {
    background-color: orange;
    color: #fff;
}

.plan-body:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #6c5ce7;
}

.plan-header {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.plain-greiesd-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    z-index: 0;
}

.plan-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

span.sale_price {
    text-decoration: line-through;
    font-size: 18px;
    color: gray;
}

span.sale {
    position: absolute;
    top: 0;
    right: 0;
    background-color: green;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
    color: #6c5ce7;
    position: relative;
    z-index: 1;
}

.plan-body.hightlight .plan-price {
    color: #fff;
}

.plan-price sub {
    font-size: 24px;
    font-weight: 400;
    color: rgba(15, 7, 7, 0.7);
}

.basicLevelPro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.plan-body ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.plan-body ul li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.plan-body ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6c5ce7;
    font-weight: bold;
}

/* Pricing Button */
.pricing-btn {
    text-align: center;
    position: absolute;
    bottom: 20px;
    /* left: 50%; */
    transform: translateX(25%);
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
    z-index: 1;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.button span:not(.hoverEffect) {
    position: relative;
    z-index: 2;
}

.hoverEffect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hoverEffect span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button:hover .hoverEffect span {
    opacity: 0.8;
}


.equal-height>[class*="col-"] {
    display: flex;
}

.plain-box {
    width: 100%;
    /* Đảm bảo nội dung chiếm đủ chiều rộng */
    /* Thêm các style khác nếu cần */
}

/* Register Page Styles */
.register-form {
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 500px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.register-form .logo-img {
    max-height: 80px;
    margin-bottom: 1.5rem;
}

.register-form h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.register-form .form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s;
}

.register-form .form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.register-form .btn-primary {
    background-color: #4a90e2;
    border: none;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
}

.register-form .btn-primary:hover {
    background-color: #3a7bc8;
    transform: translateY(-2px);
}

.register-form .text-center a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.register-form .text-center a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .team-page-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plan-body {
        min-width: 100%;
        max-width: none;
    }

    .sec-heding {
        font-size: 36px;
    }

    .sub-heding {
        font-size: 16px;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .process-step:not(:last-child):after {
        display: none;
    }

    .process-step {
        margin-bottom: 30px;
    }

    .section-eight {
        padding: 60px 0;
    }

    .sec-heding {
        font-size: 30px;
    }

    .tabs-btn {
        flex-direction: column;
        align-items: center;
    }

    .tabs-btn a {
        margin: 5px 0;
        width: 200px;
        text-align: center;
    }

    .register-form {
        padding: 1.5rem;
    }

    .register-form .logo-img {
        max-height: 60px;
    }
    .btn-rouded {
        border-radius: 0;
    }
}