.border{ 
    background-color: 003863;


}
.colerbox{ 
    background-color:#003863;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #88a331;; ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    width: 150px; 
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color:    #003863;
    font-size: 18px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color:white ; 
}


.main-content {
    display: flex;
    padding: 20px;
}

.filters {
    width: 20%;
    background-color: #f1f1f1;
    padding: 20px;
    border-right: 1px solid #ddd;
}

.filters h3 {
    margin-bottom: 10px;
}

.filters label {
    display: block;
    margin-bottom: 10px;
}

.projects {
    width: 80%;
    padding-left: 20px;
}

.projects h2 {
    text-align: center;
    margin-bottom: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
}

.project img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.project p {
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #003863;;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}



.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}

.box {
    flex: 1;
    min-width: 300px;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
}

.box img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}


.box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.box{ 
    padding: 10px;
    background-color:white;
    margin:10px; 
    
}
main .image-container {
    margin-top: 0px;
    margin-bottom: 10px;
  
}

main .image-container img {
    width:100%;
    height: auto;
    display: block;
    position: relative;
}

.overlay-text {
    position: absolute; 
    top: 50%;
    left: 10%; 
    transform: translateX(-50%);
    color: #F5F7FA; 
    font-size: 36px; 
    text-align: center;
    font-weight: bold;
    font-family: 'Barlow';
 
}   

.content-section {
    padding: 20px;
    text-align: center;
}

.content-section h2 {
    color: #003863;
    font-size: 24px;
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 18px;
    color: black;
}

.services {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f1f1f1;
}

.service-box {
    width: 30%;
    padding: 20px;
    background-color: white;
    text-align: left;
    border: 1px solid #ddd;
}

.service-box h3 {
    color: #003863;
    margin-bottom: 10px;
}

.service-box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
footer {
    background-color: #88a331;
    padding: 10px;
    text-align: center;
}

footer p {
    color: white;
    margin-bottom: 5px;
}

footer address {
    color: white;
    font-style: normal;
}


.contact-section {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h2 {
    color: #003863;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-section img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}


.contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    width: 45%;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
    margin-bottom: 15px;
}

.contact-info h3 {
    color: #003863;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #003863;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


.contact-form {
    width: 45%;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    margin-bottom: 15px;
}

.contact-form h3 {
    color: #003863;
    margin-bottom: 15px;
}

.contact-form label {
    font-size: 14px;
    color: #003863;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #003863;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #88a331;
}


@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 20px;
    }
}

.hero-section {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.hero-section img {
    width: 10%;
    height: auto;
}

.hero-section h2 {
    color: #003863;
    font-size: 28px;
    margin-top: 20px;
}

.hero-section p {
    margin-top: 10px;
    color: #333;
}


.content-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.content-section h3 {
    text-align: center;
    color: #003863;
    font-size: 24px;
    margin-bottom: 20px;
}

.content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.content-row .text-box {
    width: 50%;
    padding-right: 30px;
    padding-left: 30px ;
}

.content-row .image-box {
    width: 50%;
}

.content-row img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.homeprojects {
    padding: 40px 0;
    text-align: center;
}

.homeproject-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.homeproject-title img {
    width: 50px;
    margin: 0 15px;
}

.homeproject-title button {
    background-color: #88a331;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
}

.homeproject-grid {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.homeproject-card {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    width: 30%;
}

.homeproject-card img {
    width: 100%;
    height: auto;
}

.homeproject-card p {
    font-size: 16px;
    margin: 10px 0;
}

.homeproject-card a {
    color: #88a331;
    text-decoration: none;
    font-weight: bold;
}

.homeproject-card a:hover {
    text-decoration: underline;
}


.mmm-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #003863;
    color: white;
    padding: 40px;
}

.mmm-section img {
    width: 30%;
    height: auto;
}

.mmm-content {
    width: 60%;
    text-align: left;
}

.mmm-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.mmm-content p {
    font-size: 16px;
}

.logo img{ 
        
    width: 155px; 
    height: 64px;       
    object-fit: cover; 
    border: 2px solid #ddd; 
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.mmm-title {
    text-align: center;
    margin: 40px 0;
    color: #003863;
}
        
.mmm-title h1 {
    font-size: 32px;
    color: #003863;
 }
        
.mmm-title p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
        

.mmm-projects {
    padding: 40px 0;
    text-align: center;
}
        
.mmm-projects .crown img {
    width: 50px;
    margin-bottom: 30px;
}
        
.mmm-grid {
    display: flex;
    justify-content: space-evenly;
}
        
.mmm-card {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    width: 30%;
        }
        
.mmm-card img {
    width: 100%;
    height: auto;
        }
        
.mmm-card h2 {
    font-size: 20px;
    margin: 10px 0;
    color: #003863;
        }
        
.mmm-card p {
     font-size: 16px;
     color: #333;
     margin-top: 10px;
        }