/* Container for the image and overlay text */
.image-container {
    position: relative;
    max-width: 100%;
}

/* Style for the image */
.image-container img {
    width: 100%;
    height: 600px;
}

/* Style for the overlay text */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    /* color: white; */
    color: orange;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
}
/* Style for the white outline button */
.white-outline-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid white; /* White border */
    color: white; /* White text color */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect for the button */
.white-outline-button:hover {
    background-color: white;
    color: #333; /* Change to the desired text color */
}
.custom-card-container .card{
    height: 200px;
}
/* Bounce To Top */
.hvr-bounce-to-right:before {
    background: orange;
}
.hvr-bounce-to-right::after {
    color: #000;
}
/* Card container */
/* .custom-card-container .card {
    width: 300px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin: 20px;
            overflow: hidden;
            position: relative;
            transition: filter 0.3s ease;
} */

/* Hover effect */
.custom-card-container .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Hover overlay */
.custom-card-container .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Background color for the overlay */
    color: #fff;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hover effect */
.custom-card-container .card:hover .hover-overlay {
    opacity: 1; /* Show the overlay on hover */
}
.services h3 {
    font-weight: bold;
    font-size: 45px; /* Adjust the font size as needed */
    background: linear-gradient(to right, orange, green, blue); /* Gradient text color */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text;
    color: transparent; /* Hide the actual text color */
    text-fill-color: transparent; /* For Firefox support */
}
.gradient-bg {
    width: 50px; /* Adjust the width to your preference */
    height: 50px; /* Adjust the height to your preference */
    /* background: linear-gradient(to bottom right, #ff3399, #ff6666); */
    color: #000; /* Text color */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    margin: 0 auto;
    border: 3px solid transparent; /* Set an initial transparent border */
    border-image: linear-gradient(45deg, red, green, blue); /* Use a gradient image for the border */
    border-image-slice: 1; 
}
.gradient-bg h4 {
    font-size: 24px; /* Adjust the font size as needed */
    background: linear-gradient(to right, red, green, blue); /* Gradient text color */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text;
    color: transparent; /* Hide the actual text color */
    text-fill-color: transparent; /* For Firefox support */
}