/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background: #fff;
    color: #333;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 30px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #e0e0e0;
}

#hero {
    background: linear-gradient(135deg, #e6f7ff, #ffffff); /* Light blue gradient background */
    color: #333;
    padding: 100px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#hero .hero-content {
    text-align: left;
    max-width: 550px; /* Slightly reduced max-width for text to balance with larger image */
    margin-right: 70px; /* Increased right margin for text */
}

#hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1e88e5; /* Example blue color for heading */
}

#hero p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

#hero .hero-image img {
    max-width: 650px; /* Further increased max-width for a larger hero image */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff7043; /* Example orange color for button */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65100; /* Darker orange on hover */
}


#about, #services, #contact {
    padding: 60px 30px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

#about h2, #services h2, #contact h2 {
    color: #1e88e5; /* Blue heading color */
    margin-bottom: 30px;
    text-align: center;
}

#about .about-content {
    display: flex;
    align-items: center;
}

#about .about-content img {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-right: 30px;
}

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

#services .service {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center; /* Center service content */
}

/* Style for Font Awesome service icons */
.services-grid .service i.service-icon {
    font-size: 60px; /* Adjust icon size as needed */
    color: #ff7043; /* Orange icon color */
    margin-bottom: 15px;
    display: block; /* Ensure icon is on its own line */
}


#services .service h3 {
    color: #ff7043; /* Orange heading for services */
    margin-top: 10px;
}


#contact .contact-details {
    text-align: center;
    margin-bottom: 30px;
}

#contact .contact-details p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

#contact .contact-details a {
    color: #1e88e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact .contact-details a:hover {
    color: #e65100;
}


#contact .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact .contact-form input,
#contact .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
    font-family: Arial, sans-serif;
}

#contact .contact-form textarea {
    resize: vertical;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: static;
    bottom: 0;
    width: 100%;
}
