
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: #003366;
    padding: 1rem 10%;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-links a {
    color: #003366;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}
.cta {
    background-color: #003366;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #fff !important;
}


.dropdown {
position: relative;
}
.dropdown-menu {
display: none;
position: absolute;
background-color: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-top: 5px;
z-index: 1000;
width: 200px;
}
.dropdown-menu a {
display: block;
padding: 0.75rem 1rem;
color: #003366;
text-decoration: none;
}
.dropdown-menu a:hover {
background-color: #f4f4f4;
}
.dropdown:hover .dropdown-menu {
display: block;
}
.dropdown-menu a:hover {
background-color: #f4f4f4;
}


/* Hamburger Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #003366;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column !important;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #003366;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
        z-index: 1000;
    }
    .hamburger {
        display: flex;
    }
    .services .info-boxes{
        display: flex !important; 
    }
    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .dropdown-menu {
        position: relative;
        background-color: #003366;
        box-shadow: none;
        margin: 0;
    }
    .cta {
        background-color: #ffc107;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        color: #003366 !important;
    }
}
.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/bridge.webp') center/cover no-repeat;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    color: white;
    text-align: left;
    padding: 0 10%;
}
.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
}
.hero-content p {
    font-size: 1.5rem;
    margin: 1rem 0;
}
.buttons {
    margin-top: 2rem;
}
.btn {
    display: inline-block;
    margin-right: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}
.btn-primary {
    background-color: #ffcc33;
    color: #333;
}
.btn-secondary {
    background-color: #003366;
    color: white;
    margin-top: 20px;
}
.section {
    padding: 5% 10%;
}
.hero-section {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 5% 10%;
    position: relative;
}
.hero-section p {
    font-size: 1.1rem;
    text-align: justify;
}
.info-boxes {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}
.info-box {
    background-color: white;
    color: #003366;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: left;
    position: relative;
    top: -50px;
}
.info-box h3 {
    margin-bottom: 1rem;
}
.content-section {
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
}
.content-section .text, .content-section .list {
    width: 45%;
}
.list ul {
    list-style: none;
    padding: 0;
}
.list ul li::before {
    content: '\2022';
    color: #ffc107;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}
.services .info-boxes{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.alternating-section {
padding: 5% 10%;
}
.alternating-section h2{
    font-size: 2rem;
    color: #003366;
}
.alternating-section h2, .alternating-section p{
    text-align: center;
}
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5%;
}
.text-block {
    width: 45%;
}
.image-block {
    width: 45%;
}
.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.text-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #003366;
    text-align: justify;
}
.text-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    .row {
        flex-direction: column;
        text-align: center;
    }
    .row.reverse {
        flex-direction: column;
    }
    .text-block, .image-block {
        width: 100%;
        margin-bottom: 2rem;
    }
}
footer {
    background-color: #f5f5f5;
    padding: 40px 100px;
    font-family: Arial, sans-serif;
    color: #333;
}
.footer-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 30px;
}
.footer-section {
max-width: 65%;
}
.footer-section p{
font-size: 1.2rem !important;
}
.footer-section-1 {
max-width: 30%;
}
.footer-section h3 {
margin-bottom: 10px;
font-size: 1.3rem;
}
.footer-section p, .footer-menu nav, .footer-bottom {
font-size: 0.95rem;
}
.footer-menu {
display: flex;
/* justify-content: space-between; */
align-items: center;
margin-bottom: 20px;
}
.footer-menu nav a {
margin-right: 20px;
color: #003366;
text-decoration: none;
font-weight: 600;
}
.footer-buttons button {
margin-left: 15px;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.primary-btn {
background-color: #003366;
color: #fff;
}
.secondary-btn {
background-color: #d1d1d1;
color: #333;
}
.footer-bottom a {
color: #666;
text-decoration: none;
}
@media (max-width: 768px) {
footer {
background-color: #f5f5f5;
padding: 40px 40px !important;
font-family: Arial, sans-serif;
color: #333;
}
.footer-menu nav {
display: none;
}
.footer-menu {
flex-direction: column;
align-items: center;
}
.footer-buttons {
margin-top: 10px;
}
.footer-container{
display: block !important;
}
.footer-section, .footer-section-1{
max-width: 100% !important;
}
.footer-buttons{
display: none;
}
}