 /* Reset and base styles */
* {
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
/* Header */
header {
    background-color: #0a3d62;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 4px;
}
header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
}
nav {
    display: flex;
    align-items: center;
}
nav a {
    display: inline-block;
    margin: 0 20px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    color: white;
}
nav a:hover {
    background-color: #f39c12;
    color: #fff;
    transform: scale(1.1);
}
/* Hero Banner */
#home {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
#home::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(10, 61, 98, 0.7);
    z-index: 0;
}
#home > div {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}
#home h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
#home p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
/* About Section */
#about {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}
#about h2 {
    font-size: 2.5rem;
    color: #0a3d62;
    margin-bottom: 20px;
}
#about p {
    font-size: 1.2rem;
    color: #555;
}
/* Services Section */
#services {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px 40px;
}
#services h2 {
    font-size: 2.5rem;
    color: #0a3d62;
    margin-bottom: 30px;
    text-align: center;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transform: translateY(-10px);
}
.service-card img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.service-card img:hover {
    transform: scale(1.05);
}
.service-card h3 {
    color: #0a3d62;
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.service-card p {
    color: #555;
    font-size: 1rem;
    flex-grow: 1;
}
/* Contact Section */
#contact {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 0 20px;
    text-align: center;
    background-color: #f9fbfd;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 61, 98, 0.1);
}
#contact h2 {
    font-size: 2.5rem;
    color: #0a3d62;
    margin-bottom: 20px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 8px;
}
#contact p {
    font-size: 1.1rem;
    color: #555;
    margin: 8px 0 20px 0;
}
#contact form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffffcc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.15);
    transition: box-shadow 0.3s ease;
}
#contact form input,
#contact form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1.5px solid #0a3d62;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#contact form input:focus,
#contact form textarea:focus {
    border-color: #f39c12;
    box-shadow: 0 0 10px #f39c12;
    outline: none;
}
#contact form button[type="submit"] {
    background-color: #0a3d62;
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: 700;
}
#contact form button[type="submit"]:hover {
    background-color: #f39c12;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.7);
    transform: scale(1.07);
}

/* Partners Section */
#partners {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}
#partners h2 {
    font-size: 2.8rem;
    color: #0a3d62;
    margin-bottom: 40px;
}
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.partner-logos img {
    max-width: 150px;
    max-height: 80px;
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(10, 61, 98, 0.15);
    padding: 8px;
    background-color: #f9fbfd;
}

/* Contact Us Today Banner */
.contact-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f39c12;
    color: white;
    padding: 40px 20px;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.5);
    flex-wrap: wrap;
}
.contact-banner-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.contact-banner-text {
    max-width: 500px;
}
.contact-banner-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.contact-banner-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.contact-banner-button {
    background-color: #0a3d62;
    color: white;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.contact-banner-button:hover {
    background-color: #f39c12;
    color: #0a3d62;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.7);
    transform: scale(1.07);
}

/* Responsive for Contact Banner */
@media (max-width: 768px) {
    .contact-banner {
        flex-direction: column;
        padding: 30px 15px;
    }
    .contact-banner-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .contact-banner-text {
        max-width: 100%;
        text-align: center;
    }
}
/* Footer */
footer {
    background-color: #0a3d62;
    color: #ddd;
    text-align: center;
    padding: 25px 15px;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.2);
}
/* Background Experience Section */
#background-experience {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}
#background-experience h2 {
    font-size: 2.5rem;
    color: #0a3d62;
    margin-bottom: 20px;
}
.background-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.text-content {
    flex: 1 1 300px;
    color: #555;
    font-size: 1.2rem;
    text-align: left;
}
.image-content {
    flex: 1 1 300px;
    text-align: center;
}
.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
/* Burger menu styles */
.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
    margin: 0 20px;
    z-index: 1100;
}
.burger-menu .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.burger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.nav-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #0a3d62;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1050;
}
.nav-links a {
    margin: 15px 20px;
    font-size: 1.2rem;
    color: white;
}
.support-call-link {
    background-color: #f39c12;
    color: #0a3d62 !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 20px;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.6);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.support-call-link:hover {
    background-color: #d17e00;
    color: white !important;
    transform: scale(1.1);
}
.nav-links.active {
    left: 0;
}
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}
.nav-overlay.active {
    display: block;
}
.exit-button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 20px 20px 20px;
    text-align: left;
    cursor: pointer;
    outline: none;
}
/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    background-color: transparent;
    border: none;
    outline: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.dropbtn:hover, .dropbtn.active {
    background-color: #f39c12;
    color: #fff;
    transform: scale(1.1);
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0a3d62;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1001;
    top: 100%;
    left: 0;
    padding: 10px 0;
}
.dropdown-content a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.dropdown-content a:hover {
    background-color: #f39c12;
    color: #fff;
}
/* Show dropdown when active */
.dropdown-content.show {
    display: block;
}
/* Responsive */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 12px 0;
    }
    #home {
        height: 300px;
    }
    #home h2 {
        font-size: 2.2rem;
    }
    #home p {
        font-size: 1rem;
    }
    #about, #contact {
        margin: 30px 15px;
    }
    #services {
        margin: 30px 15px 50px;
    }
    nav a {
        margin: 0 10px;
        font-size: 1rem;
        padding: 6px 10px;
    }
}
@media (min-width: 769px) {
    .burger-menu {
        display: none !important;
    }
    nav a {
        display: inline-block !important;
    }
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        flex-direction: row;
        padding-top: 0;
        transition: none;
    }
    .nav-links a {
        color: inherit;
        margin: 0 20px;
        font-size: 1.1rem;
    }
    .nav-overlay {
        display: none !important;
    }
    .exit-button {
        display: none;
    }
}

/* Contact page specific styles moved from contact.html and improved */
.contact-section {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: #0a3d62;
    background-color: #f9fbfd;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 61, 98, 0.1);
    margin-bottom: 40px;
}
.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 8px;
}
.contact-section h3 + p,
.contact-section h3 + div,
.contact-section p + p {
    margin-top: 10px;
}
.social-links {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
}
.social-links a {
    transition: color 0.3s ease;
    color: #0a3d62;
}
.social-links a:hover {
    color: #f39c12;
}
#office-map {
    border: 2px solid #0a3d62;
    border-radius: 12px;
    width: 100%;
    height: 250px;
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.15);
    transition: box-shadow 0.3s ease;
}
#office-map:hover {
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.6);
}
#contact-form {
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffffcc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.15);
    transition: box-shadow 0.3s ease;
}

/* Privacy page styles */
#privacy-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 25px;
    background-color: #ffffffcc;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.15);
    color: #0a3d62;
    font-size: 1.1rem;
    line-height: 1.7;
}
#privacy-content section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f39c12;
}
#privacy-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
#privacy-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0a3d62;
    font-weight: 700;
}
#privacy-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0a3d62;
    font-weight: 600;
}
#privacy-content p {
    margin-bottom: 15px;
    color: #333;
}
#privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #333;
}
#privacy-content ul li {
    margin-bottom: 8px;
}

/* Responsive styles for privacy page */
@media (max-width: 768px) {
    #privacy-content {
        padding: 20px 15px;
        font-size: 1rem;
        margin: 20px 10px;
    }
    #privacy-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    #privacy-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    #privacy-content section {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    #privacy-content ul {
        margin-left: 15px;
    }
}

/* Footer */
footer {
    background-color: #0a3d62;
    color: #ddd;
    text-align: center;
    padding: 25px 15px;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.2);
}
