body {
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #d4d4d4;
    background-image: url("../images/back.jpg"); /* Replace 'background-image.jpg' with your image file path */
    background-size: cover; /* Ensures the background image covers the entire viewport */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the background image from repeating */
}

header {
    background-color: #333333d7;
    border-bottom: 2px solid #72b5ec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    padding: 10px 0;
    position: sticky;  /* Make header sticky */
    top: 0;  /* Stick to the top of the viewport */
    z-index: 1000; 
}

nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 40px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.menu-icon div {
    background-color: #72b5ec;
    height: 4px;
    width: 100%;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 20px;  /* Adjust this to align the menu to the left */
    background-color: #333333d7;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    width: 200px;

}

.menu li {
    margin: 10px 0;
}

.menu a {
    color: #72b5ec;
    text-decoration: none;
    padding: 10px;
    display: block;
}

.menu li:hover {
    background-color: #72b5ec;
    box-shadow: 0 0 2px #ffffff;
}

.menu a:hover {
    color: #ffffff;
}   

@media (min-width: 768px) {
    .menu {
        display: none; /* This keeps the dropdown hidden initially */
    }
}

.bannerSEC {

padding-top: 40px;
padding-bottom: 40px;

}

.banner-container {
    width: 80%;
    margin: 20px auto; /* Center the banner and add some top and bottom margin */
    position: relative;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445); /* Optional: add a subtle shadow for a floating effect */
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.company-info {
    background-color: #ffffffa8; /* White background for contrast */
    padding: 40px 20px;
    text-align: center; /* Center-align text */
    margin: 20px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445); /* Optional: add a subtle shadow */
}

.container {
    width: 90%; /* Wider on mobile */
    max-width: 1200px; /* Cap the width on large screens */
    margin: 0 auto;
}

.company-name {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333333d7; /* Dark color for contrast */
}

.company-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #666666; /* Slightly lighter color for readability */
}


.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    border: 1px solid #72b5ec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    color: #72b5ec;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #72b5ec;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.services-section {
    background-color: #333333d7;
    padding: 40px 20px;
    margin: 20px 0;
    border-top: 2px solid #72b5ec;
    border-bottom: 2px solid #72b5ec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.service-box {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.service-box img {
    width: 160px; /* Set a fixed width for the images */
    height: auto;
    margin-bottom: 15px; /* Space between the image and the heading */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    border-radius: 15px;
    border: 1px solid #72b5ec;
}

.service-box h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333333;
}

.service-box p {
    font-size: 1em;
    color: #666666;
    line-height: 1.4;
}

.services-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.descriptive-section {
    background-color: #ffffffa8;
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.descriptive-section .section-header {
    text-align: center;
    font-size: 2em;
    color: #333333;
    margin-bottom: 30px;
}

.description-box {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.description-box h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333333;
}

.description-box p {
    font-size: 1em;
    color: #666666;
    line-height: 1.4;
}

.descriptive-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.business-card-section {
    background-color: #333333d7;
    padding: 40px 20px;
    margin: 20px 0;
    border-top: 2px solid #72b5ec;
    border-bottom: 2px solid #72b5ec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.business-card-box {
    max-width: 1000px;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.business-card-image {
    max-width: 50%;
    height: auto;
    margin: 20px;
    border: 1px solid #72b5ec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    transition: transform 0.3s ease;
}

.business-card-image:hover {

    animation: wobble 0.5s ease-in-out; /* Apply wobble animation on hover */ 

} 

@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.business-card-text {
    flex: 1 1 300px; /* Allows text to grow/shrink with screen size */
    margin: 1rem;
    font-size: 1.2em;
    color: #666666;
}

.reviews {
    background-color: #ffffffa8;
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.review-box {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.review-box h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333333;
}

.review-box p {
    font-size: 1em;
    color: #666666;
    line-height: 1.4;
}

.reviews .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.review-box img {
    width: 160px; /* Set a fixed width for the images */
    height: auto;
    margin-bottom: 15px; /* Space between the image and the heading */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
    border-radius: 15px;
    border: 3px solid rgb(221, 199, 1);
    transition: transform 0.3s ease;
}

.review-box img:hover {

    animation: wobble 0.8s ease-in-out; /* Apply wobble animation on hover */ 

} 

@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.site-footer {
    background-color: #333;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #72b5ec;
}

.site-footer .container {
    max-width: 2500px;
    margin: 0 auto; /* Center the footer */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-column {
    flex: 1;
}

.footer-column img {
    max-width: 200px; /* Adjust the width of your logos */
    height: auto;
}

.btn-contact {
    display: inline-block;
    padding: 10px 20px;
    background-color: #72b5ec;
    font-size: larger;
    color: #003158;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #797979;
    color: #ffffff;
    box-shadow: 0 0 15px #ffffff;
}

.contactreview { 

    display: flex;
    align-items: center;
    justify-content: center;

} 

.contactreviewbtn { 

padding-top: 40px;

}  

.fade-in-out {
    animation: fadeInOut 3s ease-in-out infinite; /* Adjust animation duration and timing as needed */
    max-width: 100%; /* Ensure image doesn't exceed container width */
    height: auto; /* Maintain aspect ratio */
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0; /* Start and end at 0 opacity */
    }
    50% {
        opacity: 1; /* Peak at 100% opacity */
    }
}