body {
    overflow-x: hidden;
    background-color: #ffffff;

}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 34%;
    height: 100vh;
}


@media only screen and (max-width: 768px) {

    .carousel-item img {
        width: 34%;
        height: 65vh;
        opacity: 100%;
    }

    #welcome-section {
        height: 65vh;
    }

    #hero {
        height: 65vh;
    }

    .bf1 {
        padding: 0;
    }

    #sv {
        display: block;
    }
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon img {
    width: 30px;
    height: 30px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.gradient-bg {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.3);
}

.nav-item {
    transition: all 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-2px);
    color: #8BC34A;
}

.btn-primary {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 195, 74, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4DD0E1 0%, #00BCD4 100%);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(77, 208, 225, 0.4);
}

section {
    opacity: 1;
    /* Changed from 0 to 1 */
    transform: translateY(0);
    /* Changed from translateY(20px) to 0 */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Add the hidden class for scroll animation */
section.section-hidden {
    opacity: 0;
    transform: translateY(30px);
}

section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keep your existing visible class for compatibility */
section.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-primary {
    color: #8BC34A;
}

.text-secondary {
    color: #4DD0E1;
}

.bg-primary {
    background-color: #8BC34A;
}

.bg-secondary {
    background-color: #4DD0E1;
}

.border-primary {
    border-color: #8BC34A;
}

.border-secondary {
    border-color: #4DD0E1;
}

@keyframes slideOut {
    from {
        transform: translateX(-80%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 100;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        scale: 20%;
        opacity: 0;
    }

    to {
        scale: 100%;
        opacity: 1;
    }
}

.slide-in {
    animation: slideIn 1.5s ease forwards;
    opacity: 0;
}

.slide-up {
    animation: slideUp 1.5s ease forwards;
    opacity: 0;
}

.slide-down {
    animation: slideDown 1.5s ease forwards;
    opacity: 0;
}

.slide-out {
    animation: slideOut 1.5s ease forwards;
    opacity: 0;
}

.zoom-in {
    animation: zoomIn 1.5s ease forwards;

}