header {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically (if needed) */
  }
  
  header img {
    display: block;
    object-fit: contain; /* This is the key change to display the full image */
    max-width: 100%; /* Adjust as needed */
    max-height: 500px; /* Adjust as needed */
    transition: transform 0.3s ease;
  }
  
  header:hover img {
    transform: scale(1.1);
  }
@font-face {
    font-family: 'DynamicTrooper';
    src: url('fonts/dynamictrooperital.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'DynamicTrooper';
    font-size: larger;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

nav {
    margin-top: 10px;
    display: flex;
    gap: 7px;
}

.menu-button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 16px;
}

.menu-button:hover {
    background-color: pink;
    transform: scale(1.1);
}

.menu-button:active {
    transform: scale(0.95);
}

main {
    width: 80%;
    max-width: 960px;
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything inside main */
}
main img {
    max-width: 100%; /* Image should not exceed the width of its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevents small vertical gaps */
    margin: 20px auto 0; /* Centers the image and adds top margin */
}
/* Hide burger menu on large screens */
.burger-menu {
    display: none;
    font-size: 2em;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 100; /* Make sure it stays on top */
}

/* Default nav menu (desktop) */
#navMenu {
    display: flex;
    gap: 7px;
}
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    .menu-button {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .burger-menu {
        display: block; /* Show burger button */
    }

    #navMenu {
        display: none; /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 20px;
        background: none; /* ✅ Removes white background */
        box-shadow: none; /* ✅ Removes shadow */
        border-radius: 0; /* ✅ No rounded edges */
        padding: 0;
        z-index: 999;
        width: auto; /* ✅ Menu adapts to content */
    }

    #navMenu a {
        display: block;
        padding: 10px;
        text-align: center;
        background: black; /* ✅ Keeps buttons visible */
        color: white; /* ✅ Ensures text is readable */
        border-radius: 5px;
        text-decoration: none;
        margin: 5px 0; /* ✅ Adds spacing between buttons */
    }

    #navMenu a:hover {
        background: pink; /* ✅ Adds hover effect */
    }

    #navMenu.active {
        display: flex; /* Show when active */
    }
}


    main {
        width: 90%;
    }
.centered-bullet-list {
    text-align: center;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

.centered-bullet-list ul {
    display: inline-block;
    text-align: left;
    padding: 0;
    margin: 0;
    list-style-type: disc;
}

.centered-bullet-list li {
    margin: 0.5em 0;
}
.contact-form {
    background-color: #ffffff;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;      /* Center items horizontally */
    justify-content: center;  /* Center items vertically */
    text-align: center;
}

.contact-form h2 {
    margin-bottom: 1em;
    color: #333;
}

.contact-form label {
    align-self: flex-start;
    margin: 1em 0 0.5em;
    color: #555;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
}

.contact-form button {
    margin-top: 1.5em;
    width: 100%;
    padding: 0.75em;
    background-color: black;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: pink;
}

.error {
    color: red;
    font-size: 0.85em;
    margin-top: 0.25em;
}

.service-image {
    width: 80%; /* Make images responsive */
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners for images */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for images */
}

/* Ensure the text has appropriate styling */
.intro h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.services {
    margin-bottom: 40px;
    background-color: #f8f8f8;
    padding: 5px;
    border-radius: 8px;
}

.service-list {
    list-style-type: none;
    padding: 0;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
    margin: 0 auto;
    max-width: 500px;
}

.service-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: #f38f8f;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.promise {
    background-color: #f8f8f8;
    padding: 5px;
    border-radius: 8px;
}

.promise h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.promise-text {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}