/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

/* Header and Navigation */
header {
    background: #1f1f1f;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,255,255,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.4s ease, text-shadow 0.4s ease;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    padding-top: 80px; /* Adjust for fixed header */
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.8rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(0,255,255,0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,255,255,0.3);
    border: 2px solid #00ffff;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #00aaff);
    color: #121212;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0,255,255,0.3);
}

.btn:hover {
    background: linear-gradient(45deg, #00aaff, #00ffff);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,255,255,0.5);
}

/* Section Styles */
section {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

section h2 {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 0 12px rgba(0,255,255,0.4);
}

/* About Me Section */
.about-me {
    background: #1f1f1f;
    border-radius: 15px;
    padding: 4rem;
    margin: 3rem auto;
    box-shadow: 0 8px 25px rgba(0,255,255,0.15);
    border: 1px solid rgba(0,255,255,0.1);
}

.about-me p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #c0c0c0;
}

/* Services Section */
.services {
    background: #121212;
}

.services p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #c0c0c0;
}

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

.service-item {
    background: #1f1f1f;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,255,255,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,255,255,0.1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,255,255,0.3);
}

.service-item h3 {
    color: #00ffff;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    text-shadow: 0 0 5px rgba(0,255,255,0.3);
}

.service-item p {
    color: #b0b0b0;
    font-size: 1rem;
    text-align: left;
}

/* Resources Section */
.resources {
    background: #1f1f1f;
    border-radius: 15px;
    margin: 3rem auto;
    box-shadow: 0 8px 25px rgba(0,255,255,0.15);
    border: 1px solid rgba(0,255,255,0.1);
}

.resource-content {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: #c0c0c0;
}

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

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,255,255,0.2);
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Book Appointment Section */
.book-appointment {
    background: #0a0a0a;
    color: white;
    border-radius: 15px;
    margin: 3rem auto;
    box-shadow: 0 8px 25px rgba(0,255,255,0.2);
    border: 1px solid rgba(0,255,255,0.2);
}

.book-appointment h2 {
    color: #00ffff;
}

.book-appointment p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #c0c0c0;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: #1f1f1f;
    border-radius: 10px;
    box-shadow: inset 0 0 15px rgba(0,255,255,0.1);
}

.booking-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: #00ffff;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #00ffff;
    border-radius: 5px;
    font-size: 1.1rem;
    background-color: #0a0a0a;
    color: white;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 10px rgba(0,255,255,0.5);
}

.booking-form button {
    width: 100%;
    margin-top: 1.5rem;
}

/* Contact Section */
.contact {
    background: #1f1f1f;
    border-radius: 15px;
    margin: 3rem auto;
    box-shadow: 0 8px 25px rgba(0,255,255,0.15);
    border: 1px solid rgba(0,255,255,0.1);
}

.contact p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #c0c0c0;
}

.contact a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px #00ffff;
}

.contact-form {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 3rem;
    background: #0a0a0a;
    border-radius: 10px;
    box-shadow: inset 0 0 15px rgba(0,255,255,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: #00ffff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #00ffff;
    border-radius: 5px;
    font-size: 1.1rem;
    background-color: #121212;
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 10px rgba(0,255,255,0.5);
}

/* Footer */
footer {
    background: #1f1f1f;
    color: #b0b0b0;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(0,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-me,
    .booking-form,
    .contact-form {
        padding: 2.5rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for page load */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.hero-content,
.hero-image {
    animation: fadeIn 1.5s ease-out;
}

.about-me, .services, .resources, .book-appointment, .contact, footer {
    animation: slideInUp 1s ease-out;
    animation-fill-mode: backwards;
}

.about-me { animation-delay: 0.2s; }
.services { animation-delay: 0.4s; }
.resources { animation-delay: 0.6s; }
.book-appointment { animation-delay: 0.8s; }
.contact { animation-delay: 1s; }
footer { animation-delay: 1.2s; }

.service-item {
    animation: slideInUp 0.7s ease-out;
    animation-fill-mode: backwards;
}

.service-item:nth-child(1) { animation-delay: 0.7s; }
.service-item:nth-child(2) { animation-delay: 0.8s; }
.service-item:nth-child(3) { animation-delay: 0.9s; }
.service-item:nth-child(4) { animation-delay: 1.0s; }
.service-item:nth-child(5) { animation-delay: 1.1s; }
.service-item:nth-child(6) { animation-delay: 1.2s; }

.image-gallery img {
    animation: fadeIn 1s ease-out;
    animation-fill-mode: backwards;
}

.image-gallery img:nth-child(1) { animation-delay: 0.7s; }
.image-gallery img:nth-child(2) { animation-delay: 0.8s; }
.image-gallery img:nth-child(3) { animation-delay: 0.9s; }
.image-gallery img:nth-child(4) { animation-delay: 1.0s; }
.image-gallery img:nth-child(5) { animation-delay: 1.1s; }

