/* ============================================================
   OCEAN PREMIUM — Immersive Brand Experience
   Visual Depth · Glass-morphism · Wave Dividers · Scroll Anim
   ============================================================ */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --oc-deep: #03183a;
  --oc-navy: #062654;
  --oc-blue: #0a4a8a;
  --oc-mid: #1565c0;
  --oc-bright: #1e88e5;
  --oc-sky: #29b6f6;
  --oc-foam: #b3e5fc;
  --oc-white: #ffffff;
  --oc-glass-bg: rgba(255, 255, 255, 0.08);
  --oc-glass-bg2: rgba(255, 255, 255, 0.13);
  --oc-glass-border: rgba(255, 255, 255, 0.22);
  --oc-glow: rgba(41, 182, 246, 0.35);
  --oc-glow-soft: rgba(30, 136, 229, 0.18);
  --oc-shadow: 0 8px 32px rgba(3, 24, 58, 0.38), 0 1.5px 6px rgba(3, 24, 58, 0.18);
  --oc-shadow-hover: 0 18px 52px rgba(3, 24, 58, 0.52), 0 4px 16px rgba(41, 182, 246, 0.22);
  --oc-transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes oc-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(1.5deg);
  }

  66% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes oc-float-slow {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-28px) translateX(12px);
  }
}

@keyframes oc-pulse-glow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.75;
    transform: scale(1.08);
  }
}

@keyframes oc-drift {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }

  25% {
    transform: translateX(14px) translateY(-10px) rotate(2deg);
  }

  50% {
    transform: translateX(28px) translateY(6px) rotate(-1deg);
  }

  75% {
    transform: translateX(10px) translateY(18px) rotate(3deg);
  }

  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}

@keyframes oc-ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes oc-wave-sway {

  0%,
  100% {
    transform: scaleX(1) translateX(0);
  }

  50% {
    transform: scaleX(1.04) translateX(-2%);
  }
}

@keyframes oc-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes oc-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes oc-particle-rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-120px) scale(0.3);
    opacity: 0;
  }
}

@keyframes oc-hex-rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}



/* ─── GLASS-MORPHISM CARDS ───────────────────────────────── */
.oc-glass-card {
  background: var(--oc-glass-bg2);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--oc-glass-border);
  border-radius: 20px;
  box-shadow: var(--oc-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: var(--oc-transition);
  position: relative;
  overflow: hidden;
}

.oc-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
}

.oc-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--oc-shadow-hover);
  border-color: rgba(41, 182, 246, 0.45);
}



/* stat cards */
.stat-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(30, 136, 229, 0.18);
  border-radius: 18px;
  padding: 32px 20px 30px;
  box-shadow: 0 6px 28px rgba(3, 24, 58, 0.09), 0 1px 4px rgba(30, 136, 229, 0.08);
  transition: var(--oc-transition);
}

.stat-card::before,
.stat-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  transition: var(--oc-transition);
}

/* Soft blob behind the number */
.stat-card::before {
  width: 140px;
  height: 140px;
  top: -40px;
  right: -60px;
  background: radial-gradient(circle at 30% 30%,
      rgba(41, 182, 246, 0.22) 0%,
      rgba(21, 101, 192, 0.0) 65%);
  opacity: 0.75;
}

/* Wave strip at the bottom of the card */
.stat-card::after {
  left: -10%;
  bottom: 0;
  width: 120%;
  height: 4px;
  background: linear-gradient(90deg, var(--oc-mid), var(--oc-sky), var(--oc-mid));
  opacity: 0.0;
  transform: translateX(-5%);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(3, 24, 58, 0.18), 0 4px 14px rgba(41, 182, 246, 0.18);
  border-color: rgba(30, 136, 229, 0.35);
}

.stat-card:hover::before {
  transform: translate(-6px, 4px) scale(1.03);
  opacity: 1;
}

.stat-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.stat-card h2 {
  position: relative;
  z-index: 1;
}

.stat-card h2 .purecounter {
  background: linear-gradient(135deg, var(--oc-mid), var(--oc-sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card p {
  position: relative;
  z-index: 1;
}



/* ─── FLOATING BUBBLES LAYER ─────────────────────────────── */
.oc-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.oc-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(41, 182, 246, 0.12) 50%,
      rgba(41, 182, 246, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(2px);
  animation: oc-float var(--dur, 9s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@media (max-width: 576px) {
  .oc-bubble {
    animation: none !important;

  }
}

/* unique bubble sizes placed via nth-child */
.oc-bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 4%;
  top: 18%;
  --dur: 10s;
  --delay: 0s;
  opacity: .55;
}


@media (max-width: 576px) {
  .oc-bubble:nth-child(1) {
    width: 50px;
    height: 50px;
    top: 8%;
  }
}

.oc-bubble:nth-child(2) {
  width: 130px;
  height: 130px;
  left: 12%;
  top: 55%;
  --dur: 13s;
  --delay: -3s;
  opacity: .35;
}

.oc-bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 22%;
  top: 30%;
  --dur: 8s;
  --delay: -1.5s;
  opacity: .6;
}


@media (max-width: 576px) {
  .oc-bubble:nth-child(3) {
    display: none;
  }
}


.oc-bubble:nth-child(4) {
  width: 200px;
  height: 200px;
  left: 35%;
  top: 65%;
  --dur: 16s;
  --delay: -5s;
  opacity: .18;
}

.oc-bubble:nth-child(5) {
  width: 60px;
  height: 60px;
  left: 50%;
  top: 12%;
  --dur: 9s;
  --delay: -2s;
  opacity: .5;
}

.oc-bubble:nth-child(6) {
  width: 100px;
  height: 100px;
  left: 60%;
  top: 42%;
  --dur: 12s;
  --delay: -4s;
  opacity: .38;
}

.oc-bubble:nth-child(7) {
  width: 40px;
  height: 40px;
  left: 72%;
  top: 22%;
  --dur: 7s;
  --delay: -0.8s;
  opacity: .65;
}

.oc-bubble:nth-child(8) {
  width: 160px;
  height: 160px;
  left: 80%;
  top: 58%;
  --dur: 15s;
  --delay: -6s;
  opacity: .22;
}

.oc-bubble:nth-child(9) {
  width: 70px;
  height: 70px;
  left: 88%;
  top: 35%;
  --dur: 11s;
  --delay: -2.5s;
  opacity: .48;
}

.oc-bubble:nth-child(10) {
  width: 110px;
  height: 110px;
  left: 93%;
  top: 75%;
  --dur: 14s;
  --delay: -7s;
  opacity: .3;
}

/* Bubble ripple rings */
.oc-bubble-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(41, 182, 246, 0.25);
  animation: oc-ripple 4s ease-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
}

/* ─── ORGANIC SHAPES (blobs) ─────────────────────────────── */
.oc-blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  filter: blur(55px);
  pointer-events: none;
  animation: oc-drift var(--dur, 18s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.oc-blob-1 {
  width: 420px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(30, 136, 229, 0.22) 0%, rgba(3, 24, 58, 0) 70%);
  top: -80px;
  left: -60px;
  --dur: 22s;
}

.oc-blob-2 {
  width: 320px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(41, 182, 246, 0.17) 0%, transparent 70%);
  bottom: -40px;
  right: -50px;
  --dur: 28s;
  --delay: -10s;
  border-radius: 40% 60% 35% 65% / 55% 45% 65% 35%;
}

.oc-blob-3 {
  width: 200px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(21, 101, 192, 0.25) 0%, transparent 70%);
  top: 45%;
  left: 50%;
  --dur: 20s;
  --delay: -5s;
  border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
}

.oc-blob-light {
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%) !important;
}

/* ─── WAVE SVG DIVIDERS ──────────────────────────────────── */
.oc-wave-top,
.oc-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.oc-wave-top {
  top: -2px;
}

.oc-wave-bottom {
  bottom: -2px;
}

.oc-wave-top svg,
.oc-wave-bottom svg {
  display: block;
  width: 100%;
}

.oc-wave-top svg {
  animation: oc-wave-sway 8s ease-in-out infinite;
}

.oc-wave-bottom svg {
  animation: oc-wave-sway 12s ease-in-out infinite reverse;
}

/* ─── OCEAN WAVE STRIP (Industries image band on home) ─────── */
.ocean-wave-strip {
  position: relative;
  overflow: hidden;
}

.ocean-wave-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(9, 126, 254, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 25, 54, 0.11) 0%, transparent 60%),
    linear-gradient(135deg, rgba(9, 126, 254, 0.16), rgba(197, 252, 252, 0));
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.ocean-wave-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-55deg,
      rgba(9, 126, 254, 0.18),
      rgba(9, 126, 254, 0.18) 2px,
      transparent 2px,
      transparent 10px);
  opacity: .32;
  transform: translateY(18%);
  pointer-events: none;
  z-index: 1;
}

.ocean-wave-strip>* {
  position: relative;
  z-index: 2;
}

/* enhanced hero-wave-divider */
.hero-wave-divider {
  animation: oc-wave-sway 10s ease-in-out infinite;
}


/* ─── HERO SECTION — INDEX ───────────────────────────────── */
.ai-hero-area {
  background: linear-gradient(145deg,
      var(--oc-deep) 0%,
      var(--oc-navy) 40%,
      #0d3577 70%,
      #1565c0 100%) !important;
  background-size: 300% 300% !important;
  animation: oc-gradient-shift 18s ease infinite !important;
  overflow: hidden;
}

/* Diagonal accent lines for index hero */
.ai-hero-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-55deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.018) 60px,
      rgba(255, 255, 255, 0.018) 62px);
  pointer-events: none;
  z-index: 1;
}

/* ─── HERO SECTIONS — INNER PAGES ────────────────────────── */

/* About Us hero — Geometric rings */
.hero-about {


  background: linear-gradient(180deg, rgb(1 71 152) 0%, rgb(74 129 192) 100%);
  overflow: hidden;
}


.hero-services {



  background: linear-gradient(180deg, rgb(1 71 152) 0%, rgb(74 129 192) 100%);
  overflow: hidden;
}

.hero-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 80px,
      rgba(41, 182, 246, 0.025) 80px,
      rgba(41, 182, 246, 0.025) 82px);
  pointer-events: none;
  z-index: 1;
}

/* Industries hero — Grid dots pattern */
.hero-industries {



  background: linear-gradient(180deg, rgb(1 71 152) 0%, rgb(74 129 192) 100%);
  overflow: hidden;
}

.hero-industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 1;
}

/* Compliance hero — Shield/hex lines */
.hero-compliance {




  background: linear-gradient(180deg, rgb(1 71 152) 0%, rgb(74 129 192) 100%);
  overflow: hidden;
}

.hero-compliance::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(255, 255, 255, 0.022) 44px, rgba(255, 255, 255, 0.022) 46px),
    repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(255, 255, 255, 0.022) 44px, rgba(255, 255, 255, 0.022) 46px);
  pointer-events: none;
  z-index: 1;
}

/* Contact hero — Wave rings */
.hero-contact {

  background: linear-gradient(180deg, rgb(1 71 152) 0%, rgb(74 129 192) 100%);
  overflow: hidden;
}



.oc-hero-deco-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: oc-float-slow var(--dur, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.oc-hero-deco-shape.solid {
  background: radial-gradient(circle at 30% 30%,
      rgba(41, 182, 246, 0.22) 0%, rgba(21, 101, 192, 0.08) 60%, transparent 100%);
  border-color: rgba(41, 182, 246, 0.2);
}

.oc-hero-deco-line {
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(41, 182, 246, 0.15) 30%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(41, 182, 246, 0.15) 70%,
      transparent 100%);
  animation: oc-wave-sway 12s ease-in-out infinite;
}


.oc-section-wave {
  position: relative;
  z-index: 2;
}

.oc-section-wave::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: var(--wave-fill, #fff);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 90' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,45 C200,90 400,0 600,45 C800,90 1000,0 1200,45 L1200,90 L0,90 Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 90' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,45 C200,90 400,0 600,45 C800,90 1000,0 1200,45 L1200,90 L0,90 Z'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: 3;
  animation: oc-wave-sway 9s ease-in-out infinite;
}

.oc-section-wave-in::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--wave-fill-top, #fff);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,0 C300,80 600,0 900,60 C1050,90 1150,20 1200,0 Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,0 C300,80 600,0 900,60 C1050,90 1150,20 1200,0 Z'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: 3;
  animation: oc-wave-sway 11s ease-in-out infinite reverse;
}


.tp-about-area .hero-wave-divider,
.tp-project-area~.dgm-service-area .hero-wave-divider {
  background-color: #ffffff;
}

.dgm-service-area .hero-wave-divider {
  background-color: var(--oc-deep);
}

/* double-layer wave effect */
.dark-blue .hero-wave-divider::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 100%;

  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 500 150" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0.00,49.98 C200,150 300,-50 500,49.98 L500,150 L0,150 Z" fill="black"></path></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 500 150" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0.00,49.98 C200,150 300,-50 500,49.98 L500,150 L0,150 Z" fill="black"></path></svg>');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  animation: oc-wave-sway 13s ease-in-out infinite reverse;
}

/* ─── SUBTLE HORIZONTAL SPARKLE LINES ───────────────────── */
.oc-sparkle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(41, 182, 246, 0.2) 20%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(41, 182, 246, 0.2) 80%,
      transparent 100%);
  pointer-events: none;
  animation: oc-shimmer 6s linear infinite;
  background-size: 200% auto;
}

/* ─── GLOWING BADGE / SUBTITLE ──────────────────────────── */
.tp-section-subtitle.border-bg.bg-color {
  position: relative;
  overflow: hidden;
}

.tp-section-subtitle.border-bg.bg-color::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: oc-shimmer 3.5s linear infinite;
}

/* ─── DGM SERVICE ITEMS ──────────────────────────────────── */
.dgm-service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: var(--oc-transition) !important;
}

.dgm-service-item:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  padding-left: 12px !important;
  border-bottom-color: rgba(41, 182, 246, 0.3) !important;
}

.dgm-service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--oc-sky), var(--oc-mid));
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: bottom;
}

.dgm-service-item:hover::before {
  transform: scaleY(1);
}

/* ─── PROJECT ITEMS ──────────────────────────────────────── */
.tp-project-item .tp-project-thumb img {
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.65s ease !important;
}

.tp-project-item:hover .tp-project-thumb img {
  transform: scale(1.06) !important;
  filter: brightness(1.08) saturate(1.1) !important;
}

.tp-project-thumb {
  overflow: hidden;
  border-radius: 14px;
}

/* ─── STEP / ACCORDION AREA ──────────────────────────────── */
/* .it-step-area {
  background: linear-gradient(170deg,
    var(--oc-deep) 0%,
    var(--oc-navy) 50%,
    #0c3d8a 100%) !important;
} */

.it-step-area {
  z-index: 11;
  overflow: hidden;
}



/* ─── CONTACT FORM GLASS ─────────────────────────────────── */
.contact-form-wrap,
.wpcf7-form,
.tp-contact-form,
form.contact {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(18px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
  border: 1px solid rgba(30, 136, 229, 0.18) !important;
  border-radius: 24px !important;
  box-shadow: 0 12px 48px rgba(3, 24, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  padding: 48px !important;
}

/* ─── SERVICE PANEL ──────────────────────────────────────── */
/* .tp-service-item.tp-service-panel {
  background: rgba(255,255,255,0.03) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  transition: background 0.35s ease !important;
} */
/* .tp-service-item.tp-service-panel:hover {
  background: rgba(30,136,229,0.04) !important;
} */
.tp-service-thumb img {
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(3, 24, 58, 0.14) !important;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.55s ease !important;
}

.tp-service-thumb:hover img {
  transform: scale(1.04) rotate(-1deg) !important;
  box-shadow: 0 18px 60px rgba(3, 24, 58, 0.2) !important;
}

/* ─── ABOUT THUMB ────────────────────────────────────────── */
.tp-about-thumb img,
.it-about-thumb img,
.st-about-area img {
  box-shadow: 0 12px 50px rgba(3, 24, 58, 0.18) !important;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.tp-about-thumb:hover img,
.it-about-thumb:hover img {
  transform: scale(1.03) !important;
}

/* info badges on about thumb */
.it-about-info-item {
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 8px 32px rgba(3, 24, 58, 0.2) !important;
  border-radius: 14px !important;
  transition: var(--oc-transition) !important;
}

.it-about-info-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 48px rgba(3, 24, 58, 0.28) !important;
}

/* ─── OCEAN HERO TITLE GLOW ──────────────────────────────── */
.tp-hero-2-title.about-us,
.tp-hero-2-title {
  text-shadow: 0 0 40px rgba(41, 182, 246, 0.3), 0 2px 8px rgba(3, 24, 58, 0.4) !important;
}

/* .ai-hero-title {
  text-shadow: 0 0 60px rgba(41, 182, 246, 0.25), 0 4px 16px rgba(3, 24, 58, 0.5) !important;
} */

/* ─── PRELOADER OCEAN WAVE ───────────────────────────────── */


/* ─── SERVICE FEATURE CARDS (services.php) ───────────────── */
.app-feature-item.feature-card-premium {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(14px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
  border: 1px solid rgba(30, 136, 229, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(3, 24, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: var(--oc-transition) !important;
  overflow: hidden;
  position: relative;
}

.app-feature-item.feature-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--oc-mid) 0%,
      var(--oc-sky) 50%,
      var(--oc-mid) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.app-feature-item.feature-card-premium:hover::before {
  opacity: 1;
}

.app-feature-item.feature-card-premium:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(3, 24, 58, 0.15), 0 4px 16px rgba(41, 182, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(30, 136, 229, 0.35) !important;
}

/* ─── CRP BLOG SERVICE SECTIONS ──────────────────────────── */
.service-section .crp-blog-item {
  border-radius: 20px !important;
  overflow: hidden;
}

.crp-blog-thumb img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
  border-radius: 14px !important;
}

.crp-blog-item:hover .crp-blog-thumb img {
  transform: scale(1.05) !important;
}

/* ─── INDUSTRIES PAGE ENHANCEMENTS ───────────────────────── */
.tp-project-item.mb-95 {
  transition: var(--oc-transition);
}

.tp-project-item.mb-95:hover .tp-project-content h4 a {
  color: var(--oc-mid) !important;
}

/* ─── COMPLIANCE PAGE ────────────────────────────────────── */
.tp-service-4-solution-wrap .tp-service-4-solution-item {
  background: var(--oc-glass-bg2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--oc-glass-border) !important;
  border-radius: 18px !important;
  box-shadow: var(--oc-shadow) !important;
  transition: var(--oc-transition) !important;
}

.tp-service-4-solution-wrap .tp-service-4-solution-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--oc-shadow-hover) !important;
  border-color: rgba(41, 182, 246, 0.4) !important;
}

/* ─── COMPLIANCE APPROACH CARDS ─────────────────────────── */
.approach-card-2 {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
  border: 1px solid rgba(30, 136, 229, 0.14) !important;
  border-radius: 18px !important;
  box-shadow: 0 6px 24px rgba(3, 24, 58, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: var(--oc-transition) !important;
  position: relative;
  overflow: hidden;
}

.approach-card-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oc-mid), var(--oc-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.approach-card-2:hover::after {
  transform: scaleX(1);
}

.approach-card-2:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 18px 52px rgba(3, 24, 58, 0.14), 0 4px 16px rgba(41, 182, 246, 0.15) !important;
  border-color: rgba(30, 136, 229, 0.32) !important;
}

/* ─── APPROACH DISTINCTION SECTION BACKGROUND ───────────── */
/* .approach-distinction-area {
  background: linear-gradient(160deg, #f5f9ff 0%, #eaf4fd 50%, #f0f7ff 100%) !important;
  position: relative;
  overflow: hidden;
}

.approach-distinction-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30, 136, 229, 0.05) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
} */

/* ─── HOME SERVICE SECTION SHAPES ───────────────────────── */
.home-service-area {
  position: relative;
  overflow: hidden;
}

.home-service-orbit {
  position: absolute;
  /* border-radius: 50%; */
  /* filter: blur(40px); */
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.home-service-orbit--left {
  width: 320px;
  height: 320px;
  top: 10px;
  left: -40px;
  /* background: radial-gradient(circle at 30% 30%, rgba(30, 136, 229, 0.4) 0%, rgba(3, 24, 58, 0) 65%); */
  animation: homeBlobDrift 26s ease-in-out infinite;
}

.home-service-orbit--right {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: -20px;
  background: radial-gradient(circle at 70% 70%, rgba(41, 182, 246, 0.35) 0%, rgba(3, 24, 58, 0) 70%);
}

/* ─── WHY CHOOSE US SECTION BACKGROUND IMAGE ────────────── */
.section-side-wave {
  background-image: linear-gradient(150deg, rgba(3, 24, 58, 0.95) 0%, rgba(6, 38, 84, 0.96) 45%, rgba(10, 74, 138, 0.9) 100%), url("assets/images/who-we-serve-img1.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}

/* ─── FOOTER DECOR (NO BUBBLES) ─────────────────────────── */
.crp-footer-bg {
  position: relative;
  overflow: hidden;
}

/* .crp-footer-bg::before,
.crp-footer-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
} */

/* .crp-footer-bg::before {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(41, 182, 246, 0.45) 0%, rgba(3, 24, 58, 0) 70%);
} */

.crp-footer-bg::after {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.4) 0%, rgba(3, 24, 58, 0) 70%);
}

/* animated footer shapes */
.footer-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* overflow: hidden; */
  z-index: 0;
}

.footer-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 40px rgba(41, 182, 246, 0.16);
  /* animation: footerOrbitDrift 26s ease-in-out infinite; */
}

.footer-orbit--left {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -40px;
}

.footer-orbit--right {
  width: 320px;
  height: 320px;
  top: -160px;
  right: -60px;
  /* animation-duration: 32s;
  animation-direction: alternate-reverse; */
}

@media (max-width: 576px) {
  .footer-orbit--right {

    /* animation-duration: 32s;
    animation-direction: alternate-reverse; */

    display: none;
  }
}

.footer-wave-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(180deg,
      rgb(255, 255, 255) 0%,
      rgba(255, 255, 255) 50%,
      rgba(255, 255, 255) 100%);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 110' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,60 C180,100 360,20 540,60 C720,100 900,20 1080,60 C1260,100 1350,40 1440,60 L1440,110 L0,110 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 110' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,60 C180,100 360,20 540,60 C720,100 900,20 1080,60 C1260,100 1350,40 1440,60 L1440,110 L0,110 Z' fill='black'/></svg>");
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  animation: footerWaveSlide 18s linear infinite;
  transform: rotate(180deg);
}

/* Hide footer wave animation below 576px */
@media (max-width: 575.98px) {
  .footer-wave-strip {
    /* display: none !important; */
    animation: none !important;
  }
}

/* @keyframes footerOrbitDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translate3d(20px, -10px, 0) scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: translate3d(-10px, 15px, 0) scale(1.02);
    opacity: 0.7;
  }
} */

@keyframes footerWaveSlide {
  0% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  100% {
    -webkit-mask-position: -100% 0;
    mask-position: -100% 0;
  }
}

/* subtle floating animation for custom SVG blob on services section */
@keyframes homeBlobDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }

  35% {
    transform: translate3d(25px, -18px, 0) scale(1.04) rotate(2deg);
  }

  65% {
    transform: translate3d(10px, 10px, 0) scale(0.98) rotate(-1.5deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

/* ─── GENERIC WHITE SECTION TEXTURE ─────────────────────── */
.oc-white-texture {
  position: relative;
  overflow: hidden;
}



/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {

  .oc-bubble:nth-child(4),
  .oc-bubble:nth-child(8) {
    display: none;
  }

  .oc-blob {
    filter: blur(40px);
  }

  .oc-hero-deco-shape {
    transform: scale(0.7);
  }
}

/* ─── MOBILE PERFORMANCE: kill expensive GPU animations ─── */
@media (max-width: 991px) {

  /* Hero gradient animation is the heaviest — disable on mobile */
  .ai-hero-area {
    animation: none !important;
    background: linear-gradient(145deg, #03183a 0%, #062654 40%, #0d3577 70%, #1565c0 100%) !important;
    background-size: 100% 100% !important;
  }

  /* Blob drift animations off — they force composite layers */
  .oc-blob {
    animation: none !important;
  }

  /* Bubble float animations off */
  .oc-bubble {
    animation: none !important;
  }

  /* wave22 rotation (used in dark sections) is very expensive */
  .wave22 {
    animation: none !important;
  }

  /* Footer wave slide off */
  .footer-wave-strip {
    animation: none !important;
  }

  /* Wave sway on SVG dividers off */
  .oc-wave-top svg,
  .oc-wave-bottom svg,
  .hero-wave-divider {
    animation: none !important;
  }

  /* Shimmer on badge off */
  .tp-section-subtitle.border-bg.bg-color::after {
    animation: none !important;
  }

  /* Sparkle lines off */
  .oc-sparkle-line {
    animation: none !important;
  }

  /* Service home bubbles off */
  .home-service-bubble {
    animation: none !important;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .oc-bubble,
  .oc-blob,
  .oc-hero-deco-shape,
  .hero-wave-divider,
  .oc-wave-top svg,
  .oc-wave-bottom svg,
  .oc-sparkle-line,
  .dgm-service-item {
    animation: none !important;
  }
}


.wave {
  position: absolute;
  bottom: -20px !important;
  left: 0;
  width: 100%;
  height: 10vh;
  background: url(https://i.imgur.com/DLD3N2t.png);
  background-size: 100vw 10vh;
}

.wave1 {
  animation: animate 20s linear infinite;
  z-index: 15;
  opacity: 0.9;
  animation-delay: 0s;
  bottom: 0;
}

.wave2 {
  animation: animate2 15s linear infinite;
  z-index: 10;
  opacity: 0.7;
  animation-delay: -5s;
  bottom: 10px;
}

.wave3 {
  animation: animate 10s linear infinite;
  z-index: 5;
  opacity: 0.4;
  animation-delay: -2s;
  bottom: 15px;
}

.wave4 {
  animation: animate2 5s linear infinite;
  z-index: 1;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 20px;
}

/* @keyframes animate {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100vw;
  }
} */
/* @keyframes animate2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -100vw;
  }
} */


/* sirf is section tak limited rahega */


/* Section Side Wave */


/*waves****************************/


.box22 {
  position: absolute;
  top: 0;
  transform: rotate(80deg);
  left: 0;
  z-index: -1;

}

.wave22 {
  position: absolute !important;
  top: 0 !important;
  left: 0;
  opacity: .4;

  top: 3%;
  left: 10%;
  background: rgb(49, 163, 239);
  width: 1400px;
  height: 1400px;
  margin-left: -150px;
  margin-top: -250px;
  transform-origin: 50% 48%;
  border-radius: 43%;
  animation: drift 7000ms infinite linear;
  z-index: 11;

}

@media (max-width: 768px) {
  .wave22 {
    width: 800px;
    height: 800px;
  }
}

.wave22.-three {
  animation: drift 7500ms infinite linear;
  position: fixed;
  background-color: #1b6bc2;
}

.wave22.-two {
  animation: drift 10000ms infinite linear;
  opacity: .1;
  background: #1b6bc2;
  position: fixed;
}

.box:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

/*LOADING SPACE*/

/* .contain {
  animation-delay: 4s;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  background: #25a7d7;
  background: -webkit-linear-gradient(#25a7d7, #2962FF);
  background: linear-gradient(#25a7d7, #25a7d7);
} */

/* .icon {
  width: 100px;
  height: 100px;
  margin: 0 5px;
} */

/*Animation*/
/* .icon:nth-child(2) img {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s
}

.icon:nth-child(3) img {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s
}

.icon:nth-child(4) img {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s
} */

/* .icon img {
  -webkit-animation: anim 10s ease infinite;
  animation: anim 10s ease infinite;
  -webkit-transform: scale(0, 0) rotateZ(180deg);
  transform: scale(0, 0) rotateZ(180deg);
} */

@-webkit-keyframes anim {
  0% {
    -webkit-transform: scale(0, 0) rotateZ(-90deg);
    transform: scale(0, 0) rotateZ(-90deg);
    opacity: 0
  }

  30% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1
  }

  50% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1
  }

  80% {
    -webkit-transform: scale(0, 0) rotateZ(90deg);
    transform: scale(0, 0) rotateZ(90deg);
    opacity: 0
  }
}

@keyframes anim {
  0% {
    -webkit-transform: scale(0, 0) rotateZ(-90deg);
    transform: scale(0, 0) rotateZ(-90deg);
    opacity: 0
  }

  30% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1
  }

  50% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1
  }

  80% {
    -webkit-transform: scale(0, 0) rotateZ(90deg);
    transform: scale(0, 0) rotateZ(90deg);
    opacity: 0
  }
}


.water-round-container {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #095c89;
  text-align: center;
  /* line-height: 50px; */
  animation: water-waves linear infinite;
}

.water-wave1 {
  position: absolute;
  top: 40%;
  left: -25%;
  background: #33cfff;
  opacity: 0.7;
  width: 200%;
  height: 200%;
  border-radius: 40%;
  animation: inherit;
  animation-duration: 5s;
}

.water-wave2 {
  position: absolute;
  top: 45%;
  left: -35%;
  background: #0eaffe;
  ;
  opacity: 0.5;
  width: 200%;
  height: 200%;
  border-radius: 35%;
  animation: inherit;
  animation-duration: 7s;
}

.water-wave3 {
  position: absolute;
  top: 50%;
  left: -35%;
  background: #0f7ae4;
  opacity: 0.3;
  width: 200%;
  height: 200%;
  border-radius: 33%;
  animation: inherit;
  animation-duration: 11s;
}

@keyframes water-waves {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




#ocean {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.wave {
  background: #a8e3ff;
  display: inline-block;
  height: 35%;
  width: 10px;
  position: absolute;
  bottom: 0;
  -webkit-animation-name: dostuff;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transition-timing-function: ease-in-out;
}

@-webkit-keyframes dostuff {
  0% {
    height: 18%;
  }

  50% {
    height: 32%;
  }

  100% {
    height: 40%;
  }
}



/* wrapper for all services-section decor */
.home-service-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Local bubbles just for this section */
.home-service-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(198, 236, 255, 0.7) 40%,
      rgba(198, 236, 255, 0.0) 100%);
  box-shadow: 0 0 18px rgba(49, 163, 239, 0.25);
  opacity: 0.75;
  animation: homeServiceBubbleFloat 12s ease-in-out infinite;
}

/* Different sizes/positions */
.home-service-bubble--1 {
  width: 60px;
  height: 60px;
  top: 14%;
  left: 55%;
  animation-delay: -2s;
}

.home-service-bubble--2 {
  width: 38px;
  height: 38px;
  top: 28%;
  left: 70%;
  animation-delay: -5s;
}

.home-service-bubble--3 {
  width: 48px;
  height: 48px;
  top: 36%;
  left: 30%;
  animation-delay: -8s;
}

/* Floating animation */
@keyframes homeServiceBubbleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.0;
  }

  15% {
    opacity: 0.8;
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.05);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.0;
  }
}

.row-outer {
  position: absolute;
  top: 0;
}

.row-outer .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 100vh; */
}

.row-outer .wrapper .shape {
  width: 300px;
  height: 300px;
  background: linear-gradient(64deg, #d0efff 23%, #d0efff 23%, #d0efff 80%);
  animation: moving-shape 8s ease-in-out infinite;
}

.row-outer2 {
  position: absolute;
  top: 0;

  right: 0;
}

.row-outer2 .wrapper2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 100vh; */
}

.row-outer2 .wrapper2 .shape2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(64deg, #d0efff 23%, #d0efff 23%, #d0efff 80%);
  /* animation: moving-shape 8s ease-in-out infinite; */
  border-radius: 66% 34% 37% 63% / 57% 31% 69% 43%;
  z-index: -1;
}


@keyframes moving-shape {

  0%,
  100% {
    border-radius: 66% 34% 37% 63% / 57% 31% 69% 43%;
  }

  50% {
    border-radius: 26% 74% 51% 49% / 22% 53% 47% 78%;
  }
}

.pp-service-details-solution-ptb {
  position: relative !important;
  z-index: 11;
}