.nice-select {
    line-height: 22px;
}

.cta2 {
    background: linear-gradient(90deg, #1068b2 0%, #00adee 100%);
}

.contact7-iocn-hadding a {
    overflow-wrap: anywhere;
}

/* Custom Modal Styling */
.modal-content {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.text-white-80 {
    opacity: 0.9;
}

/* Form Styling */
.form-control,
.form-select {
    border: 1px solid #dee2e6;
    padding: 1rem 1rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
    transform: translateY(-1px);
}

.form-floating>label {
    padding: 1rem 1rem;
}

/* Input Group Styling */
.input-group .btn-outline-secondary {
    border-color: #dee2e6;
    background-color: #f8f9fa;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-group .btn-outline-secondary:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

/* Country Code Dropdown */
.dropdown-menu {
    min-width: 100px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Checkbox Styling */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-secondary:hover {
    transform: translateY(-1px);
}

/* Badge Styling */
.badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .btn-lg {
        padding: 0.75rem;
    }
}

/* Animation for success message */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    animation: fadeInUp 0.5s ease;
}

/* Hover effects for form elements */
.form-control:hover,
.form-select:hover {
    border-color: #adb5bd;
}

/* Loading state */
.btn-primary.loading {
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

:root {
    --primary: #4A6CF7;
    --primary-dark: #3A5CE5;
    --secondary: #FF6B6B;
    --accent: #00D4AA;
    --dark: #1E293B;
    --light: #F8FAFC;
    --gray: #64748B;
    --border: #E2E8F0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #f9fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
}

/* Header Section */
.header-section {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.1) 0%, rgba(74, 108, 247, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.content-section-2 {
    margin-top: 2rem;
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title .subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 10px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: var(--radius) 0 0 var(--radius);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    color: var(--primary);
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Table Section */
.data-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
    border: 1px solid var(--border);
}

.table-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.custom-table {
    margin-bottom: 0;
}

.custom-table thead {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.custom-table thead th {
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-table tbody td {
    border-color: var(--border);
    vertical-align: middle;
}

.custom-table tbody tr:hover {
    background-color: rgba(74, 108, 247, 0.03);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2.5rem;
    border-left: 4px solid var(--accent);
}

.highlight-box h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-box h5 i {
    color: var(--accent);
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Registration Form */
.registration-section {
    margin-bottom: 5rem;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
}

.input-group-text {
    background-color: white;
    border: 1px solid var(--border);
    border-right: none;
    padding: 0.875rem 1.25rem;
    border-radius: 10px 0 0 10px;
    font-weight: 500;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.submit-btn {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 108, 247, 0.3);
    color: white;
}

.submit-btn:active {
    transform: translateY(0);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    color: var(--gray);
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: white;
    margin-bottom: 4rem;
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Test Format Cards */
.format-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.format-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.format-card h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.format-card p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--gray);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .data-section,
    .form-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .format-cards {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 2rem 1rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 179, 227, 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.course-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 179, 227, 0.05) 0%, rgba(240, 78, 35, 0.05) 100%);
    text-align: center;
}

.course-header img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.course-body {
    padding: 2rem;
}

.course-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.course-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.course-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.course-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.course-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.course-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.btn-enroll {
    background: linear-gradient(135deg, var(--secondary) 0%, #e63e19 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: linear-gradient(135deg, #e63e19 0%, #d63714 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 78, 35, 0.3);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    border-radius: var(--radius);
    margin: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Partner Section */
.partner-section {
    background-color: var(--light);
    padding: 60px 0;
    border-radius: var(--radius);
    margin-bottom: 80px;
}

.partner-logo {
    max-height: 100px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Info Section */
.info-section {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 80px;
}

.info-content h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.info-content p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.info-content ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.info-content li {
    margin-bottom: 0.75rem;
    color: var(--gray);
}

/* Registration Form */
.registration-form {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-content li {
    margin-bottom: 0.75rem;
    color: var(--gray);
    list-style: disc;
}

.info-content ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.info-section {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 80px;
}

.input-group-text {
    background-color: white;
    border: 1px solid var(--border);
    border-right: none;
}

.info-content h4 {
    margin-bottom: 10px;
}



.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 179, 227, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 179, 227, 0.4);
    color: white;
}

/* Achievement Banner */
.achievement-banner {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.achievement-item {
    text-align: center;
    padding: 1rem;
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.achievement-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background-color: white;
}

.intro-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-content {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 179, 227, 0.05) 0%, rgba(232, 75, 55, 0.05) 100%);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--dark);
}

/* Plan Cards */
.plan-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.plan-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 179, 227, 0.05) 0%, rgba(232, 75, 55, 0.05) 100%);
    border-bottom: 1px solid var(--border);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.plan-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
    justify-content: space-between;
}

.plan-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.plan-body {
    padding: 1.5rem;
}

.plan-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.plan-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray);
}

.plan-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.plan-footer {
    padding: 1.5rem;
    background-color: var(--light);
    border-top: 1px solid var(--border);
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.btn-enroll {
    background: linear-gradient(135deg, var(--secondary) 0%, #e63e19 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: linear-gradient(135deg, #e63e19 0%, #d63714 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 78, 35, 0.3);
}

/* Mock Test Table */
.mock-test-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.mock-test-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.mock-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.mock-table th {
    background-color: var(--light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
}

.mock-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--gray);
}

.mock-table tr:hover {
    background-color: rgba(0, 179, 227, 0.03);
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
    margin: 3rem 0;
    text-align: center;
}

.special-offer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.special-offer p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-offer {
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 179, 227, 0.1) 0%, rgba(232, 75, 55, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background-color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.testimonial-score {
    color: var(--secondary);
    font-weight: 600;
}

/* IELTS Info Section */
.ielts-info-section {
    padding: 80px 0;
    background-color: var(--light);
}

.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.info-card h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.info-card ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.info-card li {
    margin-bottom: 0.75rem;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .special-offer h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .achievement-banner {
        margin-top: -20px;
    }

    .plan-card,
    .mock-test-card,
    .info-card,
    .registration-form {
        padding: 1.5rem;
    }

    .special-offer {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .plan-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .achievement-item {
        padding: 0.5rem;
    }

    .achievement-number {
        font-size: 1.5rem;
    }
}

.stat-box {
    background: #f8fcff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(0, 179, 227, 0.08);
}

.stat-icon {
    font-size: 20px;
    color: #00B3E3;
    min-width: 22px;
}

.check-icon {
    font-size: 18px;
    color: #1068b2;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s ease;
}

.stat-item.checked .check-icon {
    opacity: 1;
    transform: scale(1);
}



.stat-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.stat-subtitle {
    margin: 4px 0 0;
    font-size: 14px;
    color: #6c757d;
}
.pricing-features.clean {
    list-style: none;
}

.pricing-features.clean li {
    position: relative;
    padding: 5px;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-features.clean li:last-child {
    border-bottom: none;
}

.pricing-features li {
    font-size: 12px;
}