/* Basic Body Styling */
body {
    background-color: #8c9fbf;
    font-family: Arial, sans-serif;
    color: #333;
}

.content {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Navbar Styling */
.topnav {
    background-color: #00274d; /* dark blue */
    overflow: hidden;
}

.topnav a {
    float: right;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #FFD700; /* yellow */
    color: black;
}

.topnav a.active {
    background-color: #00A36C; /* green */
    color: white;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.logo {
    width: 150px;
    height: auto;
}

h1 {
    color: #00274d; /* dark blue */
    font-size: 36px;
}

.tagline {
    font-size: 22px;
    color: #555;
    margin-top: 10px;
}

/* Introduction Section Styling */
.introduction {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.introduction h2 {
    color: #00A36C; /* green */
}

/* Achievements Section Styling */
.achievements {
    margin-top: 50px;
    padding: 20px;
    background-color: #f0f8ff; /* light blue */
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.achievements h2 {
    color: #00274d; /* dark blue */
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery {
    width: 300px;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease;
}

.gallery img {
    width: 100%;
    height: auto;
}

.gallery:hover {
    transform: scale(1.05);
    border-color: #00274d; /* dark blue */
}

.desc {
    padding: 10px;
    font-size: 14px;
    color: #00274d; /* dark blue */
}

/* Mission Section Styling */
.mission {
    margin-top: 50px;
    padding: 20px;
    background-color: #fffaf0; /* light yellow */
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.mission h2 {
    color: #00A36C; /* green */
}

.mission p {
    font-size: 18px;
    color: #333;
}

/* Footer Styling */
.footer {
    background-color: #FFD700; /* yellow */
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

.footer p {
    color: #00A36C; /* green */
    font-size: 16px;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Team Section Styling */
.team-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-logo {
    margin-bottom: 20px;
}

.header-logo .logo {
    width: 120px;
    height: auto;
    margin: auto;
    display: block;
}

.team-section h2 {
    color: #00274d; /* dark blue */
    font-size: 32px;
    margin-bottom: 20px;
}

.team-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin: auto;
    font-style: italic;
}

/* Team Member Card Layout */
.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-member {
    width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 20px;
    color: #00274d; /* dark blue */
    margin-bottom: 5px;
}

.position {
    color: #00A36C; /* green */
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Footer Styling */
.footer {
    background-color: #FFD700; /* yellow */
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

.footer p {
    color: #00A36C; /* green */
    font-size: 16px;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Contact Section Styling */
.contact-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-logo {
    margin-bottom: 20px;
}

.header-logo .logo {
    width: 120px;
    height: auto;
    margin: auto;
    display: block;
}

.contact-section h2 {
    color: #00274d; /* dark blue */
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin: auto;
    font-style: italic;
}

/* Contact Form and Direct Contact Layout */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-form, .direct-contact {
    flex: 1 1 400px;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: bold;
    color: #00274d;
    margin-top: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background-color: #00A36C; /* green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #00274d; /* dark blue */
}

/* Direct Contact Information Styling */
.direct-contact h3 {
    color: #00A36C; /* green */
    margin-bottom: 15px;
}

.direct-contact ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #333;
}

.direct-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.direct-contact ul li i {
    font-size: 20px;
    color: #00274d; /* dark blue */
    margin-right: 10px;
}

.direct-contact ul li a {
    color: #00274d;
    text-decoration: none;
}

.direct-contact ul li a:hover {
    text-decoration: underline;
}

/* Footer Styling */
.footer {
    background-color: #FFD700; /* yellow */
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

.footer p {
    color: #00A36C; /* green */
    font-size: 16px;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Projects Section Styling */
.projects-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-logo {
    margin-bottom: 20px;
}

.header-logo .logo {
    width: 120px;
    height: auto;
    margin: auto;
    display: block;
}

.projects-section h2 {
    color: #00274d; /* dark blue */
    font-size: 32px;
    margin-bottom: 10px;
}

.projects-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin: auto;
    font-style: italic;
}

/* Projects Container Grid */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Project Card Styling */
.project {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 350px;
    text-align: left;
}

.project:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.project img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #00A36C; /* green border at the bottom of the image */
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 20px;
    color: #00274d; /* dark blue */
    margin-bottom: 10px;
}

.project-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Footer Styling */
.footer {
    background-color: #FFD700; /* yellow */
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

.footer p {
    color: #00A36C; /* green */
    font-size: 16px;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Services Section Styling */
.services {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-logo {
    margin-bottom: 20px;
}

.header-logo .logo {
    width: 120px;
    height: auto;
    margin: auto;
    display: block;
}

.services h2 {
    color: #00274d; /* dark blue */
    font-size: 32px;
    margin-bottom: 10px;
}

.services-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin: auto;
    font-style: italic;
}

/* Service Category Styling */
.service-category {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.service-category h3 {
    color: #00A36C; /* green */
    font-size: 24px;
    margin-bottom: 10px;
}

.service-category p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* Gallery Container Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-item {
    text-align: center;
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #00A36C; /* green border below image */
    margin-bottom: 10px;
}

.gallery-item p {
    font-size: 14px;
    color: #555;
    margin: 10px 0 0 0;
}

/* Footer Styling */
.footer {
    background-color: #FFD700; /* yellow */
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

.footer p {
    color: #00A36C; /* green */
    font-size: 16px;
    margin: 0;
    font-family: Arial, sans-serif;
}



/* Services Section Styling */
.services {
    margin-top: 50px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.services h2 {
    color: #00274d; /* dark blue */
    text-align: center;
}

.service-category {
    margin-top: 20px;
}

.service-category h3 {
    color: #00A36C; /* green */
    font-size: 20px;
    margin-bottom: 10px;
}

.service-category p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

/* Gallery Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #00A36C; /* green border below image */
}

.gallery-item p {
    padding: 10px;
    font-size: 14px;
    color: #555;
}

.gallery-item:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Direct Contact Section Styling */
.direct-contact {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.direct-contact h3 {
    color: #00274d; /* dark blue */
    text-align: center;
    margin-bottom: 15px;
}

.direct-contact ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
    color: #333;
}

.direct-contact ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.direct-contact ul li i {
    font-size: 20px;
    color: #00A36C; /* green */
    margin-right: 10px;
}

.direct-contact ul li a {
    color: #00274d; /* dark blue */
    text-decoration: none;
}

.direct-contact ul li a:hover {
    text-decoration: underline;
}


/* Mission Section Styling */
.mission {
    position: relative;
    margin-top: 80px;
    padding: 80px;
    border-radius: 8px;
    overflow: hidden;
    color: white;
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    animation: slideshow 30s infinite;
    opacity: 0.5; /* Adjust opacity for readability */
}

.mission-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 39, 77, 0.8); /* Dark blue overlay for text readability */
    padding: 20px;
    border-radius: 8px;
}

.mission-content h2 {
    color: #FFD700; /* yellow */
    text-align: center;
}

.mission-content p {
    font-size: 18px;
    text-align: center;
    font-style: bold; 
    margin-top: 10px;
    color: white;
}

/* Keyframes for the background slideshow */
@keyframes slideshow {
    0% { background-image: url('/assets/images/photo_2024-10-29_10-47-49.jpg'); }
    25% { background-image: url('/assets/images/photo_2024-10-29_10-47-22.jpg'); }
    50% { background-image: url('/assets/images/photo_2024-10-29_10-48-10.jpg'); }
    75% { background-image: url('/assets/images/msfdelv.jpg'); }
    100% { background-image: url('/assets/images/mtnextank.jpg'); }
}

.mission-background {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    opacity: 0.7; /* Adjust for background transparency */
    transition: background-image 2s ease-in-out;
}

/* About Us Section Styling */
.introduction {
    margin-top: 50px;
    padding: 40px;
    background-color: #f0f8ff; /* light blue */
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.introduction h2 {
    color: #00274d; /* dark blue */
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.intro-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: auto;
    text-align: justify;
}

.intro-content p {
    margin-bottom: 20px;
}

.intro-content strong {
    color: #00A36C; /* green highlight */
}

/* Bullet points and icons */
.intro-content p::before {
    content: "• ";
    color: #FFD700; /* yellow bullet point */
    font-size: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Our Clients Section Styling */
.clients-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.clients-section h2 {
    color: #00274d; /* dark blue */
    font-size: 32px;
    margin-bottom: 10px;
}

.clients-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin: auto;
    font-style: italic;
}

/* Clients Container Styling */
.clients-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.client-logo {
    flex: 1 1 150px;
    max-width: 150px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.client-logo:hover {
    transform: scale(1.1);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Products Section Styling */
.products-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-logo {
    margin-bottom: 20px;
}

.header-logo .logo {
    width: 120px;
    height: auto;
    margin: auto;
    display: block;
}

.products-section h2 {
    color: #00274d; /* dark blue */
    font-size: 32px;
    margin-bottom: 10px;
}

.products-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin: auto;
    font-style: italic;
}

/* Product Category Styling */
.product-category {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.product-category h3 {
    color: #00A36C; /* green */
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/* Products Grid */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Product Item Styling */
.product-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.product-item h4 {
    font-size: 20px;
    color: #00274d; /* dark blue */
    margin-bottom: 10px;
}

.product-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Footer Styling */
.footer {
    background-color: #FFD700; /* yellow */
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

.footer p {
    color: #00A36C; /* green */
    font-size: 16px;
    margin: 0;
    font-family: Arial, sans-serif;
}

