.what-we-offer {
  background: #f5f7fa;
  padding: 40px 0px;
}

.offer-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.offer-card i {
  font-size: 28px;
  color: #ffffff;
  background: var(--gradient-primary);

  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: inline-block;
}

.offer-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b2a6b;
}

.offer-card p {
  font-size: 14px;
  color: #6b7280;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ff5a00;
}

.offer-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  font-size: 14px;
  color: #ff5a00;
  border: 1px solid #ff5a00;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.offer-btn:hover {
  background: #ff5a00;
  color: #fff;
}
/* Why choose us */

/* RIGHT SIDE STICKY */
.why-right {
  position: sticky;
  top: 100px;
}

/* BOX DESIGN */
.why-box {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ICON STYLE */
.why-box .icon {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff5a00, #ffc107);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
}

.why-box h4 {
  margin: 0;
  font-size: 20px;
  color: #0b2a6b;
}

.why-box p {
  font-size: 16px;
  color: #6b7280;
  margin: 5px 0 0;
}

/* industry we serve  */

.industries {
  background: #f5f7fa;
}

/* Title */
.section-title h3 {
  color: #ff5a00;
  font-size: 16px;
}

.section-title h2 {
  color: #0b2a6b;
  font-size: 32px;
}

.section-title h2 span {
  color: #ff5a00;
}

.section-title p {
  color: #6b7280;
}

/* Honeycomb Container */
.honeycomb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px;
}

/* HEX */
.hex {
  width: 160px;
  height: 180px;
  background: #fff;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
}

/* Zig-Zag Effect */
.hex:nth-child(odd) {
  margin-top: 40px;
}

/* Icon */
.hex i {
  font-size: 26px;
  color: #ff5a00;
  margin-bottom: 8px;
}

/* Text */
.hex span {
  font-size: 13px;
  color: #0b2a6b;
  font-weight: 500;
  padding: 0 5px;
}

/* Hover */
.hex:hover {
  background: linear-gradient(135deg, #ff5a00, #ffc107);
  transform: translateY(-6px);
}

.hex:hover i,
.hex:hover span {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hex {
    width: 120px;
    height: 140px;
  }

  .hex:nth-child(odd) {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hex {
    width: 100px;
    height: 120px;
  }

  .hex span {
    font-size: 10px;
  }
}

.work-process {
  background: #f8fafc;
}

.sub-title {
  color: #ff5a00;
  font-weight: 600;
}

.main-title {
  font-size: 34px;
  color: #0b2a6b;
}

.main-title span {
  color: #ff5a00;
}

/* Wrapper */
.process-wrapper {
  position: relative;
}

/* Center Line */
.process-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #ff5a00,
    #ff5a00 6px,
    transparent 6px,
    transparent 14px
  );
  transform: translateX(-50%);
}

/* Step */
.process-step {
  display: flex;
  margin-bottom: 70px;
}

/* Left Right Layout */
.process-step.left {
  justify-content: flex-start;
}

.process-step.right {
  justify-content: flex-end;
}

/* Content Box */
.process-step .content {
  width: 45%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Icon */
.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff5a00, #ffc107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

/* Text */
.process-step h4 {
  font-size: 20px;
  color: #0b2a6b;
}

.process-step h4 span {
  color: #ff5a00;
  margin-right: 8px;
}

.process-step p {
  color: #6b7280;
  margin-top: 10px;
}

/* Connector Dot */
.process-step .content::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 15px;
  height: 15px;
  background: #ff5a00;
  border-radius: 50%;
}

/* Left Dot */
.process-step.left .content::before {
  right: -38px;
}

/* Right Dot */
.process-step.right .content::before {
  left: -38px;
}

/* Responsive */
@media (max-width: 768px) {
  .process-wrapper::before {
    left: 10px;
  }

  .process-step {
    justify-content: flex-start !important;
  }

  .process-step .content {
    width: 100%;
  }

  .process-step .content::before {
    left: -25px !important;
  }
}
@media only screen and (max-width: 991px) {
  .section-title h2 {
    font-size: 28px;
  }
  .main-title {
    font-size: 28px;
    color: #0b2a6b;
  }
  .sub-title {
    color: #ff5a00;
    font-weight: 600;
    font-size: 16px;
  }
  .honeycomb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 58px;
}
}
@media only screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 24px;
  }
  .main-title {
    font-size: 24px;
    color: #0b2a6b;
  }
  .sub-title {
    color: #ff5a00;
    font-weight: 600;
    font-size: 16px;
  }
}
