.about-workspace {
  background: #f8f9fc;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img {
  position: relative;
}

.badge-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ec8021;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-primary-custom {
  background: #ec8021;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn-primary-custom:hover {
  background: #d96f16;
  color: #fff;
}

.btn-outline-dark-custom {
  border: 2px solid #021e3e;
  color: #021e3e;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-dark-custom:hover {
  background: #021e3e;
  color: #fff;
}

.industry-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #ec8021;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.industry-icon i {
  font-size: 25px;
  color: #fff;
}

.industry-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #021e3e;
  font-weight: 700;
}

.industry-card p {
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.8;
}

.industry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ec8021;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.industry-btn:hover {
  gap: 15px;
  color: #021e3e;
}

.workspace-solutions-section {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}

.workspace-heading .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ec8021;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.workspace-heading h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #021e3e;
  font-weight: 700;
  margin-bottom: 20px;
}

.workspace-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.workspace-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(2, 30, 62, 0.08);
  min-height: 100%;
}

.workspace-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(236, 128, 33, 0.03),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}

.workspace-card:hover::before,
.workspace-card.active-card::before {
  opacity: 1;
}

.workspace-card:hover,
.workspace-card.active-card {
  transform: translateY(-12px);
  border-color: #ec8021;
  box-shadow: 0 25px 60px rgba(2, 30, 62, 0.1);
}

.workspace-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.workspace-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #021e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.workspace-card:hover .workspace-icon,
.workspace-card.active-card .workspace-icon {
  background: linear-gradient(135deg, #ec8021, #ffb067);
}

.workspace-icon i {
  font-size: 34px;
  color: #fff;
}

.workspace-number {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: rgba(2, 30, 62, 0.08);
}

.workspace-content h3 {
  font-size: 25px;
  line-height: 1.4;
  color: #021e3e;
  margin-bottom: 18px;
  font-weight: 700;
}

.workspace-content p {
  color: #64748b;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 30px;
}

.workspace-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #021e3e;
  text-decoration: none;
  transition: 0.3s;
}

.workspace-btn i {
  transition: 0.3s;
}

.workspace-btn:hover {
  color: #ec8021;
}

.workspace-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 1199px) {
  .workspace-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workspace-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .workspace-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .workspace-heading h2 {
    font-size: 32px;
  }

  .workspace-card {
    padding: 30px 25px;
  }
}

:root {
  --primary-color: #ec8021;
  --secondary-color: #021e3e;
  --light-bg: #f4f7ff;
  --white-color: #ffffff;
  --heading-color: #1b2559;
  --text-color: #6b7280;
}

.section-padding {
  padding: 90px 0;
  background: #f8fbff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title p {
  font-size: 16px;
  color: var(--secondary-color);
  max-width: 720px;
  margin: auto;
  line-height: 1.8;
}

.service-card {
  background: var(--white-color);
  border-radius: 26px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 45px rgba(33, 63, 121, 0.12);
}

.service-icon {
  width: 78px;
  height: 78px;
  background: var(--light-bg);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s;
}

.service-card:hover .service-icon {
  background: var(--primary-color);
}

.service-icon i {
  font-size: 34px;
  color: var(--primary-color);
  transition: 0.4s;
}

.service-card:hover .service-icon i {
  color: #fff;
}

.service-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-card p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.9;
  margin-bottom: 28px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: 0.3s;
}

.service-btn:hover {
  color: var(--heading-color);
}

.service-btn i {
  transition: 0.3s;
}

.service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 34px;
  }

  .service-card {
    padding: 28px 22px;
  }
}

.workspace-contact-section {
  background: #f8fafc;
  position: relative;
}

.contact-content .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ec8021;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.contact-content h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #021e3e;
  margin-bottom: 25px;
}

.contact-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-info-item .icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(2, 30, 62, 0.06);
}

.contact-info-item .icon i {
  font-size: 26px;
  color: #ec8021;
}

.contact-info-item .content span {
  display: block;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-info-item .content h5 {
  margin: 0;
  font-size: 20px;
  color: #021e3e;
  font-weight: 700;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(2, 30, 62, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #021e3e;
  margin-bottom: 10px;
  display: block;
}

.form-control {
  height: 58px;
  border-radius: 16px;
  border: 1px solid #dbe4ee;
  padding: 0 20px;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  padding-top: 18px;
}

.form-control:focus {
  border-color: #ec8021;
  box-shadow: none;
}

.contact-btn {
  border: none;
  background: linear-gradient(135deg, #ec8021, #ff9d4d);
  color: #fff;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(236, 128, 33, 0.25);
}

@media (max-width: 991px) {
  .contact-content h2 {
    font-size: 38px;
  }

  .contact-form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .contact-content h2 {
    font-size: 30px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }
}
