
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Merriweather', serif;
}

body{
 margin: 0;
 padding: 0;
 overflow-x: hidden;
}

.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 15px 60px;
 background-color: #fafafa;
 color:#e6c03e ;
 position: relative;
}

.navbar .logo {
 font-size: 34px;
 font-weight: bold;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.navbar img {
 height: 100px;
}

.navbar ul {
 display: flex;
 list-style: none;
 margin: 0;
}

.navbar ul li {
 margin: 0 15px;
}

.navbar ul li a {
 text-decoration: none;
 color: #555;
 font-size: 18px;
 padding: 8px 10px;
 transition: background-color 0.3s;
}

.navbar ul li a:hover {
background-color: #ffc107;
 border-radius: 5px;

}

.navbar .cta-button {
 background-color: #1B1244;
 color: #fff;
 padding: 8px 16px;
 border: 1px solid #fff;
 border-radius: 50px;
 cursor: pointer;
 text-decoration: none;
 font-size: 16px;
 transition: background-color 0.3s;
}

.navbar .cta-button:hover {
 border: 1px solid #0F4A8A;
}

.navbar .menu-toggle {
 display: none;
 font-size: 30px;
 cursor: pointer;
}
.banner {
 width: 100vw;
 height: 100vh;
 overflow: hidden;
 display: flex;
 justify-content: center;
 align-items: center;
}

.banner img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.overview {
 background-color: white;
 padding: 50px 20px;
 animation: fadeIn 1.5s ease-in-out;
}

.overview h2 {
 font-size: 36px;
 font-weight: bold;
 color: #1B1244;
 margin-bottom: 20px;
 border-bottom: 3px solid #e6c03e;
 display: inline-block;
 padding-bottom: 10px;
}

.overview p {
 font-size: 18px;
 line-height: 1.6;
}

.features .col-md-4 {
 padding: 20px;
 transition: transform 0.3s;
}

.features .col-md-4:hover {
 transform: scale(1.05);
}

.features h3 {
 font-size: 24px;
 margin-bottom: 15px;
 color: #e6c03e;
}

.features p {
 font-size: 16px;
 color: #333;
}

@keyframes fadeIn {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}
               
.about {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 padding: 20px;

}
.about h2 {
 font-size: 36px;
 font-weight: bold;
 color: #1B1244;
 margin-bottom: 20px;
 border-bottom: 3px solid #e6c03e;
 display: inline-block;
 padding-bottom: 10px;
}

.about-description {
 font-size: 20px;
 max-width: 800px;
 margin: 0 auto 40px;
 line-height: 1.8;
}
.about-box:hover {
    
 transform: translateY(-5px);
 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.about-box h3 {
 font-size: 26px;
 color: #FFD700;
 margin-bottom: 10px;
}

.about-box p {
 font-size: 16px;
 line-height: 1.6;
}
.services {
 background-color: ;
 padding: 60px 20px;
}
.section-title{
 font-size: 36px;
 font-weight: bold;
 color: #1B1244;
 margin-bottom: 20px;
 border-bottom: 3px solid #e6c03e;
 display: inline-block;
 padding-bottom: 10px;
}

.services h2 {
 font-size: 36px;
 font-weight: bold;
 color: #1B1244;
 margin-bottom: 20px;
 border-bottom: 3px solid #e6c03e;
 display: inline-block;
 padding-bottom: 10px;
}
.section h3 {
 font-size: 26px;
 font-weight: bold;
 color: #1B1244;
 margin-bottom: 15px;
 border-bottom: 2px solid #e6c03e;
 display: inline-block;
 padding-bottom: 5px;
}

.section p {
 font-size: 18px;
 line-height: 1.6;
 color: #555;
 font-weight: 500;
}

.service-box {
 padding: 30px;
 background: white;
 border-radius: 10px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 transition: transform 0.3s ease-in-out;
 margin-bottom: 20px;
}

.service-box:hover {
 transform: translateY(-5px);
 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);

}

.service-box h3 {
 font-size: 24px;
 color: #e6c03e;
 margin-bottom: 15px;
}

.service-box p {
 font-size: 16px;
 color: #333;
}
.contact-section {
 padding: 60px 20px;
 background-color: #f8f9fa;
}
.contact-info {
 display: flex;
 flex-direction: column;
 align-items: start;
 justify-content: center;
 padding: 20px;
}
.contact-info i {
 font-size: 24px;
 margin-right: 10px;
 color: #1B1244;
}
.contact-info div {
 display: flex;
 align-items: center;
 margin-bottom: 15px;
}
.contact-form {
 background: white;
 padding: 30px;
 border-radius: 10px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-form input, .contact-form textarea {
 width: 100%;
 padding: 10px;
 border: 1px solid #ccc;
 border-radius: 5px;
 margin-bottom: 10px;
}
.contact-form button {
background-color: #1B1244;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 18px;
        }
.contact-form button:hover {
 background-color: #0F4A8A;
}
.container {
 margin-top: 50px;
 overflow: hidden;
}
.section {
 padding: 20px;
 background-color: #f8f9fa;
 border-radius: 10px;
}
.carousel-inner {
 display: flex;
}
.carousel-item {
 flex: 0 0 100%;
 text-align: center;
}
.carousel-item img {
 width: 100%;
 max-width: 400px;
 border-radius: 10px;
}
.carousel {
 max-width: 1200px;
 margin: auto;
}
.ongoing-projects {
 margin-top: 30px;
 padding: 20px;
 width: 100%;
 text-align: center;
}
.ongoing-projects img {
 width: 80%;
 max-width: 600px;
 display: block;
 margin: 20px auto;
 border-radius: 10px;
}
.section {
 text-align: center; 
}

.section h2 {
 font-size: 36px;
 font-weight: bold;
 color: #1B1244; 
 margin: 0 auto 30px auto; 
 padding-bottom: 10px;
 border-bottom: 3px solid #e6c03e; 
 display: inline-block; 
}
.ceo-section {
    color: #333;
    padding: 60px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, opacity 0.5s;
    opacity: 0;
    transform: translateY(50px);
}

.ceo-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.ceo-section h3, .ceo-section h4 {
    font-weight: bold;
    color:  #1B1244;
}

.ceo-section img {
    border: 5px solid #ddd;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.ceo-section img:hover {
    transform: scale(1.1);
}




@media (max-width: 768px) {

.banner {
 height: 50vh; 
}

.banner img {
 height: auto;
 max-height: 100%;
}

.navbar ul {
 display: none;
 flex-direction: column;
 position: absolute;
 top: 115px;
 right: 0px;
 background-color: #003366;
 width: 100%;
 box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

.navbar ul.show {
 display: flex;
}

.navbar ul li {
 margin: 15px 0;
 text-align: center;
}

.navbar .menu-toggle {
 display: block;
 margin-right: 30px;
}
.navbar img {
 height: 100px;
 margin-left: 30px;
            }
        }
    
.contact-section h2 {

    font-size: 36px;
    font-weight: bold;
    color: #1B1244;
    margin-bottom: 20px;
    border-bottom: 3px solid #e6c03e;
    display: inline-block;
    padding-bottom: 10px;
}


