 /* Full Page Video Background Styles */
 body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.content-overlay {
    position: relative;
    z-index: 1;
}


/* Transitional Section Between Header and Content */
.transition-section {
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

/* Base Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(149, 178, 176, 0.7);
    color: #0f0f0f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Current Page Link (Visible in Mobile View) */
.navbar .current-page {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

/* Hamburger Menu Button */
.navbar .hamburger {
    display: none;
    font-size: 1.5em;
    background: none;
    border: none;
    cursor: pointer;
}

/* Full Menu (Desktop View) */
.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar ul li a.active {
    color: #ffdd57;
}

.navbar ul li a:hover {
    color: #ffdd57;
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hidden Menu for Mobile View */
@media (max-width: 768px) {
    .navbar .hamburger {
        display: block;
    }

    .navbar ul {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
        z-index: 1000;
    }

    .navbar ul.active {
        display: flex;
    }
}

/* Header Styles */
.header {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    background: transparent;
}


/* Footer Styles - Updated to Match Services Page */
.footer {
    background: rgba(149, 178, 176, 0.7);
    color: #0f0f0f;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        font-size: 0.9em;
    }
}


/* Highlighted Contact Options */
.contact-options {
    background: rgb(244, 247, 246);
    color: #0f0f0f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto 10px;
    color: #fff;
    text-align: center;
}

.contact-options h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #000000;
}

.contact-options p {
    font-size: 1.2em;
    margin: 10px 0;
    color: #000000;
}

.contact-button {
    padding: 15px 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.contact-options .contact-btn {
    padding: 10px 20px;
    background: #1E2A78;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
}


.contact-btn:hover {
    background: #ffdd57;
    color: #000;
}



.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    /* Higher than navbar's z-index */
    width: 50%;
    height: 50%;
    max-width: 500px;
    padding: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    /* Between navbar and modal */
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    animation: modalOpen 0.3s ease;
}

form {
    width: 90%;
    /* Take 90% of the screen width */
    max-width: 600px;
    /* Limit the form width on larger screens */
    margin: 0 auto;
    /* Center horizontally */
}

/* Adjust form layout for smaller screens */
@media (max-width: 768px) {

    input,
    textarea {
        font-size: 16px;
        /* Ensure readability */
        padding: 10px;
        /* Increase padding for touch targets */
    }

    .send-btn {
        font-size: 18px;
        /* Adjust button size */
        padding: 14px;
        /* Increase button padding */
        width: 100%;
        /* Make the button take full width */
    }
}


/* Update these media queries */
@media (max-width: 768px) {
.modal-content {
width: 90%;
max-width: 100%;
margin: 20px auto;
padding: 15px;
}

.modal {
width: 90%;
height: auto;
max-width: 100%;
top: 20px;
left: 50%;
transform: translateX(-50%);
padding: 10px;
}

input, textarea {
font-size: 16px;
padding: 12px;
}

.send-btn {
padding: 15px;
font-size: 18px;
}

.contact-options {
padding: 15px;
margin: 15px;
}

.expertise-badge {
gap: 10px;
}

.expertise-badge span {
font-size: 0.8em;
padding: 6px 12px;
}
}

@media (max-width: 480px) {
.modal-content {
padding: 10px;
}

.contact-reasons li {
font-size: 0.9em;
padding: 10px 0;
}

.contact-options h2 {
font-size: 1.5em;
}

.contact-options p {
font-size: 1em;
}

.gdpr-check label {
font-size: 0.9em;
}
}

/* Add this new media query for very small devices */
@media (max-width: 360px) {
.modal-content {
width: 95%;
padding: 8px;
}

input, textarea {
padding: 10px;
font-size: 14px;
}

.send-btn {
font-size: 16px;
padding: 12px;
}
}

@keyframes modalOpen {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    /* Take full width of the parent container */
    max-width: 600px;
    /* Optional: Limit the width on larger screens */
    padding: 12px;
    /* Add padding for better usability */
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.gdpr-check {
    margin: 15px 0;
}

.success-message {
    display: none;
    color: #28a745;
    text-align: center;
    margin-top: 15px;
}

.close-btn {
    float: right;
    cursor: pointer;
    font-size: 24px;
}

.send-btn {
    background: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.send-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.contact-reasons {
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    list-style: none;
    padding: 0;
}

.contact-reasons li {
    padding: 8px 0;
    color: #000;
    border-bottom: 1px solid #eee;
}

.expertise-badge {
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.expertise-badge span {
    background: #f0f4f8;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #1E2A78;
    border: 1px solid #d6e0eb;
}

/* GDPR Modal Styles */
#gdprModal {
    display: none;
    position: fixed;
    top: 50%;
    border: #000;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    z-index: 1002;
    text-align: center;
}

#gdprOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}