:root {
    --primary-color: #00f0ff;
    --secondary-color: #ff00f0;
    --dark-bg: #0a0a12;
    --darker-bg: #050508;
    --light-text: #f0f0f0;
    --dark-text: #333;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

  /* Additional CSS to make the icons bigger */
        .social-links {
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .social-links a {
            color: var(--primary-color);
            font-size: 2rem; /* Adjusted from 1.5rem for larger size */
            margin: 0 12px; /* Increased margin for better spacing */
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, var(--darker-bg), rgba(5, 5, 8, 0.8)), 
                url('https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.neon-text {
    display: inline-block;
    margin: 0 10px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color), 
                 0 0 20px var(--primary-color), 
                 0 0 30px rgba(0, 240, 255, 0.5);
    animation: glow 2s infinite alternate;
}

.neon-text:nth-child(2) {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color), 
                 0 0 20px var(--secondary-color), 
                 0 0 30px rgba(255, 0, 240, 0.5);
    animation-delay: 0.5s;
}

.neon-text:nth-child(4) {
    animation-delay: 1s;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px currentColor, 
                     0 0 20px currentColor, 
                     0 0 30px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 15px currentColor, 
                     0 0 30px currentColor, 
                     0 0 45px rgba(255, 255, 255, 0.5);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll 2s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Training Section */
.training-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.training-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.training-card {
    display: flex;
    background: rgba(20, 20, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.training-details {
    flex: 1;
    padding: 40px;
}

.training-image {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 240, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 80%;
    height: 80%;
    background: rgba(0, 240, 255, 0.05);
    border: 2px dashed rgba(0, 240, 255, 0.3);
    border-radius: 5px;
}

.training-details h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-text);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color), 
                0 0 20px rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-text);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.contact-container {
    display: flex;
    gap: 50px;
    background: rgba(20, 20, 30, 0.8);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300f0ff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 35px;
    color: var(--light-text);
    background-color: rgba(30, 30, 40, 0.8);
}

.form-group select option {
    background-color: var(--darker-bg);
    color: var(--light-text);
}

/* Focus state */
.form-group select:focus {
    background-color: rgba(40, 40, 50, 0.9);
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 5px;
    color: var(--light-text);
    font-family: var(--font-main);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

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

/* Form Select Dropdown */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300f0ff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 35px;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Dialog Box */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-box {
    background: var(--darker-bg);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.dialog-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dialog-box p {
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--dark-bg);
    min-height: 100vh;
}

.services-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.services-section h1 span {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    padding: 30px 20px;
    background: rgba(20, 20, 30, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
    border-color: var(--primary-color);
}

.service-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
}

.service-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    padding: 0 5px;
    word-break: break-word;
}

.highlight-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .training-card {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        opacity: 0;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .service-card {
        width: 150px;
        padding: 20px 15px;
    }
    
    .service-card img {
        width: 80px;
        height: 80px;
    }
    
    .contact-container {
        flex-direction: column;
    }
   
}