:root {
    --primary-color: #24AB82;
    --secondary-color: #0066FF;
    --background-color: #1A1A1A;
    --text-color: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glow-color: rgba(36, 171, 130, 0.5);
    --button-bg: #006B50;
    --secondary-accent: #0095FF;
}

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


body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Stars Background Animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABR0RVh0Q3JlYXRpb24gVGltZQAxLzEvMTX+8DLJAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABZ0RVh0VGl0bGUAU3RhcnMgQmFja2dyb3VuZJaVxaAAAA==');
    animation: twinkle 10s linear infinite;
    pointer-events: none;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.2) 75%, rgba(0,0,0,0.2));
    background-size: 100px 100px;
    animation: move-twinkle 200s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes twinkle {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

@keyframes move-twinkle {
    from { transform: translateX(0); }
    to { transform: translateX(1000px); }
}

/* Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.feature-list li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li:before {
    content: '→';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Typography */
.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.section-desc {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
    z-index: 1;
}

.platform-intro {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0,255,136,0.05), rgba(0,102,255,0.05));
}

.more-features {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0,255,136,0.05), rgba(0,102,255,0.05));
}

.welcome-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0,255,136,0.05), rgba(0,102,255,0.05));
    margin-bottom: 0;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.join-cta {
    text-align: center;
    margin: 2.5rem 0 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Engineering Disciplines */
.features-grid {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(0,255,136,0.03), rgba(0,102,255,0.03));
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.feature-list li {
    margin: 0.5rem 0;
    color: #888;
    font-size: 0.95rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-color);
}

.feature-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* Features Grid */
.features-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Welcome Section */
.welcome-footer {
    text-align: center;
    margin: 2.5rem 0 0;
    padding: 4rem;
}

.testimonial-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}
.logo-img {
    width: 300px; 
    height: auto; 
}
/* Navigation */

.logo-text {
    font-size: 1.2em;
    margin-left: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    background: linear-gradient(45deg, #33ff99, #33ddff);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    height: 100%;
    padding: 0.5rem 0;
}

.nav-links .nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 34px;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-links .nav-link i {
    margin-right: 0.4rem;
    font-size: 1rem;
    opacity: 0.9;
}

.nav-links .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    color: #00ff88;
}

.nav-links .nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links .nav-link:hover::after {
    width: 80%;
}

.nav-links .primary-btn {
    background: linear-gradient(45deg, #24AB82, #0066FF);
    padding: 0.35rem 1rem;
    border-radius: 17px;
    font-weight: 600;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.nav-links .primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
    background: linear-gradient(45deg, #2bc398, #1a75ff);
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 42, 0.98) 0%, rgba(10, 10, 42, 0.95) 100%);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #00ff88;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    height: 100%;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
    min-width: fit-content;
}

.logo:hover {
    color: #33ff99;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.logo-symbol {
    font-size: 1.6rem;
    color: #00ff88;
    margin-right: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo:hover .logo-symbol {
    background: rgba(0, 255, 136, 0.2);
    transform: rotate(15deg);
}

.logo:hover {
    transform: scale(1.1);
}

.logo-symbol {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.logo-img {
    width: 100%; /* Adjusts to the width of the container */
    height: auto; /* Maintains aspect ratio */
    max-width: 200px; /* Set a maximum width for the logo */
    object-fit: contain; /* Ensures the image scales properly */
    transition: transform 0.3s ease;
}
.logo-container {
    background-color: black; /* Black background */
    border-radius: 50%; /* Makes the border circular */
    padding: 10px; /* Space between the logo and the border */
    display: inline-block; /* Ensures the container fits the logo */
}

.logo-symbol::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
}

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

.logo:hover .logo-symbol i {
    transform: rotate(180deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    background: transparent;
}

.nav-link i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: rotate(20deg) scale(1.2);
}

.join-btn {
    position: relative;
    padding: 0.8rem 1.8rem;
    border: none;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: var(--background-color);
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.join-btn .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.join-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.join-btn:hover i {
    transform: rotate(20deg) scale(1.2);
}

.join-btn .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.5s ease;
    opacity: 0;
}

.join-btn:hover .btn-glow {
    opacity: 0.15;
    transform: rotate(45deg) translateY(0);
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.join-btn:active {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 100;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-icon {
    background: transparent;
}

.menu-toggle.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 42, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-top: none;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.show {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .join-btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-symbol {
        width: 32px;
        height: 32px;
    }

    .logo-symbol i {
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(0, 255, 136, 0.1) 0%,
        transparent 70%);
    animation: pulse 4s infinite;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
    margin-bottom: 1rem;
    position: relative;
    transform-style: preserve-3d;
}

.hero h1::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    transform: translateZ(-10px);
    color: var(--primary-color);
    filter: blur(10px);
    opacity: 0.5;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.5);
}

.btn:active {
    transform: translateY(-1px);
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), #24AB82);
    color: var(--background-color);
    box-shadow: 0 4px 15px rgba(36, 171, 130, 0.2);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 171, 130, 0.3);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(36, 171, 130, 0.2);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Interactive Cards */
.tech-item, .achievement-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.tech-item::before, .achievement-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(36, 171, 130, 0.1),
        rgba(0, 102, 255, 0.1));
    filter: blur(10px);
    opacity: 1; /* Make it fully visible */
}

.tech-item:hover, .achievement-card:hover {
    transform: rotateX(10deg) rotateY(10deg); 
}

.tech-item:hover::before, .achievement-card:hover::before {
    opacity: 1;
}

.tech-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(36, 171, 130, 0.1);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.tech-item h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-weight: 500;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .tech-item {
        padding: 1rem;
    }
    
    .tech-item i {
        font-size: 2rem;
    }
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.feature-card i, .tech-item i {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation for CTAs */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}



/* Features Section */
.features {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(36, 171, 130, 0.1),
        rgba(0, 102, 255, 0.1));
    transform: translateZ(-10px);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    transform: rotateX(10deg) rotateY(10deg) translateZ(20px);
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

/* Features Grid Section */
.features-grid {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    position: relative;
}

.features-grid .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.features-grid .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(36, 171, 130, 0.1);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 171, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    opacity: 0.8;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #24AB82;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-grid {
        padding: 4rem 0;
    }

    .features-grid .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.25rem;
    }
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, rgba(36, 171, 130, 0.1), rgba(0, 255, 136, 0.1));
}

.stat-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    height: 300px; /* Fixed height to prevent layout shifts */
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(36, 171, 130, 0.3);
    object-fit: cover;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 1rem 0;
    font-style: italic;
}

.testimonial-content h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

.testimonial-content span {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-carousel {
        height: 350px; /* Slightly taller on mobile */
        margin: 1rem;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
}
/* Newsletter Form */

.newsletter-form {
    max-width: 500px;
    margin: 3rem auto;
    display: flex;
    gap: 0;
    width: 100%; /* Added for better responsiveness */
}

.newsletter-form input {
    flex: 1; /* Use flex instead of flex-grow for better control */
    padding: 12px 20px; /* Adjusted padding for better proportions */
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 14px;
    height: 45px;
    box-sizing: border-box; /* Added for consistent sizing */
    margin: 0; /* Reset default margins */
}

.newsletter-form button {
    padding: 12px 25px; /* Increased right padding for better balance */
    height: 45px;
    border: none;
    border-radius: 0 30px 30px 0;
    background: var(--primary-color);
    color: var(--background-color);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0; /* Prevent button from shrinking */
    box-sizing: border-box; /* Added for consistent sizing */
    margin: 0; /* Reset default margins */
    position: relative; /* For perfect border alignment */
    left: -2px; /* Compensate for input border removal */
}

/* Add this to ensure proper HTML element defaults */
input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}


/* Success Message Animation */
@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.success-message {
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 5px;
    background: rgba(36, 171, 130, 0.1);
    margin-top: 1rem;
    animation: slideIn 0.3s ease-out;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform-origin: 0 50%;
    transform: scaleX(0);
    transition: transform 0.1s ease;
    z-index: 1001;
}

/* Footer */
footer {
    background: rgba(10, 10, 42, 0.95);
    padding: 4rem 2rem 2rem;
    border-top: none;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-title {
    color: #24AB82; /* Set the color */
    text-shadow: 0 0 5px rgba(36, 171, 130, 0.5), /* Inner glow */
                 0 0 10px rgba(36, 171, 130, 0.5), /* Outer glow */
                 0 0 15px rgba(36, 171, 130, 0.5); /* Stronger outer glow */
    transition: text-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.intro-title:hover {
    text-shadow: 0 0 10px rgba(36, 171, 130, 0.7), /* Stronger glow on hover */
                 0 0 20px rgba(36, 171, 130, 0.7), 
                 0 0 30px rgba(36, 171, 130, 0.7);
}

/* Section Headers */
section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    animation: slideIn 0.8s ease-in-out;
}

section h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

section h3::before {
    content: '>';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
    opacity: 0.7;
}

.section-desc {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    position: relative;
    padding: 0 1rem;
    animation: slideIn 0.8s ease-in-out;
}

.section-desc::before,
.section-desc::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: var(--primary-color);
}

.section-desc::before {
    left: -60px;
}

.section-desc::after {
    right: -60px;
}

/* Neon text effect for important headings */
.neon-text {
    text-shadow: 0 0 5px rgba(36, 171, 130, 0.8),
                 0 0 10px rgba(36, 171, 130, 0.5),
                 0 0 15px rgba(36, 171, 130, 0.3);
    animation: neonPulse 2s infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(36, 171, 130, 0.8),
                     0 0 10px rgba(36, 171, 130, 0.5),
                     0 0 15px rgba(36, 171, 130, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(36, 171, 130, 0.8),
                     0 0 20px rgba(36, 171, 130, 0.5),
                     0 0 30px rgba(36, 171, 130, 0.3);
    }
}

/* Hexagon background for section titles */
.hex-bg {
    position: relative;
    padding: 2rem 0;
}

.hex-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.1;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

.feature-card, .benefit-card, .testimonial {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-100%); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title {
    animation: fadeIn 1s ease-in-out;
}

.hero-subtitle {
    animation: slideIn 1.2s ease-in-out;
}

/* Additional Content Styles */
.tech-stack {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 1rem;
}

.tech-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(36, 171, 130, 0.1);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.tech-item h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .tech-item {
        padding: 1rem;
    }
    
    .tech-item i {
        font-size: 2rem;
    }
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -60px;
}

.achievements {
    padding: 4rem 2rem;
}

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

.achievement-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: #24ab82;
    transform: rotateX(10deg) rotateY(10deg) translateZ(20px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #24ab82;
    margin-bottom: 1rem;
}
.achievement-card h3,
.achievement-card p {
    color: white; /* Set text color to white */
}


/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .feature-grid, .benefit-grid, .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 992px) {
    section h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 3rem;
    }
    
    .timeline-content::before {
        left: -40px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-desc::before,
    .section-desc::after {
        display: none;
    }
    
    .stat-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }
    
    section h2 {
        font-size: 1.75rem;
    }
    
    .feature-card, .benefit-card {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #050510;
        --card-bg: rgba(255, 255, 255, 0.03);
    }
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    transform-origin: center center;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    background: rgba(36, 171, 130, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.6s ease;
    transform-origin: center center;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Enhanced Hero Section */
.hero-title-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-title {
    font-size: 4.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(20px);
    opacity: 0.5;
    transform: translateZ(-10px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover .btn-background {
    transform: translateY(0);
}

.btn:hover span {
    color: #24ab82;
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes bounce {
    /* 0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    } */
}

/* Card Hover Effects */
.feature-card, .tech-item, .achievement-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card::after,
.tech-item::after,
.achievement-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.1) 0%,
        transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after,
.tech-item:hover::after,
.achievement-card:hover::after {
    opacity: 1;
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem;
}


.welcome-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 60px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(36, 171, 130, 0.1),
        rgba(0, 102, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.welcome-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(36, 171, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

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

.welcome-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.welcome-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.welcome-card {
    transition: all 0.3s ease; /* Smooth transition for all properties */
}

.welcome-card:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Change background on hover */
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Stronger shadow for lift effect */
    border: 2px solid #24ab82; /* Optional: Add border color */
}

/* Seminars Section */
.seminars-section {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(36, 171, 130, 0.1));
}

.seminars-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-color);
    padding: 0.5rem 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.seminars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.seminar-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.seminar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.seminar-card.premium .seminar-badge {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: var(--background-color);
}

.seminar-card.free .seminar-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--background-color);
}

.seminar-date {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    text-align: center;
}

.seminar-date .date {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.seminar-date .month {
    color: var(--text-color);
    text-transform: uppercase;
}

.seminar-content {
    padding: 1.5rem;
}

.seminar-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.speaker {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.seminar-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.seminar-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Host Form Styles */
.host-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.seminar-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(36, 171, 130, 0.2);
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .seminars-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Why Join Section */
.why-join {
    padding: 6rem 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    position: relative;
}

.why-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="1" fill="rgba(36, 171, 130, 0.15)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.why-join .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-join .section-title {
    font-size: 2.5rem;
    color: #24ab82;
    margin-bottom: 1rem;
}

.why-join .section-subtitle {
    font-size: 1.2rem;
    color: #24ab82;
    opacity: 0.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 171, 130, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: rgba(36, 171, 130, 0.2);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.benefit-card:hover .benefit-hover {
    transform: translateY(0);
}

.hover-text {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .why-join {
        padding: 4rem 0;
    }

    .why-join .section-title {
        font-size: 2rem;
    }

    .why-join .section-subtitle {
        font-size: 1.1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .why-join .section-title {
        font-size: 1.8rem;
    }
}

/* More Features Section */
.more-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    position: relative;
}

.more-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(36, 171, 130, 0.1)"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.features-flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

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

.more-features .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(36, 171, 130, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(36, 171, 130, 0.2);
}

.feature-content {
    flex-grow: 1;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.feature-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tags span {
    padding: 0.25rem 0.75rem;
    background: rgba(36, 171, 130, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-tags span {
    background: rgba(36, 171, 130, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .more-features {
        padding: 4rem 0;
    }

    .feature-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .more-features .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .feature-tags span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .feature-item:hover {
        transform: translateX(5px);
    }

    .more-features .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.platform-intro {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    position: relative;
    overflow: hidden;
}

.platform-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(36, 171, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.intro-title {
    font-size: 3rem;
    color: #24AB82;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section-title {
    color: var(--primary-color); /* or any other color */
}

.rocket-icon {
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
}

.main-desc {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-prop {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.value-prop i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.prop-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.prop-content p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(36, 171, 130, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(36, 171, 130, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-color);
    opacity: 0.9;
    font-size: 1rem;
}

.join-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-intro {
        padding: 4rem 0;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .rocket-icon {
        font-size: 3rem;
    }

    .main-desc {
        font-size: 1.1rem;
    }

    .value-props {
        grid-template-columns: 1fr;
    }

    .value-prop {
        padding: 1.25rem;
    }

    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 2rem;
    }

    .rocket-icon {
        font-size: 2.5rem;
    }

    .community-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-prop {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .value-prop i {
        margin-top: 0;
    }
}

/* Share Knowledge Page Styles */
.share-knowledge-page {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.share-hero {
    text-align: center;
    margin-bottom: 60px;
}

.share-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.share-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.share-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.share-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.share-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.share-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.share-form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.share-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-form input[type="text"], .share-form input[type="email"], .share-form input[type="tel"], .share-form input[type="url"], .share-form input[type="number"], .share-form select, .share-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.share-form input[type="text"]:focus, .share-form input[type="email"]:focus, .share-form input[type="tel"]:focus, .share-form input[type="url"]:focus, .share-form input[type="number"]:focus, .share-form select:focus, .share-form textarea:focus {
    box-shadow: 0 0 10px rgba(36, 171, 130, 0.5);
    outline: none;
}

.share-form input[type="submit"] {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(36, 171, 130, 0.5);
}

.share-form input[type="submit"]:active {
    transform: translateY(-1px);
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 42, 0.8), rgba(10, 10, 42, 0.8)),
                url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--background-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 171, 130, 0.3);
}

.cta-button i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .share-knowledge-page {
        padding: 60px 20px;
    }

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

    .share-form-container {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

a.join-btn, a.cta-button {
    text-decoration: none;
}

a.join-btn, a.cta-button {
    text-decoration: none;
}

.share-form input[type="text"], .share-form input[type="email"], .share-form input[type="password"], .share-form input[type="url"], .share-form select {
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.share-form input[type="text"]:focus, .share-form input[type="email"]:focus, .share-form input[type="password"]:focus, .share-form input[type="url"]:focus, .share-form select:focus {
    box-shadow: 0 0 10px rgba(36, 171, 130, 0.5);
    outline: none;
}

.share-form button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(36, 171, 130, 0.3);
}

.share-form button:active {
    transform: translateY(-1px);
}

.share-form button, .share-form input[type="submit"] {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.share-form button:hover, .share-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(36, 171, 130, 0.5);
    filter: brightness(1.1);
}

.share-form button:active, .share-form input[type="submit"]:active {
    transform: translateY(-1px);
    filter: brightness(0.9);
}

.share-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    animation: fadeIn 1s, slideIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(0);
    }
}

.share-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.share-form:hover {
    box-shadow: 0 0 30px rgba(36, 171, 130, 0.5);
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border: 1px solid #24AB82;
    box-shadow: 0 0 10px rgba(36, 171, 130, 0.5);
    outline: none;
}

input[type="submit"] {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(36, 171, 130, 0.3);
}

input[type="submit"]:active {
    transform: translateY(-1px);
}

.container {
    text-align: center;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.2em;
}

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

.container {
    text-align: center;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.2em;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(16, 16, 42, 0.95) 0%, rgba(16, 16, 42, 0.85) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@keyframes character-reveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.animated-text {
    display: inline-block;
}

.animated-text span {
    opacity: 0;
    animation: character-reveal 0.5s forwards;
}

.hero-title {
    text-shadow: 0 0 10px rgba(36, 171, 130, 0.8),
                 0 0 20px rgba(36, 171, 130, 0.5),
                 0 0 30px rgba(36, 171, 130, 0.3);
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(36, 171, 130, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(36, 171, 130, 1);
    }
}

.platform-feature-logo {
    transition: transform 0.3s ease;
}

.platform-feature-logo:hover {
    transform: scale(1.1); /* Adjust this scale value as needed */
}



@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
        gap: 5px;
    }

    .newsletter-form input {
        width: 100%;
        max-width: none;
    }
}

footer {
    background-color: #181818; /* Slightly lighter dark background for contrast */
    color: #e0e0e0; /* Softer white for text */
    text-align: center;
    padding: 40px 20px; /* Increased padding for more breathing room */
    font-family: 'Poppins', sans-serif; /* Modern font for consistency */
    position: relative;
    box-shadow: 0 -2px 10px rgba(0, 255, 255, 0.2);

}

.footer-container {
    max-width: 900px; /* Wider container for better layout */
    margin: auto;
}

.footer-logo {
    font-size: 2em; /* Larger logo text */
    font-weight: bold;
    color: #24AB82; /* Accent cyan color for the logo */
    margin-bottom: 30px; /* Increased spacing below the logo */
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px; /* More space between links */
    margin-bottom: 40px; /* Added spacing below links */
}

.footer-links li {
    display: inline;
}

.footer-links a {
    text-decoration: none;
    color: #b3b3b3; /* Subtle gray for links */
    font-size: 1em;
    transition: color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
}

.footer-links a:hover {
    color: #24AB82; /* Cyan hover effect to match theme */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.social-icons {
    margin-bottom: 40px; /* Added spacing below social icons */
}

.social-icons a {
    font-size: 1.5em; /* Slightly larger icons for emphasis */
    margin-right: 1rem; /* Increased spacing between icons */
    color: #b3b3b3; /* Subtle gray for icons */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
}

.social-icons a:hover {
    color: #4CAF50; /* Light green hover effect for icons */
    transform: scale(1.2); /* Slight zoom effect on hover */
}

.footer-copyright {
    font-size: 0.85em;
    color: #888888; /* Subtle gray for copyright text */
}

/* Optional Background Pattern (Subtle Grid) */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}

/*personal page */
        body {
            font-family: Arial, sans-serif;
            background-color: #000;
            color: #f6f6f6;
            margin: 0;
            padding: 0;
        }
        .navbar {
            background-color: #111;
            padding: 15px;
            text-align: center;
        }
        .profile-container {
            width: 60%;
            margin: 80px auto 20px; /* Added margin-top to avoid overlap with navbar */
            background: rgba(17, 17, 17, 0.9);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px #24AB82;
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
        }
        .left-panel {
            width: 30%;
            padding: 20px;
        }
        .profile-picture {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: url('dummy-avatar.png') no-repeat center;
            background-size: cover;
            border: 3px solid #24AB82;
            margin-bottom: 20px;
        }
        .right-panel {
            width: 70%;
            padding: 20px;
        }
        .section {
            margin: 10px 0;
            padding: 10px;
            border-bottom: 2px solid #24AB82;
        }
        .buttons-container {
            margin-top: 20px;
            text-align: right;
        }
        .buttons-container a {
            background-color: #24AB82;
            color: #fff;
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
            margin-left: 10px;
        }
        .buttons-container a:hover {
            background-color: #1e8e6d;
        }
