/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}
/* Hero Section */
.hero {
    background: url('images/heroo.jpeg?text=Your+Banner+Image') no-repeat center center/cover;
    color: white;
    padding: 6rem 2rem;
    min-height: 60vh;
    
    /* Flexbox for perfect centering */
    display: flex;
    flex-direction: column; /* THIS IS THE FIX: Stacks items vertically */
    justify-content: center; /* Center vertically */
    align-items: center;   /* Center horizontally */
    text-align: center;
}

/* Optional: Style for the content wrapper if needed */
.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ffc107;
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Ensures padding and other properties work well */
}

.cta-button:hover {
    background-color: #e0a800;
}

/* Basic body styles for demonstration */
body {
    font-family: 'Arial', sans-serif;
    margin: 0; 
}

/* Main Content Area */
.main-content {
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
/* Styling for the new service icons */
.service-icon {
    width: 60px;  /* Sets the width of the icon */
    height: 60px; /* Sets the height of the icon */
    margin-bottom: 1rem; /* Adds space between the icon and the heading */
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 0;
    color: #007bff;
}

/* User Reviews */
.reviews {
    margin-top: 3rem;
}

.review {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.review p {
    font-style: italic;
}

.review .author {
    font-weight: bold;
    text-align: right;
    color: #555;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer p {
    margin: 0.5rem 0;
}

.footer .disclaimer {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}