/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #0B2A5A;
    color: white;
}

/* --- Top Bar --- */
.sec1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 10px;
    background-color: #0A2650;
    font-size: 14px;
}

.sec1 i {
    margin-right: 6px;
    color: #F85A40;
}

/* --- Navbar --- */
.sec2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;
    background-color: #0B2A5A;
}

.logo img {
    width: 120px;
    height: auto;
}

#hyperlink {
    display: flex;
    gap: 30px;
}

#hyperlink a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

#hyperlink a:hover {
    color: #F85A40;
}

button {
    background-color: #F85A40;
    border: none;
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background-color: #fa735f;
}




/* --- Dropdown Menu --- */

.dropdown {

    position: relative;

    display: inline-block;

}

.dropdown-content {

    display: none;

    position: absolute;

    background-color: #0A2650;

    min-width: 160px;

    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);

    border-radius: 6px;

    z-index: 1;

}

.dropdown-content a {

    color: white;

    padding: 10px 14px;

    text-decoration: none;

    display: block;

    font-size: 15px;

}

.dropdown-content a:hover {

    color: #F85A40;

}

.dropdown:hover .dropdown-content {

    display: block;

}

/* Services Section */
.services {
    text-align: center;
    padding: 70px 20px;
}

.services h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #081c3c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ff4747;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #081c3c;
}

.service-card p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 20px;
}

.quote-btn {
    text-decoration: none;
    color: white;
    background: #ff4747;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 0.9em;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #d63939;
}

/* Contact Section */
.contact {
    background: #f9f9f9;
    padding: 60px 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info {
    flex: 1 1 40%;
}

.contact-form {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.contact-form button {
    background: #ff4747;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #d63939;
}

/* Footer */
footer {
    background: #081c3c;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-container {
        flex-direction: column;
    }
}