

/* ===== Process Section (service-page) ===== */
.process-section {
  padding: 4rem 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.02)
  );
}

/* ===== Projects Visual Section ===== */

.projects-heading-wrap {
  padding: 0 1rem 1rem 1rem;
}
.projects-main-heading {
  font-size: 6rem;
  margin: 0 0 1rem 0;
  letter-spacing: 2px;
  font-weight: 800;
}
.projects-grid {
  margin: 0 auto;
}
.projects-row {
  display: flex;
  gap: 1rem;
}
.projects-row-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.projects-row-row .project-card {
  flex: 1 1 50%;
}
.project-card {
  flex: 1 1 50%;
  height: 200px; /* initial height */
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.project-card .project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  visibility: hidden;
}
.project-card:hover .project-info {
  visibility: visible;
  transition: visibility 0.3s ease-in-out;
}
.project-card .project-info h3 {
  border: 2px solid white;
  /* border-image: linear-gradient(to right, 
                  var(--main-color2), 
                   
                  var(--main-color3)) 1; */
  padding: 13px 40px;
  border-radius: 35px;
  font-size: 35px;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .projects-row {
    flex-direction: column;
  }
  .projects-main-heading {
    font-size: 3.5rem;
  }
  .project-card {
    height: 180px;
  }
}
.process-image-wrapper {
  max-height: 70vh;
  overflow: hidden;
  border-radius: 8px;
}
.process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-right-wrapper {
  position: relative;
}
.process-heading {
  font-size: 2rem;
  font-weight: 700;
}
.process-accordion {
  border-radius: 8px;
}
.process-item {
  border-bottom: 1px solid rgba(28, 28, 28, 0.36);
  padding-bottom: 15px;
}
.process-toggle {
  width: 100%;
  padding: 32px 5px 20px 0;
  background: transparent;
  border: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.process-title {
  font-size: clamp(1.25rem, 2.5vw, 2.5rem);
  color: #202020;
  font-family: var(--fw2);
}
.process-icon {
  font-size: 2.25rem;
  font-family: var(--fw2);
}
.process-body {
  color: #444;
}

/* Sticky behavior: make the right column sticky and allow its inner content to scroll */
@media (min-width: 992px) {
  .process-right-wrapper {
    /* removed internal sticky/scroll to allow section pinning via GSAP */
    position: relative;
    top: auto;
    align-self: stretch;
    max-height: none;
    overflow: visible;
    padding-right: 1rem;
    padding-left: 1rem;
    background: transparent;
  }
}

/* Small devices: remove sticky so content flows naturally */
@media (max-width: 991.98px) {
  .process-right-wrapper {
    position: static;
    max-height: none;
    overflow: visible;
  }
}



.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}



/* ========= home service section ====== */

.home-service-section .info-wrapper{
  border: 1px solid #e0e0e0;
  background: white;
}


.home-service-section .info-wrapper .img{
  height: 300px;
  overflow: hidden;
}
.home-service-section .info-wrapper .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-service-section .col-lg-6{
  padding:  40px;
  
}
.home-service-section .info-wrapper{
  height: 100%;
  position: relative;
}

.info-content{
  padding:  30px 25px ;
   margin-bottom: 90px;
}

.service-info-title{
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 1rem 0;
     
  color: #121212;
  font-family: var(--fw5);

}
.info-content p{
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: #444;
  
}

.info-content .box-button-wrapper{
  position: absolute;
    bottom: 70px;
}
.info-content .box-button {
  position: relative;
  padding: 9px 10px;
  transition: 0.5s ease-in-out;
  border: 1px solid rgb(68, 68, 68);
    border-radius: 25px;
    margin-top: 50px;

}
.info-content .box-button i {
  margin-left: 10px;
  margin-bottom: -5px;
  color: white;
      position: relative;
    z-index: 2;
}
.info-content .box-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33px;
  height: 100%;
  border-radius: 50%;
  background: #000;
  z-index: 1;
  border: 1px solid white;
  transition: 0.5s ease-in-out;
}
.info-content .box-button:hover::after {
  border-radius: 25px;
  width: 100%;
}
.info-content .box-button:hover {
  color: white !important;
  padding-left: 15px;
}

.z4{
    position: relative;
    z-index: 2;
}



/* ===== Insights section (service-page) ===== */


.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.insight-card {
  background: transparent;
  border-radius: 2px;
}
.insight-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.insight-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #6b6b6b;
  font-size: 0.95rem;
  margin-top: 1rem;
  align-items: center;
}
.insight-meta .meta-sep { display:inline-block; margin:0 8px; }
.insight-title-card {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin-top: 20px;
  color: #1c1c1c;
  

}
.insights-cta { margin-top: 2.25rem; }
.explore-insights {
  padding: 14px 34px;
  border: 1px solid #2b2b2b;
  background: transparent;
  color: #111;
  display: inline-block;
  text-decoration: none;
}
.explore-insights:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 991.98px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-section .insights-title { font-size: 3.5rem; }
}

@media (max-width: 576px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insights-section { padding: 2rem 0; }
  .insights-section .insights-title { font-size: 2.8rem; }
  .insight-image img { height: 180px; }
}

.hero-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.hero-section .video-container {
  position: relative;
  width: 100%;
  height: 100vh;
    object-fit: cover;
  overflow: hidden;
  background: #0f172a;
}

.hero-section .video-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/banner-thumbnail.png") center center / cover no-repeat;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero-section .video-container video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-section .video-container.video-ready::before {
  opacity: 0;
}

.hero-section .video-container.video-ready video {
  opacity: 1;
}

.hero-video-toggle {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  width: 78px;
  height: 78px;

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-video-toggle:hover {
  transform: scale(1.04);
  background: rgba(0, 0, 0, 0.6);
}

.hero-video-toggle i {
   font-size: 2rem;
}

.hero-badge {
  display: inline-block;
}

.badge-text {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 13px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Gilroy-Medium", sans-serif;
  backdrop-filter: blur(10px);
}

.hero-main-title {
  font-size: clamp(2.5rem, 7vw, 7.5rem);
  color: var(--color-white);
  line-height: 1;
  margin-top: 30px;
  font-family: "Gilroy-Medium", sans-serif;
  max-width: 900px;
}

.hero-description {
  margin-top: 3rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-family: "Gilroy-Light", sans-serif;
  margin-bottom: 1.5rem;
}
.shaddow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(0deg, #512582 51%, rgba(68, 35, 135, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    margin-top: 2rem;
  }
}

/* Mouse Models Section */
.mouse-models-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.mouse-models-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.models-intro-card {
  background: var(--hero-gradient);
  border-radius: 0px;
  border: none;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);

  position: relative;
  z-index: 2;
}

.models-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-white);
  font-family: "Gilroy-Light", sans-serif;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.models-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-family: "Gilroy-Light", sans-serif;
  margin: 0;
}

.model-card {
  background: rgba(255, 255, 255, 0.95);

  padding: 1.8rem;
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}
.model-card::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--hero-gradient);
}
.box-button {
  position: relative;
  padding: 9px 10px;
  transition: 0.5s ease-in-out;
}
.box-button i {
  margin-left: 10px;
  margin-bottom: -5px;
  color: white;
}
.box-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33px;
  height: 100%;
  border-radius: 50%;
  background: #000;
  z-index: -1;
  border: 1px solid white;
  transition: 0.5s ease-in-out;
}
.box-button:hover::after {
  border-radius: 25px;
  width: 100%;
}
.box-button:hover {
  color: white;
  padding-left: 15px;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.model-title {
  font-size: 1.55rem;
  color: #2d1b69;
  font-family: "Gilroy-Medium", sans-serif;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

.model-description {
  font-size: 1.2rem;
  color: #272727;
  line-height: 1.5;
  font-family: "Gilroy-Light", sans-serif;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.model-btn {
  background: linear-gradient(135deg, #6e46c8 0%, #9c4bdc 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-family: "Gilroy-Medium", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.model-btn:hover {
  background: linear-gradient(135deg, #5a3ba3 0%, #8a42c7 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 70, 200, 0.3);
}

@media (max-width: 768px) {
  .models-intro-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .models-title {
    font-size: 1.75rem;
  }

  .model-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Expertise Section */
.expertise-section {
  background: #f8f9fa;
  overflow: hidden;
  padding: 0;
}

.expertise-image-col {
  padding: 0;
  position: relative;
  height: 50vh;
  min-height: 400px;
  margin: 15px;
}

.expertise-image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.expertise-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}







.expertise-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem;
  color: white;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 1.5rem;
  border-radius: 0px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  bottom: 2rem;
  width: 60%;
  left: 2rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 1s ease;
}

.expertise-card-title {
  font-size: 1.5rem;

  margin-bottom: 1rem;
  color: #070707;
}

.expertise-card-content {
  display: none;
}
.expertise-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  color: #666;
  font-family: "Gilroy-Light", sans-serif;
}
.expertise-image-col:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.expertise-card:hover {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}
.expertise-card:hover .expertise-card-content {
  display: block;
}

.blog-date {
  display: inline;
  font-size: 0.8rem;
  color: #474747;
  font-weight: 500;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.blog-date::before {
  content: "";
  position: absolute;
  width: 30%;
  left: 0px;
  bottom: 0;
  transform: translateY(-50%);

  height: 2px;
  background: var(--hero-gradient);
}

.read-more-link {
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid black;
  background-color: #ffffff00;
  color: var(--text-color);
  font-size: 16px;
  font-family: var(--fw4);
}

.read-more-link:hover {
  color: #ec1c24;
  transform: translateX(5px);
}

.horizontal-scroll-section {
  padding: 4rem 0;
  overflow-x: hidden;
  background: white;
  position: relative;

  /* display: flex;
  align-items: center; */
}

.content-section {
    display: flex;
    flex-direction: column;
  padding-left: 20px ;
   padding-right: 20px;



}

/* --- Text Block Styling (Unchanged) --- */


.text-block h1 {
    font-size: 5vw;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
    margin: 0;
}

/* ------------------------------------------------ */
/* --- FIVE QUALITIES ACCORDION (click-to-expand) --- */
/* ------------------------------------------------ */

.pillars-container {
    display: flex;
    align-items: stretch;
    gap: 2px;
    width: 100%;
   
    margin-top: 50px;
    background-color: #e5e5e5;
}

.pillar-card {
    position: relative;
    background: #ffffff;
    cursor: pointer;
    overflow: hidden;
    flex: 1 1 90px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    transition: flex-grow 0.6s ease-in-out;
}

.pillar-card.active {
    flex: 12 1 0;
      padding: 10px 56px;
}

.pillar-number {
    font-family: var(--fw7);
    font-size: 1.1rem;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.pillar-body {
    display: none;
    margin-top: 18px;
    height: 100%;
    flex-direction: column;
}

.pillar-card.active .pillar-body {
    display: flex;
}

.pillar-title {
    font-family: var(--fw6);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: #121212;
    margin-bottom: 22px;
}

.pillar-image {
    width: 100%;
    aspect-ratio: 4 / 2;

    overflow: hidden;
    margin-bottom: 24px;
}

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

.pillar-coverage {
    background: linear-gradient(135deg, #f6f5fb 0%, #f0eef9 100%);
    display: flex;
    align-items: center;
}

.coverage-panel {
    width: 100%;
    padding: 28px 32px;
}

.coverage-label {
    display: block;
    font-family: var(--fw6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coverage-tags span {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    font-family: var(--fw5);
    font-size: 0.85rem;
    color: #333;
}

.coverage-tags .coverage-tag-highlight {
    background: var(--hero-gradient);
    border-color: transparent;
    color: #fff;
}

.coverage-footnote {
    display: block;
    margin-top: 16px;
    font-family: var(--fw4);
    font-size: 0.85rem;
    color: #777;
}

.pillar-desc {
    font-family: var(--fw3);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    max-width: 640px;
}

.pillar-vertical-title {
    display: block;
    flex: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    font-family: var(--fw6);
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: #444;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.pillar-card:hover .pillar-vertical-title {
    color: #121212;
}

.pillar-card.active .pillar-vertical-title {
    display: none;
}

@media (max-width: 992px) {
    .pillars-container {
        height: auto;
        flex-direction: column;
    }

    .pillar-card {
        flex: none;
        padding: 22px 24px;
    }

    .pillar-card.active {
        flex: none;
        padding: 32px 26px;
    }

    .pillar-vertical-title {
        writing-mode: horizontal-tb;
        transform: none;
        white-space: normal;
        margin-top: 0;
    }

    .pillar-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .pillar-card.active {
        padding: 26px 20px;
    }

    .pillar-image {
        height: 180px;
    }

    .pillar-desc {
        font-size: 0.95rem;
    }
}








.horizontal-scroll-container .slick-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.horizontal-scroll-container .slick-dots li {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background-color: #c7c7c7;
  cursor: pointer;
  border-radius: 50%;
  text-align: left;
   /* border: 1px solid #131313; */
}
.horizontal-scroll-container .slick-dots li button {
  color: transparent;
  
   display: inline-block;
   width: 0;
}
.horizontal-scroll-container .slick-dots li.slick-active {
  width: 50px;
  border-radius: 25px;
 
}

/* fill bar inside the active pill — grows after the pill expands */
.horizontal-scroll-container .slick-dots li.slick-active button {
 
  width: 100%;
  height: 100%;
  background: var(--hero-gradient);
  transform-origin: left center;
  transition: 4s ease-in;
    color: transparent;
}

.horizontal-scroll-content {
  display: flex;
  gap: 3rem;
  padding: 0 2rem;
  width: max-content;
  will-change: transform;
}
.horizontal-scroll-container {
  margin: 0 -15px;
}

.differentiator-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  min-width: 400px;
  max-width: 500px;
  background: rgba(248, 249, 250, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.differentiator-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: white;
}

.diff-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #2d1b69;
  font-family: "Gilroy-Light", sans-serif;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}

.diff-content {
  flex: 1;
}

.diff-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  font-family: "Gilroy-Medium", sans-serif;
  line-height: 1.4;
}

.diff-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-family: "Gilroy-Light", sans-serif;
}

@media (max-width: 768px) {
  .expertise-image-col {
    height: 40vh;
    min-height: 300px;
  }

  .expertise-card {
    padding: 1rem;
    margin: 0.5rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .expertise-card-title {
    font-size: 1.25rem;
  }

  .expertise-card-text {
    font-size: 0.9rem;
  }

  .horizontal-scroll-content {
    gap: 2rem;
    padding: 0 1rem;
  }

  .differentiator-item {
    min-width: 300px;
    max-width: 350px;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .diff-number {
    font-size: 2rem;
  }
}

/* Home About */
.animated-text-wrapper {
  padding-bottom: 200px;
  padding-top: 100px;
}

.animated-text {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.gradient-text {
  background: linear-gradient(
    to right,
    rgb(182, 178, 178),
    var(--main-color2),
    var(--main-color3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.animated-text span {
  display: inline-block;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
}

/* Our Services Section */

p.section-number {
  font-size: 20px;
  font-family: var(--fw5);
  color: var(--main-color3);
}

.our-services p.lead {
  font-size: clamp(0.5rem, 2vw, 1em);
  font-family: Gilroy-Medium;
}

.solution-card-wrapper .lead {
  font-size: 3vw;
  font-size: calc(18px + 3vw);
  line-height: 1.2;
  color: #121212;
  font-family: "Gilroy-UltraLight", sans-serif;
  margin-bottom: 20px;
}

/* .section-para {
  font-size: 25px;
  line-height: 1.2;
  color: #121212;
  font-family: "Gilroy-Light", sans-serif;
} */

.solution-card-wrapper .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.solution-card-wrapper .nav-tabs .nav-item {
  width: 30%;
}

.solution-card-wrapper .nav-tabs .nav-link {
  width: 100%;
  padding: 10px;
  color: #fff;
  font-size: 23px;
  background: #282828;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}

.solution-card-wrapper .nav-tabs .nav-link span:first-child {
  color: #f6aa04;
  display: block;
}

.solution-card-wrapper .nav-tabs .nav-link.active {
  color: #000;
  background: #e6e7e8;
  border-bottom: none;
}

.tab-content {
  border: none;
  border-radius: 0 0 100px 100px;
}

.our-services {
  position: relative;
  min-height: 200vh; /* Ensures enough scroll space for stacking without abrupt end */
}

/*  */

.differentiators {
  background: linear-gradient(45deg, #281496, #925653);
  color: white;
}

.differentiators .section-content {
  color: rgb(234, 234, 234);
}

/* Stats Section Styles */

.section {
  padding: 60px 0;
  color: rgb(215, 215, 215);
}
.section:not(:last-child) {
  border-bottom: 2px solid #c2a9ae;
  /* border-image: linear-gradient(to right, 
                  var(--main-color2), 
                   
                  var(--main-color3)) 1; */
}
.section-number {
  font-size: 22px;
}


.stats-statement {
  line-height: 1.2;
  max-width: 500px;
  margin-left: auto;
}

.stats-grid {
  margin-top: 30px;
}

.stat-item {
  padding-left: 20px;
}
.stat-item::after {
  content: "";
  display: block;
  height: 20px;
  border-bottom: solid 2px;
  border-right: solid 2px;
}

.stat-divider {
  width: 4px;
  height: 60px;
  background-color: #2e31ab;
  margin-right: 20px;
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
  font-family: var(--fw2);
  margin-top: 15px;
}

@media (max-width: 991.98px) {
  /* On medium/small screens */
  .stats-statement {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 50px auto; /* Center statement and add bottom margin */
  }
  .stats-grid {
    margin-top: 0;
  }
  .stat-item {
    justify-content: center; /* Center items in columns on smaller screens */
    padding-left: 0;
  }
  .stat-divider {
    margin-right: 15px; /* Adjust spacing */
    height: 50px;
  }
  .stat-number {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
}

@media (max-width: 575.98px) {
  /* On extra small screens (mobile) */
  .stat-item {
    flex-direction: column; /* Stack divider and text vertically */
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .stat-divider {
    margin-right: 0;
    margin-bottom: 10px; /* Space below divider */
    height: 40px;
  }
  .stat-label {
    max-width: 100%;
  }
}

.parallax-card {
  position: sticky;
  top: 15vh; /* Adjust as needed for spacing from top */

  margin-bottom: 20px; /* Optional spacing between stacked cards */
  overflow: hidden; /* Prevent content overflow during animations */
}

.card-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid grey;
  border-radius: 15px;
  transform-origin: center;
  will-change: transform, filter;
  overflow: hidden;
}
.sphere-video {
  border-left: 1px solid grey;
  height: 100%;
  object-fit: cover;
}

/* Media queries for responsive adjustments */
@media (max-width: 768px) {
  .parallax-card {
    top: 10vh;
    height: 80vh;
  }
}

@media (max-width: 480px) {
  .parallax-card {
    top: 5vh;
    height: 90vh;
  }
}

.solution-card h2 {
  font-size: 2.5vw; /* Fallback */
  font-size: calc(25px + 2.5vw);
  line-height: 1.2;
  color: #242424;
  margin-bottom: 25px;
}

.solution-card p {
  color: #000;
  font-family: "Gilroy-Light", sans-serif;
  font-size: 17px;
}

.brand-container {
  background: #f6aa04;
}

.brand-logo img {
  max-width: 140px;
  margin: 20px auto;
}

.brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* contact form */
/* Custom styles for floating labels */
.contact-form-wrapper .form-input-group,
.contact-form-wrapper .form-input-textarea {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

.form-close-button {
  position: absolute;
  right: 10px;
  top: 10px;
  text-align: center;
  z-index: 100;
  color: red;
}
/* .form-close-button span:first-child{
  display: none;
}
.form-close-button:hover span:first-child{
  display: inline;
} */

/* our reach */

.laptop-image-wrapper {
  text-align: center;
}

/* Adjust the image to have some shadow and spacing */

.text-content-wrapper {
  padding-left: 50px; /* Add some spacing between the image and text */
}

/* Heading styles */
.continuum-heading {
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

/* Paragraph styles */
.continuum-section p.lead {
  max-width: 500px; /* Constrain the width of the paragraph */
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Custom button styles */
/* .btn-discover {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 5px 25px 5px 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .btn-discover:hover {
    background-color: #000;
  color: #fff;
}

    .btn-discover:hover .arrow-icon {
      background-color: #fff;
      color: #000;
    }

    .btn-discover .arrow-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 30px;
      background-attachment: fixed;ckground-color: #000;
      color: #fff;
      border-radius: 50%;
      margin-right: 15px;
      transition: all 0.3s ease;
    } */

/* Responsive adjustments */
@media (max-width: 992px) {
  .text-content-wrapper {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* testimonials */
.purple-bg {
  /* background: linear-gradient(45deg, var(--main-color3), var(--main-color2)); */
  background: var(--hero-gradient);

  color: rgb(240, 240, 240);
}
.main-header {
  font-size: 1.6rem;
}
.podcast-card {
  background: #f8f5fa;
  border-radius: 24px;
  text-align: left;
  width: 310px;
  margin: 0 auto;
}
.podcast-img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}
.name-section p {
  color: rgb(207, 207, 207);
}
.btn-dark {
  background-color: #252128 !important;
  border: none;
}
.slick-arrow-custom {
  background: #f5f0f600;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  color: #ffffff;
  box-shadow: 0 0 0 2px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slick-arrow-custom:hover {
  box-shadow: 0 0 0 2px #4756f9;
  color: #4756f9;
}
.slick-arrow-custom:focus {
  outline: none;
}
@media (max-width: 991.98px) {
  .main-header {
    font-size: 1.3rem;
  }
  .podcast-card {
    width: 95%;
  }
  .purple-bg {
    border-radius: 0;
    padding: 12px;
  }
}

/* cat section */

/* Custom styles for the CTA Section */
.cta-section {
  /* Default background for the entire section (can be overridden by columns) */
  overflow: hidden; /* To handle any image overflow gracefully */
}

.cta-image-col {
  position: relative;
  /* This ensures the image takes up the full height available in the flex container */
  height: 100%;
}

.cta-image {
  width: 100%;
  height: 100%; /* Make image fill the height of its container */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  display: block; /* Removes extra space below the image */
}

.cta-content-col {
  background-color: #f1f1f1; /* Black background for the text column */
  min-height: 400px; /* Ensure a minimum height for the text content */
}

.cta-text-wrapper {
  /* Adjust max-width if you want the text to be narrower than the column */
  max-width: 600px; /* Example, adjust as needed */
  margin-left: auto; /* Center text within its wrapper */
  margin-right: auto; /* Center text within its wrapper */
}

.cta-text-wrapper h2 {
  font-size: clamp(1.2rem, 4vw, 2.5rem); /* Responsive font size */
  font-family: Gilroy-Medium;
  line-height: 1.2;
}

.cta-text-wrapper p.lead {
  font-size: clamp(1rem, 1.8vw, 1.25rem); /* Responsive font size */
  line-height: 1.6;
}

.cta-button {
  min-width: 200px; /* Ensure button has a good minimum width */
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 50px; /* Pill-shaped button */
  padding: 12px 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #333; /* Darker on hover */
  color: #fff;
  border-color: #333;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  /* Adjust for smaller screens (Bootstrap's lg breakpoint) */
  .cta-content-col {
    min-height: 300px; /* Reduce min-height for smaller screens */
  }
  .cta-image-col {
    height: 300px; /* Give image a fixed height on smaller screens if needed */
  }
}

@media (min-width: 576px) {
  .contact-form-wrapper .modal-dialog {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }
}
.contact-form-wrapper .modal-content {
  padding: 20px 20px;
}
.contact-form-wrapper .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.contact-form-wrapper .content img {
  max-width: 50px;
  margin-bottom: 20px;
}
/* Media Queries */
@media (max-width: 992px) {
  .tab-content {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hero-section h1 span {
    display: inline;
  }

  .hero-section .text-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }

  .nav-tab-wrapper {
    overflow: hidden;
    overflow-x: auto;
  }

  .solution-card-wrapper .nav-tabs {
    margin-bottom: 25px;
    border-bottom: none;
    min-width: 650px;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .solution-card-wrapper .nav-tabs .nav-link {
    border-radius: 15px;
    font-size: 18px;
    padding: 6px;
  }

  .solution-card-wrapper .nav-tabs .nav-link span:first-child {
    display: none;
  }

  .tab-content {
    padding: 0 20px;
    border-radius: 20px;
  }
}

@media (max-width: 578px) {
  .modal-body {
    padding: 0;
  }
  .value-card {
    padding: 0 15px;
    margin: 10px 0;
  }

  .value-card h3 {
    margin-bottom: 25px;
  }
}

/* case studies */

.case-studies-item .content-wrapper {
  padding: 20px;
  padding: 0;
  border: 1px solid rgba(222, 222, 222, 0.966);
  border-radius: 0px;
  height: 100%;

  position: relative;
}
/* .case-studies-item .content-wrapper .text{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} */
/* .case-studies-item .content-wrapper:hover {
  border: 1px solid rgb(243, 243, 243);
} */
.case-studies-item .content-wrapper::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--hero-gradient);
  transition: width 0.3s ease-in-out;
}
.case-studies-item .content-wrapper:hover::after {
  width: 100%;
}
.case-slider2 .case-studies-item .content-wrapper {
  padding: 0;
}
.case-studies-item .content-wrapper:hover h3 {
  text-decoration: underline;
}
.case-studies-item .content-wrapper .img {
  border-radius: 0px;
  overflow: hidden;
  height: 150px;
}
.case-studies-item .content-wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  


}
.case-box{
  height: calc(100% - 150px);
}
.case-studies-item .content-wrapper .text-content{
  height: 100%;
  padding: 30px ;
}
.case-studies-item .content-wrapper .text{
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

}
.case-studies-item .content-wrapper h3 {
  font-size: 1.5rem;

  letter-spacing: 0.5px;
  color: #000;
}
.case-studies-item .content-wrapper p {
  font-family: var(--fw4);
}
.case-studies-item .content-wrapper .box-button {
  position: relative;
  padding: 9px 10px;
  transition: 0.5s ease-in-out;
  border: 1px solid rgb(68, 68, 68);
    border-radius: 25px;

}
.case-studies-item .content-wrapper .box-button i {
  margin-left: 10px;
  margin-bottom: -5px;
  color: white;
}
.case-studies-item .content-wrapper .box-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33px;
  height: 100%;
  border-radius: 50%;
  background: #000;
  z-index: -1;
  border: 1px solid white;
  transition: 0.5s ease-in-out;
}
.case-studies-item .content-wrapper .box-button:hover::after {
  border-radius: 25px;
  width: 100%;
}
.case-studies-item .content-wrapper .box-button:hover {
  color: white;
  padding-left: 15px;
}
.case-studies-item a {
  color: #000;
  display: block;
  height: 100%;
}

/* apponiment */

.appointment-form,
.appointment-info {
  background-color: #ffffff;
  border-radius: 20px;
  height: 100%;
}

.appointment-form .form-control {
  border-radius: 15px;
  background-color: #b2d4f927;
}
.appointment-info h4 {
  color: #007bff;
}

.appointment-info h2 {
  font-weight: bold;
  color: #343a40;
}

.appointment-info p {
  color: #6c757d;
}

.appointment-form .form-label {
  font-weight: 600;
  color: #495057;
}

.bg-section {
  background: linear-gradient(rgb(207, 206, 206), white);
}

.d-flex span {
  color: #ffffff;
}

.blog-section-heading p {
  position: relative;
}
.blog-section-heading p::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: inherit;
  bottom: -10px;
  right: 0;
  left: initial;
}
.blog-section-heading p::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 20px;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: inherit;
  right: 0;
  left: initial;
  bottom: -10px;
}
.nav-pill-wrapper {
  width: 100%;
  overflow: hidden;
  overflow-x: scroll;
  margin-bottom: 10px;
}
.nav-pill-wrapper::-webkit-scrollbar {
  display: none;
}

.nav-pills {
  min-width: 900px;
 background: #f1f1f1;
    min-width: 900px;
    border-radius: 0px;
    padding: 10px 20px;
}
.nav-pill-wrapper .nav-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 2rem;
  white-space: nowrap;
  width: auto;
}
.nav-pills .nav-link {
  border: 0;
  display: block !important;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.03125rem;
   border: 1px solid #a6a6a6;  
  background: transparent;
  color: #323232 !important;
  background-color: transparent !important;
  padding: 5px 0px;
  width: 60%;
  border-radius: 0 !important;
   border-radius: 30px !important;
}
.nav-pills .nav-link.active {
  /* background: linear-gradient(135deg, #8e90ff , #ec1c24  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
  /* border-bottom: 2px solid #21575a; */
  background: #2a2a2a !important;
  border-radius: 30px !important;
  color: #ffffff !important;
}

.h-main-contact {
  background-color: #ffffff;
}

.h-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.h-contact .left-text h2 {
  font-size: 100px;
  font-weight: 500;
  color: rgb(38, 38, 38);
}
.h-contact .left-text {
  min-width: 300px;
}
.h-contact .left-text h2:hover {
  text-decoration: underline;
}
.h-contact .img {
  width: 150px;
  height: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
.h-contact .img:hover .bg-img {
  transform: scale(1.3);
}

.h-contact .img .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.5s ease-in-out;
}
.h-contact .img .bg-img img {
  height: 100%;
}
.h-contact .img span {
  position: relative;
  z-index: 2;
  color: white;
}

/* Simulation Section Styles */
.simulation-section {
  background: #f3f3f3;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.simulation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(46, 49, 171, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.simulation-content {
  position: relative;
  z-index: 2;
}

.simulation-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0;
  color: #151515;
  font-family: "Gilroy-Regular", sans-serif;
}

.simulation-features {
  margin-top: 4rem;
}

.feature-card {
  background: rgb(179 179 179 / 5%);
  border: 1px solid rgb(72 72 72 / 30%);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(46, 49, 171, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #222222;
}

.feature-title {
  font-size: 1.55rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  font-family: "Gilroy-Semibold", sans-serif;
}

.feature-description {
  font-size: 0.95rem;
  color: rgba(45, 45, 45, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
  font-family: "Gilroy-Regular", sans-serif;
}

/* Responsive styles */
@media (max-width: 768px) {
  .simulation-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .simulation-features {
    margin-top: 2.5rem;
  }
}

@media (max-width: 576px) {
  .simulation-title {
    font-size: 1.5rem;
  }
}

.our-services-section {
  background-color: #0d0d0d;
  padding: 80px 0 300px 0; /* Extra padding for sufficient scrolling space */
}

/* --- STICKY LEFT CONTENT --- */
@media (min-width: 992px) {
  .sticky-col {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}

/* Sticky categories for mobile/tablet */


/* Left Column: Categories */
.service-tag {
  color: #888888;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.intelligent-header {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  
}

.service-categories .category-item {
  font-size: clamp(1.4rem, 2vw, 1.2rem);
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.3s, border-left 0.3s, padding-left 0.3s;
  color: #555;
  list-style: none;
  /* Ensure the item is treated as a block for the border */
  display: flex;
  align-items: center;
  margin: 15px 0;
}

/* Category Link Active State (Managed by GSAP's toggleClass) */
.service-categories .category-item.is-active {

  cursor: pointer;

  background: linear-gradient(135deg, #2e31ab 0%, #ec1c24 50%, #f6aa04 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #555;
  list-style: none;
  /* Ensure the item is treated as a block for the border */
  display: block;
}

/* Responsive: Service Categories in a row for tablets and below */
@media (max-width: 992px) {
  .service-categories {

  

    z-index: 10;
    padding: 1rem 0;
    margin-bottom: 1rem !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .service-categories .category-item {
    flex: 0 0 auto;
    padding: 0.75rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0;
  }
  
  .service-categories .category-item.is-active {
    border: 1px solid #000000;
    
  }
}
.service-box.is-active .service-content .feature-title{
  color: #dedede !important;
}
/* .service-box.is-active .service-content .icon-placeholder{
  background: #ffffff !important;
}
.service-box.is-active .service-content .icon-placeholder i{
  color: #000000 !important;
} */
/* Right Column: Service Boxes and Form */
.service-box,
.form-card {
  background-color: #fcfcfc;
  border: 1px solid #333333;

  width: 100%;

  height: 100%;
    min-height: 400px;

  overflow: hidden;
  position: relative;
  transition: border-color 0.3s; /* Smooth border change */
  overflow: hidden; /* Crucial for clean image display */
}

/* Service Box Active State (Managed by GSAP's toggleClass) */
/* .service-box.is-active {
            border-color: #ffcc00 !important;
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
            transition: all 0.3s ease;
        } */

.service-box.is-active .service-content {
  opacity: 1;
  transform: scale(1);
background: var(--hero-gradient);
}

.form-card {
  min-height: 450px;
}
.service-box.tall-box {
  min-height: 450px;
}

.service-content {
  padding: 1.5rem; /* The padding around the content */
  position: absolute; /* Position the content relative to the box */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; /* Content sits above the image */
  /* Set content to be a flex container to keep inner elements aligned */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  opacity: 1;
  background: rgba(255, 255, 255, 0.887);
}
.service-box.is-active .service-content {
  display: flex;
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 1;

  /* Initial state for image (hidden and scaled) */
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease; /* Added for smooth image reveal */
}

/* Active image animation (triggered by GSAP) */
/* .service-box.is-active .service-image {
  opacity: 1;
  transform: scale(1);
} */
.icon-placeholder {
  width: 50px;
  height: 50px;
  background: var(--hero-gradient);
  border-radius: 8px;
  margin-bottom: 1rem;
  color: white;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box.is-active .icon-placeholder{
  background: #ffffff ;
  color: #000000 ;
}




.service-content p {
  font-size: 18px;
  color: rgba(45, 45, 45, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
  font-family: "Gilroy-Regular", sans-serif;
}

/* Intelligent Solutions Section - Bootstrap Enhanced */
.intelligent-solutions-section {
  min-height: 100vh;
  background: #1a1a1a !important;
  color: #ffffff;
}

/* Left Content - Sticky Bootstrap */
.solutions-left-content {
  background: #1a1a1a !important;
  z-index: 10;
  height: 100vh !important;
}

.solutions-left-content .left-content-wrapper {
  max-width: 400px;
}

/* Navigation Tabs - Bootstrap Enhanced */
.solutions-nav .nav-item {
  transition: all 0.3s ease;
  cursor: pointer;
}

.solutions-nav .nav-item.active {
  color: #00d4ff !important;
  border-left-color: #00d4ff !important;
}

.solutions-nav .nav-item:hover {
  color: #00d4ff !important;
  border-left-color: #00d4ff !important;
}

/* Solution Box - Bootstrap Enhanced */
.solution-box {
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #333 !important;
  background-color: #2a2a2a !important;
}

.solution-box:hover {
  background-color: #333 !important;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.solution-box .solution-content {
  transition: all 0.4s ease;
  z-index: 2;
}

.solution-box:hover .solution-content {
  opacity: 0;
  transform: translateY(-20px);
}

/* Solution Image - Bootstrap Enhanced */
.solution-box .solution-image {
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.solution-box:hover .solution-image {
  opacity: 1 !important;
}

.solution-box .solution-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Active Box Styling */
.solution-box.active {
  background-color: #333 !important;
  border-color: #00d4ff !important;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1) !important;
}

/* Custom cursor pointer */
.cursor-pointer {
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .solutions-left-content {
    position: relative !important;
    height: auto !important;
  }

  .sticky-col{
    position: sticky;
    top: -105px;
    z-index: 1;
    background: #f5f5f5;
}
}

/* Navigation Tabs */
.solutions-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-item {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e1e1e;
  cursor: pointer;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.nav-item.active {
  color: #00d4ff;
  border-left-color: #00d4ff;
}

/* Right Content - Scrollable */
.solutions-right-content {
  flex: 1;
  padding: 80px 60px;
  background: #1a1a1a;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
}

/* Solution Box */
.solution-box {
  position: relative;
  background: #2a2a2a;
  border-radius: 12px;
  padding: 40px 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid #333;
}

.solution-box:hover {
  background: #333;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.solution-content {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.solution-box:hover .solution-content {
  opacity: 0;
  transform: translateY(-20px);
}

/* Solution Image */
.solution-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.solution-box:hover .solution-image {
  opacity: 1;
}

.solution-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile Mockup Special Styling */
.mobile-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mobile-mockup img {
  max-height: 200px;
  width: auto;
}

/* Solution Icon */
.solution-icon {
  width: 48px;
  height: 48px;
  background: #00d4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-icon svg {
  color: #1a1a1a;
  width: 24px;
  height: 24px;
}

/* Solution Text */
.solution-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: "Gilroy-Semibold", sans-serif;
}

.solution-description {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.5;
  font-family: "Gilroy-Regular", sans-serif;
}

/* Active Box Styling */
.solution-box.active {
  background: #333;
  border-color: #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .solutions-left-content {
    flex: 0 0 35%;
    padding: 60px 40px;
  }

  .solutions-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .solutions-container {
    flex-direction: column;
  }

  .solutions-left-content {
    flex: none;
    position: relative;
    height: auto;
    padding: 60px 40px;
  }

  .solutions-right-content {
    padding: 40px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .solutions-left-content,
  .solutions-right-content {
    padding: 40px 20px;
  }

  .solutions-title {
    font-size: 2rem;
  }

  .solution-box {
    padding: 30px 20px;
    min-height: 240px;
  }
}

/* FTSE Russell Section Styles */
.ftse-russell-section {
  padding-top: 150px;
  color: rgb(39, 39, 39);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.ftse-russell-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.ftse-russell-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/language3.jpg") center/cover;

  pointer-events: none;
}

.ftse-title {
  color: white;
  margin-bottom: 0;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.ftse-article-card {
  background: rgb(0 0 0 / 21%);
  border: 1px solid rgba(255, 255, 255, 0.1);

  padding: 10px 20px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.ftse-article-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: white;
  border-radius: 12px;
  z-index: 3;
}

.ftse-article-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.ftse-article-card.highlighted {
  background: #3b82f6;
  border-color: #60a5fa;
}

.ftse-article-card.highlighted:hover {
  background: #2563eb;
}

.article-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #181818;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.ftse-article-card.highlighted .article-label {
  color: #212121;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Gilroy-Semibold", sans-serif;
  margin-bottom: 10px;
}

.continent-description {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.4;
}

.ftse-article-card.highlighted .continent-description {
  color: #dbeafe;
}

.article-link {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  transition: text-decoration-color 0.3s ease;
}

.article-link:hover {
  color: white;
  text-decoration-color: white;
}

.ftse-ticker-section {
  overflow: hidden;
  background: #f3f3f3;
  border-radius: 0px;
  padding: 10px 20px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #e5e7eb;
}

.languages-wrapper {
  text-align: center;
}

.languages-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.languages-scroll {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  animation: languages-scroll 25s linear infinite;
  flex-wrap: nowrap;
}

@keyframes languages-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.language-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  padding: 15px;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;

  transition: all 0.3s ease;
}

.language-item:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.language-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.language-region {
  font-size: 0.8rem;
  color: #666;
}

.ticker-scroll {
  display: flex;
  gap: 40px;
  padding: 0 20px;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 400px;
}

.ticker-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(7, 7, 7);
}

.ticker-currency {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-left: 8px;
}

.ticker-change {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.ticker-change.positive {
  color: #10b981;
}

.ticker-change.negative {
  color: #ef4444;
}

.ticker-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .ftse-title {
    font-size: 2rem;
  }

  .ftse-article-card {
    padding: 20px;
  }

  .ticker-scroll {
    gap: 20px;
    padding: 0 15px;
  }

  .ticker-item {
    min-width: 150px;
  }

  .ticker-value {
    font-size: 1.2rem;
  }
}

/* Acknowledgments Section - Dark Theme with Infinite Scroll */
.acknowledgments-section {
  background: #ffffff;

  position: relative;
  overflow: hidden;
  z-index: 4;
}
.acknowledgments-container {
  width: 100%;
}
.acknowledgments-header {
  text-align: center;
  margin-bottom: 60px;
}

.acknowledgments-title {
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 400;
  color: #333;
  margin: 0;
  text-align: left;
}

/* Logo Carousel Container */
.logo-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: rgb(255 255 255);
  border-bottom: 1px solid #e5e7eb;
}

.logo-carousel {
  display: flex;
  width: calc(300px * 14); /* 7 logos Ã— 2 (for seamless loop) Ã— width */
  animation: scrollLogos 30s linear infinite;
  will-change: transform;
}

/* Individual Logo Slides */
.logo-slide {
  flex: 0 0 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 30px 20px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 80px;
  width: 240px;
  position: relative;
  overflow: hidden;
}

.logo-item:hover {
  background: rgba(205, 205, 205, 0.785);
  border-color: #555;
}

.partner-logo {
  max-width: 100%;

  object-fit: contain;

  transition: all 0.3s ease;
  margin-bottom: 8px;
}

/* .logo-item:hover .partner-logo {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
} */

.partner-name {
  font-size: 1rem;
  color: #292929;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.partner-country {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
  transition: color 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.logo-item:hover .partner-name {
  color: #151515;
}

.logo-item:hover .partner-country {
  color: #333;
}

/* Infinite Scroll Animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 7)); /* Move by exactly 7 logo widths */
  }
}

/* Pause animation on hover */
.logo-carousel-wrapper:hover .logo-carousel {
  animation-play-state: paused;
}

/* Gradient fade effects on sides */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #bdbdbd, transparent);
}

.logo-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #bdbdbd, transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .logo-slide {
    flex: 0 0 280px;
    padding: 0 25px;
  }

  .logo-item {
    width: 220px;
  }

  .logo-carousel {
    width: calc(280px * 14);
  }

  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 7));
    }
  }
}

@media (max-width: 992px) {
  .acknowledgments-section {
    padding: 60px 0;
  }

  .acknowledgments-title {
    font-size: 2rem;
  }

  .logo-slide {
    flex: 0 0 260px;
    padding: 0 20px;
  }

  .logo-item {
    width: 200px;
    height: 100px;
    padding: 20px 15px;
  }

  .partner-logo {
    max-width: 60px;
    max-height: 30px;
  }

  .logo-carousel {
    width: calc(260px * 14);
  }

  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-260px * 7));
    }
  }
}

@media (max-width: 768px) {
  .acknowledgments-title {
    font-size: 1.5rem;
    padding: 0 20px;
  }

  .logo-slide {
    flex: 0 0 240px;
    padding: 0 15px;
  }

  .logo-item {
    width: 180px;
    height: 90px;
    padding: 15px 10px;
  }

  .partner-logo {
    max-width: 50px;
    max-height: 25px;
  }

  .partner-name {
    font-size: 0.7rem;
  }

  .logo-carousel {
    width: calc(240px * 14);
  }

  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-240px * 7));
    }
  }
}

@media (max-width: 576px) {
  .logo-slide {
    flex: 0 0 200px;
    padding: 0 10px;
  }

  .logo-item {
    width: 160px;
    height: 80px;
    padding: 12px 8px;
  }

  .logo-carousel {
    width: calc(200px * 14);
  }

  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 7));
    }
  }
}

/* Goals spreading section */
.goals-section {
  position: relative;

  padding: 80px 0;
  overflow: visible;
}
.goals-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.goals-heading {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.05;
}
.goals-sub {
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.goals-stage {
  position: relative;
  height: 520px;
  margin-top: 30px;
}
.goal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 170px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-out;
  z-index: 2;
}
.goal-card img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}
.goals-center-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5; /* sit above cards */
  text-align: center;
  pointer-events: none; /* allow clicks to pass to CTA below */
}
.goals-center-content .goals-heading {
  color: #111;
  font-size: 36px;
  margin-bottom: 8px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.goals-center-content .goals-sub {
  color: #444;
  margin: 0 auto;
  max-width: 640px;
  font-size: 1rem;
}

/* Ensure CTA remains clickable */
.goals-cta {
  position: relative;
  z-index: 6;
}
.goals-cta .btn {
  padding: 12px 28px;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .goals-stage {
    height: 420px;
  }
  .goal-card {
    width: 110px;
    height: 110px;
  }
  .goals-heading {
    font-size: 26px;
  }
  .goals-center-content .goals-heading {
    font-size: 22px;
  }
  .goals-center-content .goals-sub {
    font-size: 0.95rem;
  }
}

/* CTA section: large image with right-side rounded card overlay */

.cta-section .cta-image {
  position: relative;

  overflow: hidden;
  background: #f6f6f6;
}
.cta-section .cta-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.cta-overlay {
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;

  width: 380px;
  max-width: 42%;
  height: calc(100% - 20px);
  background: #fff;
  /* border-radius: 18px; */
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
  padding: 22px 24px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
.cta-overlay h2 {
  margin: 0;
  /* font-size: 28px; */
  color: #111827;
  line-height: 1.05;
}
.cta-overlay p {
  margin: 0;
  color: #596374;
  font-size: 14px;
}
.cta-button {
  color: #1d1d1d;
  border-radius: 30px;
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  /* box-shadow: 0 10px 30px rgba(79, 45, 139, 0.18); */
  border: 1px solid black;
  background-color: #ffffff00;
  display: inline;
  color: var(--text-color);
  font-size: 16px;
  max-width: 180px;
  font-family: var(--fw4);
}
.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(79, 45, 139, 0.22);
  outline: none;
}

/* Profile image corner inside overlay (optional) */
.cta-overlay .profile-img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-end;
}
.cta-overlay .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .cta-section .cta-image img {
    height: 420px;
  }
  .cta-overlay {
    right: 24px;
    width: 340px;
    max-width: 48%;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 28px 0 40px 0;
  }
  .cta-section .cta-image img {
    height: 320px;
  }
  .cta-overlay {
    position: relative;
    transform: none;
    right: auto;
    top: auto;
    margin: -40px auto 0 auto;
    width: calc(100% - 32px);
    max-width: none;
    border-radius: 12px;
  }
}

/* Services Modal Styles */
.services-modal {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 9999;
 
}

.services-modal-content {
  position: relative;
  width: 100%;
height: 100%;
  
  border-radius: 0px;
  padding: 60px;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 50%;
  color: rgb(0, 0, 0);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-modal:hover {
  background: white;
  color: #1e3a8a;
  transform: rotate(90deg);
}

.services-modal-title {
  font-size: 4rem;
  color: rgb(0, 0, 0);
  margin-bottom: 60px;
  font-weight: 300;
  letter-spacing: 1px;
}

.services-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.services-link-grid4{
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
}
 .services-link-grid4 .service-main-item{
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  min-height: 70px;
  color: black;
 }
 .services-link-grid4 .service-main-item::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--hero-gradient);
  transition: 0.5s ease-in-out;
  z-index: 1;
}





.service-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.5rem;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-weight: 300;
  display: block;
  position: relative;
}
 .services-link-grid4 .service-item{
  font-size: 1.2rem;
  padding: 5px 0 10px 0;
  color: rgba(77, 77, 77, 0.9);
 }
.service-item::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--hero-gradient);
  transition: 0.5s ease-in-out;
  z-index: 1;
}
.service-item:hover::after {
  width: 100%;
}

.service-item:hover {
  color: rgb(0, 0, 0);
  /* padding-left: 15px; */
  border-bottom-color: white;
}


.analytics-services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}


/* ===== Industries Modal (premium consulting-style redesign) ===== */
.industries-modal-content {
  padding: 0;
}

.industries-modal-header {
  max-width: 640px;
  margin-bottom: 50px;
}

.modal-eyebrow {
  display: inline-block;
  font-family: var(--fw6);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
 
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.industries-modal-header .services-modal-title {
  margin-bottom: 18px;
}

.industries-modal-subtitle {
  font-family: var(--fw3);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a5a5a;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: #e5e5e5;
  border: 1px solid #e5e5e5;
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 36px 30px 30px;
  min-height: 190px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--hero-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-index {
  font-family: var(--fw6);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #c2c2c2;
  transition: color 0.35s ease;
}

.industry-card:hover .industry-index {
  color: #999;
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  font-size: 1.1rem;
  color: #121212;
  transition: all 0.35s ease;
}

.industry-card:hover .industry-icon {
  background: var(--hero-gradient);
  border-color: transparent;
  color: #fff;
}

.industry-name {
  font-family: var(--fw5);
  font-size: 1.1rem;
  color: #121212;
  line-height: 1.35;
  margin-top: auto;
  padding-right: 20px;
}

.industry-arrow {
  position: absolute;
  right: 28px;
  bottom: 30px;
  font-size: 0.9rem;
  color: #ec1c24;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s ease;
}

.industry-card:hover .industry-arrow {
  opacity: 1;
  transform: translateX(0);
}

.industries-modal-footer {
  margin-top: 45px;
}

.explore-all-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fw6);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #121212;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid #121212;
  transition: all 0.3s ease;
}

.explore-all-link i {
  transition: transform 0.3s ease;
}

.explore-all-link:hover {
  color: #ec1c24;
  border-bottom-color: #ec1c24;
}

.explore-all-link:hover i {
  transform: translateX(6px);
}

@media (max-width: 992px) {
  .industries-modal-content {
    padding: 45px 40px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-modal-header {
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .industries-modal-content {
    padding: 30px 20px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: unset;
    padding: 28px 22px;
  }

  .industries-modal-subtitle {
    font-size: 1rem;
  }
}


/* Responsive styles for modal */
@media (max-width: 992px) {
  .services-modal-content {
    padding: 40px;
    height: 85vh;
    margin: 2.5vh auto;
  }

  .services-modal-title {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-item {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .services-modal-content {
    padding: 30px 20px;
    width: 95%;
    height: 90vh;
    margin: 2vh auto;
  }

  .services-modal-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    font-size: 1.2rem;
    padding: 12px 0;
  }

  .close-modal {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: 15px;
    right: 15px;
  }
}


.homepage-s .info-block .icon{
  width:100%;
  height: 200px;

}


.homepage-s .info-block .icon img{
  width:100%;
  height: 100%;
  object-fit: cover;

}


.homepage-s .info-block{
  
    padding: 0!important; ;
}
.homepage-s .btn-transparent{
  margin: 0 0 20px 20px;
}
.homepage-s .info-description, .homepage-s  .info-title {
  
  padding: 0 20px;
}

.homepage-s ul{
    padding: 0 20px;

}

.homepage-s ul li{
  padding: 10px 10px;
  font-size: 1rem;
}

.homepage-s ul li a{
  color: #4a5568;
  text-decoration: none;
  transition: color 0.25s ease;
}

.homepage-s ul li a:hover{
  color: var(--main-color2);
  text-decoration: underline;
}

/* ===== Bento section: "Why Brands Turn to Continuum Insights" ===== */

.bento-section {
  background: #fff;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  align-items: stretch;
}

.bento-item {

  overflow: hidden;
  position: relative;
}

/* Article card */
.bento-article {
  display: flex;
  background: #14121f;
  min-height: 380px;
}

.bento-article-photo {
  flex: 0 0 38%;
}

.bento-article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-article-content {
  flex: 1;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.bento-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.bento-tag {
  font-family: var(--fw6);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #f472b6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bento-tag i {
  font-size: 0.6rem;
}

.bento-tag-new {
  color: #34d399;
}

.bento-tag-new .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
}

.bento-article-title {
  font-family: var(--fw6);
  font-size: 1.7rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 16px;
}

.bento-read-more {
  font-family: var(--fw5);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.bento-article-desc {
  font-family: var(--fw3);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: auto;
}

.bento-meta {
  font-family: var(--fw4);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 24px;
}

/* Badge / gradient card */
.bento-badge-card {
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.bento-badge-card::before,
.bento-badge-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}





.bento-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 50px;
}

.bento-logo-pill img {
  width: 80%;

  display: block;
}

/* Tools row (ExpertLynk / Websamp): visual card + text below */

.tool-card{
  padding: 50px;
}
.tool-card:hover{
  background: #ececec;
}
.tools-visual {
  position: relative;
  display: flex;

  overflow: hidden;
  min-height: 380px;
}

.tools-visual-photo {
  background: #14121f;
}

.tools-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 31, 0.1) 40%, rgba(20, 18, 31, 0.85) 100%);
}

.tools-tags {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  margin: 0;
}


.tools-text {
  padding-top: 50px;
}

.tools-text .title {
  font-family: var(--fw6);
  font-size: 2rem;
  color: #121212;
  margin: 20px 0;
}

.tools-text .desc {
  font-family: var(--fw3);
  font-size: 1.2rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0 0 16px;
}

/* Text blocks under row 1 */
.bento-text h4 {
  font-family: var(--fw6);
  font-size: 1.4rem;
  color: #121212;
  margin-bottom: 12px;
}

.bento-text p {
  font-family: var(--fw3);
  font-size: 1rem;
  line-height: 1.7;
  color: #5a5a5a;
  max-width: 480px;
  margin: 0;
}

/* Image card */
.bento-image-card {
  min-height: 340px;
}

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

/* Mockup card */
.bento-mockup-card {
  background: #14121f;
  padding-bottom: 60px;
}

.bento-mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--fw4);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.bento-mockup-topbar i {
  margin: 0 4px;
}

.bento-mockup-body {
  padding: 26px 28px 10px;
}

.bento-mockup-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bento-mockup-heading-row h5 {
  font-family: var(--fw6);
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 4px;
}

.bento-mockup-heading-row p {
  font-family: var(--fw4);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.bento-mockup-selected {
  font-family: var(--fw5);
  font-size: 0.75rem;
  color: #c4b5fd;
  background: rgba(196, 181, 253, 0.12);
  border: 1px solid rgba(196, 181, 253, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.bento-mockup-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.bento-mockup-option {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-mockup-option i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 6px;
}

.bento-mockup-option span {
  font-family: var(--fw6);
  font-size: 0.95rem;
  color: #fff;
}

.bento-mockup-option small {
  font-family: var(--fw4);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.bento-mockup-option.active {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(196, 181, 253, 0.5);
}

.bento-mockup-option.active i {
  color: #c4b5fd;
}

.bento-mockup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bento-mockup-footer > span {
  font-family: var(--fw4);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.bento-mockup-btn {
  font-family: var(--fw6);
  font-size: 0.9rem;
  color: #14121f;
  background: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.bento-chat-widget {
  position: absolute;
  right: 24px;
  bottom: -22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  padding: 14px 16px;
  width: 260px;
}

.bento-chat-prompt {
  font-family: var(--fw5);
  font-size: 0.85rem;
  color: #121212;
  margin-bottom: 10px;
}

.bento-chat-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bento-chat-actions span {
  font-family: var(--fw4);
  font-size: 0.72rem;
  color: #333;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 5px 10px;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-article {
    flex-direction: column;
  }

  .bento-article-photo {
    height: 220px;
  }

  .bento-badge-card,
  .bento-image-card {
    min-height: 260px;
  }

  .bento-mockup-options {
    grid-template-columns: 1fr;
  }

  .bento-chat-widget {
    position: static;
    width: auto;
    margin: 16px 28px 28px;
  }

  .bento-mockup-card {
    padding-bottom: 20px;
  }
}

/* ===== Featured case studies (checkerboard) ===== */



.case-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-featured-item {
  min-height: 480px;
}

.case-featured-media {
  overflow: hidden;
}

.case-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-featured-text {
  background: #f7f7f7;
  display: flex;
  align-items: center;
}

.case-featured-text a {
  display: block;
  padding: 60px;
  text-decoration: none;
}

.case-featured-eyebrow {
  display: block;
  font-family: var(--fw7);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 18px;
}

.case-featured-title {
  font-family: var(--fw5);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: #0d0d0d;
  line-height: 1.35;
  margin-bottom: 18px;
}

.case-featured-desc {
  font-family: var(--fw4);
  font-size: 1rem;
  line-height: 1.7;
  color: #3f4a47;
  max-width: 460px;
  margin-bottom: 28px;
}

.case-featured-link {
  font-family: var(--fw5);
  font-size: 0.95rem;
  color: #16362e;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .case-featured-section {
    padding: 0;
  }

  .case-featured-grid {
    grid-template-columns: 1fr;
  }

  .case-featured-item {
    min-height: 340px;
  }

  .case-featured-text a {
    padding: 40px 24px;
  }
}

/* ===== Tools showcase (ExpertLynk / Websamp) ===== */

.tools-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fw6);
  font-size: 0.9rem;
  color: #2e31ab;
  text-decoration: none;
  width: fit-content;
}

.tools-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.tools-link:hover {
  text-decoration: underline;
}

.tools-link:hover i {
  transform: translate(2px, -2px);
}

/* Coverage page: India coverage panel (standalone, replaces world map) */

.coverage-map-panel {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.coverage-map-panel .coverage-panel {
  padding: 40px;
}