/* Global Styles */
:root {
<<<<<<< HEAD
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #1e293b;
    --accent-color: #0ea5e9;
    --background-color: #ffffff;
    --text-color: #334155;
    --text-light: #64748b;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.transparent {
    background: transparent;
    box-shadow: none;
}

.navbar.transparent .logo h1 {
    color: white;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.login-btn, .signup-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.login-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-right: 1rem;
}

.login-btn:hover {
    background: var(--primary-color);
    color: white;
}

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

.signup-btn:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
=======
    --primary-color: #737DD9;
    --secondary-color: #C7D1FD;
    --accent-color: #A7E5F9;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    padding-top: 76px;
    overflow-x: hidden;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    padding: 10px 15px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #737DD9 !important;
}

.register-btn {
    background: #737DD9;
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.register-btn:hover {
    background: #5d64c4;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(115, 125, 217, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #EEF3FF 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(146, 187, 255, 0.1);
    border-radius: 50px;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
>>>>>>> landing_page
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

<<<<<<< HEAD
.hero-content p {
=======
.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #92BBFF 0%, #A7E5F9 100%);
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(146, 187, 255, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-platform {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    min-width: 160px;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Floating Cards - Position Adjustments */
.card1 { top: 15%; left: -15%; animation-delay: 0s; }
.card2 { top: 45%; right: -15%; animation-delay: 1s; }
.card3 { bottom: 25%; left: -10%; animation-delay: 2s; }
.card4 { top: 5%; right: 20%; animation-delay: 1.5s; }
.card5 { top: 35%; left: 20%; animation-delay: 2.5s; }
.card6 { bottom: 40%; right: 5%; animation-delay: 3s; }
.card7 { bottom: 15%; right: 25%; animation-delay: 3.5s; }
.card8 { top: 20%; right: -5%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #555;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* Learning Path Section */
.learning-path-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #EEF3FF 100%);
    position: relative;
    overflow: hidden;
}

.learning-path-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(115, 125, 217, 0.1) 0%, rgba(115, 125, 217, 0) 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.learning-path-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 229, 249, 0.1) 0%, rgba(167, 229, 249, 0) 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.path-button {
    width: 100%;
    padding: 30px 25px;
    background: white;
    border: 2px solid #eef0f7;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.path-button i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.path-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(115, 125, 217, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.path-button:hover i {
    transform: scale(1.1);
}

/* Path Explorer Section */
.path-explorer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.learning-paths-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.path-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.path-btn {
    background: white;
    border: 2px solid #737DD9;
    color: #737DD9;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.path-btn i {
    font-size: 1.2rem;
}

.path-btn:hover, .path-btn.active {
    background: #737DD9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(115, 125, 217, 0.3);
}

.path-visualization {
    position: relative;
    min-height: 500px;
}

#learning-journey,
.path-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

#learning-journey.active,
.path-image.active {
    opacity: 1;
    visibility: visible;
}

.path-image img {
    max-width: 100%;
    height: auto;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
>>>>>>> landing_page
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

<<<<<<< HEAD
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

.secondary-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Circular Course Display */
.courses {
    padding: 5rem 2rem;
}

.course-circle {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 3rem auto;
}

.course-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-item:hover {
    transform: scale(1.1);
}

.course-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    cursor: pointer;
}

.tab-btn.active {
    border-bottom: 2px solid var(--primary-color);
}

.role-selector {
    display: flex;
    margin-bottom: 1rem;
}

.role-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
}

.role-btn.active {
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
}

form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Enhanced Auth Styles */
.auth-header i {
    color: white;
    margin-bottom: 1rem;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-group input {
    padding-left: 3rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.role-btn i {
    margin-right: 0.5rem;
}

.auth-btn {
    position: relative;
    overflow: hidden;
}

.auth-btn i {
    margin-right: 0.5rem;
}

.auth-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.auth-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .course-circle {
        width: 300px;
        height: 300px;
    }

    .course-item {
        width: 80px;
        height: 80px;
    }
}

/* Auth Page Styles */
.auth-page {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--primary-light));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.auth-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.auth-content {
    padding: 2rem;
}

.role-selector {
    display: flex;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.role-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: #f5f5f5;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.role-btn.active {
    background: var(--primary-color);
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.auth-btn:hover {
    background: #3a7dbd;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.role-specific {
    display: none;
}

.role-specific.active {
    display: block;
}
=======
.cta-button {
    background: white;
    color: var(--primary-color) !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Update other button styles */
.btn-primary {
    background: #737DD9 !important;
    border-color: #737DD9 !important;
}

.btn-primary:hover {
    background: #5d64c4 !important;
    border-color: #5d64c4 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(115, 125, 217, 0.3);
}

/* Add to ensure all buttons have white text */
.btn, .register-btn, .hero-btn, .cta-button {
    color: white !important;
}

/* Registration Form Styles */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #EEF3FF 0%, #ffffff 100%);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(115, 125, 217, 0.1);
    padding: 40px;
    margin: 20px 0;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-body {
    max-width: 600px;
    margin: 0 auto;
}

.registration-form .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.registration-form .form-control {
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #eef0f7;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.registration-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(115, 125, 217, 0.15);
}

.registration-form .form-check {
    padding-left: 2rem;
}

.registration-form .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -2rem;
    border: 2px solid #eef0f7;
}

.registration-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.registration-form .form-check-label {
    font-size: 0.95rem;
    color: #666;
}

.registration-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.registration-form .hero-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5d64c4 100%);
    font-weight: 600;
    padding: 14px 28px;
}

.registration-form .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 125, 217, 0.3);
}

.alert {
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: none;
}

.alert-success {
    background-color: #e6f7ee;
    color: #0d6832;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
    position: absolute;
    right: 0;
    z-index: 2;
    background: transparent;
}

.btn-close {
    background-color: white;
    opacity: 1;
    padding: 0.8rem;
    margin: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
    background-color: white;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .path-button {
        padding: 20px 15px;
        font-size: 1.1rem;
    }
    
    .path-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 3rem;
    }
    
    .timeline-icon {
        left: -20px !important;
    }
}

@media (max-width: 767.98px) {
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

.footer {
    margin-top: auto;
}
>>>>>>> landing_page
