
        /* Custom styles for adjusting logo image size */
        .logo img {
            max-width: 85%;
            /* Ensures the image is responsive and doesn't overflow its container */
            height: 70%;
            /* Allows the image's height to adjust proportionally to its width */
            /* You can adjust the max-width and height values as needed */
            max-height: 100px;
            /* Adjust the maximum height of the image */
        }
        
       
        /* Styling for the section with animation */
        .animation-section {
            position: relative;
            height: 500px; /* Adjust the height of the section */
            overflow: hidden; /* Hide overflow to prevent background image from being visible outside the section */
        }

        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; /* Set height to be twice the height of the section */
            background-image: url('img/banner.jpg');
            background-size:cover;
            background-position: top;
            animation: scrollBackground 10s linear infinite; /* Define the animation */
        }
        
        .hov:hover {
            color: rgb(255, 255, 255);
            background-color: rgba(251, 0, 192, 0.785);
            border: rgba(251, 0, 192, 0.785);
        }
        
        


        /* Keyframes for background image scroll animation */
        @keyframes scrollBackground {
            0% {
                transform: translateY();
            }
            100% {
                transform: translateY(-50%); /* Adjust as needed based on the height of the section */
            }
        }


        .nav-link:hover {
            color: rgba(251, 0, 192, 0.785);
        }
        .testimonial-slider .carousel-indicators button {
            width: 10px;
            height: 10px;
            background-color: #dc3545;
            border-radius: 100%;
        }
        .testimonial-slider {
            padding: 10px 0px 40px;
        }