body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background: #333;
}

.navbar-brand img {
    height: 70px;
}

.navbar-nav .nav-link {
    color: white;
    padding: 10px;
}

.navbar-nav .nav-link:hover {
    color: #f8b400;
}

/* Carousel */
.carousel-inner .carousel-item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev, .carousel-control-next {
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

/* Section Styling */
.section {
    padding: 60px 0;
    text-align: center;
}

.section.bg-light {
    background: #f9f9f9;
}

/* Grid Sections */
.grid-section img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-section img:hover {
    transform: scale(1.05);
}

.grid-section h3 {
    margin-top: 15px;
}

.grid-section a {
    display: inline-block;
    margin-top: 10px;
}

/* Contact Form */
form .form-control {
    border-radius: 5px;
}

form .btn {
    width: 100%;
    padding: 10px;
}

/* Footer */
footer {
    margin-top: 20px;
}
.carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}
.md-message {
    display: flex;
    align-items: center;
    gap: 20px;
}

.md-photo-container {
    flex: 0 0 30%; /* 30% width for image */
    display: flex;
    justify-content: center;
}

.md-photo {
    width: 100%;
    max-width: 200px; /* Adjust as needed */
    height: auto;
    border-radius: 50%; /* Circular image */
}

.md-content {
    flex: 1; /* 70% width for content */
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .md-message {
        flex-direction: column;
        text-align: center;
    }
    
    .md-photo-container {
        flex: 0 0 100%;
    }
    
    .md-content {
        flex: 0 0 100%;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 40px;
    height: 40px;
}