body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 70px; /* Adjusted for fixed navbar */
    overflow-x: hidden;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.bg-primary-green {
    background-color: #28a745 !important;
    color: white;
}

.card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.footer {
    background-color: #1a1a1a;
    color: white;
}

.bi {
    font-size: 2.5rem;
    color: #28a745;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Slideshow Styles */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide:first-child {
    opacity: 1;
}

@keyframes slideFade {
    0%, 33.33% { opacity: 1; }
    33.34%, 66.66% { opacity: 0; }
    66.67%, 100% { opacity: 0; }
}

@keyframes slideFade2 {
    0%, 33.33% { opacity: 0; }
    33.34%, 66.66% { opacity: 1; }
    66.67%, 100% { opacity: 0; }
}

@keyframes slideFade3 {
    0%, 33.33% { opacity: 0; }
    33.34%, 66.66% { opacity: 0; }
    66.67%, 100% { opacity: 1; }
}

.slide:nth-child(1) { animation: slideFade 9s infinite; }
.slide:nth-child(2) { animation: slideFade2 9s infinite; }
.slide:nth-child(3) { animation: slideFade3 9s infinite; }

/* Modern Styling */
header {
    position: relative;
    overflow: hidden;
}

header .container {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
}

.display-4, .display-5, .display-6 {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float .bi {
    font-size: 2rem;
    vertical-align: middle;
}