/* --- Dark Theme Color Palette --- */
:root {
    --dark-bg: #0d0d0f;
    --dark-bg-alt: #1a1a1c;
    --light-text: #EAEAEA;
    --light-text-secondary: #b3b3b3;
    --accent-blue: #00BFFF; /* Deep Sky Blue */
    --accent-pink: #FF00FF; /* Magenta */
    --white: #FFFFFF;
    --header-height: 70px;
}

/* --- Keyframe Animations --- */
@keyframes shimmer {
    0% { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.7;
    color: var(--light-text);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { 
    margin-bottom: 1rem; 
    color: var(--light-text-secondary);
}

/* --- SHIMMER EFFECT FOR H2 TITLES --- */
h2 {
    background: linear-gradient(to right, var(--accent-blue) 20%, var(--accent-pink) 40%, var(--accent-blue) 60%, var(--accent-pink) 80%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 8s linear infinite;
    -webkit-animation: shimmer 8s linear infinite;
}


/* --- Header & Navigation --- */
#header {
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a2a;
    position: fixed;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

#header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.logo-img {
    height: 70px;
    margin-right: 10px;
    /* This transition makes the glow appear and disappear smoothly */
    transition: filter 0.4s ease-in-out;
}

.logo-img:hover {
    /* The neon glow effect is now only on hover */
    filter: 
        drop-shadow(0 0 3px var(--white))
        drop-shadow(0 0 8px var(--accent-blue))
        drop-shadow(0 0 15px var(--accent-blue))
        drop-shadow(0 0 25px var(--accent-pink));
}

.nav-menu {
    display: flex;
    align-items: center;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 400;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--white);
    text-shadow: 0 0 20px var(--accent-blue), 0 0 5px var(--white);
    transform: scale(1.1);
}

/* --- BUTTONS (Shared Styles) --- */
.nav-contact-btn, .cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-contact-btn::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.nav-contact-btn:hover::before, .cta-button:hover::before {
    left: 100%;
}


/* --- Nav Contact Button --- */
.nav-contact-btn {
    background-image: linear-gradient(to right, var(--accent-blue), var(--accent-pink));
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s ease;
    border: none;
    background-size: 200% auto;
    text-decoration: none;
    margin-left: 30px;
}

.nav-contact-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--accent-pink);
    text-shadow: none !important;
}

/* --- Hero Section with Video --- */
#hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background-image: linear-gradient(to right, var(--accent-blue) 0%, var(--accent-pink) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 191, 255, 0.5);
    background-size: 200% auto;
}

.cta-button:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--accent-pink);
}

/* --- General Content Sections --- */
.content-section {
    text-align: center;
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.alt-bg {
    background-color: var(--dark-bg-alt);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 40px auto;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--accent-blue);
}

.feature-card h3 {
    margin-bottom: 10px;
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
}

.team-member {
    text-align: center;
}

.team-photo-link, .team-name-link {
    text-decoration: none;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover; /* This ensures the image covers the circle without being distorted */
    border: 3px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-link:hover .team-photo {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-blue);
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member h4 {
    color: var(--light-text-secondary);
    font-weight: 400;
    margin-bottom: 15px;
}

.team-name-link:hover h3 {
    color: var(--accent-blue);
    text-shadow: 0 0 8px var(--accent-blue);
}

/* --- Contact Form --- */
#contact-form {
    max-width: 700px;
    margin: 0 auto;
}
.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #333;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #2a2a2a;
    color: var(--light-text);
}

#contact-form input::placeholder, #contact-form textarea::placeholder {
    color: #888;
}

#contact-form input:focus, #contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}

#contact-form button {
    width: auto;
    margin-top: 20px;
}

#form-status {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    height: 24px;
}

/* --- Footer --- */
footer {
    background: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0;
    opacity: 0.7;
}

.gep-statement {
    font-size: 0.8rem;
    margin-top: 8px;
    opacity: 0.6;
}

.gep-statement a {
    color: var(--light-text);
    text-decoration: underline;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.gep-statement a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 5px var(--accent-blue);
}

/* --- Responsive Design --- */
@media(max-width: 992px) {
     .features-grid {
        grid-template-columns: 1fr;
     }
}
@media(max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-menu {
        display: none;
    }

    .team-grid, .form-group {
        grid-template-columns: 1fr;
    }

    .team-member {
        margin-bottom: 20px;
    }
}

