/* Custom Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #073642;

.navbar {
    width: 100%; /* Ensures navbar spans full width */
    padding-left: 0;
    padding-right: 0;
}
.navbar-nav {
    justify-content: space-around; /* Spreads out the menu items evenly */
    width: 100%; /* Make sure nav links span the full width */
}

/* Custom Styles */
.overlay-bg {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 8px;
}

.logo {
    width: 300px;
}

#carouselSection {
    background-color: #002b36;

}

.carousel-caption h1, .carousel-caption p {
    color: #ffffff; /* White text for better readability */
}

.carousel-caption p {
  font-size:1.5em;
}

#servicesSection {
    background-color: #073642;
    color: #ffffff;
    padding: 60px 0;
}

.services-icon {
    font-size: 50px;
    color: #b58900;
}

.services-item:hover {
    cursor: pointer;
}

#gallerySection {
    background-color: #eee8d5;
    padding: 60px 0;
}

#testimonialsSection {
    background-color: #268bd2;
    color: #ffffff;
    padding: 60px 0;
}

#contactSection {
    background-color: #073642;
    color: #ffffff;
    padding: 60px 0;
}

.contact-info {
    margin-bottom: 30px;
}

.modal-body img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}



#chat-container {
    width: 400px;
    max-width: 95%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    overflow-y: auto;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Start at the bottom */
}

.message {    
    padding: 8px 12px;
    margin-bottom: 8px;
    max-width: 70%;
    animation: fadeIn 0.5s ease;
}

.received-message {
    border-radius: 10px 10px 10px 0px;
    text-align: left;
    background-color: green;
    align-self: flex-start; /* Align to the left */
}

.sent-message {
    border-radius: 10px 10px 0px 10px;
    text-align: right;
    background-color: #007bff;
    color: white;
    align-self: flex-end; /* Align to the right */
}

.typing-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.typing-indicator .dot {
    background-color: #bbb;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    animation: blink 1s infinite;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

.galleryThumbnail {
    width: 90%;
    height: 90%;
    object-fit: scale-down;
    overflow: hidden;
/*    display:none;*/
}

.gallery-item {
    padding:1px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between images */
    justify-content: center; /* Center the gallery */
}

.gallery a {
    display: block;
    width: calc(33.33% - 10px); /* Three images per row with gap */
}

.gallery img {
    width: 100%; /* Responsive images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional styling */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}



@media (max-width: 768px) {
    .gallery a {
        width: calc(50% - 10px); /* Two images per row on smaller screens */
    }

    .logo {
        max-height: 1.5em;
        width:auto;
    }

}

@media (max-width: 480px) {
    .gallery a {
        width: 100%; /* One image per row on very small screens */
    }


}



