@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Patrick+Hand&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ribeye&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {

    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

#navbarNav .nav-item .nav-link {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}

.navbar-toggler {
    border: 2px solid rgb(240, 233, 231);
}

.carousel-caption {
    width: 90%;
    max-width: 400px;
    /* Box width */
    padding: 15px;
    background: transparent;
    /* Semi-transparent background */
    color: white;
    border-radius: 10px;
    /* Optional rounded corners */
    bottom: 40%;
    /* Positioning */
}

/* Centered on small screens */
@media (max-width: 991.98px) {
    .carousel-caption {
        right: 50%;
        transform: translateX(50%);
        text-align: center;
    }
}

/* Right-aligned on large screens */
@media (min-width: 992px) {
    .carousel-caption {
        right: 5%;
        left: auto;
        transform: none;
        text-align: center;
    }
}

.aboutus p,
ul li {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 0.03rem;
}

.info-box {
    display: flex;
    justify-content: center;
    align-items: start;
}

.info-box .infobox-icon i {

    font-size: 40px;
    padding: 5px;
}

.info-box .infobox-text p {
    font-size: 13px;
    letter-spacing: 0.2rem;
}

.img {
    padding: 8px;
    border: 1px solid rgb(1, 123, 121);
    border-radius: 6px;
}

#contact input,
#contact textarea {
    border: 2px solid rgb(0, 200, 255);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.zoom-auto {
    animation: zoomInOut 2s infinite;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee h3 {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 8s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}