/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #0b132b;
    --secondary-color: #1c2541;
    --accent-color: #3a506b;
    --highlight-color: #5bc0be;
    --neon-color: #00f5d4;
    --dark-color: #0b132b;
    --light-color: #f8f9fa;
    --text-dark: #e0e0e0;
    --text-light: #f8f9fa;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
}

body {
    background-color: #121212;
    color: var(--text-light);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(91, 192, 190, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 245, 212, 0.05) 0%, transparent 50%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Team Section */
.team-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    color: var(--neon-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
}

.team-section h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: var(--highlight-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--neon-color);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color:#1d2a37;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    padding-top: 30px;
    border: 1px solid rgba(91, 192, 190, 0.2);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(91, 192, 190, 0.15);
    border-color: var(--neon-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid var(--highlight-color);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.3);
    transition: var(--transition);
}

.team-card:hover img {
    border-color: var(--neon-color);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
}

.team-card h3 {
    margin-top: 20px;
    font-size: 20px;
    color: var(--neon-color);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.team-card p {
    color: var(--highlight-color);
    font-weight: 500;
    margin: 8px 0;
    opacity: 0.9;
}

.team-card span {
    display: inline-block;
    background-color: rgba(91, 192, 190, 0.1);
    color: var(--neon-color);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 10px 0 20px;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(91, 192, 190, 0.3);
    letter-spacing: 1px;
}

/* Social Links Styles */
.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-bottom: 20px;
}

.team-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(91, 192, 190, 0.1);
    border-radius: 50%;
    color: var(--neon-color);
    transition: var(--transition);
    border: 1px solid rgba(91, 192, 190, 0.3);
}

.team-card .social-links a:hover {
    background-color: var(--neon-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.5);
}

.team-card .social-links i {
    font-size: 18px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 5% 20px;
    background-image: 
        linear-gradient(rgba(11, 19, 43, 0.97), rgba(11, 19, 43, 0.97)),
        repeating-linear-gradient(45deg, rgba(91, 192, 190, 0.05) 0px, rgba(91, 192, 190, 0.05) 1px, transparent 1px, transparent 10px);
    border-top: 1px solid rgba(91, 192, 190, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-left p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-center h4,
.footer-right h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-center h4::after,
.footer-right h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--neon-color);
    bottom: 0;
    left: 0;
    box-shadow: 0 0 5px var(--neon-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--neon-color);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.5);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--neon-color);
    text-shadow: 0 0 5px rgba(0, 245, 212, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        z-index: 100;
        border-left: 1px solid rgba(91, 192, 190, 0.2);
    }

    .nav-links.show {
        right: 0;
    }

    .team-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 4%;
    }

    .team-container {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .team-card img {
        height: 200px;
    }

    .team-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .top-banner {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .team-section h2 {
        font-size: 28px;
    }

    .team-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .team-card img {
        height: 180px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Animation Styles for AOS */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s, opacity 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

  /* Responsive Menu (for screens less than 768px) */
  @media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #222;
        text-align: center;
    }
  
    .nav-links li {
        padding: 15px;
        border-bottom: 1px solid #444;
    }
  
    .menu-toggle {
        display: block;
    }
  
    .nav-links.open {
      display: flex;
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show toggle button */
    }
  
    /* Hide navbar links by default on mobile */
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: left;
        background: #222;
        padding: 1rem;
        border-radius: 8px;
    }
  
    /* Show links when toggle button is clicked */
    nav ul.show {
        display: flex;
    }
  }