body {
    /*background: radial-gradient(circle at 30% 40%, rgba(4, 172, 172, 0.15) 0%, rgba(248, 250, 252, 0.9) 40%),*/
    /*radial-gradient(circle at 70% 60%, rgba(241, 93, 78, 0.15) 0%, rgba(248, 250, 252, 0.9) 40%);*/
    background: radial-gradient(circle at 30% 40%, rgba(4, 172, 172, 0.15) 0%, rgba(248, 250, 252, 0.9) 40%),
    radial-gradient(circle at 70% 60%, rgba(255, 74, 74, 0.25) 0%, rgba(248, 250, 252, 0.9) 40%);
}

.about-style-4 {
    /*background: #F3F3F3;*/
    /*background: #feeeee;*/
    padding: 50px 0 0;
    position: relative;
    z-index: 1;
}

.about-style-4 h3 {
    font-size: 40px;
    font-weight: bold;
}

.about-style-4 .about-content-wrapper ul {
    padding-bottom: 25px;
}

.about-style-4 .about-content-wrapper ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.about-style-4 .about-content-wrapper ul li i {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    margin-top: 4px;
    font-weight: 700;
}

.about-style-4 .about-image {
    margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .about-style-4 .about-image img {
        width: 100%;
    }
}

.btn-outline-primary {
    color: #04acac;
    border-color: #04acac;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #04acac !important;
    border-color: #04acac !important;
    /*box-shadow: 0 0 0 0.2rem rgba(4, 172, 172, 0.5) !important; !* custom shadow *!*/
}

.call-to-action {
    margin: 100px 0;
}

.call-to-action .title {
    margin-bottom: 30px;
}

.call-to-action .btn {
    padding: 10px 60px;
    font-size: 24px;
    transition: transform 0.4s ease, box-shadow 0.2s ease; /* smooth effect */
}

.call-to-action .btn:hover {
    transform: translateY(-6px); /* moves the button up slightly */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* optional shadow for lift */
}

/*-------------------------image-gallery---------------------*/
/* Gallery Item Container */
.animal-item {
    position: relative;
    display: block;
    overflow: hidden; /* This ensures content doesn't spill out */
    height: 100%; /* Takes height from parent classes */
    box-shadow: -12px 10px 15px rgba(0, 0, 0, 0.2);
    /*border: 20px solid #F15D4E;*/
    border-radius: 10px;
}

/* Image Container */
.animal-item .position-relative {
    position: relative;
    width: 100%;
    height: 100%; /* Fill the animal-item container */
    overflow: hidden; /* Clip the image */
}

/* Image Styling */
.animal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This fills the container while maintaining aspect ratio */
    object-position: center; /* Center the image in the container */
    transition: transform 0.3s ease;
}

/* Text Overlay */
.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /*padding-bottom: 100px !important;*/
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/* Gallery Layout */
.image-gallery {
    margin-top: 150px;
    margin-bottom: 150px !important;
}

.image-gallery .title {
    color: #c6a16e;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

/* Fixed heights for gallery items */
.animal-item.small-item {
    height: 300px;
}

.animal-item.large-item {
    height: 500px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animal-item.small-item,
    .animal-item.large-item {
        height: 300px;
    }
}

.animal-text-touch {
    opacity: 1 !important;
    bottom: 0 !important;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9)) !important;
}
