/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px; /* Base font size for uniformity */
    line-height: 1.5;
}

/* Header */
header {
    background-color: #2a6ca4; /* Slightly darker blue */
    color: black;
    padding: 20px 10px;
    text-align: center;
}

header .header-content img {
    max-height: 150px; /* Standardized logo size */
    display: block;
    margin: 0 auto 10px;
}

header h1 {
    font-size: 24px;
    margin: 0;
    color: black;
}

header p {
    font-size: 14px;
    margin: 5px 0 0;
}

/* Navigation */
nav {
    background-color: black;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

nav a.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;

}

h1 {
    text-align: center;
    color: #03AC13;
    font-size: 35px;
}

/* About Us Page Image */
.about-image {
    display: block;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin: 20px auto;
}

/* Gallery */
.gallery {
    display: grid; /* Create a grid for images */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive layout */
    gap: 15px; /* Add space between images */
    margin: 20px auto;
    padding: 0;
    max-width: 800px; /* Center-align and limit width */
    list-style: none;
}

.gallery img {
    display: block;
    width: 100%; /* Make images responsive */
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
}

/* Form Styling */
form {
    max-width: 600px;
    margin: 20px auto;
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

form input,
form textarea,
form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    background-color: #03AC13;
    color: white;
    cursor: pointer;
}

form button:hover {
    background-color: #028a10;
}

/* Project Cards */
.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid layout */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.project-card {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    background-color: #fff;
    text-align: center;
    font-size: 16px; /* Match other pages' text size */
}

.project-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-card a {
    color: #03AC13;
    text-decoration: none;
    margin: 0 5px;
}

.project-card a:hover {
    text-decoration: underline;
}

.social-links {
  display: inline-flex;
  gap: 15px;
  margin-left: 10px;
}

.social-links a {
  font-size: 24px;
  color: #000;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* Optional brand hover colors */
.social-links a[title="Facebook"]:hover { color: #1877F2; }
.social-links a[title="Gmail"]:hover { color: #D44638; }
.social-links a[title="WhatsApp"]:hover { color: #25D366; }

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: black;
    color: white;
}
