/* GLOBAL STYLES & RESETS */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333; /* Dark text for readability */
}

/* --- UTILITY CLASSES --- */
.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}
.section-padding {
    padding: 60px 0;
}
.bg-light {
    background-color: #f9f9f9; /* Light grey background for separation */
}

/* --- HEADER & NAVIGATION --- */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff; /* White header */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #0056b3; /* Primary professional blue */
}

#main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#main-nav li {
    margin-left: 25px;
}

#main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

#main-nav a:hover {
    color: #007bff; /* Slightly brighter blue on hover */
}

/* --- HERO SECTION (The Pitch) --- */
#hero {
    background-color: #e6f2ff; /* Very light, trustworthy background color */
    text-align: center;
    padding: 100px 0;
    border-bottom: 5px solid #007bff;
}

#hero h1 {
    font-size: 3.5em;
    color: #004a9e; /* Darker, authoritative blue */
    margin-bottom: 10px;
}

#hero h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 30px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* --- CALL TO ACTION BUTTON (CTA) --- */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #28a745; /* Green - signifies 'Go' or 'Success' */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #1e7e34; /* Darker green on hover */
    transform: translateY(-2px);
}


/* --- GENERAL SECTION STYLING --- */
h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #004a9e;
}

/* SERVICES GRID */
#services .service-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    flex: 1;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #007bff;
    margin-top: 0;
}

/* ABOUT ME SECTION */
#about .profile-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: auto;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* Makes it circular */
    object-fit: cover; /* Ensures the photo fills the space nicely */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* TESTIMONIALS */
#testimonials {
    text-align: center;
}
.testimonial-card {
    background-color: #e9ecef; /* Slightly different background for contrast */
    padding: 30px;
    border-left: 5px solid #ffc107; /* Warning/Highlight color */
    margin: 20px auto;
    max-width: 700px;
    

}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
}
cite {
    display: block;
    text-align: right;
    color: #666;
    font-weight: bold;
}

/* CONTACT SECTION & FORM */
#contact h2 {
     border-bottom: 3px solid #007bff;
     display: inline-block;
     padding-bottom: 5px;
}
.contact-form {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

/* FOOTER */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* --- RESPONSIVENESS (Making it work on phones) --- */
@media (max-width: 768px) {
    #header {
        flex-direction: column;
        padding: 15px;
    }
     #main-nav ul {
        padding: 0;
        /* Simple stacked nav for mobile */
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
        width: 100%;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    .service-grid {
        flex-direction: column;
    }

    #about .profile-content {
        flex-direction: column;
        text-align: center;
    }
    .profile-photo {
         margin-bottom: 20px;
    }
}