.innerPageBannerContainer {
  background: url(assets/esol/img/innerPageBanner/innerPageBanner.png);
}
.serviceCardCstm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* justify-content: space-between; */
  align-items: center;
}
.serviceCardCstm h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff; /* or any fill color you want */
  -webkit-text-stroke: 2px #333; /* stroke width and color */
  text-stroke: 2px #333; /* for future compatibility */
}
.serviceCardCstm h2,
.serviceCardCstm h4,
.serviceCardCstm p {
  margin-bottom: 0;
  text-align: center;
}

.serviceCardCstm p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Change the number as needed */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.serviceCardCstm:hover p {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.serviceTextContainer p {
  text-align: justify;
}
/* card border colors */
.softOrange {
  border-color: #ffeacc;
}

.softGreen {
  border-color: #d4f9e2;
}

.softBlue {
  border-color: #dbe9ff;
}

.softViolet {
  border-color: #e6e4ff;
}

.softCoral {
  border-color: #ffe0e0;
}

.softYellow {
  border-color: #fff9d6;
}

.softTeal {
  border-color: #ddf8f6;
}

.softRose {
  border-color: #fbe7f5;
}
/* end card border colors */

.coreStrengthTextContainer p {
  text-align: left;
}

/* what we do section */

.wwd {
  position: relative;
  padding: 50px 90px;
  overflow: hidden;
  background: #fcf3f3;
}

.wwd-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wwd-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(216, 64, 64, 0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}

.wwd-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(216, 64, 64, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(216, 64, 64, 0.05) 0%, transparent 60%);
}

/* ── HEADER ── */
.wwd-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
}

.wwd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d84040;
  margin-bottom: 14px;
}

.wwd-eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #d84040;
  border-radius: 2px;
}

.wwd-title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  color: #1a1818;
  letter-spacing: -0.025em;
}

.wwd-title em {
  font-style: normal;
  color: #d84040;
}

.wwd-subtitle {
  font-size: 14px;
  color: #8a8280;
  line-height: 1.8;
  font-weight: 400;
  max-width: 300px;
  text-align: right;
  padding-bottom: 6px;
}

/* ── GRID ── */
.wwd-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ── CARD ── */
.wwd-card {
  background: #ffffff;
  border: 1.5px solid #ede9e9;
  border-radius: 16px;
  padding: 34px 30px 30px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeUp 0.55s ease forwards;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.wwd-card:nth-child(1) {
  animation-delay: 0.05s;
}
.wwd-card:nth-child(2) {
  animation-delay: 0.13s;
}
.wwd-card:nth-child(3) {
  animation-delay: 0.21s;
}
.wwd-card:nth-child(4) {
  animation-delay: 0.29s;
}
.wwd-card:nth-child(5) {
  animation-delay: 0.37s;
}
.wwd-card:nth-child(6) {
  animation-delay: 0.45s;
}

.wwd-card:hover {
  border-color: rgba(216, 64, 64, 0.35);
  box-shadow:
    0 14px 44px rgba(216, 64, 64, 0.09),
    0 3px 10px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.wwd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 60%;
  background: linear-gradient(105deg, transparent, rgba(216, 64, 64, 0.04), transparent);
  transition: left 0.55s ease;
}

.wwd-card:hover::before {
  left: 160%;
}

.card-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d84040, #f07070);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}

.wwd-card:hover .card-strip {
  transform: scaleX(1);
}

/* Card head */
.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}

/* pressure testing and valve repair */
.ptvr-showcase {
  --ptvr-ink: #1b242d;
  --ptvr-muted: #60707f;
  --ptvr-accent: #d84040;
  --ptvr-accent-soft: #fff0ee;
  --ptvr-border: rgba(27, 36, 45, 0.09);
  position: relative;
  margin-top: 4rem;
  padding: 3rem;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 241, 0.96)),
    linear-gradient(180deg, #ffffff, #f8f1ef);
  border: 1px solid rgba(216, 64, 64, 0.08);
  box-shadow:
    0 28px 80px rgba(27, 36, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ptvr-showcase-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.ptvr-showcase-orb-1 {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(216, 64, 64, 0.2) 0%, rgba(216, 64, 64, 0) 70%);
}

.ptvr-showcase-orb-2 {
  width: 220px;
  height: 220px;
  bottom: -100px;
  left: -70px;
  background: radial-gradient(circle, rgba(52, 63, 82, 0.14) 0%, rgba(52, 63, 82, 0) 72%);
}

.ptvr-showcase-top,
.ptvr-bottom {
  position: relative;
  z-index: 1;
}

.ptvr-showcase-top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.ptvr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ptvr-accent);
}

.ptvr-eyebrow::before {
  content: "";
  width: 2.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ptvr-accent), rgba(216, 64, 64, 0.2));
}

.ptvr-title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ptvr-ink);
}

.ptvr-lead,
.ptvr-panel-copy,
.ptvr-stat-card p,
.ptvr-note {
  color: var(--ptvr-muted);
}

.ptvr-lead {
  max-width: 58rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.9;
}

.ptvr-stat-card {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 36, 45, 0.08);
  box-shadow: 0 16px 36px rgba(27, 36, 45, 0.06);
  backdrop-filter: blur(8px);
}

.ptvr-stat-label,
.ptvr-band-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c6a66;
}

.ptvr-stat-value {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ptvr-ink);
}

.ptvr-stat-card p {
  margin-bottom: 0;
  line-height: 1.75;
}

.ptvr-grid {
  position: relative;
  z-index: 1;
}

.ptvr-panel {
  height: 100%;
  padding: 1.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--ptvr-border);
  box-shadow: 0 20px 40px rgba(27, 36, 45, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.ptvr-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 64, 64, 0.22);
  box-shadow: 0 26px 48px rgba(27, 36, 45, 0.09);
}

.ptvr-panel-accent {
  background: linear-gradient(180deg, rgba(255, 240, 238, 0.94), rgba(255, 255, 255, 0.96));
}

.ptvr-panel-dark {
  background: linear-gradient(180deg, #2d3642, #1d2630);
  border-color: rgba(255, 255, 255, 0.08);
}

.ptvr-panel-dark h4,
.ptvr-panel-dark .ptvr-panel-kicker,
.ptvr-panel-dark .ptvr-list li {
  color: #fff;
}

.ptvr-panel-dark .ptvr-panel-copy {
  color: rgba(255, 255, 255, 0.72);
}

.ptvr-panel-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.ptvr-panel-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--ptvr-accent-soft);
  color: var(--ptvr-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ptvr-panel-dark .ptvr-panel-kicker {
  background: rgba(255, 255, 255, 0.08);
}

.ptvr-panel h4 {
  margin-bottom: 0;
  font-size: 1.15rem;
  color: var(--ptvr-ink);
}

.ptvr-subtitle {
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c6a66;
}

.ptvr-panel-copy {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ptvr-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.ptvr-list li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.65;
  color: #33404c;
}

.ptvr-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #d84040, #f28d77);
  box-shadow: 0 0 0 0.22rem rgba(216, 64, 64, 0.1);
}

.ptvr-panel-dark .ptvr-list li::before {
  background: linear-gradient(180deg, #ffffff, #ffd9d4);
  box-shadow: 0 0 0 0.22rem rgba(255, 255, 255, 0.08);
}

.ptvr-bottom {
  /* display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(250px, 0.8fr); */
  gap: 1rem;
  margin-top: 2rem;
}

.ptvr-valve-band,
.ptvr-note {
  border-radius: 22px;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(27, 36, 45, 0.08);
}

.ptvr-valve-band {
  background: rgba(255, 255, 255, 0.78);
}

.ptvr-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.ptvr-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff6f4;
  border: 1px solid rgba(216, 64, 64, 0.14);
  color: #7a3834;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ptvr-note {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(52, 63, 82, 0.06), rgba(52, 63, 82, 0.03));
  line-height: 1.8;
}

.ptvr-note strong {
  color: var(--ptvr-ink);
}

@media (max-width: 991.98px) {
  .ptvr-showcase {
    padding: 2rem 1.4rem;
    border-radius: 26px;
  }

  .ptvr-showcase-top,
  .ptvr-bottom {
    grid-template-columns: 1fr;
  }

  .ptvr-title {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .ptvr-panel {
    padding: 1.35rem;
  }

  .ptvr-panel-head {
    align-items: flex-start;
  }

  .ptvr-chip {
    width: 100%;
    justify-content: center;
  }
}

/* Emoji icon */
.card-icon-wwd-card {
  width: 54px;
  height: 54px;
  background: rgba(216, 64, 64, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  flex-shrink: 0;
  user-select: none;
}

.wwd-card:hover .card-icon {
  background: rgba(216, 64, 64, 0.14) !important;
  transform: scale(1.1) rotate(5deg);
}

/* Number */
.card-num {
  font-size: 12px;
  font-weight: 700;
  color: #c8c4c3;
  letter-spacing: 0.05em;
  padding-top: 4px;
  transition: color 0.3s ease;
}

.wwd-card:hover .card-num {
  color: #d84040;
}

/* Title */
.card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1818;
  line-height: 1.3;
  margin-bottom: 11px;
  letter-spacing: -0.01em;
}

/* Description */
.card-desc {
  font-size: 13.5px;
  color: #8a8280;
  line-height: 1.75;
  font-weight: 400;
  flex: 1;
  margin-bottom: 20px;
}

/* Divider */
.card-divider {
  width: 100%;
  height: 1px;
  background: #ede9e9;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}

.wwd-card:hover .card-divider {
  background: rgba(216, 64, 64, 0.2);
}

/* CTA */
.card-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d84040;
  transition: gap 0.3s ease;
}

.wwd-card:hover .card-cta {
  gap: 12px;
}

.card-cta svg {
  width: 14px;
  height: 14px;
  stroke: #d84040;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.wwd-card:hover .card-cta svg {
  transform: translateX(4px);
}

/* ── BOTTOM BAR ── */
.wwd-bar {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  background: #f7f5f5;
  border: 1.5px solid #ede9e9;
  border-radius: 14px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bar-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bar-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bar-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #d84040;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bar-stat-label {
  font-size: 11px;
  color: #8a8280;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.bar-divider {
  width: 1px;
  height: 34px;
  background: #ded9d9;
}

.bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d84040;
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.3s ease,
    gap 0.3s ease,
    box-shadow 0.3s ease;
}

.bar-cta:hover {
  background: #c03030;
  gap: 13px;
  box-shadow: 0 6px 20px rgba(216, 64, 64, 0.28);
}

.bar-cta svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .wwd {
    padding: 50px 30px;
    /* margin: 10px; */
  }
  .wwd-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wwd-header {
    grid-template-columns: 1fr;
  }
  .wwd-subtitle {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .wwd {
    padding: 50px 18px;
  }
  .wwd-grid {
    grid-template-columns: 1fr;
  }
  .wwd-card {
    padding: 28px 22px;
  }
  .bar-stats {
    gap: 18px;
  }
}

/* end what we do section */

/* Sea Fastening Services and Pre-Fabrication & Offshore Installation Section */

/* Main Container */
.offshore-services-wrapper {
  position: relative;
  padding: 80px 20px;
  background-color: #fefefe;
  overflow: hidden;
  min-height: 100vh;
}

/* Background Elements */
.offshore-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.offshore-wave {
  position: absolute;
  width: 120%;
  height: 200px;
  background: linear-gradient(45deg, rgba(216, 64, 64, 0.08), rgba(216, 64, 64, 0.03));
  border-radius: 50%;
  animation: wave-motion 25s ease-in-out infinite;
}

.offshore-wave.wave-1 {
  top: 20%;
  left: -10%;
  animation-delay: -5s;
}

.offshore-wave.wave-2 {
  bottom: 30%;
  right: -10%;
  animation-delay: -15s;
  animation-direction: reverse;
}

.offshore-geometric {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(216, 64, 64, 0.15);
  animation: float-rotate 20s linear infinite;
}

.offshore-geometric.geo-1 {
  top: 15%;
  right: 15%;
  border-radius: 30%;
  animation-delay: -3s;
}

.offshore-geometric.geo-2 {
  bottom: 20%;
  left: 10%;
  transform: rotate(45deg);
  animation-delay: -10s;
}

.offshore-dots-pattern {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(216, 64, 64, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  animation: pulse-pattern 15s ease-in-out infinite;
}

.offshore-dots-pattern.dots-1 {
  top: 40%;
  left: 5%;
  animation-delay: -7s;
}

.offshore-dots-pattern.dots-2 {
  top: 10%;
  right: 5%;
  animation-delay: -12s;
}

@keyframes wave-motion {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(20px) translateY(-15px) scale(1.1);
    opacity: 1;
  }
}

@keyframes float-rotate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.7;
  }
}

@keyframes pulse-pattern {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Content Container */
.offshore-container {
  position: relative;
  z-index: 2;
}

/* Service Section Styling */
.offshore-service-section {
  margin-bottom: 60px;
  opacity: 0;
  animation: slide-in-up 1s ease-out forwards;
}

.offshore-service-section:nth-child(2) {
  animation-delay: 0.3s;
}

.offshore-service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(216, 64, 64, 0.08);
  border: 1px solid rgba(216, 64, 64, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offshore-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #d84040, #ff6b6b);
  border-radius: 24px 24px 0 0;
}

.offshore-service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(216, 64, 64, 0.03), transparent);
  opacity: 0;
  transition: all 0.6s ease;
  animation: rotate-bg 20s linear infinite;
}

.offshore-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(216, 64, 64, 0.15);
  border-color: #d84040;
}

.offshore-service-card:hover::after {
  opacity: 1;
}

@keyframes rotate-bg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.offshore-service-header {
  position: relative;
  z-index: 3;
  margin-bottom: 25px;
}

.offshore-service-title {
  /* font-size: 2.2rem; */
  /* font-weight: 700; */
  color: #2c2c2c;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.offshore-service-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #d84040, #ff6b6b);
  border-radius: 2px;
}

.offshore-service-content {
  position: relative;
  z-index: 3;
}

.offshore-service-description {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* Icon Decoration */
.offshore-service-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(216, 64, 64, 0.1), rgba(216, 64, 64, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s ease;
  z-index: 3;
}

.offshore-service-card:hover .offshore-service-icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, rgba(216, 64, 64, 0.2), rgba(216, 64, 64, 0.1));
}

/* Alternating Layout */
.offshore-service-section:nth-child(even) .offshore-service-card {
  margin-left: auto;
  margin-right: 0;
  max-width: 900px;
}

.offshore-service-section:nth-child(odd) .offshore-service-card {
  margin-left: 0;
  margin-right: auto;
  max-width: 900px;
}

@keyframes slide-in-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .offshore-services-wrapper {
    padding: 60px 15px;
  }

  .offshore-service-card {
    padding: 35px 25px;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .offshore-service-title {
    font-size: 1.8rem;
  }

  .offshore-service-description {
    font-size: 1rem;
  }

  .offshore-service-icon {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 20px;
  }

  .offshore-wave {
    height: 150px;
  }

  .offshore-geometric {
    width: 40px;
    height: 40px;
  }

  .offshore-dots-pattern {
    width: 100px;
    height: 100px;
    background-size: 15px 15px;
  }
}

/* Additional Animation for Better UX */
.offshore-service-card {
  animation: card-entrance 0.8s ease-out;
}

@keyframes card-entrance {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
/* end Sea Fastening Services and Pre-Fabrication & Offshore Installation Section */

/* new what we do section */

.bg-elements {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 64, 64, 0.05), transparent);
  animation: float 20s infinite ease-in-out;
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.bg-circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d84040, #ff6b6b);
  margin: 20px auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.service-card-what-we-do {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 35px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card-what-we-do::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(216, 64, 64, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card-what-we-do:hover::before {
  left: 100%;
}

.service-card-what-we-do:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(216, 64, 64, 0.15);
  border-color: #d84040;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d84040, #ff6b6b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
}
.card-icon i {
  font-size: 40px;
  color: #fff;
}

.service-card-what-we-do:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(15px);
  opacity: 0.3;
  z-index: -1;
}

.card-icon svg {
  width: 35px;
  height: 35px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  /* margin-bottom: 12px; */
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card-what-we-do:hover .card-title {
  color: #d84040;
}

.card-arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  color: #d84040;
  font-weight: 600;
  font-size: 0.95rem;
  /* opacity: 0; */
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* .service-card-what-we-do:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
} */

.card-arrow svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-card-what-we-do:hover .card-arrow svg {
  transform: translateX(5px);
}

/* about us */
.aboutUS {
  background: #091e32;
}
.aboutUS-title {
  color: #fff;
}
.aboutUS-desc {
  color: #fff;
  opacity: 0.8;
}
/* end about us */

@media (max-width: 768px) {
  /* .section-title {
    font-size: 2.2rem;
  } */

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card-what-we-do {
    padding: 35px 25px;
  }
}
.whatWeDoSection {
  /* padding: 90px 0; */
  padding: 20px 0 60px 0;
}

/* end new what we do section */
.dropBorder {
  border-bottom: 1px solid #dcd9d9;
  padding: 5px 0;
}

@media (min-width: 992px) {
  .navBorder {
    border: 1px solid #dcd9d9;
    padding: 5px 30px !important;
    border-radius: 20px;
  }
}
