:root {
    --primary: #f22f46; /* Red primary */
    --secondary: #7000ff; /* Purple neon */
    --accent: #ff0055; /* Pink neon */
    --cyan: #00f2ff; /* Cyan for contrast */
    --bg-dark: #050505;
    --text-light: #e0e0e0;
    --nav-height: 80px;
    --glass-bg: rgba(5, 5, 5, 0.85);
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Cyberpunk Glow */
.neon-text {
    text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
}

.neon-border {
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    line-height: 1;
}

.main-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff !important;
    text-transform: uppercase;
    line-height: 1;
}

.main-text span {
    color: var(--primary) !important;
}

.sub-text {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: #00f2ff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    text-align: right;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

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

/* Blog button in nav */
.nav-links .btn-blog {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: bold !important;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 100px;
}

.nav-links .btn-blog:hover {
    background: rgba(242, 47, 70, 0.1);
    box-shadow: 0 0 15px rgba(242, 47, 70, 0.3);
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7rem;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    border: 1px solid var(--primary);
    min-width: 220px;
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Maintain hover area with pseudo-element for programs dropdown */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* Bridge the gap */
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 242, 255, 0.1);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    cursor: pointer;
    border: 1px solid var(--primary);
    padding: 5px 10px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-dark);
    border: 1px solid var(--primary);
    display: none;
    flex-direction: column;
    margin-top: 5px;
    z-index: 1001; /* Ensure it stays above other elements */
}

/* Maintain hover area with pseudo-element to prevent closing when moving to dropdown */
.lang-switcher::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.active .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    padding: 8px 15px;
    text-decoration: none;
    color: var(--text-light);
}

.lang-dropdown a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Apply Button */
.btn-apply {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: bold !important;
    box-shadow: 0 0 15px rgba(242, 47, 70, 0.4);
    text-align: center;
    text-decoration: none !important; /* Remove underline */
}

.btn-apply:hover {
    box-shadow: 0 0 25px rgba(242, 47, 70, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: bold !important;
    text-align: center;
    text-decoration: none !important; /* Remove underline */
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(242, 47, 70, 0.1);
    box-shadow: 0 0 15px rgba(242, 47, 70, 0.3);
    transform: translateY(-2px);
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    background: radial-gradient(circle at center, #1a0505 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(rgba(242, 47, 70, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(242, 47, 70, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    top: -50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p.subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: #aaa;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Counters */
.counters {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.counter-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

/* Program Cards */
.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(242, 47, 70, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(242, 47, 70, 0.2);
}

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

.card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.hero-cta .btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem; /* Added margin at the bottom */
}

@media (max-width: 1024px) {
    .program-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .program-cards {
        grid-template-columns: 1fr;
    }
    .counters {
        gap: 1.5rem;
    }
    .counter-value {
        font-size: 1.5rem;
    }
}

/* Programs Section */
.programs-section {
    padding: 100px 5%;
    background: rgba(0, 242, 255, 0.05) !important; /* Very subtle cyan tint */
    position: relative;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    z-index: 1;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.programs-section .section-title {
    color: var(--text-light);
    margin-bottom: 1rem !important; /* Reduced to make space for subtitle */
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.program-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
}

.program-card:hover {
    transform: scale(1.03);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    text-transform: uppercase;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.program-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    flex-direction: column;
}

.program-features li strong {
    color: var(--cyan);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.academic-list {
    list-style: none;
}

.academic-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.academic-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-size: 0.7rem;
    top: 4px;
}

@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Modal / Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #0a0a0a;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(242, 47, 70, 0.3);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    padding: 3rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary);
    color: #fff;
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Tabs UI */
.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(242, 47, 70, 0.2);
    padding-bottom: 10px;
    overflow-x: auto;
}

.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #888;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: rgba(242, 47, 70, 0.05);
    box-shadow: 0 0 10px rgba(242, 47, 70, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content h3 {
    color: #fff;
    margin-top: 0; /* Reset for tabs */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.program-week {
    margin-bottom: 2rem;
}

.program-week h4 {
    color: var(--cyan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.program-week ul {
    list-style: none;
    padding-left: 1rem;
}

.program-week li {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
    position: relative;
}

.program-week li::before {
    content: '→';
    position: absolute;
    left: -1.2rem;
    color: var(--primary);
}

.paths-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.paths-table th, .paths-table td {
    padding: 1rem;
    border: 1px solid rgba(242, 47, 70, 0.2);
    text-align: left;
}

.paths-table th {
    background: rgba(242, 47, 70, 0.1);
    color: var(--primary);
    text-transform: uppercase;
}

.candidate-profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.profile-item {
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-left: 3px solid var(--primary);
}

@media (max-width: 768px) {
    .modal-container {
        padding: 1.5rem;
    }
    .candidate-profile {
        grid-template-columns: 1fr;
    }
    .paths-table {
        display: block;
        overflow-x: auto;
    }
}

/* Responsiveness */
@media (max-width: 1200px) {
    .nav-links {
        display: none; /* Hide for mobile initially */
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        border: none;
        padding-left: 1rem;
        display: none;
        background: transparent;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }
}

/* Mentor Section */
.mentor-section {
    padding: 100px 5%;
    background: #000000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(242, 47, 70, 0.2);
}

.mentor-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.mentor-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.mentor-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.mentor-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--cyan);
    z-index: -1;
    opacity: 0.5;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
}

.mentor-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) contrast(110%);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.mentor-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.mentor-tag {
    display: inline-block;
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 4px 12px;
    border: 1px solid var(--cyan);
    background: rgba(0, 242, 255, 0.05);
}

.mentor-name {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1;
}

.mentor-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentor-description {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.05rem;
}

.mentor-description p {
    margin-bottom: 1.5rem;
}

.mentor-description strong {
    color: #fff;
}

.mentor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.mentor-stat-item {
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}

.mentor-stat-value {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.mentor-stat-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

/* Responsive Mentor */
@media (max-width: 968px) {
    .mentor-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .mentor-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .mentor-stat-item {
        text-align: left;
    }
}

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

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: rgba(0, 242, 255, 0.05) !important;
    position: relative;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-tab-btn {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: #888;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    max-width: 400px;
}

.faq-tab-btn.active {
    color: var(--cyan);
    border-color: var(--cyan);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.faq-category {
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(0, 242, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--cyan);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough to fit content */
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 5%;
    background: #000000;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(242, 47, 70, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 47, 70, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.cta-section p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-footer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #888;
    font-size: 0.9rem;
}

.cta-footer-item span {
    color: var(--cyan);
    font-weight: bold;
}

/* Form Section */
.form-section {
    padding: 100px 5%;
    background: rgba(0, 242, 255, 0.05) !important;
    position: relative;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--primary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(242, 47, 70, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: bold;
    letter-spacing: 1px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(242, 47, 70, 0.3);
    padding: 12px;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(242, 47, 70, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23f22f46' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

select option {
    background: #111;
    color: #fff;
}

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

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
    font-size: 0.9rem;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid #00ff64;
    color: #00ff64;
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    .cta-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Footer Section */
.footer {
    padding: 80px 5% 40px;
    background: #000000;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column:first-child {
    flex: 1.5;
    min-width: 280px;
}

.footer-column h4 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-desc {
    color: #888;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.footer-contact-item span {
    color: var(--cyan);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(242, 47, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(242, 47, 70, 0.5);
    transform: translateY(-3px);
}

.mentor-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 3rem auto 0;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 119, 181, 0.1);
    padding: 15px 40px;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(0, 119, 181, 0.3);
    border-bottom: 1px solid rgba(0, 242, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mentor-linkedin::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;
    z-index: -1;
}

.mentor-linkedin:hover::before {
    left: 100%;
}

.mentor-linkedin:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.6), 0 0 40px rgba(0, 242, 255, 0.2);
    border-color: var(--cyan);
    color: #fff;
    background: #0088cc;
}

.mentor-linkedin .social-icon {
    margin: 0;
    width: auto;
    height: auto;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.mentor-linkedin .social-icon:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

/* Adjust mentor content to ensure everything is centered nicely if needed */
@media (max-width: 968px) {
    .mentor-linkedin {
        margin-top: 2.5rem;
    }
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
