/* Custom CSS for MYCOURSAT Website */

:root {
    --primary-color: #292984;
    --success-color: #008714;
    --warning-color: #FFC107;
    --light-bg: #F8F9FA;
    --gradient-primary: linear-gradient(135deg, #3156DE 0%, #292984 100%);
    --phi-indigo:#292984; /* primary deep indigo */
    --phi-indigo-dark:#0f1866;
    --phi-amber:#c27803;  /* star */
    --phi-muted:#516778;  /* secondary text */
    --phi-gray:#22292f;
    --phi-soft:#f9fafb;
    --phi-badge:#edf3ff;  /* paid badge bg */
    --phi-red:#dc2626;
    --phi-green:#008714;
    --phi-card:#ffffff;
    --phi-shadow: 1px 0px 25px rgba(0, 0, 0, .09);
    --phi-radius:22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
    user-select: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

/* Custom Bootstrap overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1f1f6b;
    border-color: #1f1f6b;
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: #006610;
    border-color: #006610;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background-color: #FFFFFF !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--success-color) !important;
}

.partner-logos {
    margin-top: 100px;
}

.partner-logo {
    height: 44px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1 !important;
}

/* Services Section */
.services-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-10px);
}

/* Course Cards */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.course-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Certificate Section */
.certificate-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* Instructor Cards */
.instructor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 20px;
}

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

/* Community Cards */
.community-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.community-card:hover {
    transform: translateY(-3px);
}

.community-card .card-img-top {
    height: 150px;
    object-fit: cover;
}

/* Career Cards */
.career-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 16px;
}

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

.career-icon {
    transition: transform 0.3s ease;
}

.career-card:hover .career-icon {
    transform: scale(1.1);
}

/* CTA Sections */
.instructor-cta-section .card {
    border-radius: 24px;
    overflow: hidden;
}

.mobile-app-section {
    background: linear-gradient(135deg, #fff7ef 0%, #ffe8cc 100%);
}

.footer-section a:hover {
    color: var(--warning-color) !important;
    transition: color 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1f1f6b;
}

.nav-link.active{
    color: #4CB23C !important;
    font-weight: 700;
    opacity: 1;
}

/* Registration Modal Styles */
.registration-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-xl {
    max-width: 1200px;
}

/* Progress Dots */
.progress-dot {
    width: 9px;
    height: 9px;
    border-radius: 4.5px;
    background-color: #edf3ff;
    transition: all 0.3s ease;
}

.progress-dot.active {
    width: 69px;
    border-radius: 20px;
    background-color: #292984;
}

/* Profile Picture */
.profile-picture-container {
    width: 144px;
    height: 136px;
    position: relative;
}

.profile-picture-placeholder {
    width: 137px;
    height: 137px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px dashed #dee2e6;
}

.profile-picture-placeholder:hover {
    background-color: #e9ecef;
    border-color: #292984;
}

#user_photo {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

/* Custom Form Controls */
.custom-input {
    height: 48px;
    border: 1px solid #668091;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    padding: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    border-color: #292984;
    box-shadow: 0 0 0 0.2rem rgba(41, 41, 132, 0.25);
}

.custom-textarea {
    min-height: 200px;
    border: 1px solid #668091;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-textarea:focus {
    border-color: #292984;
    box-shadow: 0 0 0 0.2rem rgba(41, 41, 132, 0.25);
}

/* Form Labels */
.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
    color: #292984;
}

/* Modal Header */
.modal-header .btn-close {
    font-size: 10px;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

/* Custom Buttons */
.btn-primary {
    background-color: #292984;
    border-color: #292984;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #1f1f6b;
    border-color: #1f1f6b;
}

.btn-outline-primary {
    border-color: #292984;
    color: #292984;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: #292984;
    border-color: #292984;
}

/* Social Login Buttons */
.btn-outline-secondary {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation for modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

.modal-label{
    font-weight: 500;
    color: #292984;
    font-size: 16px;
}

.special{
    font-weight: 500;
    font-size: 16px;
    color: #516778;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
}

.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.change-pic {
    width: 32px;
    height: 32px;
    background: url(../img/icons/edit.svg);
    position: absolute;
    right: 0;
    top: 20px;
}

.custom-radio{
    border-color: #D5DDE2;
    color: #A0B4FF;
    border-radius: 50px;
    font-weight: 500;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border-color: #292984 !important;
    background-color: #fff !important;
    color: #292984 !important;
}


.section-title {
    color: #292984;
    font-weight: bold;
    margin-top: 20px;
    font-size: 16px;
}
.tag-input {
    background-color: #EDF3FF;
    border: none;
    display: inline-flex;
    align-items: center;
    margin: 4px;
    padding: 10px;
    border-radius: 6px;
    position: relative;
}
.tag-input input {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #0F1866;
    outline: none;
}
.tag-remove {
    position: absolute;
    margin-left: 6px;
    cursor: pointer;
    top: -10px;
    right: 0;
}
.add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
}
.language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.language-item select {
    font-size: 14px;
}
.remove-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.community-card {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.community-body {
    padding: 15px;
}

.form-select.lang {
    --bs-form-select-bg-img: unset !important;
    border: none !important;
    box-shadow: unset !important;
}

.form-select.lang_level {
    --bs-form-select-bg-img: url(../img/icons/arrow.svg) !important;
    border: none !important;
    box-shadow: unset !important;
    background-color: #ECFFEF !important;
    border-radius: 40px !important;
}

.suggestions-box {
    position: absolute;
    background: white;
    z-index: 10;
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
    left: 200px;
    bottom: 0;
}

.suggestion-item {
    padding: 5px 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #f0f0f0;
}

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    position: relative;
}

.upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    color: #6c757d;
    font-size: 0.9rem;
}

.certificate-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.certificate-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

.certificate-icon .remove-btn {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #292984;
    color: white;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-upload-area {
    background-color: #ECFFEF;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-upload-area:hover {
    background-color: #d4edda;
}

.video-upload-icon {
    font-size: 3rem;
    color: #28a745;
}

.video-upload-text {
    color: #008714;
    font-weight: 400;
    font-size: 14px;
}

.social-item {
    display: grid;
    grid-template-columns: 40px 50px 1fr 2fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
}

.social-name {
    font-weight: 500;
    font-size: 16px;
    color: #22292F;
    border: 1px solid #D5DDE2;
    border-radius: 8px;
    padding: 12px;
}

.social-name i{
    width: 20px;
    height: 20px;
}

.social-url {
    flex: 1;
}

.social-select-container {
    position: relative;
}

.social-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.website-icon {
    background-color: #6c757d;
}

.linkedin-icon {
    background-color: #0077b5;
}

.twitter-icon {
    background-color: #1da1f2;
}

.youtube-icon {
    background-color: #ff0000;
}

.tiktok-icon {
    background-color: #000000;
}

.github-icon {
    background-color: #333333;
}

.privacy-text {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.privacy-link {
    color: #2c5aa0;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.facebook-icon {
    background-color: #1877f2;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.remove-social {
    background: transparent;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.add-social {
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.privacy-text {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.privacy-link {
    color: #2c5aa0;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.select2-container {
    z-index: 9999;
}

.select2-container--open {
    z-index: 9999 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    display: none !important;
}

.select2-container .select2-selection--single{
    height: 48px !important;
    border: 1px solid #668091;
    border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    padding: 12px;
    font-size: 16px;
    line-height: 0 !important;
}

.certificate-icon img{
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.community-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.community-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.community-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.community-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.community-info {
    flex: 1;
}

.community-name {
    color: #292984;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.community-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.courses-section .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 12px;
}

.courses-section .stat-item span {
    margin-left: 5px;
}

.stat-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    color: #28a745;
}

.stat-number {
    font-size: 10px;
    font-weight: 500;
    line-height: 18px;
    color: #22292F;
}

.join-btn {
    width: 100%;
    background-color: transparent;
    border: 1px solid #008714;
    color: #008714;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    margin-top: 0;
}

.join-btn:hover {
    background-color: #28a745;
    color: white;
}

.join-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.otp-illustration-side {
    background-color: #f0fbf3;
    display: flex;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.otp-illustration-side img {
    max-width: 100%;
    height: auto;
}

.otp-content-side {
    padding: 20px 50px 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.otp-content-side-2 {
    padding: 120px 50px 120px 50px;
}

.otp-content-side-3 {
    padding: 40px 20px 40px 20px;
}

.otp-content-side-4 {
    padding: 110px 20px 110px 20px;
}

.otp-title {
    color: #0f1866;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.otp-subtitle {
    color: #292984;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 1rem;
    line-height: 34px;
}

.otp-text {
    color: #516778;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 2rem;
}

.otp-inputs {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 1rem;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    color: #0f1866;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.otp-input:focus {
    border-color: #292984;
    box-shadow: 0 0 0 0.25rem rgba(41, 41, 132, 0.25);
    outline: none;
}

/* Hide number input arrows */
.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.otp-input[type=number] {
    -moz-appearance: textfield;
}

.otp-note {
    font-size: 12px;
    color: #6c757d;
    text-align: start;
    margin-bottom: 2rem;
    line-height: 18px;
}

.otp-note a {
    color: #0f1866;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary-otp {
    background-color: #292984;
    border-color: #292984;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}
.btn-primary-otp:hover {
    background-color: #0f1866;
    border-color: #0f1866;
}

.resend-section {
    margin-bottom: 1.5rem;
}
.resend-link {
    color: #292984;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
    float: right;
}

.sign-up {
    color: #292984;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
    float: right;
}

.btn-secondary-otp {
    background-color: transparent;
    border: 1px solid #ced4da;
    color: #6c757d;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
}
.btn-secondary-otp:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e9ecef;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
}

.otp-close-button{
    padding: 10px 10px 0 0;
}

.form-control.password-input.is-invalid, .was-validated .form-control.password-input:invalid{
    background-position: right calc(.375em + 1.8rem) center;
}

.forget_link{
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #292984;
    text-decoration: none;
}


/* This is to simulate the modal pop-up effect */
.modal-backdrop-custom {
    position: fixed;
    top: 55px;
    left: 750px;
    width: 100vw;
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
}

.modal-backdrop-custom.show {
    opacity: 1;
    pointer-events: auto;
}

.unlock-modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    max-width: 555px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.modal-body-custom {
    display: flex;
    /* THE KEY CHANGE: Aligning items to the top */
    align-items: flex-start;
    gap: 32px; /* Adjusted gap for precision */
}

.modal-icon-wrapper {
    flex-shrink: 0;
}

.modal-icon {
    width: 80px;
    height: 80px;
}

.modal-text-content {
    text-align: right;
    flex-grow: 1;
}

.modal-title-custom {
    color: #292984;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-description {
    color: #516778;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 16px;
}

.btn-modal {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    flex-grow: 0;
    border: none;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-modal:hover {
    transform: translateY(-2px);
}

.btn-get-started {
    background-color: #292984;
    color: #ffffff;
}
.btn-get-started:hover {
    background-color: #181864;
}

.btn-login {
    background-color: #edf3ff;
    color: #292984;
}
.btn-login:hover {
    background-color: #dbe7ff;
}

/* Main Section Styling - Based on Figma */
.services-section-figma {
    background-color: #181864;
    background-image: url(../img/service-background.svg);
    color: #ffffff;
    padding: 40px 0 70px 0;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

/* Header Typography - Matching Figma */
.section-header-figma {
    margin-bottom: 80px; /* Increased margin for more space above the staggered items */
}

.section-title-figma {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 48px;
}

.section-subtitle-figma {
    font-size: 14px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 24px;
}

/* Services Grid - Precise Spacing and Staggered Layout */
.services-grid-figma {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the top of the container */
    flex-wrap: wrap;
    gap: 60px;
}

.service-item-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

/* THE KEY CHANGE: Applying the staggered effect */
.service-item-figma:nth-child(odd) {
    /* Pushing the 2nd and 4th items down */
    transform: translateY(50px);
}

.service-icon-wrapper-figma {
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.service-item-figma:hover .service-icon-wrapper-figma {
    transform: scale(1.08);
}

/* Adjust hover effect for staggered items */
.service-item-figma:hover .service-icon-wrapper-figma {
    transform: translateY(-10px) scale(1.5);
    font-size: 12px;
}

.service-name-figma {
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
}

section{
    transition: opacity 0.5s;
}

section {
    opacity: 0;
    transition: opacity 0.8s ease;
}

section.visible {
    opacity: 1;
}

.hero-section {
    padding: 9rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -32px;
}

.hero-pattern-border {
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/header-hero.svg);
    background-repeat: repeat-x;
}

.hero-eyebrow {
    color: #008714;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 14px;
}

.hero-title {
    color: #292984;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 15px;
}

.hero-description {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    max-width: 500px;
    line-height: 24px;
    margin-bottom: 14px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-join-us {
    background-color: #008714;
    color: #ffffff;
}
.btn-join-us:hover {
    background-color: #006a10;
    color: white;
    transform: translateY(-2px);
}

.btn-see-courses {
    background-color: transparent;
    color: #008714;
    border-color: #008714;
}
.btn-see-courses:hover {
    background-color: #008714;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration img {
    max-width: 100%;
    height: auto;
}

.course-card-final {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: visible; /* Allow hover effect to show */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}
.course-card-final:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.course-image-wrapper {
    /* Applying the SVG clip-path */
    clip-path: url(#card-clip-path);
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.course-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    clip-path: url(#card-clip-path); /* Clip the overlay too */
}

.course-stats-final {
    display: flex;
    align-items: center;
    gap: 12px;
}

.courses-section .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    /* The missing background for readability */
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 12px;
}

.course-paid-tag-final {
    background-color: #0D7BBA;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.course-content-final {
    padding: 20px;
}

.course-title-final {
    font-size: 16px;
    font-weight: 700;
    color: #434343;
    margin-bottom: 8px;
    line-height: 24px;
}

.course-instructor-final {
    font-size: 14px;
    color: #6C6C6C;
    margin-bottom: 16px;
    line-height: 24px;
    font-weight: 400;
}

.course-footer-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-program-final, .course-price-final {
    direction: ltr; /* Force LTR for these specific elements */
}

.course-program-final {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}
.course-program-final img {
    width: 20px;
    height: 20px;
}
.course-program-final span {
    color: #292788;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
}

.course-price-final {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.course-price-final .old-price {
    color: #DC4949;
    line-height: 17px;
    font-size: 10px;
    font-weight: 400;
}

.course-price-final .old-price::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 45px;
    width: 20px;
    height: 0.5px;
    background: red;
    transform: rotate(-45deg);
}

.course-price-final .new-price {
    color: #292788;
    font-size: 20px;
    font-weight: 400;
    line-height: 17px;
}

.see-more-btn-container-final {
    text-align: center;
    margin-top: 20px;
}
.see-more-btn-final {
    background: transparent;
    border: 2px solid #008714;
    color: #008714;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.see-more-btn-final:hover {
    background: #008714;
    color: #ffffff;
}

.see_more{
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    border-color: #008714;
    color: #008714;
    padding: 10px 32px;
    border-radius: 8px;
    width: 335px;
    height: 48px;
}

.qualification-section {
    padding: 80px 0;
    overflow: hidden;
}


.section-title {
    color: #292984;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #516778;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.swiper {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
    overflow: visible;
}

.swiper-slide {
    border-radius: 24px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.4;
    transform: scale(0.85);
}

.swiper-slide-active {
    opacity: 1;
}

.slide-content {
    background: url(../img/swiper_background.svg) no-repeat;
    background-size: 100% 100%;
    position: relative;
    width: 1005px;
    height: 361px;
    border-radius: 24px;
    color: #ffffff;
    padding: 40px 30px 40px 30px;
}

.slide-text-content {
    padding: 60px;
    width: 85%;
    position: relative;
}

.slide-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 48px;
}

.slide-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.slide-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-description {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 400;
    opacity: 0.9;
}

.slide-button {
    background-color: #ffffff;
    color: #292984;
    border: none;
    padding: 9.18px;
    border-radius: 7.35px;
    font-weight: 700;
    width: 185px;
    height: 48px;
    font-size: 12.85px;
    line-height: 22.04px;
}


.slide-illustration img {
    width: 227.4px;
    height: 224px;
}

/* THE KEY CHANGE: Custom Pagination Styling */
.swiper-pagination {
    bottom: 10px !important;
    text-align: start !important;
    left: 191px !important;
    top: unset !important;
}

.swiper-pagination-bullet {
    width: 13px !important;
    height: 9px !important;
    border-radius: 10px !important;
    background-color: #FFFFFF !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: #FFFFFF !important;
    margin: 0 5px;
    width: 120px !important;
    height: 9.1px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.sub-title{
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px;
}

.main-title{
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #292984;
}

.swiper-wrapper {
    box-sizing: border-box;
    padding: 0; /* أزل الـ 10% اللي كانت بتقص وتزود الفراغ */
}

.slide-illustration{
    position: relative;
    bottom: 10px;
    right: 30px;
}

/* --- Section 1: Discover Community (Carousel Final Version) --- */
.discover-community-section {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.btn-outline-green {
    background: transparent;
    border: 2px solid #008714;
    color: #008714;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-green:hover {
    background: #008714;
    color: #ffffff;
}

/* Carousel Slider (Coverflow) */
.swiper-carousel {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-carousel .swiper-slide {
    width: 341.5px;
    height: 341.5px;
    border-radius: 14.59px;
    overflow: hidden;
}

.swiper-carousel .swiper-slide .slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.swiper-carousel .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 341.5px;
    height: 341.5px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* THE KEY CHANGE: Vertical title container with gradient */
.swiper-carousel .slide-title-container {
    position: absolute;
    left: -95.58px;
    top: 88px;
    width: 348.5px;
    height: 157.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: rotate(90deg);
    transform-origin: center;
    background: linear-gradient(180deg, rgba(49, 86, 222, 0) 0%, #3156DE 100%);
    border-radius: 14.59px;
}

.swiper-carousel .slide-title-vertical {
    color: rgba(255, 255, 255, 0.9);
    font-size: 29.19px;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 25px;
    line-height: 49.62px;
    height: 50px;
}

.carousel-slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 80px;
}

.carousel-slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #9CAFF4;
    background-color: #fff;
    color: #9CAFF4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.carousel-slider-nav-btn:hover {
    background-color: #dbe7ff;
}

/* --- Section 2: Communities Lives (with unique classes) --- */
.lives-section { padding: 60px 0; }
.lives-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.lives-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

/* Unique nav classes for the second slider */
.lives-slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.lives-slider-nav-btn {
    width: 33.86px;
    height: 33.86px;
    border-radius: 50%;
    border: 2px solid #9CAFF4;
    background-color: #fff;
    color: #9CAFF4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.lives-slider-nav-btn:hover {
    background-color: #dbe7ff;
}

.swiper-lives { width: 100%; height: auto; padding-bottom: 20px; }
.live-card { background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; transition: box-shadow 0.3s ease; }
.live-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.live-card-image-wrapper { position: relative; }
.live-card-image { width: 100%; height: 180px; object-fit: cover; }

.live-now-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #DC4949;
    color: #ffffff;
    padding: 1px 8.3px;
    border-radius: 5.21px 10.42px 5.21px 5.21px;
    font-size: 14.75px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 27.67px;
}
.live-card-content { padding: 20px; }
.live-card-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; }
.author-name {
    font-weight: 400;
    color: #000000;
    font-size: 14px;
}
.author-role {
    font-size: 12px;
    color: #64748b;
    line-height: 20px;
}
.live-card-text {
    font-size: 14px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 16px;
    font-weight: 400;
}
.live-card-text .see-more {
    color: #3156DE;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}
.live-card-footer { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #64748b; }
.live-card-footer img {
    width: 11px;
    height: 12.3px;
}

.text-live-card-footer{
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #656565;
}

.lives-section .swiper-slide{
    opacity: 1 !important;
}

.instructors-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.instructor-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(41, 41, 132, 0.1);
}

.card-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 16px;
}

.card-rating .fa-star {
    color: #F59E0B;
    margin-right: 6px;
}

.instructor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px auto;
}

.instructor-name {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 4px;
    line-height: 34px;
}

.instructor-title {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 24px;
    line-height: 24px;
}

.instructor-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 24px;
}

.instructors-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructors-section .stat-value {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFF7ED;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #AA7B46;
    margin-bottom: 8px;
    line-height: 34px;
}

.instructors-section .stat-label {
    font-size: 12px;
    color: #6B7280;
}

.btn-book {
    width: 100%;
    padding: 10px;
    border: 1px solid #355DEE;
    color: #3B82F6;
    background-color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 16px;
    border-radius: 8px;
    line-height: 30px;
}

.btn-book:hover {
    background-color: #3B82F6;
    color: #fff;
}

.btn-see-more {
    background: transparent;
    border: 2px solid #008714;
    color: #008714;
    padding: 10px 32px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 30px;
}

.btn-see-more:hover {
    background: #008714;
    color: #ffffff;
}

.card-instructor{
    background-color: #FFF7EF;
    border-radius: 6px !important;
    border: none !important;
}

.instructor-h2{
    color: #5834C6;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: start;
}

.instructor-p{
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 24px;
    text-align: start;
}

.btn-instructor{
    background-color: #5834C6;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
}

.career-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

/* Original Figma Wave Background */
.wave-background {
    position: absolute;
    top: -125px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.wave-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.main-illustration {
    text-align: center;
    margin: 80px 0;
}

.main-illustration img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 80px 0 60px 0;
}

.feature-card {
    border-radius: 24px;
    padding: 0 0 20px 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(41, 41, 132, 0.1);
}

.feature-icon {
    position: relative;
    overflow: hidden; /* ده الأهم */
    background: url(../img/card_back.svg) no-repeat top;
    background-size: 100% 130px;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    display: block;
    max-width: 100%;
    height: auto;
}


.feature-card:hover {
    transform: translateY(-8px);
}


.feature-card:nth-of-type(1) .feature-icon img {
    margin-top: 40px;
    width: 100px;
}

.feature-card:nth-of-type(2) .feature-icon img {
    width: 250px;
}

.feature-card:nth-of-type(3) .feature-icon img {
    margin-top: 15px;
    width: 190px;
}

.feature-card:nth-of-type(4) .feature-icon img {
    margin-top: 50px;
    width: 120px;
}

.feature-card-body{
    margin-top: 20px;
    min-height: 120px;
}

.feature-title {
    color: #292984;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: #516778;
    font-size: 14px;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.btn-join {
    background: #008714;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    width: 154px;
    height: 44px;
    border: none;
    line-height: 24px;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
    filter: brightness(1.1);
}


.app-download-section{
    background: url(../img/chatting_background.svg) no-repeat;
    background-size: cover;
}

.app-download-section .app-download-section {
    background: linear-gradient(135deg, #FFF7EF 0%, #FFF3E6 100%);
    padding: 80px 0;
    min-height: 500px;
}

.app-download-section .content-wrapper {
    display: flex;
    align-items: center;
}

.app-download-section .text-content {
    flex: 1;
    padding-right: 0;
    padding-bottom: 40px;
}

.app-download-section .section-title {
    color: #292984;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 48px;
}

.app-download-section .section-description {
    color: #000000;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 500px;
}

.app-download-section .download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-download-section .download-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 160px;
    justify-content: center;
}

.app-download-section .download-btn:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.app-download-section .download-btn img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.app-download-section .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-download-section .btn-text-small {
    font-size: 10px;
    opacity: 0.8;
}

.app-download-section .btn-text-large {
    font-size: 14px;
    font-weight: 700;
}

.app-download-section .illustration-content {
    flex: 1;
    text-align: center;
    position: relative;
}

.app-download-section .illustration-content img {
    height: 410px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .app-download-section .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .app-download-section .text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .app-download-section .section-title {
        font-size: 28px;
    }

    .app-download-section .download-buttons {
        justify-content: center;
    }
}

/* Original Figma Background */
.footer {
    background: url(../img/desk_footer.svg) no-repeat;
    background-size: cover;
    color: #ffffff;
    padding: 80px 250px 40px 250px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-description {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
    max-width: 300px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #4F46E5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: #6366F1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    color: #ffffff;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Fixed: Main Links in two columns layout */
.main-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.links-column {
    display: flex;
    flex-direction: column;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Policy section - single column */
.policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-links li {
    margin-bottom: 14px;
}

.policy-links a {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.progress-wrap {
    right: 25px;
    color: white;
    position: fixed;
    left: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px white;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}
.progress-wrap input {
    z-index: 10001;
}
.progress-wrap input:checked + html {
    -ms-scroll-snap-type: unset;
    scroll-snap-type: unset;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    content: "↑";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: gray;
    left: 0;
    top: -2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
    opacity: 0;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap::before {
    position: absolute;
    content: "↑";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    -webkit-text-fill-color: #008714;
    left: 0;
    top: -2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: #008714;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.main-header{
    gap: 100px;
}

.navbar-nav {
    margin-left: 100px;
    margin-right: auto;
    gap: 8px;
}

.hero-content{
    padding-left: 7rem;
}

.head-join-btn{
    background-color: #008714;
    border-color: #008714;
    color: #fff;
    width: 97px;
    height: 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
}

.head-login-btn{
    color: #008714;
    font-size: 16px;
    font-weight: 700;
}

.qualification_slider .swiper-slide {
    width: 970px !important;
}

.qualification_slider .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.6) translateY(35px);
    z-index: 1;
    opacity: 0.4;
}

.qualification_slider .swiper-slide-active {
    z-index: 10;
    opacity: 1 !important;
}

.qualification_slider .swiper-slide-next,
.qualification_slider .swiper-slide-prev {
    transform: scale(0.95) translateY(20px);
    z-index: 2;
    opacity: 0.6 !important;
}

.qualification_slider .swiper-slide:not(.swiper-slide-next),
.qualification_slider .swiper-slide:not(.swiper-slide-prev),
.qualification_slider .swiper-slide:not(.swiper-slide-active){
    opacity: 0;
}

/* Modal sizing and shape */
.mobile-menu .modal-dialog{
    width: 329px;
    margin: 60px auto;
}

.mobile-menu .modal-content{
    height:100%;
    border:none;
    border-radius: 24px;
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(16,24,40,.12);
    display:flex;
    flex-direction:column;
}

.logo-wrap {
    user-select: none;
}

.logo-line img {
    width: 158px;
    height: 30.25px;
}

.logo-cube {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1ec153 0%, #0c8f2d 100%);
}

.logo-cube::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 4px;
    background: #fff;
}

.logo-cube::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: #2f2fb5;
}

.logo-text {
    color: #2f2fb5;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.2px;
}

.logo-tag {
    margin-left: 50px;
    margin-top: 2px;
    color: #12993a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Icons bar */
.icons-bar {
    padding: 30px 24px 0 24px;
}

.icons-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    background: rgba(133, 155, 171, 0.1);
}

.icon-cell {
    width: 69.25px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-cell + .icon-cell {
    border-left: 1px solid #E6E8EC;
}

.icon-cell i {
    font-size: 22px;
    color: #111;
}

.badge-dot {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #12993a;
    box-shadow: 0 0 0 2px #fff inset;
}

/* Nav list */
nav.menu {
    padding: 32px 24px 0 24px;
}

.menu a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
    transition: color .2s ease;
    color: #000000;
    opacity: 50%;
}

.menu a.active {
    color: #008714;
    font-weight: 700;
    opacity: 1;
}

.menu a:not(.active):hover {
    color: #008714;
}

/* Footer buttons */
.menu-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.menu-footer .btn-login{
    width: 136px;
    height: 40px;
    border-radius: 8px;
    opacity: 1;
    background-color: #E8FFEB;
    border: none;
}

.menu-footer .btn-join{
    width: 136px;
    height: 40px;
    border-radius: 8px;
    opacity: 1;
    padding: 10px 32px;
    background-color: #008714;
    border: none;
}

.header_buttons .head-login-btn{
    margin-right: 10px;
}

.btn-login {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: #EFFFF2;
    color: #12993a;
    font-weight: 700;
}

.btn-join {
    width: 154px;
    height: 44px;
    border-radius: 8px;
    border: none;
    background: #12993a;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    padding: 10px;
}

.navbar-toggler-icon{
    background-image: url(../img/icons/head_with_back.svg);
    width: 40px;
    height: 40px;
}

.navbar-toggler{
    border: none;
    padding: 0;
}
.navbar-toggler:focus{
    box-shadow: unset;
}

.rho-card {
    display: none;
}

.features-banner-container {
    background: transparent;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: sticky;
    top: 70px;
    z-index: 999;
}

.features-banner {
    background-color: #1C1C6D;
    border-radius: 19.52px;
    position: relative;
    width: 1480px;
    height: 80px;
    margin: 0 auto;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #A6A6A6;
    padding: 8px 15px;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.feature-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.35px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    color: #FFFFFF;
}

.toggle-banner-btn {
    position: absolute;
    top: 55px;
    left: 40px;
    width: 46px;
    height: 46px;
    background-color: #17A72D;
    border-radius: 50%;
    display: none;
    /*display: felx;*/
    padding-bottom: 3px;
    align-items: end;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.toggle-banner-btn:hover {
    transform: translateY(5px);
    background-color: #4CAF50;
    color: white;
}

.features-banner-container.show {
    opacity: 1;
    transform: translateY(0);
    background: transparent;
}

#discover {
    opacity: 0 !important;
}

#discover.show {
    opacity: 1 !important;
}

.features-banner-container.hidden {
    display: none !important;
}

.feature-text.active {
    opacity: 1;
}

.language_trans{
    position: absolute;
    top: 10px;
    left: 22px;
    color: #008714;
    font-size: 12px;
}


@media (max-width: 992px) {
    .features-banner-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        height: 120px;
        z-index: 1000;
    }

    .features-banner {
        position: relative;
        width: 90%;
        height: 100%;
    }

    .feature-item {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateY(20px);
        opacity: 0;
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
        text-align: center;
        width: 100%;
    }

    .feature-item.active {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
        pointer-events: auto;
    }

    .feature-icon-wrapper img {
        width: 80px;
        height: 80px;
    }

    .toggle-banner-btn {
        top: 90px;
        left: unset;
        right: 45px;
        width: 55px;
        height: 55px;
    }

    .policy-links{
        display: block;
    }

    .policy-links li{
        display: block;
    }
}

/* Tablet landscape and below */
@media (max-width: 767px) {
    html,body{
        overflow-x: hidden !important;
    }
    .main-header{
        gap: 0;
        align-items: baseline;
    }
    .header_buttons{
        margin-left: auto;
        margin-right: 10px;
    }
    .navbar{
        height: 64px;
        padding: 10px;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.06) !important;
    }
    .navbar-nav{
        margin-left: auto;
        margin-right: auto;
    }
    .modal-backdrop-custom{
        top: 350px;
        left: 0;
        width: 100%;
    }
    .hero-pattern-border{
        top: 5px;
    }
    .hero-content{
        padding-left: 0 !important;
        margin-top: 20px;

    }
    .hero-section{
        padding: 6rem 0 2rem 0 !important;
    }
    .hero-illustration{
        margin-top: 4rem;
    }
    .btn-hero{
        padding: 10px 12px;
        width: 184.7px;
        height: 48px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        line-height: 30px;
    }
    .btn-see-courses{
        font-weight: 400 !important;
    }
    .section-title-figma , .section-subtitle-figma{
        text-align: start;
    }
    .services-section-figma{
        padding: 25px 15px 25px 15px;
    }
    .col-sm-6{
        width: 50% !important;
    }
    .service-item-figma:nth-child(odd){
        transform: translate(-80px, 0) !important;
    }
    .service-item-figma:nth-child(even){
        transform: translate(80px, 0) !important;
    }
    .service-item-figma{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .service-name-figma{
        font-size: 14px;
        max-width: 100px;
    }
    .scroll-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 5px;
        padding: 0 30px 25px 10px;
    }
    .sub-title{
        padding-bottom: 0;
    }
    .scroll-row::-webkit-scrollbar {
        display: none;
    }
    .course-card-final, .scroll-row svg{
        display: none !important;
    }

    /* Course card (layout + skin) */
    .rho-card {
        display: block !important;
        position: relative;
        border-radius: var(--phi-radius);
        background: var(--phi-card);
        margin-top: 5px;
        box-shadow: rgba(100, 100, 111, 0.4) 0 0 2px 0;
        overflow: hidden;
    }

    .rho-thumb {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .rho-pad {
        padding: 0 15px 0 25px;
    }

    /* Top meta row */
    .phi-meta {
        display: flex;
        align-items: center;
        gap: 22px;
        margin-top: 5px;
    }

    .phi-rate {
        display: inline-flex;
        align-items: center;
        gap: 5.21px;
        color: #111;
    }

    .phi-rate .phi-u {
        text-decoration: underline;
        font-weight: 400;
        font-size: 15.57px;
        color: #22292F;
    }

    .phi-like {
        display: inline-flex;
        align-items: center;
        gap: 5.21px;
    }

    .phi-like span{
        display: inline-flex;
        align-items: center;
        gap: 5.21px;
        font-size: 15.57px;
        color: #22292F;
        font-weight: 400;
    }

    /* heart outline color hint */
    .badge-omega {
        margin-left: auto;
        background: var(--phi-badge);
        color: var(--phi-indigo);
        width: 50.24px;
        height: 25.58px;
        border-radius: 6.67px;
        font-size: 12px;
        font-weight: 400;
        line-height: 25px;
        text-align: center;
    }

    /* Title + author */
    .lambda-title {
        margin: 15px 0 8px;
        color: var(--phi-indigo);
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
    }

    .tau-author {
        color: var(--phi-muted);
        font-weight: 400;
        font-size: 14px;
        opacity: 0.6;
        line-height: 24px;
        margin-bottom: 7px;
    }

    /* Tech chip */
    .beta-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        color: var(--phi-indigo);
        font-weight: 700;
    }

    .beta-chip img {
        width: 15px;
        height: 15.56px;
    }

    .beta-chip span {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
    }

    /* python icon color hint */
    /* Price row */
    .course-price-final .new-price {
        color: #008714;
        font-weight: 700;
        font-size: 16px;
        line-height: 30px;
    }

    /* Spacing helpers for the list */
    .grid-sigma > .rho-card + .rho-card {
        margin-top: 28px;
    }

    .rho-thumb {
        height: 100%;
        width: 102px;
    }


    .swiper-carousel .slide-background {
        width: 259.86px;
        height: 259.86px;
    }
    .course-image-overlay{
        padding: 5px;
    }
    .course-stats-final {
        gap: 0;
    }
    .courses-section .stat-item {
        gap: 5px;
        font-size: 10px;
        padding: 5px 10px;
        margin-right: 5px;
    }
    #card-clip-path path{
        transform: scale(0.9, 0.9) !important;
    }
    .course-image{
        height: 150px;
    }
    .course-content-final {
        padding: 15px;
    }
    .course-program-final{
        gap: 8px;
    }
    .course-program-final span{
        font-size: 10px;
    }
    .course-price-final{
        gap: 3px;
    }
    .course-price-final .old-price::after{
        right: 35px;
        top: 15px;
    }
    .slide-title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .slide-content{
        background: url(../img/swiper_background_mobile.svg) no-repeat;
        width: 335px;
        height: 801px;
        background-size: cover !important;
        padding: 20px 20px 20px 30px;
    }
    .slide-content .d-flex{
        flex-direction: column !important;
    }
    .slide-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .slide-text-content {
        padding: 25px;
        width: 100%;
    }
    .swiper-pagination {
        bottom: 25px !important;
        left: 100px !important;
        top: unset !important;
    }
    .slide-text-content .d-flex.justify-content-between{
        display: block !important;
    }
    .slide-illustration {
        text-align: center;
        top: 20px;
        bottom: 0;
        right: 0;
    }
    .slide-illustration img{
        width: 227.4px;
        height: 223.9px;
    }
    .slide-button{
        margin-top: 20px;
        margin-bottom: 20px;
        width: 288px;
        height: 48px;
    }
    .slide-stats {
        gap: 10px;
        margin-bottom: 24px;
        font-size: 10px;
        opacity: 1;
    }
    .qualification-section {
        padding: 70px 0 20px 0;
    }
    .discover-community-section {
        padding: 60px 0 40px 0;
    }
    .instructors-section {
        padding: 40px 0;
    }
    .instructor-card {
        padding: 15px;
        margin-bottom: 10px;
    }
    .instructors-section .stat-value {
        width: 30px;
        height: 30px;
        font-size: 10px;
        font-weight: 400;
        margin-bottom: 8px;
    }
    .btn-outline-green {
        width: 335px;
        height: 48px;
        padding: 10px 32px;
        font-weight: 600;
        font-size: 16px;
        line-height: 30px;
    }
    .qualification_slider .swiper-slide {
        width: 340px !important;
    }
    .qualification_slider .swiper-slide:not(.swiper-slide-active){
        transform: scale(0.9) translateY(5px);
    }
    .swiper-carousel .swiper-slide{
        width: 259.86px;
        height: 300.5px;
    }
    .vibrant_slider .slide-title-container {
        width: 259.86px;
        height: 140.6px;
        top: 60px;
        left: -59px;
    }
    .vibrant_slider .swiper-slide-active .slide-title-container {
        left: 0;
        top: unset;
        bottom: 40px;
        transform: rotate(0deg);
    }
    .carousel-slider-nav {
        margin-top: 0;
    }
    .lives-section{
        padding: 30px 0;
    }
    .lives-title{
        font-weight: 700;
        font-size: 20px;
        line-height: 48px;
        color: #292984;
    }
    .instructors-section .stat-label {
        font-size: 8px;
        color: #6C6C6C;
    }
    .btn-book {
        padding: 5px;
        font-size: 12px;
    }
    .lives-slider-nav{
        display: none;
    }
    .instructor-cta-section .row{
        display: flex;
    }
    .scroll-row-instructors {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .scroll-row-instructors::-webkit-scrollbar {
        display: none;
    }
    .scroll-row-instructors > div {
        flex: 0 0 auto;
        width: 94%;
        max-width: 600px;
    }
    .btn-see-more{
        width: 335px;
        height: 48px;
        line-height: 20px;
    }

    .instructor-h2{
        font-size: 20px;
        line-height: 32px;
    }

    .instructor-p{
        font-size: 12px;
    }

    .btn-instructor {
        width: 100%;
        padding: 5px;
    }

    .instructor-cta-section{
        padding-right: 15px;
        padding-left: 15px;
    }

    .card-instructor{
        border-radius: 20px !important;
        padding: 20px;
    }

    .career-section {
        padding: 20px 0;
    }

    .wave-background {
        display: none;
    }

    .main-illustration {
        text-align: center;
        margin: 40px 0;
    }

    .main-illustration img {
        width: 278.9px;
        height: 278.9px;
    }

    .features-grid{
        display: block;
    }

    .feature-card{
        margin-top: 20px;
    }

    .btn-join{
        width: 290px;
        height: 44px;
        padding: 10px;
        font-weight: 700;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .app-download-section .download-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: unset;
    }

    .footer {
        padding: 100px 5px 0 5px;
        background-position: center;
    }

    .otp-content-side-3 {
        padding: 20px 0 20px 0;
    }

    #start-section{
        display: flex;
        flex-wrap: wrap-reverse;
        text-align: center;
    }

    #start-section .row .col-md-5{
        text-align: center !important;
        margin-top: 20px;
    }

    #start-section .row .col-md-5 button{
        width: 100%;
    }

    .student-form .modal-title{
        font-size: 19px !important;
    }

    .student-form .special {
        font-size: 14px !important;
    }

    .col-sm-3 {
        width: 25%;
        flex: 0 0 auto;
    }

    .col-sm-9 {
        width: 75%;
        flex: 0 0 auto;
    }

    .otp-content-side {
        padding: 20px 20px 40px 20px;
    }

    .otp-inputs {
        gap: 15px;
    }

    .otp-content-side-4 {
        padding: 60px 0 60px 0;
    }

    .otp-content-side-2 {
        padding: 70px 30px 70px 30px;
    }

    .policy-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .policy-links li {
        display: inline;
    }

    .policy-links a {
        text-decoration: none;
        white-space: nowrap;
    }

    .rights{
        opacity: 0.5;
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
    }

    .zx-cosmos{ max-width: 780px; }
}

@media (max-width: 400px) {
    .type_select .select_buttons{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Special Ratio */
@media (max-width: 480px) {
    .service-item-figma:nth-child(odd) {
        transform: translate(-60px, 0) !important;
    }
    .see_more {
        width: 300px;
    }
    .swiper-pagination {
        left: 60px !important;
    }
    .btn-outline-green {
        width: 310px;
        margin-top: 20px;
    }
    .btn-see-more {
        width: 300px;
    }
    .app-download-section .illustration-content img {
        height: 320px;
    }

    .type_select .type-1{
        margin-bottom: 10px;
    }
    .btn-hero {
        padding: 8px;
    }
    .rho-thumb {
        height: 204px;
    }
    .rho-card {
        display: block !important;
    }
    .rho-pad {
        padding: 0 15px 0 35px;
    }
}

/* iPad Air & Mini */
@media (min-width: 768px) and (max-width: 1024px){
    .hero-illustration{
        margin-top: 50px;
    }
    .hero-content{
        padding-left: 0;
    }
    .hero-section{
        padding: 7rem 0 1rem 0;
    }
    .services-grid-figma {
        flex-wrap: unset;
        gap: 25px;
        padding: 10px;
    }
    .service-icon-wrapper-figma img {
        width: 90px;
    }
    .service-name-figma {
        font-size: 14px;
    }
    #card-clip-path path{
        transform: scale(1.2, 0.9);
    }
    .main-header {
        gap: 0;
    }
    .header_buttons{
        display: block !important;
        margin-left: auto;
        margin-right: 20px;
    }
    .mobile-menu .modal-dialog{
        width: 100%;
        margin: 20px auto;
    }
    .zx-cosmos{
        display: none;
    }
    .qualification_slider .swiper-slide {
        width: 673px !important;
    }
    .slide-content {
        background-size: cover;
        width: 670px;
        height: 470px
    }
    .swiper-pagination {
        left: 44px !important;
    }
    .card-instructor .row{
        padding-bottom: 80px;
    }
    .card-instructor .row .col-lg-4 img{
        position: absolute;
        top: 40%;
        right: 10%;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 120px 0 60px 0;
    }
    .feature-icon {
        background-size: 100% 140px;
    }

    .btn-join {
        width: 40%;
    }

    .footer {
        padding: 80px 50px 40px 50px;
    }

    .rho-card{
        display: none !important;
    }
    .wave-background {
        top: -260px;
    }

    .type_select .col-md-7 {
        width: 100%;
    }

    .type_select #start-button {
        width: 100%;
        margin: 20px auto;
    }

    #start-button {
        width: 100%;
        display: block !important;
    }
    #registrationModal .row{
        align-items: center;
    }
}

/* iPad Pro */
@media (min-width: 992px)  and (max-width: 1366px) {
    .wave-background {
        top: -330px;
    }
    .swiper-pagination {
        left: 160px !important;
    }
    #card-clip-path path {
        transform: scale(1.04, 1);
    }
    .feature-icon {
        background-size: 100% 190px;
    }
    .feature-icon {
        height: 190px;
    }
    .feature-card:nth-of-type(1) .feature-icon img {
        margin-top: 40px;
        width: 160px;
    }
    .feature-card:nth-of-type(2) .feature-icon img {
        width: 365px;
    }
    .feature-card:nth-of-type(3) .feature-icon img {
        margin-top: 45px;
        width: 295px;
    }
    .feature-card:nth-of-type(4) .feature-icon img {
        margin-top: 75px;
        width: 170px;
    }
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }

    .navbar-expand-lg .navbar-toggler{
        display: block !important;
    }

    .mobile-menu .modal-dialog {
        width: 100%;
        margin: 0 auto;
    }
    .features-banner {
        width: 950px;
        height: 150px;
    }
    .feature-text {
        font-size: 14px;
    }
    .feature-item {
        padding: 15px 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


