/* Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
    background: linear-gradient(90deg, #64f0ff, #4a90e2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a8b2d1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccd6f6;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 700px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
}

/* Base Styles */
:root {
    --primary: #3498db;
    --secondary: #2980b9;
    --dark: #0a192f;
    --darker: #020c1b;
    --light: #ecf0f1;
    --accent: #3498db;
    --text: #7f8c8d;
    --text-light: #bdc3c7;
    --card-bg: #1a2a4a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, #0a0f2e 0%, #1a1a2e 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.1) 0%, transparent 20%),
        linear-gradient(135deg, #0a0f2e 0%, #1a1a2e 100%);
    z-index: -2;
    pointer-events: none;
    opacity: 0.9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: #3498db;
}

/* Header Styles */
.cyber-header {
    background: rgba(10, 15, 46, 0.2);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

.cyber-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiMxMTIyNDAiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
    opacity: 0.2;
    z-index: 0;
}

/* Simplified Navigation */
.simplified-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.main-logo {
    color: #00a2ff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
    transition: all 0.3s ease;
}

.main-logo:hover {
    color: #00d9ff;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    transform: scale(1.02);
}

.cyber-nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cyber-nav-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cyber-nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.cyber-nav-link:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #fff;
    border-color: rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

/* Specific styles for back-to-main to ensure it stays consistent */
.back-to-main {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-main i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.back-to-main:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #fff;
    border-color: rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 6rem 0 5rem;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge Style */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.badge:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Course Grid */
.courses-section {
    padding: 5rem 0;
}

.courses-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.courses-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 2rem;
}

.course-card {
    background: rgba(15, 26, 50, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.course-card-image {
    height: 160px;
    background: linear-gradient(135deg, #0a0f2e 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.course-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.3));
    transition: transform 0.3s ease;
}

.course-card:hover .course-card-image img {
    transform: scale(1.05);
}

.course-card-image i {
    font-size: 4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.course-card:hover .course-card-image i {
    transform: scale(1.1);
}

.course-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.course-card h3 {
    color: #fff;
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-card p {
    color: #94a3b8;
    margin: 0 0 1rem 0;
    flex-grow: 1;
    font-size: 0.85rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin: 0.75rem 0 1rem;
    font-size: 0.8rem;
    color: #64748b;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.04);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-meta i {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .course-grid {
        padding: 0 1rem;
    }
    
    .course-card-image {
        height: 140px;
    }
    
    .course-card-content {
        padding: 1.25rem;
    }
    
    .course-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .course-actions .btn {
        width: 100%;
        padding: 0.5rem;
    }
    
    .course-card h3 {
        font-size: 1rem;
    }
    
    .course-card p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

.course-card {
    background: rgba(15, 26, 50, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.course-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
    background: rgba(25, 42, 86, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
    z-index: 2;
}

.course-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.course-image {
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.course-image:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(15, 45, 90, 0.9) 0%, rgba(26, 58, 90, 0.9) 100%);
}

.course-image i {
    font-size: 2.5rem;
    color: #fff;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #3498db, #2980b9);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.course-card:hover .course-image i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.course-image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.course-content {
    padding: 1.25rem;
    padding-top: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.course-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
    transition: width 0.2s ease;
}

.course-card:hover .course-title::after {
    width: 40px;
}

.course-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Different icon colors */
.course-icon.blue { background: linear-gradient(135deg, #3498db, #2980b9); }
.course-icon.green { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.course-icon.purple { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.course-icon.orange { background: linear-gradient(135deg, #e67e22, #d35400); }
.course-icon.red { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.course-icon.pink { background: linear-gradient(135deg, #e84393, #fd79a8); }
.course-icon.teal { background: linear-gradient(135deg, #00b894, #00cec9); }
.course-icon.yellow { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.course-icon.cyan { background: linear-gradient(135deg, #00cec9, #0984e3); }
.course-icon.gray { background: linear-gradient(135deg, #636e72, #2d3436); }

.course-description {
    color: #94a3b8;
    margin: 0.4rem 0 1rem;
    flex-grow: 1;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75rem 0 1rem;
    font-size: 0.8rem;
    color: #64748b;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.04);
}

.course-duration,
.course-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-duration i,
.course-level i {
    color: #6b7c93;
    font-size: 0.9em;
    margin-right: 5px;
}

.course-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.course-actions .btn {
    flex: 1;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.course-actions .btn i {
    font-size: 0.9em;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #2472a4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.course-buttons {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.8rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-primary {
    background: #3498db;
    color: white;
    flex: 1;
    border: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: none;
    background: #3da5f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    flex: 1;
    transition: all 0.2s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(10, 15, 46, 0.2);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 20%);
    z-index: -1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(15, 26, 50, 0.3);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 152, 219, 0.2);
    background: rgba(25, 42, 86, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.career-prep {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.career-prep p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer Styles */
.cyber-footer {
    background: rgba(10, 15, 46, 0.2);
    padding: 4rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--accent);
}

.footer-section p {
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text);
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #2196f3;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--darker);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.8);
}

/* Selection Styling */
::selection {
    background: rgba(52, 152, 219, 0.3);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.course-card:hover .course-image i {
    animation: float 3s ease-in-out infinite;
}

/* Glow Effect */
.course-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3498db, #2980b9, #1a5276, #3498db);
    background-size: 400%;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    transition: 0.5s;
    animation: animate 20s linear infinite;
}

.course-card:hover::before {
    opacity: 1;
    filter: blur(5px);
}

@keyframes animate {
    0% { background-position: 0 0; }
    50% { background-position: 300% 0; }
    100% { background-position: 0 0; }
}
