#titem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#glr_img {
    width: 270px;
    /* Increased size */
    height: 270px;
    /* Increased size */
    border-radius: 7%;
    /* Ensures a perfect circle */
    transform: scale(1);
    /* Adjusted scale */
    transition: 0.5s;
    margin: 0 auto;
    /* Centers the image */
}

#flogo {
    height: 330px;
    width: 140%;
    margin-top: -100px;
    padding-right: 40px;
}

@media screen and (max-width: 768px) {
    #flogo {
        width: 220px;
        /* Adjust size as needed */
        height: auto;
        margin-left: -15px;
    }

    #ft {
        margin-bottom: -42px;
    }

    #about_img_2 {
        margin-top: -284px;
    }
}

#fta {
    margin-left: 26px;
}


.service-item img {
    width: 60px;
    height: 61px;
    object-fit: contain;
    /* Ensures the image fits inside without distortion */
}

/* Floating button container */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Common styles for buttons */
.floating-buttons a {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 1.5s infinite;
}

/* Call button style */
.call-button {
    background-color: #28a745;
}

/* WhatsApp button style */
.whatsapp-button {
    background-color: #25D366;
}

/* Hover effect - scale up */
.floating-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-button {
    position: fixed;
    left: 20px; /* Distance from the left side */
    top: 70%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for perfect centering */
    background-color: #25D366;
    color: white;
    width: 60px;  /* Set width */
    height: 60px; /* Set height */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50%; /* Perfectly round */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    z-index: 1000; /* Ensure it stays above other elements */
    cursor: pointer;
}


.whatsapp-button:hover {
    transform: translateY(-50%) scale(1.1);
}

.whatsapp-button i {
    color: white;
}

