:root {
    --primary: #007AFF; /* Sleek Blue */
    --bg: #0a0a0a;     /* Deep Black */
    --text: #e0e0e0;
    --accent: #333333;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-sizing: border-box;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    padding-top: 80px;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary);
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--accent);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.contact-section {
    background: #111;
    padding: 80px 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary { background: var(--primary); color: white; }
.btn-outline { border: 1px solid var(--text); color: var(--text); }

footer { padding: 40px; text-align: center; font-size: 0.8rem; color: #666; }

/* Slider Animation */
.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    animation: slide 9s infinite;
}

.slider-item {
    min-width: 100%;
    text-align: center;
    padding: 20px 0;
}

.slider-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
    padding: 15px 0;
}

@keyframes slide {
    0%, 25% { transform: translateX(0); }
    33%, 58% { transform: translateX(-100%); }
    66%, 91% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* About Page Specific Styles */
.about-content {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-statement {
    text-align: center;
    margin-bottom: 80px;
}

.mission-statement h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.mission-statement p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.accent-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 122, 255, 0.1); /* Very faint primary color */
    margin-bottom: -20px;
}

.container {
    padding: 0 20px;
}

/* Ensure the grid fits 3 items on about page */
.about-content .grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.faq-header p {
    font-size: 1.1rem;
    color: #888;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #444;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary);
}

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

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

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #999;
    line-height: 1.7;
    margin: 0;
}
