
/* iframe setting start here  */
iframe{
    width:100%;
    height: 100%;
}

/* iframe setting end here  */
.bannercolor {
  position: relative;
  overflow: hidden;
  background-color: #000000;

  background-image: radial-gradient(
    circle at center,
    rgba(110, 33, 165, 0.35) 0px,
    rgba(110, 33, 165, 0.2) 800px,
    rgba(0, 0, 0, 0) 1800px
  );

  background-repeat: no-repeat;
  background-size: 1000% 800%;  /* << make it very wide and tall */
  background-position: 100% 50%;
  animation: animateGradient 10s ease-in-out infinite alternate;
}


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

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

.bannertopmargin {
    padding-top: 120px;
}

.PixelNest {
    color: #EFEFEF;
}
.banner-subtitle
{
     color: #EFEFEF;
}


/* section 2 start */
.bgcolor {
    background: linear-gradient(to bottom, #000000, #6E21A5);
    padding-bottom: 30px;
}

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

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

.contantent {
    color: #EFEFEF;
}

.radial-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #E31A68 0%, #8C16DE 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
    transform: translate(-50%, -50%);
}

.cardbgcolor {
    background-color: #EDD2FF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 180px;
    height: auto;
    text-align: center;
}

.card-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card1,
.card2,
.card3 {
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

.cardtitle {
    font-size: 20px;
}

.work-content {
    color: #EFEFEF;
}

.cardsubtitle {
    color: #8308FE;
    font-size: 18px;
}

.card1 {
    top: 40%;
    left: 45%;
    z-index: 1;
}

.card2 {
    top: 50%;
    left: 50%;
    z-index: 2;
}

.card3 {
    top: 60%;
    left: 55%;
    z-index: 3;
}
.card-stack.in-view .card2 {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 2;
}

.card-stack.in-view .card1 {
    top: 20%;
    left: 20%;
    z-index: 1;
}

.card-stack.in-view .card3 {
    top: 80%;
    left: 80%;
    z-index: 3;
}


.cardbgcolor img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* section 3 start here  */
.divbgcolor {
    background-color: #EFEFEF;
    position: relative;
    margin-top: 190px;
}



   
.pos-abs {
    position: absolute;
    top: 1%;
    transform: translate(-50%, -50%);
    left: 50%;
    max-width: 80%;
    max-height: 400px;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 10px 0;
    object-fit: cover;
}

.togivetop {
    padding-top: 160px !important;

}

.goalheading,
.goal,
.chalenesdetails {
    color: #151416;

}

.goal {
    font-weight: bold;
    color: #000000;
}

/* section 4 desin start  */

.fontheading {
    color: #EFEFEF;
}

.fontpara {
    color: #EFEFEF;
}

hr {
    border: 0;
    height: 2px;
    background-color: #EFEFEF3B;
    width: 100%;
}


/* section 5 design start */
/* .borderdiv {
    border: 2px solid #EFEFEF;
} */

.top-right-img {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 2;
}


.bottom-left-img {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 2;
}

.circle-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}


.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #8C16DE 0%, #E31A68 100%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.icon {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Tooltip style */
.icon::after {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    white-space: nowrap;
    transform: translateY(-50%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Hover tooltip left/right */
.icon:hover::after {
    opacity: 1;
}

.diamond {
    top: 27%;
    left: 11%;
    transform: translate(-50%, 0);
}

.diamond:hover::after {
    left: -150%;
}

.figma {
    top: 15%;
    left: 88%;
    transform: translate(-100%, -50%);
}

.figma:hover::after {
    left: 110%;
}

.photoshop {
    bottom: 37px;
    left: 50%;
    transform: translate(-50%, 0);
}

.photoshop:hover::after {
    left: -350%;
}

.illustrator {
    top: 54%;
    left: 97%;
    transform: translate(-50%, -50%);
}

.illustrator:hover::after {
    left: 110%;
}








/* result section  */

.imagecontant {
    font-size: 32px;
    font-weight: 400;
    color: #EFEFEF;
    width: 100%;
}

.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;
}

.icons-work {
  
    object-fit: cover;
}
.icon-work-layout
{
width: 100px;
height: 100px;
}

.icons-name-work {
    color: #EFEFEF;
}

.fixed-layout-top {
    max-width: 900px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.fixed-layout-images {
    width: 100%;
    height: 300px;
}

.left-result-image {
    height: 900px;
}

.horizontal-result-image {
    height: 450px;
}

.full-width-result-img {
    height: 450px;
}

.color-palete-img-layout {
    height: 100px;
}

.gallery_para
{
    max-width: 800px;
}

.full-width-result-img {
    min-height: 100%;
    display: flex;
    align-items: stretch;
}

.full-width-result-img .glightbox {
    width: 100%;
}

.full-width-result-img img {
    object-fit: cover;
    height: 420px;
    width: 100%;
    display: block;
}

.fixed-img-layout {
    overflow: hidden;
    position: relative;
    height: 300px;
    width: 100%;
}

.zoom-hover-img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zoom-hover-img:hover {
    transform: scale(1.1);
    /* Slight zoom for better containment */
    transform-origin: center center;
}


.pos-abs-black-top {
    position: absolute;
    top: -33px;
    right: -54px;
}

.pos-abs-black-bootom {
    position: absolute;
    left: -67px;
    bottom: -49px;
}