/* 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: 16px;
  color: #6c757d;
  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: 46px;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* 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: 18px;
  line-height: 1.6;
  color: #666666;
}

.tech-stack-btn a {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

@media (max-width: 991px) {
  .tech-stack-title *,
  .tech-stack-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .tech-stack-title *,
  .tech-stack-title {
    font-size: 28px;
  }
  .tech-stack-image img {
    border-radius: 20px;
  }
}

