.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 40px;
    background-color: #1d743d;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1100;
}

.my-float {
    margin-top: 14px;
}
.link {
    cursor: pointer;
}
/* The alert message box */
.alert {
    padding: 20px;
    background-color: #292e7f;
    color: #f5af19;
    margin-bottom: 15px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

.service-image {
    max-width: 150%;
    height: 195px;
    width: 200px;
}
.menu-active {
    color: #00c89a !important;
    font-size: 1.3em;
}

/* Features Section */
section.features .feature-box {
    padding: 20px 15px;
    text-align: center;
}
section.features .feature-box img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 12px;
}
section.features .feature-box h4 {
    font-size: 16px;
}
.hymod-bg {
    position: relative;
    background-image: url("../images/background/hymod-bg.webp"); /* Replace with your image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* height: 500px; Adjust height as needed */
}
.hymod-content {
    position: relative;
    z-index: 2;
    /* color: white; */
    background-color: #ffffff9f;
    text-align: center;
    padding: 100px 20px; /* Adjust padding as needed */
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(23px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
/* .hymod-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 90, 90, 0.247); 
    z-index: 1;
} */

.slider-container {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
    background-color: white;
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(250px * 5); /* Adjust this based on the number of logos */
}

.slide {
    min-width: 250px; /* Adjust width as per logo size */
    text-align: center;
    padding: 10px;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.prev,
.next {
    background-color: #ddd;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}
.card-light {
    background-color: #ffffff9f;
    backdrop-filter: blur(23px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}
.card-light img {
    /* top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    object-fit: cover;
    border-radius: 16px;
    padding: 5px;
}

