/* iframe setting  */
iframe {
  position: relative;
  width: 100%;
  height: 100%;
}
/* iframe setting  */

.bannercolor {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    background-image: radial-gradient(circle at center, rgba(110, 33, 165, 0.3) 0px, rgba(110, 33, 165, 0.15) 200px, rgba(0, 0, 0, 0) 500px);
    background-repeat: no-repeat;
    background-size: 300% 100%;
    background-position: 100% 50%;
    animation: animateGradient 10s ease-in-out infinite alternate;
}

@keyframes animateGradient {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.topspacing {
    margin-top: 80px;
}
.bannerheading {
    padding-top: 100px;
    color: #EFEFEF;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 4px;

}
/* tab section start here  */
.tabsbgcolor {
    background: linear-gradient(to bottom, #151416 30%, #662D8E 100%);
}

.Portfolio {
    color: #EFEFEF;
    position: relative;
    display: inline-block;
}

/* .Portfolio::after {
    content: "";
    display: block;
    height: 4px;
    margin-top: 10px;
    background: linear-gradient(to right, #E31A68, #662D8E);
    width: 100%;
} */



.nav-tabs {
    border-bottom: none !important;
}

/* Base state */
.nav-tabs .nav-link.custom-tab-work {
    padding: 20px 30px;
    /* Better for dynamic width */
    height: 50px;
    border: 1px solid #EFEFEF !important;
    border-radius: 0 !important;
    color: #EFEFEF;
    background-color: transparent;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.nav-tabs .nav-link.custom-tab-work:not(.active):hover {
    color: #ccc;
    border-color: #ccc;
}

.nav-tabs .nav-link.custom-tab-work.active {
    border: none !important;
    background: linear-gradient(to right, #E31A68, #662D8E);
    color: #fff;
    font-weight: 600;
}



.tabcontentmargin {
    margin-top: 100px;
}


.image-overlay-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.image-overlay-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, #00000000 0%, #220239F5 96%);
    z-index: 1;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 2;
    color: white;
}

.worktitle {
    color: #EFEFEF;
}

.worksubcontent {
    color: #EFEFEF;
}

.loadmorebtn {
    position: relative;
    overflow: hidden;
    border: 2px solid #FFFFFF;
    background-color: transparent;
    font-size: 20px;
    font-weight: 500;
    border-radius: 0;
    padding: 10px 25px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.loadmorebtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #FFFFFF;
    z-index: -1;
    transition: width 1.2s ease;
}
.loadmorebtn  img{
    position: relative;
     color: #151416;
    z-index: 2;
    transition: transform 0.3s ease 0.3s, filter 0.3s ease 0.3s;
}

.loadmorebtn:hover img{
    transform: translateX(15px);
     color: #151416;
    filter: brightness(0);
}
.loadmorebtn:hover::before {
    width: 100%;
}
.loadmorebtn:hover {
       border: 2px solid #FFFFFF;
}
.loadmorebtn .btn-text {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    transition: color 0.4s ease;
}

.loadmorebtn:hover .btn-text {
    color: #151416; /* Dark text over white BG */
}




.slick-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0.85);
    padding: 0 15px;
}

.slick-center {
    transform: scale(1.1);
    opacity: 1;
    z-index: 2;
}

.slicker-section img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.gallery_para
{
    max-width: 700px;
    width: 100%;
}
 .work-img-layout {
            width: 100%;
            height: 400px;
        }
/* @media (max-width: 768px) {
    .slicker-section img {
        aspect-ratio: 4/3;
    }
} */