  .bgColor, .btn-primry, .accordion-button:not(.collapsed), .modelIcon, .nav-link.border-0.bg-transparent.w-100.text-center.active, .service-item::before{
            background: linear-gradient(135deg, #1a7dc0, #5ac1ac)!important;
    }
    .customHeading {
    background: linear-gradient(135deg, #1a7dc0, #5ac1ac)!important;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 600 !important;
    font-size: 3em;
    text-transform: capitalize;
}
.gallery-card{
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}

.gallery-card:hover{
    transform: translateY(-5px);
}

.gallery-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-card:hover .gallery-img{
    transform: scale(1.08);
}

/* Dark Overlay */
.gallery-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
    border-radius:25px;
}

/* Category Text */
.gallery-title{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Mobile */
@media(max-width:768px){

    .gallery-card{
        height: 260px;
    }

    .gallery-title{
        font-size: 18px;
        bottom: 15px;
        left: 15px;
    }

}





  .spotlight {
    /*background: #f8f8f8;*/
}

/* MAIN CARD */
.spotlight .main-card {
    background: #fff;
    /*padding: 15px;*/
}

.spotlight .main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.spotlight .main-content {
    margin-top: 15px;
    position: relative;
}

.spotlight .title {
     font-size: 18px;
    margin-bottom: 5px;
}

.spotlight .date {
    color: #777;
    font-size: 14px;
}

/* ARROWS */
.spotlight .nav-arrows {
    position: absolute;
    right: 0;
    bottom: 0;
}

.spotlight .arrow-btn {
    background: #de4b6e!important;
    border: none;
    color: #fff;
    padding: 8px 12px;
    margin-left: 5px;
        border-radius: 4px;
    cursor: pointer;
}

.spotlight .arrow-btn.active {
    background: #e14a1f;
}

/* SIDE LIST */
.spotlight .side-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spotlight .side-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.spotlight .side-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.spotlight .side-item p {
    font-size: 15px!important;
    margin: 0;
}

/* BUTTON */
.spotlight .view-btn {
    background: #de4b6e;
    color: #fff;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
        border-radius: 4px;
}