.banner-section .image img {
    width: 100%;
    height: 100%;
}

.banner-section {
    height: 100vh;
    background: var(--black);
}

.main-banner-content-box {
    position: relative;
    /* background: url('../img/tree-image.jpg');
                background-size: cover; */
    /* background-position: center; */
    height: calc(100% - 100px);
}

/*I removed the fixed height because I don't think it is necessary. 31/7/2026 */
/*.top-heading-box {
    height: 100px;
}*/

.top-heading-box .top-heading {
    color: #FFF;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 700;
    line-height: normal;
}

.top-heading-box .desc {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 400;
    line-height: normal;
}

.main-banner-content-box .image {
    height: 100%;
}

.main-banner-content-box .image img {
    width: 100%;
    /* height: 100%; */

}



.blue-dots-wrapper,
.green-dots-wrapper,
.purple-dots-wrapper,
.golden-dots-wrapper,
.sky-dots-wrapper,
.competency {
    position: absolute;
    width: 19%;
    height: 23%;
}

.competency {
    color: #fff;
    text-align: center;
    width: 12%;
    cursor: pointer;
}

ul,
li {
    list-style: none;
}

.text-content {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.5s ease-in-out;
}

.competency:hover .text-content {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.text-content ul li {
    -webkit-text-stroke: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    padding: 0 7px;
    border-radius: 10px;
    width: max-content;
    margin: auto;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(107, 154, 198, 0.4);
    box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
     inset 0 0 10px rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
  overflow: hidden;
  transform: none;
}

.icon-circle::after {
  content: '';
  position: absolute;
  top: 0; 
  left:0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: rgba(0, 180, 255, 0.6); 
  /* Screen blend mode allows it to brightened everything it passes under */
  mix-blend-mode: screen; 
  opacity: 0;
  z-index: 1; /* Flows underneath the main white icon graphic */ 
  /* Animation hooks */
  animation: iconRipple 1.2s ease-out infinite;
  animation-delay: 1s;
}



/* Create the light streak using a pseudo-element */
.icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  animation: aiScan 3s infinite linear;
}

/* Keyframes to move the streak across */
@keyframes aiScan {
  0% {
    left: -150%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%; /* Holds the animation briefly before restarting */
  }
}
.icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.golden-competency .icon-circle {
    border: 1px solid #E2B476;
}

.green-competenncy .icon-circle {
    border: 1px solid #679C8A;
}

.purple-competenecy .icon-circle {
    border: 1px solid #82669B;
}

.sky-competenncy .icon-circle {
    border: 1px solid #55A1AF;
}

.blue-dots-wrapper {
    top: 9%;
    left: 0%;
    transform: rotate(-43deg);
}

.blue-competenncy {
    top: 18%;
    left: 8%;
}

.green-dots-wrapper {
    top: 14%;
    left: 21%;
}

.green-competenncy {
    top: 15%;
    left: 24%;
    width: 17%;
}

.purple-dots-wrapper {
    top: 2%;
    right: 20%;
    transform: rotate(33deg);
}

.purple-competenecy {
    top: 15%;
    right: 22%;
    width: 15%;
}

.golden-dots-wrapper {
    top: 6%;
    right: 39%;
}

.golden-competency {
    top: 7%;
    left: 50%;
    width: clamp(180px, 15vw, 300px);
    transform: translateX(-50%);
}

.sky-dots-wrapper {
    top: 3%;
    right: 8%;
    transform: rotate(281deg);
}

.sky-competency {
    top: 15%;
    right: 7%;
    width: 11%;
}

.blue-dots-wrapper {
    --dot-color: #3b82f6;
}

.green-dots-wrapper {
    --dot-color: #22c55e;
}

.purple-dots-wrapper {
    --dot-color: #e9a4e9;
}

.golden-dots-wrapper {
    --dot-color: #e1b159;
}

.sky-dots-wrapper {
    --dot-color: #84eaef;
}

.dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dot-color);
    box-shadow: 0 0 8px var(--dot-color);
    opacity: 0.1;
    transition: all 0.5s ease-in-out;

    transform: translateZ(0);
    /* GPU boost */
}

.dot::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 1px solid var(--dot-color);
    border-radius: 50%;
    opacity: 0;
}

/* ACTIVE STATE */
.ripple {
    opacity: 1;
}

.ripple::before {
    animation: rippleSmooth 2s ease-in-out infinite;
}

/* BLINK FIXED (smooth fade) */
.blink {
    animation: blinkSmooth 2s ease-in-out infinite;
}

/* ✅ Smooth breathing ripple */
@keyframes rippleSmooth {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(2);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* ✅ Smooth opacity animation */
@keyframes blinkSmooth {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}



.banner-section .competency .banner-title {
    font-size: clamp(0.5rem, 2vw, 1rem);
    font-weight: 600;
    line-height: normal;
    position: relative;
    margin-block: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.banner-section .competency .banner-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: #fff;
    margin: auto;
    left: 0;
    right: 0;

}

:root {
    --gold: #B37714;
}

.banner-center-heading {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);

    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
    z-index: 10;
    filter:
        drop-shadow(0 0 4px var(--gold)) drop-shadow(0 0 10px var(--gold)) drop-shadow(0 0 20px var(--gold));
    animation: glowPulse 3s ease-in-out infinite;
}

/* Heading */
.banner-center-heading p {
    font-size: clamp(0.5rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
}

/* Optional sub text */
.banner-center-heading span {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

/* Glow animation */
@keyframes glowPulse {

    0%,
    100% {
        filter:
            drop-shadow(0 0 4px var(--gold)) drop-shadow(0 0 10px var(--gold)) drop-shadow(0 0 20px var(--gold));
    }

    50% {
        filter:
            drop-shadow(0 0 8px var(--gold)) drop-shadow(0 0 20px var(--gold)) drop-shadow(0 0 40px var(--gold));
    }
}

/* Section Heading */
.heading-one{
    font-size: 40px;
    color: #D2D2D2;
    font-weight: 600;
}
.custom-border{
    border-radius: 20px;
}
.pillarheading {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

/* client logo section */
/* Marquee logos */
/* pause on hover */
.marquee-logos__container:hover {
  animation-play-state: paused;
}

.marquee-logos {
    width: 100%;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
}

.marquee-logos__container {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.marquee-logos__container img {
    width: 11rem;
    height: 4.375rem;
    min-height: 4.375rem;
    min-width: 11rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.5s ease-in-out;
}
.no-filter img{
  filter: none;
}
.marquee-logos__container .client-logo:hover img {
    filter: brightness(1) invert(0);
}

.marquee-logos__fade {
  z-index: 1;
  width: 7rem;
  background-image: linear-gradient(90deg, rgba(0, 0, 18, 0), #000012);
  position: absolute;
}
.marquee-logos__fade-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 18, 0), #000012);
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}
.marquee-logos__fade-right {
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.award-logos .marquee-logos__container img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
  width: auto;
}

.award-logos .marquee-logos__container{
  display: flex;
  align-items: center;
  gap: 40px;
}

/* FIX: uniform box */
.award-logos .marquee-logos__container .client-logo{
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* ai-comptency-section */
.ai-comptency-section{
    background: url('../img/ai-modernise-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.ai-comptency-box{
 border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
  /* The Mix: Left side has #272920 at 60% opacity fading into translucent white on the right */
  background: linear-gradient(
    90deg, 
    rgba(39, 41, 32, 0.6) 0%,   /* #272920 on the far left */
    rgba(39, 41, 32, 0.3) 45%,  /* Fading out near the middle */
    rgba(255, 255, 255, 0.05) 55%, /* Transitioning to clean glass */
    rgba(255, 255, 255, 0.03) 100% /* Crisp translucent glass on the right */
  );

    display: flex;
    justify-content: space-between;

}

.pillar-bg {
    background: url(../img/ai-modernization-pillar-bg.png) #00020F;
    background-repeat: no-repeat;
    background-position: left center;
    border-radius: 0px 20px 20px 0px;
    width: 70%;
    padding: 40px;
}
.tracking-wide{
    color: #D2D2D2 !important;
    font-size: 25px !important;
}

.ai-comptency-box .left-sde{
    flex: 0 0 70%;
    max-width: 70%;
}
.ai-comptency-box .right-sde{
    flex: 0 0 30%;
    max-width: 30%;
}
@media (max-width: 1299px) {

    /* .top-heading-box .top-heading{
                font-size: 30px;
                line-height: 40px;
            } */
    .golden-competency {
        top: 7%;
    }

    .banner-center-heading {
        width: 140px;
        height: 140px;

    }

    .banner-center-heading p {
        font-size: clamp(0.5rem, 1vw, 1rem);
    }

    .banner-center-heading span {
        font-size: 10px;
    }

    .banner-section .competency .banner-title {
        font-size: clamp(0.5rem, 1.2vw, 1rem);
    }

    .text-content ul li {
        font-size: clamp(0.8rem, 1vw, 1rem);
    }
}


/* Enterprise Engineering & Platforms */
.enterprise_section {
    background: #0D0D10;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

.separator-line {
    width: 1000px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #CACACA 51.92%, rgba(255, 255, 255, 0.00) 100%);
    margin: 60px auto;
}
.markernone a{
    display: block;
    background: #000;
}



/* Digital Growth & Engagement Section */
/* Hide scrollbar for horizontal scrolling area on mobile */

.cloudbackground {
    background: url(../img/desktop-cloud.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Continuous subtle floating animation for bubbles */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 5s ease-in-out infinite;
}

/* Add varied animation delays to make the floating look organic and un-synchronized */
.bubble-group:nth-child(1) .float-anim { animation-delay: 0.0s; animation-duration: 4.5s; }
.bubble-group:nth-child(2) .float-anim { animation-delay: 1.2s; animation-duration: 5.2s; }
.bubble-group:nth-child(3) .float-anim { animation-delay: 0.5s; animation-duration: 4.8s; }
.bubble-group:nth-child(4) .float-anim { animation-delay: 2.1s; animation-duration: 5.5s; }
.bubble-group:nth-child(5) .float-anim { animation-delay: 0.8s; animation-duration: 4.6s; }
.bubble-group:nth-child(6) .float-anim { animation-delay: 1.7s; animation-duration: 5.1s; }

/* Initial state for the reveal animation */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* End state applied via JavaScript */
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Simulating the smoky background texture from the image */
.smoky-bg {
    background: 
        radial-gradient(circle at 15% 50%, rgba(30, 30, 30, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(40, 40, 40, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(20, 20, 20, 0.5) 0%, transparent 60%);
    background-color: #111;
}


/* Video CTA */
.videocta{
    background: #000;
    border-radius: 10px;
}
.video-box{
    width: 40%;
}
.videocta video {
    border-radius: 10px;
}

/* About Section */
.counterBox{
    color: #fff;
}

.tracking-tight{
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
}
.counterBox p{
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}

.custom-separator-line{
    background: url(../img/aboutline.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 100%;
}

.border-brand-border{
    border-color: #292929;
}

/* Faqs */
.bg-faqbg .border-custom-lightblack {
    background: #000;
}

/* Legacy Solutions Section */
#legacy-solutions .legacy-card {
height: auto;
min-height: 190px;
opacity: 0;
transform: translateY(24px);
animation: legacy-card-in 700ms cubic-bezier(.22,1,.36,1) forwards;
animation-delay: calc(var(--legacy-index) * 90ms);
}

#legacy-solutions .legacy-card:hover {
transform: translateY(-6px);
}

#legacy-solutions .legacy-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background: radial-gradient(circle at 15% 0%, rgba(0,240,255,.12), transparent 42%);
opacity: 0;
transition: opacity 400ms ease;
pointer-events: none;
}

#legacy-solutions .legacy-card:hover::before {
opacity: 1;
}

#legacy-solutions .legacy-icon {
transition: transform 400ms cubic-bezier(.22,1,.36,1), border-color 300ms ease,
            background-color 300ms ease, box-shadow 300ms ease;
}

#legacy-solutions .legacy-card:hover .legacy-icon {
transform: scale(1.08) rotate(-3deg);
box-shadow: 0 0 24px rgba(0,240,255,.16);
}

#legacy-solutions .legacy-arrow {
transition: transform 300ms ease, color 300ms ease;
}

#legacy-solutions .legacy-card:hover .legacy-arrow {
transform: translate(3px,-3px);
color: #24bf81;
}

#legacy-solutions .legacy-swiper {
overflow: hidden;
}

#legacy-solutions .legacy-swiper .swiper-wrapper {
align-items: stretch;
}

#legacy-solutions .legacy-swiper .swiper-slide {
height: auto;
display: flex;
}

#legacy-solutions .legacy-swiper .legacy-card {
width: 100%;
}

#legacy-solutions .legacy-pagination {
position: static;
margin-top: 22px;
}

#legacy-solutions .legacy-pagination .swiper-pagination-bullet {
width: 7px;
height: 7px;
opacity: .35;
background: #fff;
transition: all 300ms ease;
}

#legacy-solutions .legacy-pagination .swiper-pagination-bullet-active {
width: 22px;
border-radius: 999px;
opacity: 1;
background: #24bf81;
}

@keyframes legacy-card-in {
to {
  opacity: 1;
  transform: translateY(0);
}
}

/* Mobile: carousel only. Desktop/tablet grid stays unchanged. */
@media (max-width: 767px) {
#legacy-solutions .legacy-desktop-grid {
  /*display: none;*/
}

#legacy-solutions .legacy-mobile-slider {
  display: block;
}

#legacy-solutions .legacy-card {
  min-height: 205px;
}
}

@media (min-width: 768px) {
#legacy-solutions .legacy-mobile-slider {
  /*display: none;*/
}
}

@media (prefers-reduced-motion: reduce) {
#legacy-solutions .legacy-card {
  opacity: 1;
  transform: none;
  animation: none;
}

#legacy-solutions .legacy-card,
#legacy-solutions .legacy-icon,
#legacy-solutions .legacy-arrow {
  transition: none;
}
}