/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #aae8ff; /* Light blue background */
    color: #333;
}

/* Header Styles 
header {
    background-color: #00509e;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}
*/

header {
    background-image: url('images/header-bg.jpg'); /* Path to the local image */
    background-size: cover; /* Ensures the image covers the entire header */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    padding: 1rem 1rem; /* Add padding for spacing */
    text-align: center;
    position: relative;
}

.header-container {
    display: flex;
    align-items: center; /* Align logo and text vertically */
    justify-content: center; /* Center content horizontally */
    flex-wrap: wrap; /* Ensure proper wrapping on smaller screens */
}

.logo img {
    max-width: 150px; /* Increase logo size */
    height: auto; /* Maintain aspect ratio */
    margin-right: 1.5rem; /* Space between logo and text */
}

.header-text h1 {
    font-size: 4rem; /* Increase main heading size */
    color: white;
    margin: 0;
}

.header-text p {
    font-size: 1.5rem; /* Increase subheading size */
    color: yellow;
    margin: 0.5rem 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stack logo and text vertically */
    }

    .logo img {
        max-width: 120px; /* Slightly smaller logo for smaller screens */
        margin-right: 0; /* Reset margin for vertical layout */
    }

    .header-text h1 {
        font-size: 2.5rem; /* Adjust heading size for smaller screens */
    }

    .header-text p {
        font-size: 1.2rem; /* Adjust subheading size for smaller screens */
    }
}


/* Navigation Bar */
nav {
    background-color: #003F7F;
    padding: 0.5rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 .5rem;
	  position: relative; /* For pseudo-element positioning */
}

nav ul li:not(:last-child)::after {
    content: ''; /* Add separator */
    display: block;
    width: 1px;
    height: 20px; /* Height of the bar */
    background-color: white; /* Color of the separator bar */
    position: absolute;
    right: -10px; /* Position the bar */
    top: 50%;
    transform: translateY(-50%);
}

nav ul li a {
    color: orange;
    text-decoration: none;
    font-weight: bold;
	font-size: 1.5rem; /* Increase the font size */
	padding: 0 1rem; /* Add padding for spacing around links */
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    background-color: #ffffff; /* White background for content */
    margin: 1rem auto;
    padding: 2rem;
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for content */
    border-radius: 8px; /* Rounded corners */
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: #00509e;
    margin-bottom: 1rem;
}

section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background-color: #00509e;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

footer .social-icons img {
    width: 30px;
    height: 30px;
}

/* Team Section (About Page) */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #00509e;
    margin: 0.5rem 0.5rem;
}

.team-member h4 {
    font-size: 0.8rem;
    color: #00509e;
}

.team-member p {
    font-size: 1.0rem;

}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #00509e;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: all 0.3s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00509e;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 80, 158, 0.5);
}

.contact-form button {
    background-color: #00509e;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact-form button:hover {
    background-color: #003f7f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stack logo and text vertically */
    }

    .logo img {
        margin-right: 0; /* Reset margin for vertical layout */
        margin-bottom: 1rem; /* Add space below the logo */
    }

    .header-text h1 {
        font-size: 1.8rem;
    }

    .header-text p {
        font-size: 1rem;
    }
}

/* Core Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 2rem; /* Spacing between cards */
    margin-top: 2rem;
}

.service {
    text-align: center;
    background: #ffffff; /* White background for each card */
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service h3 {
    font-size: 1.4rem;
    color: #00509e;
    margin: 0.5rem 0;
}

.service p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hover Effects */
.service:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}
/* Welcome Page Styles */
.expertise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.expertise-item {
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: #00509e;
    margin-bottom: 0.5rem;
}

.expertise-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background-color: #00509e;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #003f7f;
}
/* Our Expertise Section */
.expertise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    text-align: center; /* Center-align the content */
}

.expertise-item {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.expertise-item .icon img {
    width: 60px; /* Icon size */
    height: auto;
    margin-bottom: 1rem;
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: #00509e;
    margin: 0.5rem 0;
}

.expertise-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}
/* WhatsApp Chat Button */
/* Floating WhatsApp Icon */
.whatsapp-floating {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the page */
    right: 20px; /* Distance from the right edge of the page */
    z-index: 1000; /* Ensure it appears above other elements */
}

.whatsapp-floating a img {
    width: 80px; /* Icon size */
    height: 80px;
    border-radius: 50%; /* Make the icon circular */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  Add a shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effect */
}

.whatsapp-floating a img:hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}
