/* General styles */
body {
    font-family: 'Arial', sans-serif;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.italic {
    font-style: italic;
}

.font-bold {
    font-weight: bold;
}

.animated-text {
    animation: fadeIn 2s ease-in-out infinite alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-carousel .carousel-item video {
    width: 100%;
    height: auto;
    max-height: 100%;
}

/* Additional styles for testimonials */
.testimonial {
    background-color: #8bbb6b;
    border-left: 4px solid #aeb4af;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.testimonial p {
    margin-bottom: 8px;
}

.testimonial .author {
    font-weight: bold;
    color: #333;
}

/* Additional styles for the blog page */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-post {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 4px;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.blog-post h2 {
    color: #40E0D0; /* Updated turquoise color */
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #40E0D0; /* Updated turquoise color */
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
}

/* Header Styles */
header {
    background-color: #40E0D0; /* Updated turquoise color */
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensure header content wraps on smaller screens */
}

.header-text {
    flex-grow: 1;
    text-align: center;
}

.logo-container {
    margin-right: 1rem;
}

.logo {
    max-height: 100px;
    width: auto;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Make sure content doesn't overflow on small screens */
.section {
    padding: 1rem;
    overflow-x: hidden;
}

/* Adjust font sizes for mobile */
@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    body { font-size: 16px; }
}
/* Navigation Menu */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Layout */
.content-section {
    padding: 20px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content-section {
        padding: 10px;
    }

    .content-section h1, .content-section h2, .content-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-section h1, .content-section h2, .content-section h3 {
        font-size: 1.2rem;
    }
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    footer {
        padding: 0.5rem 0;
    }
}