/* Tech Stack Section Styles */
.tech-stack-section {
  padding: 80px 0 0 0;
  background-color: #ffffff;
}

.tech-stack-content .sub-track {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #838383;
  font-weight: 500;
  margin-bottom: 20px;
}

.tech-stack-content .sub-track .blue-dot {
  width: 12px;
  height: 12px;
  background-color: #3b82f6; /* Blueish */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.tech-stack-title *,
.tech-stack-title {
  font-size: 43px;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 500;
}

/* If the user uses bold or strong tags in formatted text for styling differences */
.tech-stack-title strong,
.tech-stack-title b {
  color: #1a1a1a;
  font-weight: 700;
}

.tech-stack-title p {
  margin-bottom: 0;
  color: #7a7a7a; /* Lighter color for non-bold text as seen in "ogies &" maybe? */
}

.tech-stack-desc p,
.tech-stack-desc {
font-size: 28px;
    line-height: 1.6;
    color: #666666;
    font-family: 'Rubik';
    font-weight: 400;
}

.tech-stack-btn a {
  display: inline-block;
  padding: 14px 34px;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  background: linear-gradient(to right, #1d8cf8, #22439c);
  font-family: 'Rubik';
}

.tech-stack-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

/* Right Side Image */
.tech-stack-image img {
  max-width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.paragraph--our_tech_stack .container > .row{
  width: 88%;
  margin: auto;
}

/* 3-Column Vertical Logo Slider Wrapper */
.tech-stack-slider-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 460px;
  overflow: hidden;
  position: relative;
  background-color: #F0F4F8; /* Sleek light grey-blue panel background */
  border-radius: 40px;
  padding: 30px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

/* Fading edge overlays to make scrolling smooth */
.tech-stack-slider-wrapper::before,
.tech-stack-slider-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}
.tech-stack-slider-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, #F0F4F8 15%, transparent 100%);
}
.tech-stack-slider-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, #F0F4F8 15%, transparent 100%);
}

/* Columns */
.tech-stack-column {
  overflow: hidden;
  height: 100%;
}

.tech-stack-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}

/* Custom individual logo cards matching screenshot */
.tech-logo-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}
.tech-logo-card img:hover {
  transform: scale(1.08);
}

/* Scrolling Animations */
.col-down .tech-stack-track {
  animation: scroll-down 18s linear infinite;
}

.col-up .tech-stack-track {
  animation: scroll-up 18s linear infinite;
}

.tech-stack-slider-wrapper:hover .tech-stack-track {
  animation-play-state: paused; /* Pause scrolling on hover for user friendly pause */
}

@keyframes scroll-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@media (max-width: 991px) {
  .tech-stack-title *,
  .tech-stack-title {
    font-size: 36px;
  }
  .tech-stack-slider-wrapper {
    height: 380px;
    border-radius: 30px;
  }
  .tech-logo-card img {
    width: 74px;
    height: 74px;
    padding: 12px;
    border-radius: 16px;
  }
}

@media (max-width: 767px) {
  .tech-stack-title *,
  .tech-stack-title {
    font-size: 28px;
  }
  .tech-stack-image img {
    border-radius: 20px;
  }
  .tech-stack-slider-wrapper {
    height: 320px;
    border-radius: 20px;
    padding: 20px 10px;
    gap: 12px;
  }
  .tech-logo-card img {
    width: 64px;
    height: 64px;
    padding: 10px;
    border-radius: 12px;
  }
}

