:root {
    --genz-primary: #00d4ff;
    --genz-secondary: #00ff88;
    --genz-accent: #ff6b6b;
    --genz-dark: #0a0a0a;
    --genz-darker: #000000;
    --genz-light: #1a1a1a;
    --genz-lighter: #2a2a2a;
    --genz-text: #ffffff;
    --genz-text-secondary: #b0b0b0;
    --gradient-genz-primary: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #0066ff 100%);
    --gradient-genz-secondary: linear-gradient(135deg, #00ff88 0%, #00cc66 50%, #00994d 100%);
    --gradient-genz-accent: linear-gradient(135deg, #ff6b6b 0%, #ff4757 50%, #ff3742 100%);
    --gradient-genz-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff88;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--genz-text);
    background-color: var(--genz-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #333;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    font-weight: 800;
    font-size: 1.8rem;
}

.logo-img {
    width: clamp(120px, 18vw, 300px);
}

.student-portal-link {
    background: var(--gradient-genz-primary);
    color: var(--genz-dark) !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.student-portal-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    color: var(--genz-dark);
    text-decoration: none;
}

/* Hero Section - Dark & Cyber */
.student-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%), 
                url('https://knowbbies.com/img/hire-freshers-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.student-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    color: var(--genz-text-secondary);
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-genz-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--genz-secondary);
    display: block;
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--genz-text-secondary);
}

/* Course Section - Cyber Cards */
.course-section {
    padding: 5rem 0;
    background: var(--genz-darker);
}

.course-card {
    background: var(--genz-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.4s ease;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-genz-primary);
    opacity: 0.05;
    z-index: 1;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.2);
    border-color: var(--genz-primary);
}

.course-content {
    position: relative;
    z-index: 2;
}

.course-badge {
    background: var(--gradient-genz-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.course-title {
    font-size: 2.5rem;
    color: var(--genz-primary);
    margin-bottom: 1rem;
}

.course-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--genz-secondary);
    margin-bottom: 2rem;
}

.course-price span {
    font-size: 1.5rem;
    color: var(--genz-text-secondary);
    text-decoration: line-through;
    margin-left: 1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.skill-item {
    background: var(--genz-lighter);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.skill-item:hover {
    background: var(--gradient-genz-primary);
    color: var(--genz-dark);
    transform: scale(1.05);
    border-color: var(--genz-primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    color: var(--genz-text-secondary);
}

.feature-list li i {
    color: var(--genz-secondary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
    background: var(--genz-dark);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    color: var(--genz-primary);
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--genz-text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.job-card {
    background: var(--genz-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-genz-primary);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--genz-primary);
}

.job-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 3rem;
}

.job-title {
    font-size: 1.5rem;
    color: var(--genz-primary);
    margin: 0;
}

.job-company {
    color: var(--genz-text-secondary);
    font-weight: 500;
}

.job-salary {
    background: var(--gradient-genz-secondary);
    color: var(--genz-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.job-tag {
    background: var(--genz-lighter);
    color: var(--genz-text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #333;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.job-requirements li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    color: var(--genz-text-secondary);
}

.job-requirements li i {
    color: var(--genz-secondary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Success Stories */
.stories-section {
    padding: 5rem 0;
    background: var(--genz-darker);
}

.story-card {
    background: var(--genz-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--genz-primary);
}

.student-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gradient-genz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--genz-dark);
    font-weight: bold;
    font-size: 1.5rem;
}

.student-company {
    color: var(--genz-primary);
    font-weight: 600;
    margin: 0.5rem 0;
}

.student-salary {
    background: var(--gradient-genz-secondary);
    color: var(--genz-dark);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-genz-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://knowbbies.com/img/hire-freshers-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: var(--genz-text-secondary);
}

.btn-cta {
    background: var(--gradient-genz-primary);
    color: var(--genz-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    margin: 0 0.5rem 1rem;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
    color: var(--genz-dark);
}

.btn-outline-light {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 0.5rem 1rem;
    border: 2px solid var(--genz-primary);
    color: var(--genz-primary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--genz-primary);
    color: var(--genz-dark);
}

.footer {
    background: var(--genz-darker);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--genz-primary);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--genz-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--genz-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--genz-secondary);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--genz-text-secondary);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glow effects */
.glow {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Demo Button */
.demo-btn {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    margin: 20px;
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

/* Modal Styling */
.modal-content {
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
    border-bottom: 2px solid var(--neon-cyan);
    padding: 1.5rem;
}

.modal-title {
    color: var(--neon-cyan);
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.btn-close-white {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);
}

.modal-body {
    padding: 2rem;
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
}

/* Form Elements */
.form-label {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 12px;
    color: var(--text-light);
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    color: var(--text-light);
}

.form-control::placeholder {
    color: #666;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-green));
    color: black;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 243, 255, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Loader */
.loader {
    display: none;
    text-align: center;
    padding: 2rem;
}

.neon-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top: 3px solid var(--neon-cyan);
    border-right: 3px solid var(--neon-pink);
    border-bottom: 3px solid var(--neon-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Glowing Text Effects */
.glow-text {
    text-shadow: 0 0 10px currentColor;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .course-card {
        padding: 2rem;
    }
    
    .course-title {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-title {
        font-size: 2.2rem;
    }

    .course-mentor{
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        max-width: 700px;
        font-weight: 300;
        color: var(--genz-text-secondary);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .skills-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .job-header {
        flex-direction: column;
        gap: 1rem;
    }
}