/* Reset some browser defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Reset */
body, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Exo', sans-serif;
}


body {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #ffffff; /* White background */
    color: #333; /* Dark gray text */
    padding: 20px;
}

/* Navigation Bar */
nav {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-bottom: 1px solid #e0e0e0; /* Light gray border */
}

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

.logo img {
    height: 125px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-family: 'Exo';
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #001A3A; /* Blue links */
    font-weight: bold;
    transition: color 0.3s ease;
    font-family: 'Exo';
}
    
.nav-links a:visited {
    color: #001A3A; /* Blue links */
}

.nav-links a:hover {
    color: #0056b3; /* Darker blue on hover */
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #555;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    min-height: 300px;
    overflow: hidden; /* Prevents horizontal scrolling */
}

.hero-images {
    display: flex;
    flex-direction:row; /* Stack images horizontally */
    justify-content: center; /* Center images vertically */
    align-items: center; /* Center images horizontally */
    gap: 20px; /* Adds spacing between images */
    width: 100%; /* Makes the container span the full width */
}

.hero-images img {
    width: 80%; /* Adjusts the width of each image */
    max-width: 400px; /* Optional: Limits the maximum width of each image */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures images are cropped properly if needed */
    border-radius: 8px; /* Optional: Adds rounded corners */
}


.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color:#007bff;
    
}

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

.hero .btn {
    display: inline-block;
    background-color: #007bff; /* Blue button */
    color: #ffffff; /* White text */
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Overview & Benefits */
section.overview,
section.benefits {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000; /* Black headings */
}

section p {
    margin-bottom: 40px;
    color: #555; /* Medium gray text */
}

section div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

section div > div {
    flex: 1 1 200px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #f9f9f9; /* Light gray background */
}

section img {
    height: 50px;
    margin-bottom: 10px;
}

section h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #000000; /* Black headings */
}

/* Button Styling */
.btn {
    background-color: #007bff; /* Blue button */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

#about-us {
    display:inline-block;
    margin: 20px auto; /* Centers the button horizontally */
    text-align: center;
    background-color: #007bff; /* Blue background */
    color: white; /* White text */
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none; /* Removes underline */
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

/*Testimonials Section */

.testimonials {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .testimonials h1 {
    margin-bottom: 1.5rem;
  }
  
  .testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem auto;
    max-width: 600px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .testimonial-card img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  blockquote {
    font-style: italic;
    color: #555;
  }
  
  blockquote footer {
    margin-top: 0.5rem;
    font-weight: bold;
    color: #333;
  }

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0; /* Light gray border */
    font-size: 0.9rem;
    color: #666; /* Medium gray text */
}

/* Services Section */
.services {
    text-align: center;
    padding: 50px 20px;
}

.service-list {
    display: flex; /* Enables flexbox layout */
    flex-wrap: wrap; /* Ensures items wrap to the next line if needed */
    justify-content: space-between; /* Distributes space evenly between items */
    gap: 20px; /* Adds spacing between the cards */
    max-width: 1200px; /* Optional: Limits the container width */
    margin: 0 auto; /* Centers the container */
}

.service-card {
    flex: 1 1 calc(25% - 20px); /* Each card takes up 25% of the container width minus the gap */
    max-width: 25%; /* Ensures cards don’t exceed 25% of the container width */
    background-color: #f9f9f9; /* Optional: Adds a background color */
    padding: 20px;
    border-radius: 8px; /* Optional: Adds rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
    text-align: left; /* Aligns text to the left */
}

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

.service-card h2 {
    color: #000;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact us section */

.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

textarea {
    resize: none;
}

.btn {
    padding: 12px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* General styles for larger screens (default) are already defined above */

/* For tablets (screens smaller than 768px) */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column; /* Stack navigation links vertically */
        align-items: center;
        gap: 10px;
    }

    .hero {
        padding: 30px 10px; /* Reduce padding for smaller screens */
    }

    .hero-images {
        flex-wrap: wrap; /* Allow images to wrap to the next line */
        justify-content: center; /* Center images */
    }

    .hero-images img {
        width: 100%; /* Make images take up full width of their container */
        max-width: 300px; /* Limit the maximum width */
    }

    header h1 {
        font-size: 2rem; /* Reduce font size for smaller screens */
    }
}

/* For smartphones (screens smaller than 480px) */
@media (max-width: 480px) {
    .nav-container {
        flex-direction: column; /* Stack logo and nav links vertically */
        align-items: center;
    }

    .hero h1 {
        font-size: 1.8rem; /* Further reduce font size */
        text-align: center;
    }

    .hero-images img {
        max-width: 100%; /* Ensure images fit within the screen */
        margin-bottom: 10px; /* Add spacing between images */
    }

    .contact-form {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem; /* Adjust input font size for smaller screens */
    }

    .btn {
        font-size: 1rem; /* Adjust button size */
        padding: 10px 15px;
    }
}

