/* Services Tab Block Styles */
.services-tab-block {
  max-width: 100%;
  margin: 2rem 0;
}

/* WordPress Core Alignment Classes */
.services-tab-block.alignwide {
  width: 100vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-tab-block.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (max-width: 1200px) {
  .services-tab-block.alignwide {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Tab Navigation */
.services-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 15px;
}

.tab-button {
  flex: 1;
  min-width: 200px;
  padding: 2.5rem 1.5rem;
  border: none;
  display: flex !important;
  flex-direction: column !important;
  background: #353535;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 10px;
  border-bottom: 3px solid transparent;
}

.tab-button:hover {
  background: #e9ecef;
  color: #495057;
}

.tab-button.active {
  background: #72192B;
  color: #FFF;
  border-bottom-color: #982D43;
}

.tab-button i {
  font-size: 1.2rem;
}

.tab-button span {
  white-space: nowrap;
}

/* Tab Content */
.services-tabs-content {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}
.services-tabs-content .tab-content-text {
  padding: 2.5rem 3rem;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

.tab-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.tab-content-text {
  padding-right: 1rem;
}

.tab-content-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tab-content-text p, .tab-content-text ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #646464;
  margin-bottom: 1rem;
}

.tab-content-image {
  padding-left: 1rem;
  align-self: center;
  position: relative;
  height: 100%;
}
.tab-content-image img {
  position: absolute;
  top: 0;
  left: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-image {
  background: #f8f9fa;
  padding: 3rem 2rem;
  text-align: center;
  color: #6c757d;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .services-tabs-nav {
    flex-direction: column;
  }
  .tab-button {
    min-width: auto;
    flex: none;
  }
  .tab-content-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tab-content-text,
  .tab-content-image {
    padding: 0;
  }
  .tab-content-text h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .tab-button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .tab-button i {
    font-size: 1rem;
  }
  .tab-content-inner {
    gap: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */