#readmore::after {
    content: "\F194";
    font-family: "Bootstrap-icons";
    margin-inline-start: 8px;
}

#demo-btn::after {
    content: "\F21B";
    font-family: "Bootstrap-icons";
    margin-inline-start: 8px;
}

.image-hero-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s linear;
}

.image-hero-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.image-hero-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}

/* Creating a transparent holo-like border inside */
.image-hero-container::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Fill the entire container */
    border-radius: 20%;
    background: radial-gradient(circle, transparent 30%, rgba(3, 86, 86, 0.725) 70%, transparent 100%);
    pointer-events: none;
    /* Ensures it doesn't interfere with interactions */
}

.home-card {
    text-decoration: none;
    background-color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 1rem;

    img {
        border-radius: 1rem;
    }

    .activity-title {
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }
}

.home-card {
    flex: 1 1 0;
    max-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    padding: 1rem;
    height: 100%;
}

.activity-main-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}


.partner-carousel img {
    /* filter: brightness(0) saturate(100%) invert(86%) sepia(4%) saturate(10%) hue-rotate(4deg) brightness(96%) contrast(88%); */
    transition: filter 0.5s ease;
    /* max-width: 170px; */
    max-height: 100px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}


.partner-carousel img:hover {
    filter: none;
}

.owl-carousel .owl-stage {
    display: flex;
    transition: transform 0.5s linear !important;
}



.home-news-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;

}

.news-card-content {
    margin-top: 10px;
    padding: 1rem;
}

.news-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
}

.news-img-container {
    position: relative;
    /* Parent for positioning date */
}


.news-date {
    position: absolute;
    bottom: 0px;
    background: rgba(52, 52, 23, 0.621);
    color: white;
    background-blend-mode: darken;
    padding: 7px 30px;
    /* Inner spacing */
    border-radius: 3rem 0 0 0;
    font-size: medium;
}


.readmore-btn::after {
    content: "\F194";
    /* Unicode for the icon */
    font-family: "bootstrap-icons";
    /* Use Bootstrap Icons font */
    margin-inline: 10px;

    display: inline-block;
}

.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 2s ease-out;
}

.intro-animation img {
    max-width: 100%;
    height: auto;
}