iframe{
    width: 100%;
    height: 100%;
}

/* flash screen design  */
.dbanimation {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1093;
  float: right;
  clear: both;
  overflow: hidden;
  animation: slideup 0.7s forwards 2.5s;
}
.dbanimation img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
@keyframes slideup {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
/* banner section start  */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    /* Optional spacing */
}


.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background,
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mouse-glow {
    position: absolute;
    pointer-events: none;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #2DA0E6BD 0%, rgba(45, 160, 230, 0.4) 60%, rgba(45, 160, 230, 0) 100%);
    filter: blur(50px);
    opacity: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: #EFEFEF;
}

.headingbanner {
    font-size: 72px;
    font-weight: 400;
    max-width: 800px;
    width: 100%;
    word-wrap: break-word;
    line-height: 1.3;
    white-space: normal;
}


.creativity-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 60px;
    font-weight: 600;
    font-family: 'aquirebold';
    overflow: visible;
}

.creativity-wrapper span {
    position: relative;
    top: -200px;
    opacity: 0;
    display: inline-block;
    animation: dropFromTop 1s forwards ease-out;
}

@keyframes dropFromTop {
    to {
        top: 0;
        opacity: 1;
    }
}

.knowmorebtn {
    position: relative;
    overflow: hidden;
    border: 2px solid white;
    background-color: transparent;
    font-size: 22px;
    border-radius: 0;
    z-index: 1;
    padding: 10px 20px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.05s linear;
}

.knowmorebtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: white;
    z-index: 0;
    transition: width 0.3s ease;
}

.knowmorebtn:hover::before {
    width: 100%;
}

.knowmorebtn .btn-text {
    position: relative;
    z-index: 2;
    color: #EFEFEF;
    transition: color 0.4s ease;
}

.knowmorebtn:hover .btn-text {
    color: #151416;
}

.knowmorebtn img {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease 0.3s, filter 0.3s ease 0.3s;
}

.knowmorebtn:hover img {
    transform: translateX(15px);
    filter: brightness(0);
}



.wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.center-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-arrow img {
    width: auto;
    height: auto;
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 12s linear infinite;
    z-index: 1;
    overflow: visible;
}

svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.rotating-text text {
    fill: white;
    font-size: 18px;
    font-family: 'montserratregular';
    text-transform: uppercase;
    dominant-baseline: middle;
    alignment-baseline: middle;
}

/* Rotation animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.wrapper {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    z-index: 2;
}

/* banner section end  */

/* services section start here */


.servicesbgcolor {
    background: linear-gradient(to bottom, #151416, #662D8E);
    padding-bottom: 20px;

}


.card-body {
    position: relative;
    z-index: 4;
    padding: 0 !important;
}


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

.services-card-padding {
    background-color: #151416;
    border: none;
}

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


.services-card-padding {
    padding: 30px;
}

.service-card-bg-img {
    position: absolute;
    width: 150px;
    opacity: 0.15;
    z-index: 0;
    opacity: 0.6;
    filter: brightness(0.6);
}

.card-bg-top-right {
    top: 0;
    right: -10px;
    transform: rotate(180deg);
}

.card-bg-bottom-left {
    bottom: 0;
    left: -10px;
}

.card-title {
    color: #EFEFEF;
    font-family: 'montserratregular';
}

.cardpara {
    color: #EFEFEF;
    font-family: 'montserratregular';
    width: 100%;
}

.morebtn {
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #EFEFEF;
    text-decoration: none;
}

.stack-card {
    background: linear-gradient(to bottom, #7A5197, #662D8E);
    border: none;
}


.morebtn img {
    width: auto !important;
    vertical-align: middle !important;
}

/* Who We Work With section start here */
.whobgcolor {
    background: linear-gradient(to bottom, #EFEFEF 0%, #EFEFEF 70%, #000000 30%, #000000 100%);
}

.whoheading {
    position: relative;
    color: #151416;
    display: inline-block;
    overflow: hidden;

}

.whopara {
    color: #151416;
    width: 100%;
    max-width: 700px;
}

.dual-slider-container {
    padding: 40px;
}

.dualsliderbgcolor {
    background-color: #DEDEDE;
}

.dual-slider {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.dual-slider-img-layout {
  aspect-ratio: 5 / 3; /* or 16/9 or whatever you need */
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.dual-slider-img-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-row {
    width: 100%;
    overflow: visible;
}

.slider-row img {
    width: 100%;
    padding: 5px;
}

.slider-bottom {
    direction: rtl;
}

.slider-bottom .slick-slide {
    direction: ltr;
}

/* Who We Work With end here */


/* our section start   */
.ourbgcolor {
    background-color: #000000;

}

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

.imagecover {
    object-fit: cover;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.frame-style {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.frame_opacity {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.gallery-item:hover .frame_opacity {
    opacity: 1;
    pointer-events: auto;
}

.overlay-content {
    position: absolute;
    bottom: 5%;
    left: 1rem;
    right: 1rem;
}

.ourtitle1 {
    color: #EFEFEF;
    z-index: 2;
}

.ourtitle2 {
    color: #EFEFEF;
    z-index: 2;
}

.seeall-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.separte-height {
    width: auto;
    object-fit: cover;
    height: 390px;
}

.height-horizontal {
    width: auto;
    object-fit: cover;
    height: 221px;
}

.long-img {
    width: auto;
    object-fit: cover;
    height: 457px;
}

.tablet-height {
    width: auto;
    object-fit: cover;
    height: 320px;
}

.tablet-height .frame_opacity {
    opacity: 1 !important;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.4);
}

.tablet-height .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #EFEFEF;
    z-index: 2;
    transform: translate(-50%, -50%);
}

#moreCount {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.overlay-text {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.alt-popup {
    position: absolute;
    background: #000;
    color: #fff;
    font-size: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
    z-index: 1000;
    display: none;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-transform: capitalize;
}

/* our section end */


/* why section start */


.whybgcolor {
    background:
        linear-gradient(to bottom, #151416, #662D8E) top / 100% 70% no-repeat,
        #151416 !important;
    padding: 20px 10px;
    color: #EFEFEF;
}

.whypara {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.clipped-box {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    color: #EFEFEF;
    background: #2D2D2D;
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    -webkit-clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
}

.pos-abs {
    position: absolute;
    top: -35px;
    left: 60px;
}

.knowbtn {
    position: relative;
    color: #EFEFEF;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.knowbtn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #EFEFEF;
    transition: background-color 0.3s ease;
}

.knowbtn:hover {
    color: #EFEFEF;
}

.why-image {
    overflow: hidden;
    position: relative;
    max-width: 800px;
    width: 100%;
    height: 400px;
    margin: 0 auto !important;
}

/* why section end  */

/* slider rotate btn  */
.dot-hidden {
  display: none !important;
}

/* Small version of the 5th dot */
#slick-dots-wrapper li.dot-more button {
  width: 6px !important;
  height: 6px !important;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0.5;
}

/* Optional: scale the ring too */
#slick-dots-wrapper li.dot-more svg {
  transform: scale(0.6) rotate(-90deg);
}
.bg-user-imprestion {
    background: #151416;
}
.user_visibilty_title
{
    font-size: 18px;
    font-weight: 900;
}
.user_visibilty_founder
{
font-size: 16px;
    font-weight: 400;
}
.blog-image {
   width: 100%;
   height: 300px;
    position: relative;
}

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

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

.slider-img {
    width: 60px;
    height: 60px;
}

.slider-circel {
    color: #EFEFEF;
    width: 100%;
    margin: auto;
}
/* Force Slick to treat all slides equally in height */
.slider-circel .slick-track {
  display: flex !important;
}

/* Each slide takes full height of tallest one */
.slider-circel .slick-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}

/* Inner content of each slide grows */
.slider-circel .slick-slide > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}


/* Optional: make text content grow vertically and push bottom content down */
/* Hide extra dots */
.dot-hidden {
  display: none !important;
}

/* Small version of the 5th dot */
#slick-dots-wrapper li.dot-more button {
  width: 6px !important;
  height: 6px !important;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0.5;
}

/* Optional: scale the ring too */
#slick-dots-wrapper li.dot-more svg {
  transform: scale(0.6) rotate(-90deg);
}

.slider-circel .row.align-items-center {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider-circel .slick-slide {
    background: linear-gradient(to bottom, #151416, #662D8E);
    border-radius: 0;
    padding: 2rem;
    margin: 0 10px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.slider-para {
    color: #EFEFEF;
}

#slick-dots-wrapper {
    display: flex !important;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

#slick-dots-wrapper li {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 3px;
    list-style: none;
}

#slick-dots-wrapper li button {
    background: linear-gradient(135deg, #E31A68, #662D8E) !important;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: none;
    padding: 0;
    opacity: 1;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

#slick-dots-wrapper li button:before {
    display: none !important;
}

#slick-dots-wrapper li svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    z-index: 1;
}



#slick-dots-wrapper svg:focus,
#slick-dots-wrapper circle:focus {
    outline: none;
}

.base-ring {
    stroke: url(#gradient);
    stroke-opacity: 0.2;
    stroke-width: 2;
    fill: none;
}

.progress-ring {
    stroke: url(#gradient);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 114;
    stroke-dashoffset: 114;
    transition: stroke-dashoffset 0s linear;
}
/* #slick-dots-wrapper li.slick-active .progress-ring {
    animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
    to {
        stroke-dashoffset: 0;
    }
} */

/* slider section end here */
.Insights-heding {
    display: inline-block;
    position: relative;
    color: #EFEFEF;
}

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

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

/* .viewall {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    background: linear-gradient(to right, #E31A68, #662D8E);
    font-size: 18px;
    font-family: 'montserratregular' ;
    color: #EFEFEF ;
    border: none ;
    border-radius: 0 ;
    overflow: hidden;
    z-index: 1;
}
.viewall:hover
{
    color: #EFEFEF ;
} */




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

.overlay-text {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.titel {
    font-size: 24px;
    font-weight: 500;
    font-family: 'montserratregular';
    color: #EFEFEF;
}

.catrgory_blog {
    font-family: 'montserratregular';
    color: #EFEFEF;
}

.reading .timeing {
    font-family: 'montserratregular';
    font-size: 16px;
    font-weight: 600;
    color: #EFEFEF;
}

.paddingforhrline {
    padding-top: 80px;
    padding-bottom: 20px;
}

/* animation designs  */
.togivetop {
    padding-top: 80px;
}

.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);
    transform-origin: center center;
}

/* cards transtions  */

.card-stack-container {
    position: relative;
}

.card-item {
    position: sticky;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    /* Causes cards to stack visually */
    transition: z-index 0.3s ease;
}