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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--primary-color);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Color Palette */
:root {
    --primary-color: #141414; /* Dark background */
    --secondary-color: #00BFFF; /* Highlight blue */
    --text-light: #f9f9f9; /* Light text */
    --text-muted: #999; /* Muted text */
    --dark-gray: #1e1e1e; /* Card background */
    --accent-hover: #00BFFF; /* Hover effect */
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: center; /* Ensure content stays in the center */
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.header .logo img {
    width: 50px;
    height: 50px;
    margin-right: 20px; /* Add spacing between logo and nav */
}

.header nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header nav ul li {
    position: relative;
}

.header nav ul li a {
    color: var(--text-light);
    font-weight: bold;
    padding: 8px 12px;
    transition: background 0.3s;
}

.header nav ul li a:hover {
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.header nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-gray);
    padding: 10px 0;
    display: none;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.header nav ul li:hover .dropdown {
    display: block;
}

.header nav ul li .dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    white-space: nowrap;
}

/* About Section */
.about {
    padding: 4rem 1rem;
    text-align: center;
    background-color: var(--primary-color);
}

.about h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.about-text {
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1rem;
    color: var(--text-muted);
}

.about-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

/* Team Section */
.team {
    background-color: var(--primary-color);
    padding: 4rem 1rem;
    text-align: center;
}

.team .section-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--text-light);
    padding: 2rem 1rem;
    text-align: center;
}

.footer-info {
    margin-bottom: 1rem;
}

.footer-info img {
    width: 50px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--secondary-color);
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-media a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0 10px;
}