#logo{
    
}
#box1{
    background-color: #4cb4c7;
}
#box2{
    background-color: #7abecc;
}
#box3{
    background-color: #7CD1C0;
}
#box4{
    background-color: #4cb4c7;
}
#box5{
    background-color: #4cb4c7;
}
#box6{
    background-color: #7CD1C0;
}
/* Footer */
footer {
    background-color: #031930;
    color: #fff;
    text-align: center;
    padding: 20px;
}
footer p {
    margin: 10px 0;
}

/* reset */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ebeff5;
	overflow-x: hidden; /* Prevents horizontal scroll */
}
/* Header */
header {
    background: linear-gradient(to right, #031930, #031930);
    color: #fff;
    padding: 0; /* Remove horizontal padding */
    text-align: center;
    position: relative;

}
header img.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 80px;
    width: auto;
}
header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}
header p {
    font-size: 24px;
}
/* Navigation */
nav {
    background-color: #003B6F;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav a, .navbar-nav .nav-link {
    color: #fff !important;  /* Use !important if Bootstrap overrides it */
    padding: 14px 20px;      /* Only if you want consistent spacing */
    text-decoration: none;
    font-size: 18px;
}
nav a:hover, .navbar-nav .nav-link:hover {
    color: #ddd !important;  /* A lighter shade of white on hover */
    background-color: #00539C;
}
/* Sections */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}
section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00539C;
    text-align: center;
}
section p {
    font-size: 18px;
    margin-bottom: 20px;
}
/* Services */
.services .service-item {
    margin-bottom: 40px;
}
.services .service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003B6F;
}
/* Founder */
.about {
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.about img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    background-color: #ccc;
    margin: 20px;
}
.about-content {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
    margin: 20px;
}
/* Contact */
.contact p {
    text-align: center;
    font-size: 20px;
}
.contact a {
    color: #00539C;
    text-decoration: none;
}
.social-icons a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 24px;
}
/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 32px;
    }
    header p {
        font-size: 18px;
    }
    nav a {
        flex: 1 0 100%;
        text-align: center;
    }
    .about {
        flex-direction: column;
    }
    .about img {
        margin: 0 auto 20px;
    }
}

/* Nested Dropdown CSS */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}
