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;
    border-top: 1px solid #72b5ec;
    border-bottom: 1px solid #72b5ec;
    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: 70%;
    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 */
}


.centered-container {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #333333d7;
    width: 100%;
    margin: 0 auto;
    border-top: 2px solid #72b5ec;
    border-bottom: 2px solid #72b5ec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.content-box {
    display: flex;
    width: 70%;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.content-image {
    width: 50%;
    max-width: 350px;
    height: auto;
    margin: 1rem;
    border: 3px solid #72b5ec;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.445);
}

.content-text {
    width: 50%;
    padding: 10px;
}

.content-text h2 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        width: 90%;
        text-align: center;
    }

    .content-image, .content-text {
        width: 100%;
    }

    .content-text {
        padding: 10px;
    }
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    border: 1px solid #72b5ec;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.445);
    color: #72b5ec;
    font-size: larger;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btntech {
display: flex;
justify-content: center;
margin-top: 2rem;
}

.btn:hover {
    background-color: #72b5ec;
    color: white;
    box-shadow: 0 0 8px #72b5ec;
}

.business-card-section {
    background-color: #ffffffb4;
    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: #333333d7;
    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: xx-large;
    color: #72b5ec;
}


.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 */
    }
}