/* Base styles */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-color: #ffffff;
    --bg-color: #000000;
    --card-bg: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Auth Modal Styles */
.auth-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.auth-modal {
    background: black;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: grey;
}

.auth-modal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-logo {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-button:hover {
    background: #f5f5f5;
}

.auth-button img {
    width: 24px;
    height: 24px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.auth-submit {
    padding: 0.75rem;
    background: #0066ff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.auth-footer {
    text-align: center;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #0066ff;
    cursor: pointer;
    text-decoration: none;
}

#blur-background {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #272829;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  padding: 20px;
}

.modal-header h2 {
  font-size: 1.5em;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1em;
  color: gray;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.app-logo {
  max-width: 80px;
  margin: 20px auto;
}

.auth-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
}

.auth-btn.apple {
  background: black;
  color: white;
}

.auth-btn.google {
  background: #4285F4;
  color: white;
}

.auth-btn.facebook {
  background: #3b5998;
  color: white;
}

.auth-btn.snapchat {
  background: #FFFC00;
  color: black;
}

.auth-btn.email {
  background: white;
  color: black;
  border: 1px solid #ccc;
}

.terms {
  font-size: 0.8em;
  color: gray;
}

.terms a {
  color: blue;
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 1rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    margin-bottom: 1.5rem;
    color: #9ca3af;
    font-size: 120%;
}


/* Button styles */
.btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #2563EB;
    color: white;
}


.btn-primary:hover {
    background-color: #1D4ED8;
}

.btn-secondary {
    background-color: #F3F4F6;
    color: #374151;
}

.btn-secondary:hover {
    background-color: #E5E7EB;
}

.btn-outline {
    background-color: white;
    border: 1px solid #E5E7EB;
    color: #4B5563;
}

.btn-outline:hover {
    background-color: #F9FAFB;
}

.btn-text {
    background-color: transparent;
    color: #6B7280;
}

.btn-text:hover {
    color: #374151;
}

/* Hide modal by default */
.hidden {
    display: none;
}
        .btn {
            padding: 10px 20px;
            background-color: #3c5671;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }
        .btn:hover {
            background-color: #2a3c51;
        }

        /* Popup buttons */
        .skip-btn {
            background-color: #584565;
        }

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    border: none;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    opacity: 0.9;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #1f2937;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 5rem;
    height: 3rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn, .menu-btn{
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    background: black;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.nav-btn.a:hover:not(.primary) {
    background-color: #1f2937;
}

.nav-btn:hover {
    color: #bb86fc;
}

.nav-btn.primary:hover: {
    background-color: #1f2937;
}

@media (max-width: 640px) {
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 4rem);
}

.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-content h2 {
    font-size: 2.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.categories h2 {
    font-size: 2.5rem;
}

.category-name {
    margin-top: 4.5rem;
}

.join-content h1 {
    font-size: 3rem;
}

.feature-card h3 {
    font-size: 1.5rem;
}

.investment-content h1 {
    font-size: 3rem;
}

.careers h1 {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.categories {
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.join-project {
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.angel-investment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.investment-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .angel-investment {
        grid-template-columns: 1fr;
    }
}

.careers {
    text-align: center;
}

.careers-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.role-card {
    background-color: #111827;
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-0.5rem);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}
.e-learning {
    padding: 4rem 0;
    background: #000000
    margin-top: 4rem;
}

.e-learning h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.e-learning .subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 120%;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.courses-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0.5rem;
}

.course-card {
    background: #111827;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.course-icon {
    background: #4f46e5;
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.course-content {
    padding: 1.5rem;
    flex: 1;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.course-desc {
    color: white;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.course-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.course-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.course-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #111827;
    border-top: 1px solid #e5e7eb;
}

.course-price {
    font-weight: 600;
    color: white;
}

.enroll-btn {
    background: #4f46e5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.enroll-btn:hover {
    background: #4338ca;
}

@media (max-width: 768px) {
    .roles-grid {
        grid-template-columns: 1fr;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .e-learning h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .e-learning .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 1rem;
        gap: 1.5rem;
    }

    .course-card {
        margin-bottom: 1rem;
    }

    .course-content {
        padding: 1.25rem;
    }

    .course-action {
        padding: 1rem;
    }
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background-color: #3b82f6;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #3b82f6;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* App Store Buttons */
.app-stores {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.app-store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #333;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.app-store-button:hover {
    background-color: #3b82f6;
}

.store-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
}

.store-title {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #333;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #3b82f6;
}

.newsletter-form button {
    padding: 0.75rem;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #2563eb;
}

/* Bottom Footer */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}
.app-store-badge {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.app-store-badge:hover {
    opacity: 0.8;
}

.google-play-badge {
    height: 55px;
}

.apple-store-badge {
    height: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

}