/* Global Styles */

/* Styling for the about content box */
.about-content-box {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    width: 80%; /* Adjust the width as needed */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: shadow effect */
}

/* Additional styling for the about content sections */
.about-content h3 {
    margin-top: 20px; /* Keep margin-top as desired */
    margin-bottom: 10px; /* Reduce space below the h3 */
    font-size: 1.5rem;
}

/* Optional: Adjust the margin for the p tag to control space */
.about-content p {
    margin-top: 0; /* Remove any top margin */
    font-size: 13px;
    line-height: 1.6;
}


/* Optional: styling for the overall container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    background-image: url('background.jpg'); /* Replace 'background.jpg' with your image file */
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the background image */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
}

.logo {
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    width: 200px;
    text-indent: -9999px; /* Hide the text */
    position: relative;   /* Relative positioning */
    top: 20px;            /* Move down */
    left: 40px;           /* Move right */
}


header {
    
    background-color: rgba(0, 86, 179, 0.7); /* Slight transparency to blend with background */
    color: white;
    padding: 2px 0; /* Further reduced padding */
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
}

/* Navigation */
nav {
    background-color: #004494;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

/* Container */
.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Intro Section */
.intro {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service h3 {
    margin-top: 0;
    color: #0056b3;
}

/* Contact Page Styles */
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #0056b3;
}

form {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background-color: #0056b3;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #004494;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed; /* Fixed to the bottom of the viewport */
    left: 0;
    bottom: 0; /* Align it to the bottom */
    width: 100%; /* Full width */
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Logo */
.logo {
    display: block;
    padding: 5px 5px;
    margin-left: 0;
}

.logo-right {
    display: block;
    margin-left: auto;
    margin-right: 0;
}
