
.what-we-do {
	padding: 80px 0 1px 0;
	/*overflow: hidden;*/
	background: linear-gradient(180deg, #0e1b28 0%, #050606 100%);
	/*background-color:#0e1b28;*/
	color: white;
}

.what-we-do-wrapper {
  display: flex;
  gap: 30px;
}

.what-we-do-left {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.what-we-do-right {
  flex: 1;
}


.service-tabs {
  margin-top: auto;
}

.service-tab {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.service-tab:hover {
  color: var(--accent);
}

.service-tab.active {
  border-bottom: 2px solid #ffb400;
  color: #fff;
  position: relative;
}

.service-tab.active::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #ffb400;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.what-we-do-wrapper .showcase-image {
  position: relative;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.what-we-do-wrapper .showcase-image img {
 width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 535px;
    object-position: bottom;
}



.magic-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.magic-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .what-we-do-wrapper {
    flex-direction: column;
  }
  
  .what-we-do-left, .what-we-do-right {
    width: 100%;
  }
  
  .what-we-do-wrapper .showcase-image {
    height: 400px;
  }
}
