body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #e6eef7;
}

/* Emergency Banner */
.emergency-banner {
    background: #123a63;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

/* Header */
header {
    background: #0e4a7a;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    align-items: center;
}

header .logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

/* HERO SLIDER */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 25%;
    left: 5%;
    color: white;
}

.hero-text h1 {
    font-size: 55px;
    font-weight: 900;
}

.hero-text p {
    font-size: 20px;
    max-width: 500px;
}

/* Quote Section */
.quote-section {
    background: #1e6ba8;
    padding: 50px;
    color: white;
    text-align: center;
}

.form-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    width: 40%;
    padding: 12px;
    border-radius: 5px;
    border: none;
}

.submit-btn {
    padding: 15px 35px;
    background: #0a3d6b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

/* Services Section */
.services-section {
    display: flex;
    justify-content: center;
    padding: 60px;
    gap: 40px;
    background: white;
}

.service-card {
    width: 45%;
    border-radius: 35px;
    padding: 35px;
    position: relative;
}

.blue-card {
    background: #0a4b81;
    color: white;
}

.grey-card {
    background: linear-gradient(to bottom, #d9dee3, #9da4a9);
}

.service-img {
    width: 420px;
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.service-btn {
    display: inline-block;
    margin-top: 20px;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background: #0e4a7a;
    padding: 30px;
    color: white;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-icons img {
    width: 35px;
    margin: 10px;
    cursor: pointer;
}

