:root {
  --primary: #0b3028;
  --accent: #16c784;
  --white: #ffffff;
  --dark: #0a0a0a;
  --gray-50: #f3fff9;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #5d6f68;
  --gray-700: #364b44;
  --gray-800: #1f2937;
  --gray-900: #112720;

  --gradient-primary: linear-gradient(135deg, #0b3028, #16c784);
  --gradient-accent: linear-gradient(135deg, #16c784, #b9ffe4);
  --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  --gradient-glass: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05));

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 30px rgba(22, 199, 132, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #16c784;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #16c784, #061c17);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #16c784, #061c17);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #16c784, #f1f1f1;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden !important;
  font-family: "Urbanist", sans-serif !important;
}

@keyframes steth-ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes steth-pulse-ring {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes stethTitleFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes stethTitleGlow {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.main {
  height: 100vh;
  width: 100%;
  position: relative;
  background: linear-gradient(115deg, #061c17, #0b3028, #16c784);
  overflow: hidden;
  padding: 120px 0;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 70% 80%,
      rgba(185, 255, 228, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 20% 60%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 40%);
  animation: backgroundFlow 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundFlow {

  0%,
  100% {
    background: radial-gradient(circle at 30% 20%,
        rgba(22, 199, 132, 0.15) 0%,
        transparent 60%),
      radial-gradient(circle at 70% 80%,
        rgba(185, 255, 228, 0.15) 0%,
        transparent 60%);
  }

  33% {
    background: radial-gradient(circle at 80% 30%,
        rgba(22, 199, 132, 0.2) 0%,
        transparent 60%),
      radial-gradient(circle at 20% 70%,
        rgba(185, 255, 228, 0.2) 0%,
        transparent 60%);
  }

  66% {
    background: radial-gradient(circle at 50% 80%,
        rgba(22, 199, 132, 0.18) 0%,
        transparent 60%),
      radial-gradient(circle at 60% 20%,
        rgba(185, 255, 228, 0.18) 0%,
        transparent 60%);
  }
}

.blur-circle {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: #16c784;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.floating-shape {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

/* .shape-circle-1 {
  top: 15%;
  left: 8%;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    45deg,
    rgba(22, 199, 132, 0.6),
    rgba(185, 255, 228, 0.4)
  );
  border-radius: 50%;
  animation: floatRotate 15s linear infinite;
  filter: blur(0.5px);
} */

.shape-circle-1 {
  top: 15%;
  left: 8%;
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.2) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 80%,
      rgba(185, 255, 228, 0.2) 0%,
      transparent 50%);
  border-radius: 50%;
  filter: blur(0.5px);
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-triangle-1 {
  top: 25%;
  right: 12%;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg,
      rgba(22, 199, 132, 0.6),
      rgba(185, 255, 228, 0.4));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: floatBounce 12s ease-in-out infinite;
}

.shape-square-1 {
  bottom: 30%;
  left: 20%;
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 50%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
  border-radius: 50%;
}

.shape-circle-2 {
  top: 80%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(185, 255, 228, 0.3), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-hexagon {
  bottom: 20%;
  right: 18%;
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg,
      rgba(22, 199, 132, 0.4),
      rgba(185, 255, 228, 0.4));
  border-radius: 50%;
  animation: morphFloat 16s ease-in-out infinite;
}

.shape-circle-3 {
  top: 20%;
  right: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-12 {
  bottom: 15%;
  left: 8%;
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.2) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 80%,
      rgba(185, 255, 228, 0.2) 0%,
      transparent 50%);
  border-radius: 50%;
  filter: blur(0.5px);
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-square-12 {
  bottom: 20%;
  left: 20%;
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 50%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
  border-radius: 50%;
}

.shape-circle-22 {
  bottom: 80%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(185, 255, 228, 0.3), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-32 {
  bottom: 10%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.particle-1 {
  top: 20%;
  left: 20%;
  width: 4px;
  height: 4px;
  animation: particleFloat1 25s linear infinite;
}

.particle-2 {
  top: 70%;
  left: 60%;
  width: 3px;
  height: 3px;
  animation: particleFloat2 30s linear infinite;
}

.particle-3 {
  top: 50%;
  left: 80%;
  width: 5px;
  height: 5px;
  animation: particleFloat3 20s linear infinite;
}

.particle-4 {
  top: 30%;
  left: 40%;
  width: 2px;
  height: 2px;
  animation: particleFloat4 35s linear infinite;
}

.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg,
      transparent,
      rgba(185, 255, 228, 0.3),
      transparent);
}

.grid-vertical {
  width: 1px;
  height: 100%;
  animation: slideDown 12s linear infinite;
}

.grid-horizontal {
  width: 100%;
  height: 1px;
  animation: slideRight 15s linear infinite;
}

.grid-line:nth-child(1) {
  left: 25%;
  animation-delay: -3s;
}

.grid-line:nth-child(2) {
  left: 75%;
  animation-delay: -8s;
}

.grid-line:nth-child(3) {
  top: 25%;
  animation-delay: -5s;
}

.grid-line:nth-child(4) {
  top: 75%;
  animation-delay: -10s;
}

.pulse-ring {
  position: absolute;
  border: 2px solid rgba(22, 199, 132, 0.3);
  border-radius: 50%;
  animation: pulseExpand 6s ease-out infinite;
  z-index: 1;
}

.pulse-1 {
  top: 30%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: -1s;
}

.pulse-2 {
  bottom: 35%;
  right: 25%;
  width: 120px;
  height: 120px;
  border-color: rgba(185, 255, 228, 0.3);
  animation-delay: -3s;
}

.pulse-3 {
  top: 70%;
  left: 60%;
  width: 60px;
  height: 60px;
  animation-delay: -5s;
}

.pulse-4 {
  bottom: 35%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(22, 199, 132, 0.3);
  animation-delay: -3s;
}

@media (max-width: 1200px) {
  .pulse-1 {
    display: none;
  }

  .pulse-2 {
    display: none;
  }

  .pulse-3 {
    display: none;
  }

  .pulse-4 {
    display: none;
  }

  .particle-1 {
    display: none;
  }

  .particle-2 {
    display: none;
  }

  .particle-3 {
    display: none;
  }

  .particle-4 {
    display: none;
  }
}

.main .center {
  height: 80%;
  width: 73%;
  position: absolute;
  left: 27%;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 10;
}

.main .imgContainer {
  overflow: hidden;
  position: absolute;
  width: 0%;
  height: 100%;
  z-index: 12;
}

.main img {
  height: 100%;
  width: 75%;
  object-fit: cover;
  object-position: center;
}

/* .main .main-heading {
  overflow: hidden;
  height: 125px;
  width: 800px;
  z-index: 15;
  position: absolute;
  top: 20%;
  left: -80px;
} */

.main .main-heading {
  overflow: hidden;
  height: 135px;
  width: 900px;
  z-index: 15;
  position: absolute;
  top: 25%;
  left: -80px;
}

.main .main-heading h1 {
  position: absolute;
  font-size: 9vw;
  top: 110px;
  font-weight: 400;
  color: #fff;
}

.main .lines {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: absolute;
  left: -200px;
  z-index: 15;
}

.main .line {
  height: 100px;
  width: 1px;
  background-color: #d3d3d370;
  transition: all 0.3s ease;
}

.main .line.active {
  background-color: #16c784;
  box-shadow: 0 0 10px rgba(22, 199, 132, 0.5);
}

.main .textContainer {
  position: absolute;
  width: 550px;
  height: 130px;
  overflow: hidden;
  padding: 10px;
  top: 55%;
  left: -80px;
  z-index: 15;
}

.main .text {
  position: absolute;
  top: -100%;
  color: #fff;
}

.main .imgContainer::before {
  position: absolute;
  content: " ";
  width: 75%;
  height: 100%;
  top: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: 13;
}

.icons-ss-slider {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 22px;
  right: 6%;
  bottom: 30%;
  justify-content: center;
  align-items: center;
  z-index: 11;
}

/* .icons-ss-slider a {
  color: #fff;
  display: inline-block;
  animation: zoomPulse 1.5s ease-in-out infinite;
}

.icons-ss-slider a:hover {
  color: #fff;
} */

.icons-ss-slider {
  display: flex;
  gap: 1.5rem;
}

.icons-ss-slider a {
  width: 40px;
  height: 40px;
  background: linear-gradient(-135deg, #0b3028, #16c784);
  border: 0px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  animation: zoomPulse 1.5s ease-in-out infinite;
}

@keyframes zoomPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes pulseMove {

  0%,
  100% {
    transform: scale(1) translateX(0);
    opacity: 0.7;
  }

  33% {
    transform: scale(1.2) translateX(-15px);
    opacity: 1;
  }

  66% {
    transform: scale(0.8) translateX(10px);
    opacity: 0.5;
  }
}

@keyframes particleFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(100vw, -100vh) scale(0);
    opacity: 0;
  }
}

@keyframes particleFloat2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translate(-80vw, -120vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes particleFloat3 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translate(-120vw, 100vh) scale(1.5);
    opacity: 0;
  }
}

@keyframes particleFloat4 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    transform: translate(80vw, 80vh);
    opacity: 0;
  }
}

@keyframes pulseExpand {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@media (min-width: 1600px) {
  .main .center {
    max-width: 1200px;
    left: 30%;
    width: 70%;
  }

  .main .main-heading h1 {
    font-size: 8rem;
  }
}

@media (max-width: 1500px) {
  .icons-ss-slider {
    font-size: 20px;
    right: 4%;
    bottom: 25%;
  }

  .main .main-heading {
    height: 130px;
  }
}

@media (max-width: 1300px) {
  .icons-ss-slider {
    right: 3%;
  }
}

@media (max-width: 1200px) {
  .main .textContainer {
    top: 50%;
  }

  .main .main-heading {
    height: 120px;
  }
}

@media (max-width: 992px) {
  .main .center {
    width: 80%;
    left: 20%;
  }

  /* .main .main-heading {
    overflow: hidden;
    height: 115px;
    width: 700px;
    top: 25%;
    left: -70px;
  }

  .main .main-heading h1 {
    font-size: 7vw;
  } */

  .main .textContainer {
    top: 60%;
  }

  .icons-ss-slider {
    right: 2%;
    font-size: 18px;
  }

  .main .textContainer {
    top: 45%;
    width: 420px;
  }

  .main .lines {
    left: -180px;
  }
}

@media (max-width: 768px) {
  .main {
    padding: 80px 0 50px;
    min-height: 100vh;
  }

  .main .center {
    width: 80%;
    left: 20%;
    height: 80%;
    position: absolute;
    top: 50%;
  }

  .main .main-heading {
    left: -50px;
    width: 600px;
    height: 100px;
    top: 30%;
    position: absolute;
  }

  .main .main-heading h1 {
    top: 110px;
    position: absolute;
  }

  .main .textContainer {
    left: -60px;
    width: 350px;
    top: 50%;
    position: absolute;
    height: 130px;
    overflow: hidden;
    padding: 10px;
  }

  .main .text {
    position: absolute;
    top: -100%;
    font-size: 0.9rem;
  }

  .main .lines {
    left: -170px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    position: absolute;
  }

  .main .line {
    height: 80px;
    width: 1px;
  }

  .icons-ss-slider {
    right: 2rem;
    bottom: 30%;
    position: absolute;
    font-size: 16px;
    gap: 15px;
  }
}

@media (max-width: 700px) {
  .main .textContainer {
    top: 46%;
  }
}

@media (max-width: 500px) {
  .main {
    min-height: 80vh;
    padding: 80px 0 40px;
  }

  /* .main .main-heading {
    left: -40px;
    width: 500px;
    height: 90px;
  }

  .main .textContainer {
    left: -40px;
    width: 320px;
    top: 50%;
  } */

  .main .textContainer {
    left: -60px;
    width: 300px;
    top: 50%;
    position: absolute;
    height: 130px;
    overflow: hidden;
    padding: 10px;
  }

  .main .lines {
    left: -150px;
  }

  .main .line {
    height: 70px;
  }

  .icons-ss-slider {
    right: 2rem;
    font-size: 14px;
    gap: 12px;
  }

  .blur-circle {
    width: 250px;
    height: 250px;
  }

  .main .center {
    height: 60%;
  }
}

@media (max-width: 375px) {
  .main .center {
    width: 70%;
    left: 30%;
  }

  .main .main-heading {
    left: -30px;
    width: 450px;
    height: 85px;
  }

  .main .main-heading h1 {
    font-size: 4.5vw;
  }

  .main .textContainer {
    left: -30px;
    width: 280px;
  }

  .main .text {
    font-size: 0.75rem;
  }

  .icons-ss-slider {
    font-size: 12px;
    gap: 10px;
  }

  .main .lines {
    left: -130px;
  }

  .main .line {
    height: 60px;
  }
}

/********************************************** END OF MAIN SECTION **********************************************/
.about {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 120px 0;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(185, 255, 228, 0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(185, 255, 228, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
}

.about-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(22, 199, 132, 0.3),
      transparent);
  animation: badgeShine 2s ease-in-out infinite;
}

.about-badge::after {
  content: "✨";
  font-size: 1.2rem;
  animation: stethContactSparkle 2s ease-in-out infinite;
}

.steth-ultra-title {
  margin-bottom: 2rem;
  background: linear-gradient(45deg,
      #ffffff 0%,
      #16c784 25%,
      #ffffff 50%,
      #0b3028 75%,
      #ffffff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: stethTitleFlow 4s ease-in-out infinite;
  position: relative;
}

.steth-ultra-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent,
      rgba(22, 199, 132, 0.1),
      transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: stethTitleGlow 3s ease-in-out infinite;
  z-index: -1;
}

.about h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #000, #16c784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 700px;
  font-weight: 400;
  line-height: 1.8;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0b3028, #16c784);
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(22, 199, 132, 0.6);
  background: linear-gradient(-135deg, #0b3028, #16c784);
  color: #fff;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gray-700);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #0b3028;
  transition: var(--transition);
}

.cta-secondary:hover {
  background: #0b3028;
  border-color: var(--primary);
  color: var(--gray-100);
}

.floating-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.floating-1 {
  top: 20%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  bottom: 30%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite reverse;
}

.floating-3 {
  top: 60%;
  right: 20%;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 1200px) {
  .floating-3 {
    top: 75%;
    right: 15%;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 1100px) {
  .floating-3 {
    right: 10%;
  }
}

@media (max-width: 870px) {
  .floating-3 {
    top: 80%;
    width: 60px;
    height: 60px;
    border-radius: 10px;
  }

  .about-content {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about-content {
    padding: 0 1rem;
  }

  .floating-3 {
    width: 50px;
    height: 50px;
  }

  .cta-group {
    justify-content: left;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .floating-3 {
    top: 95%;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .floating-2 {
    display: none;
  }

  .about-content {
    padding: 0 0.75rem;
  }
}

@media (max-width: 445px) {
  .cta-secondary {
    padding: 1rem 2.5rem;
  }

  .cta-primary,
  .cta-secondary {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}

/********************************************** END OF ABOUT SECTION **********************************************/
/********************************************** SERVICES CUBE SECTION **********************************************/

.services-section {
  min-height: 500vh;
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  position: relative;
  padding: 120px 0;
  overflow: visible;
}

.services-section .floating-shape,
.services-section .particle,
.services-section .pulse-ring {
  pointer-events: none;
}

.cube-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: center center;
  overflow: hidden;
}

.services-title {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  z-index: 10;
}

.cube-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  transform-style: preserve-3d;
  transition: transform 0.35s ease-out;
  will-change: transform;
  z-index: 4;
}
.cube-face {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 1. Brand Strategy */
.face-front {
  background-image: url("../images/Brand Strategy img1.webp");
  transform: translateZ(200px);
}

/* 2. Healthcare Brand Identity */
.face-right {
  background-image: url("../images/Healthcare Brand Identity img2.webp");
  transform: rotateY(90deg) translateZ(200px);
}

/* 3. Medical Brand Communication */
.face-back {
  background-image: url("../images/Medical Brand Communication img3.webp");
  transform: rotateY(180deg) translateZ(200px);
}

/* 4. Digital Brand Experience */
.face-left {
  background-image: url("../images/Digital Brand Experience img4.webp");
  transform: rotateY(-90deg) translateZ(200px);
}

/* Top and bottom can reuse nearby images */
.face-top {
  background-image: url("../images/Brand Strategy img1.webp");
  transform: rotateX(90deg) translateZ(200px);
}

.face-bottom {
  background-image: url("../images/Digital Brand Experience img4.webp");
  transform: rotateX(-90deg) translateZ(200px);
}
.service-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  pointer-events: none;
}

.service-text.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-text.left {
  left: 5%;
  text-align: left;
}

.service-text.right {
  right: 5%;
  text-align: right;
}

.service-name {
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  max-width: 420px;
  display: inline-block;
}

.service-name span {
  color: #16c784;
}

.service-name:hover {
  color: #fff;
}

.service-tagline {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  margin-top: 15px;
  max-width: 400px;
}

.navigation-arrows {
  position: absolute;
  bottom: 8%;
  left: 8%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.5rem;
}

.navigation-arrows:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 8%;
  right: 8%;
  font-size: 1rem;
  opacity: 0.7;
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .services-section {
    min-height: 480vh;
    padding: 100px 0;
  }

  .cube-wrapper {
    width: 330px;
    height: 330px;
  }

  .cube-face {
    width: 330px;
    height: 330px;
  }

  .face-front {
    transform: translateZ(165px);
  }

  .face-back {
    transform: rotateY(180deg) translateZ(165px);
  }

  .face-right {
    transform: rotateY(90deg) translateZ(165px);
  }

  .face-left {
    transform: rotateY(-90deg) translateZ(165px);
  }

  .face-top {
    transform: rotateX(90deg) translateZ(165px);
  }

  .face-bottom {
    transform: rotateX(-90deg) translateZ(165px);
  }

  .service-name {
    font-size: 42px;
    line-height: 50px;
    max-width: 340px;
  }

  .service-tagline {
    max-width: 340px;
    font-size: 0.9rem;
  }
}

/* Mobile: keep sticky scroll cube rotation */
@media (max-width: 768px) {
  .services-section {
    min-height: 560vh;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .cube-container {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 100vh;
    padding: 110px 15px 120px;
    align-items: center;
    overflow: hidden;
  }

  .services-title {
    position: absolute;
    top: 45px;
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    letter-spacing: 0.12em;
    width: 100%;
    text-align: center;
    z-index: 10;
  }

  .cube-wrapper {
    width: 280px;
    height: 280px;
    margin-top: 20px;
  }

  .cube-face {
    width: 280px;
    height: 280px;
  }

  .face-front {
    transform: translateZ(140px);
  }

  .face-back {
    transform: rotateY(180deg) translateZ(140px);
  }

  .face-right {
    transform: rotateY(90deg) translateZ(140px);
  }

  .face-left {
    transform: rotateY(-90deg) translateZ(140px);
  }

  .face-top {
    transform: rotateX(90deg) translateZ(140px);
  }

  .face-bottom {
    transform: rotateX(-90deg) translateZ(140px);
  }

  .service-text,
  .service-text.left,
  .service-text.right {
    top: auto;
    left: 50%;
    right: auto;
    bottom: 60px;
    width: calc(100% - 40px);
    max-width: 430px;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(8px);
    padding: 18px 15px;
  }

  .service-name {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.12;
    max-width: 100%;
  }

  .service-tagline {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 12px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 480px) {
  .services-section {
    min-height: 620vh;
  }

  .cube-container {
    height: 100vh;
    min-height: 100vh;
    padding: 105px 12px 110px;
  }

  .cube-wrapper {
    width: 240px;
    height: 240px;
  }

  .cube-face {
    width: 240px;
    height: 240px;
  }

  .face-front {
    transform: translateZ(120px);
  }

  .face-back {
    transform: rotateY(180deg) translateZ(120px);
  }

  .face-right {
    transform: rotateY(90deg) translateZ(120px);
  }

  .face-left {
    transform: rotateY(-90deg) translateZ(120px);
  }

  .face-top {
    transform: rotateX(90deg) translateZ(120px);
  }

  .face-bottom {
    transform: rotateX(-90deg) translateZ(120px);
  }

  .service-text,
  .service-text.left,
  .service-text.right {
    bottom: 45px;
    width: calc(100% - 26px);
    padding: 15px 12px;
  }

  .service-name {
    font-size: clamp(25px, 8.8vw, 36px);
  }

  .service-tagline {
    font-size: 12px;
  }
}

/********************************************** END OF SERVICE SECTION **********************************************/

/********************************************** END OF SERVICE SECTION **********************************************/



/* .features {
  padding: 120px 0;
  background: #f3fff9;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
} */
 /* already * */
/* .section-badge {
  display: inline-block;
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(185, 255, 228, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.044),
    transparent
  );
  animation: stethContactBadgeShine 3s infinite;
}
  
@keyframes stethContactBadgeShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}*/
*

/* 
.section-badge {
  background: linear-gradient(135deg,
      rgba(22, 199, 132, 0.2),
      rgba(185, 255, 228, 0.2));
  backdrop-filter: blur(20px);
 
  display: inline-flex;
  align-items: center;
  background: var(--gradient-glass);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(185, 255, 228, 0.2);
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2rem;
}

.section-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(22, 199, 132, 0.3),
      transparent);
  animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.section-badge::after {
  content: "✨";
  font-size: 1.2rem;
  animation: stethContactSparkle 2s ease-in-out infinite;
}

@keyframes stethContactSparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(60deg);
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title span {
  color: #16c784;
}

.section-description {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid #0b3028;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  animation: flip 2s infinite linear;
  transform-style: preserve-3d;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.stethlink-img {
  max-width: 400px;
}

.stethlink-img img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .stethlink-img {
    margin: 0 auto;
    max-width: 350px;
  }

  .feature-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .stethlink-img {
    max-width: 300px;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 2rem;
    margin-top: 30px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    padding: 0 0.75rem;
  }

  .stethlink-img {
    max-width: 250px;
  }

  .feature-card {
    padding: 1.5rem;
    margin: 0 0.75rem;
    margin-top: 25px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
} */








.features {
  padding: 120px 0;
  background: #f3fff9;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(185, 255, 228, 0.2);
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2rem;
}

.section-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(22, 199, 132, 0.3), transparent);
  animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

.section-badge::after {
  content: "✨";
  font-size: 1.2rem;
  animation: stethContactSparkle 2s ease-in-out infinite;
}

@keyframes stethContactSparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.2) rotate(60deg); }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title span {
  color: #16c784;
}

.section-description {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* ── Centered steth-boy image ── */
.stethlink-img-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1rem;
}

.stethlink-img-center img {
  max-width: 420px;
  width: 100%;
  object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .features {
    padding: 100px 0;
  }

  .stethlink-img-center img {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .stethlink-img-center img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 60px 0;
  }

  .section-header {
    padding: 0 0.75rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-description {
    font-size: 1rem;
  }

  .stethlink-img-center img {
    max-width: 220px;
  }
}





/********************************************** END OF FEATURES SECTION **********************************************/
.creative-works-container {
  position: relative;
  height: 500vh;
  perspective: 1000px;
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  padding: 120px 0;
}

.creative-works-maincvr {
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  color: #fff;
  overflow-x: hidden;
}

/* .creative-about-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
} */

/* .creative-works-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  z-index: 10;
  text-align: left;
  line-height: 10rem;
} */

.creative-works-title {
  position: relative;
  /* font-size: clamp(2rem, 5vw, 8rem); */
  text-align: center;
  /* text-transform: uppercase; */
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 150px;
  line-height: 160px;
  font-weight: 700;
  width: 100%;
  gap: 5px;
}

.creative-works-title div {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.creative-works-title div:first-of-type {
  animation: showup 7s infinite;
  font-size: 90px;
  line-height: 100px;
}

.creative-works-title div:last-of-type {
  width: 0;
  animation: reveal 7s infinite;
}

.creative-works-title div:last-of-type span {
  display: inline-block;
  transform: translateX(-70%);
  animation: slidein 7s infinite;
}

@keyframes showup {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes slidein {

  0%,
  20% {
    transform: translateX(-30%);
  }

  35%,
  100% {
    transform: translateX(0);
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
    width: 0;
  }

  20% {
    opacity: 1;
    width: 0;
  }

  30% {
    width: 7ch;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 7ch;
  }
}

.creative-works-maincvr h1 {
  font-size: 3rem;
  text-align: center;
  color: #fff;
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

.creative-works-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.creative-work-item {
  position: absolute;
  width: 40vw;
  height: 60vh;
  background-size: cover;
  background-position: center;
  transform: translateZ(0px) scale(0.6);
  transition: all 0.5s ease-out;
  opacity: 0;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.creative-work-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: "Urbanist", sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: ease-in-out 0.4s;
}

.creative-work-caption:hover {
  color: #16c784;
}

.creative-progress-container {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.creative-progress-container.creative-visible {
  opacity: 1;
  visibility: visible;
}

.creative-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  border: none;
}

.creative-progress-dot.creative-active {
  background-color: white;
  transform: scale(1.5);
}

/* @media (max-width: 768px) {
  .creative-work-caption {
    font-size: 1.2rem;
    bottom: -40px;
  }

  .creative-work-item {
    width: 80vw;
    height: 50vh;
  }

  .creative-works-footer h2 {
    font-size: 2rem;
  }

  .creative-about-section h1 {
    font-size: 2.5rem;
  }

  .creative-progress-container {
    right: 10px;
  }

  .creative-progress-dot {
    width: 10px;
    height: 10px;
  }
} */

@media (max-width: 1200px) {
  .creative-works-title {
    font-size: 120px;
    line-height: 130px;
    gap: 4px;
  }

  .creative-works-title div:first-of-type {
    font-size: 75px;
    line-height: 85px;
  }

  .creative-work-item {
    width: 45vw;
    height: 55vh;
  }

  .creative-work-caption {
    font-size: 35px;
    line-height: 45px;
    bottom: -55px;
  }

  .creative-progress-container {
    right: 20px;
  }
}

@media (max-width: 992px) {
  .creative-works-container {
    height: 450vh;
  }

  .creative-works-title {
    font-size: 100px;
    line-height: 110px;
    gap: 3px;
    flex-direction: column;
  }

  .creative-works-title div:first-of-type {
    font-size: 65px;
    line-height: 75px;
  }

  .creative-work-item {
    width: 50vw;
    height: 50vh;
  }

  .creative-work-caption {
    font-size: 30px;
    line-height: 40px;
    bottom: -50px;
  }

  .creative-progress-container {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .creative-works-container {
    height: auto;
    min-height: auto;
    padding: 80px 0;
    perspective: none;
    overflow: hidden;
    background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  }

  .creative-works-wrapper {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform-style: flat;
    padding: 0 15px;
    gap: 65px;
  }

  .creative-works-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    white-space: normal;
    overflow: visible;
    font-size: 60px;
    line-height: 68px;
    padding: 0 15px;
    margin-bottom: 10px;
    gap: 0;
  }

  .creative-works-title div {
    width: auto;
    overflow: visible;
    white-space: normal;
    animation: none;
    opacity: 1;
  }

  .creative-works-title div:first-of-type {
    font-size: 36px;
    line-height: 44px;
    animation: none;
  }

  .creative-works-title div:last-of-type {
    width: auto;
    margin-top: 4px;
    animation: none;
  }

  .creative-works-title div:last-of-type span {
    transform: none;
    animation: none;
  }

  .creative-work-item {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 520px;
    height: 320px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    transition: none;
  }

  .creative-work-caption {
    position: absolute;
    left: 0;
    bottom: -42px;
    width: 100%;
    opacity: 1;
    visibility: visible;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    padding: 0 12px;
    transition: none;
  }

  .creative-progress-container {
    display: none;
  }
}

@media (max-width: 500px) {
  .creative-works-container {
    height: auto;
    min-height: auto;
    padding: 70px 0;
  }

  .creative-works-wrapper {
    gap: 58px;
  }

  .creative-works-title {
    font-size: 50px;
    line-height: 58px;
    padding: 0 15px;
    margin-bottom: 5px;
  }

  .creative-works-title div:first-of-type {
    font-size: 30px;
    line-height: 38px;
  }

  .creative-work-item {
    width: 100%;
    height: 270px;
  }

  .creative-work-caption {
    bottom: -36px;
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 375px) {
  .creative-works-container {
    height: auto;
    min-height: auto;
    padding: 60px 0;
  }

  .creative-works-wrapper {
    gap: 52px;
  }

  .creative-works-title {
    font-size: 44px;
    line-height: 52px;
  }

  .creative-works-title div:first-of-type {
    font-size: 28px;
    line-height: 36px;
  }

  .creative-work-item {
    height: 240px;
  }

  .creative-work-caption {
    bottom: -32px;
    font-size: 15px;
    line-height: 20px;
  }
}

/********************************************** END OF CREATIVE WORK SECTION **********************************************/
.stethlink-testimonials-wrapper {
  padding: 120px 0;
  /* background: linear-gradient(135deg, #0b3028 0%, #16c784 100%); */
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.stethlink-testimonials-wrapper h2 {
  text-align: center;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

@keyframes stethTestiFloatBg {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  25% {
    transform: translateX(-10px) translateY(-15px);
  }

  50% {
    transform: translateX(10px) translateY(-10px);
  }

  75% {
    transform: translateX(-5px) translateY(15px);
  }
}

.stethlink-testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.stethlink-testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stethlink-testimonials-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stethlink-testimonials-subtitle {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.stethlink-testimonials-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
  padding: 0px 50px 20px 50px;
}

.stethlink-testimonials-images {
  position: relative;
  width: 100%;
  height: 28rem;
  perspective: 1200px;
}

.stethlink-testimonials-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.stethlink-testimonials-content-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 28rem;
  padding-left: 50px;
}

.stethlink-testimonials-text {
  margin-bottom: 2.5rem;
}

.stethlink-testimonials-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  opacity: 1;
  transition: all 0.3s ease;
}

.stethlink-testimonials-role {
  font-size: 1rem;
  color: #16c784;
  margin-bottom: 2rem;
  font-weight: 600;
  opacity: 1;
  transition: all 0.3s ease;
}

.stethlink-testimonials-quote {
  font-size: 1.3rem;
  /* color: rgba(0, 0, 0, 0.9); */
  color: var(--gray-600);
  font-size: 1.2em;
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 1;
  transition: all 0.3s ease;
}

.stethlink-testimonials-word {
  display: inline-block;
  opacity: 1;
}

.stethlink-testimonials-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.stethlink-testimonials-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 15px;
  background: linear-gradient(-45deg, #16c784bc, #061c1782);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stethlink-testimonials-btn:hover {
  background: linear-gradient(45deg, #16c784bc, #061c1782);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(22, 199, 132, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.stethlink-testimonials-btn:active {
  transform: translateY(0) scale(0.95);
}

.stethlink-testimonials-btn2 {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.1); */
  background: linear-gradient(90deg, #061c17, #16c784);
  /* backdrop-filter: blur(20px); */
  border: 2px solid rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 1.2rem;
}

.stethlink-testimonials-btn2:hover {
  background: #16c784;
  border-color: #16c784;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 199, 132, 0.3);
}

.stethlink-testimonials-btn2:active {
  transform: translateY(0);
}

.stethlink-testimonials-progress {
  margin-top: 2rem;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.stethlink-testimonials-progress-bar {
  height: 100%;
  background-color: #16c784;
  /* background: linear-gradient(90deg, #0b3028, #b9ffe4); */
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.stethlink-testimonials-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.stethlink-testimonials-float-1 {
  top: 10%;
  right: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #16c784, #16c784);
  border-radius: 50%;
  animation: stethTestiFloat1 8s ease-in-out infinite;
}

.stethlink-testimonials-float-2 {
  bottom: 15%;
  left: 5%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(45deg, #16c784, #16c784);
  /* border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%; */
  animation: stethTestiFloat2 10s ease-in-out infinite reverse;
}

.stethlink-testimonials-float-3 {
  top: 90%;
  right: 5%;
  width: 30px;
  height: 30px;
  background: linear-gradient(185deg, #16c784, #16c784);
  /* backdrop-filter: blur(10px); */
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: stethTestiFloat3 12s ease-in-out infinite;
}

@keyframes stethTestiFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes stethTestiFloat2 {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.1);
  }
}

@keyframes stethTestiFloat3 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(120deg);
  }

  66% {
    transform: translateY(-5px) rotate(240deg);
  }
}

@media (max-width: 992px) {
  .stethlink-testimonials-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stethlink-testimonials-images {
    height: 22rem;
    order: 1;
  }

  .stethlink-testimonials-content-area {
    order: 2;
    min-height: auto;
    text-align: center;
  }

  .stethlink-testimonials-content-area {
    padding-left: 0px;
  }

  .stethlink-testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .stethlink-testimonials-wrapper h2 {
    text-align: center;
    width: unset;
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .stethlink-testimonials-wrapper {
    padding: 80px 0;
  }

  .stethlink-testimonials-container {
    padding: 0 1rem;
  }

  .stethlink-testimonials-main {
    gap: 2rem;
  }

  .stethlink-testimonials-images {
    height: 18rem;
  }

  .stethlink-testimonials-name {
    font-size: 1.5rem;
  }

  .stethlink-testimonials-quote {
    font-size: 1.1rem;
  }
}

/********************************************** END OF TESTIMONIALS SECTION **********************************************/
.clientsection {
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  overflow: hidden;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.clientsection h2 {
  color: #fff;
}

.clientsection p {
  color: #fff;
}

.marquee-logo-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.marquee-row {
  margin-bottom: 30px;
  height: unset;
  display: flex;
  align-items: center;
}

.marquee-row:last-child {
  margin-bottom: 0;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  padding: 10px 0px;
}

marquee {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.marquee-logo-slide {
  /* background: rgba(255, 255, 255, 0.93); */
  background-color: #e2e2e200;
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 15px 25px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); */
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 180px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
  overflow: hidden;
}

.marquee-logo-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.6s ease;
}

.marquee-logo-slide:hover::before {
  left: 100%;
}

.marquee-logo-slide:hover {
  transform: translateY(-5px) scale(1.05);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); */
  /* background: rgba(255, 255, 255, 1); */
}

.marquee-logo-slide__image {
  display: block;
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.marquee-logo-slide:hover .marquee-logo-slide__image {
  transform: scale(1.1);
}

.marquee-row:hover marquee {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.marquee-logo-ticker::before,
.marquee-logo-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.marquee-logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
}

.marquee-logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
}

@media screen and (max-width: 768px) {
  .clientsection {
    padding: 80px 0;
  }

  .marquee-logo-ticker {
    padding: 20px 0;
    border-radius: 15px;
  }

  .marquee-row {
    height: 80px;
    margin-bottom: 20px;
  }

  .marquee-logo-slide {
    width: 150px;
    height: 60px;
    padding: 10px 15px;
    margin-right: 15px;
  }

  .marquee-logo-slide__image {
    max-height: 35px;
  }

  .marquee-content {
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .marquee-logo-slide {
    width: 120px;
    height: 50px;
    padding: 8px 12px;
    margin-right: 10px;
  }

  .marquee-logo-slide__image {
    max-height: 30px;
  }

  .marquee-content {
    gap: 10px;
  }
}

/********************************************** END OF MARGUEE SECTION **********************************************/
.steth-premium-contact {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.steth-premium-contact-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.steth-premium-contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--steth-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(45deg,
      #ffffff 0%,
      #16c784 25%,
      #ffffff 50%,
      #0b3028 75%,
      #ffffff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: stethContactTitleFlow 4s ease-in-out infinite;
}

@keyframes stethContactTitleFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.steth-premium-contact-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.steth-premium-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.steth-premium-contact-info {
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  backdrop-filter: blur(20px);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.steth-premium-contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--steth-gradient-accent);
  border-radius: 24px 24px 0 0;
}

.steth-premium-contact-info-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.steth-premium-contact-info-desc {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.steth-premium-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steth-premium-contact-detail {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.steth-premium-contact-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: var(--transition);
}

.steth-premium-contact-detail:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(22, 199, 132, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.steth-premium-contact-detail:hover::before {
  left: 100%;
}

.steth-premium-contact-detail:hover .steth-contact-action-hint {
  opacity: 1;
  transform: translateY(0);
}

.steth-contact-action-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(75deg, #0b3028, #16c784);
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(22, 199, 132, 0.3);
  text-decoration: none;
}

.steth-premium-contact-detail-icon {
  width: 50px;
  height: 50px;
  background: #16c784;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(22, 199, 132, 0.3);
}

.steth-premium-contact-detail-content {
  flex: 1;
}

.steth-premium-contact-detail-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.steth-premium-contact-detail-text {
  color: #fff;
  font-size: 0.95rem;
  /* padding-bottom: 1.5rem; */
}

.steth-premium-contact-form-wrapper {
  background: #0a0a0a0c;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem 3rem 3rem;
  height: 100%;
}

.steth-premium-contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--steth-gradient-primary);
  border-radius: 24px 24px 0 0;
}

.steth-premium-form-group {
  margin-bottom: 2rem;
  position: relative;
}

.steth-premium-form-label {
  display: block;
  margin-bottom: 0.75rem;
  color: #b8b8b8;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.steth-premium-form-input,
.steth-premium-form-textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #fff;
  position: relative;
  z-index: 2;
}

.steth-premium-form-input:focus,
.steth-premium-form-textarea:focus {
  outline: none;
  border-color: none;
  box-shadow: 0 0 0 2px rgba(185, 255, 228, 0.1);
  transform: translateY(-2px);
}

.steth-premium-form-input:focus+.steth-premium-form-focus-bg,
.steth-premium-form-textarea:focus+.steth-premium-form-focus-bg {
  transform: scaleX(1);
}

.steth-premium-form-focus-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(185, 255, 228, 0.05),
      rgba(22, 199, 132, 0.05));
  border-radius: 16px;
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 1;
}

span.steth-floating-label {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  color: rgb(55, 65, 81);
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgb(255, 255, 255);
  padding: 0px 12rem 0px 0.5rem !important;
  z-index: 3;
  transform: translateY(0px) scale(1);
}

.steth-premium-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.steth-premium-submit-btn {
  width: 100%;
  background: linear-gradient(75deg, #0b3028, #16c784);
  color: #fff;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 25px;
}

.steth-premium-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: var(--transition);
}

.steth-premium-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(185, 255, 228, 0.4);
  background: linear-gradient(-75deg, #0b3028, #16c784);
}

.steth-premium-submit-btn:hover::before {
  left: 100%;
}

.steth-premium-submit-btn:active {
  transform: translateY(-1px);
}

.steth-premium-submit-btn.steth-loading {
  pointer-events: none;
  opacity: 0.8;
}

.steth-premium-submit-btn.steth-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--steth-white);
  border-radius: 50%;
  animation: stethContactSpin 1s linear infinite;
}

@keyframes stethContactSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Modal Popup System */
.steth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.steth-modal-overlay.steth-modal-active {
  opacity: 1;
  visibility: visible;
}

.steth-modal-content {
  background: var(--steth-white);
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
}

.steth-modal-overlay.steth-modal-active .steth-modal-content {
  transform: scale(1) translateY(0);
}

.steth-modal-header {
  background: var(--steth-gradient-primary);
  color: var(--steth-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.steth-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.steth-modal-close {
  background: none;
  border: none;
  color: var(--steth-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steth-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.steth-modal-body {
  padding: 2rem;
}

.steth-modal-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.steth-modal-video {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.steth-modal-description {
  color: var(--steth-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.steth-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.steth-modal-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.steth-modal-btn-primary {
  background: var(--steth-gradient-primary);
  color: var(--steth-white);
}

.steth-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(185, 255, 228, 0.3);
}

.steth-modal-btn-secondary {
  background: var(--steth-gray-100);
  color: var(--steth-gray-700);
}

.steth-modal-btn-secondary:hover {
  background: var(--steth-gray-200);
}

.steth-premium-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  color: var(--steth-white);
  font-weight: 600;
  z-index: 10000;
  transform: translateX(400px);
  transition: var(--transition);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--steth-shadow-xl);
}

.steth-premium-notification.steth-success {
  background: var(--steth-gradient-primary);
}

.steth-premium-notification.steth-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.steth-premium-notification.steth-show {
  transform: translateX(0);
}

@media (max-width: 1024px) {

  .steth-premium-contact-info,
  .steth-premium-contact-form-wrapper {
    padding: 2.5rem;
  }
}

@media (max-width: 992px) {
  .steth-premium-contact-info {
    margin-bottom: 50px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .steth-premium-contact {
    padding: 80px 0;
  }

  .steth-premium-contact-container {
    padding: 0 1.5rem;
  }

  .steth-premium-contact-header {
    margin-bottom: 3rem;
  }

  .steth-premium-contact-badge {
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
  }

  .steth-premium-contact-info,
  .steth-premium-contact-form-wrapper {
    padding: 2rem;
    border-radius: 20px;
  }

  .steth-premium-contact-detail {
    padding: 1.25rem;
    gap: 1rem;
  }

  .steth-premium-contact-detail-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  /* .steth-premium-form-input,
  .steth-premium-form-textarea {
    padding: 1rem 1.25rem;
    border-radius: 12px;
  } */

  @media (max-width: 768px) {

    .steth-premium-form-input,
    .steth-premium-form-textarea {
      padding: 1rem 2.25rem;
      border-radius: 12px;
    }
  }

  .steth-premium-submit-btn {
    padding: 1rem 1.5rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .steth-premium-contact-container {
    padding: 0 1rem;
  }

  .steth-premium-contact-info,
  .steth-premium-contact-form-wrapper {
    padding: 1.5rem;
  }

  .steth-premium-contact-detail {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .steth-premium-form-group {
    margin-bottom: 1.5rem;
  }

  .steth-premium-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    padding: 1rem 1.5rem;
  }
}













/********************************************** PREMIUM DARK GREEN FOOTER SECTION **********************************************/

:root {
  --premiumGreenDark: #062f29;
  --premiumGreenDeep: #0b4339;
  --premiumGreen: #116b5a;
  --premiumGreenLight: #2fa88d;
  --premiumWhite: #ffffff;
  --premiumWhiteSoft: #eefaf6;
  --premiumTextSoft: #d7eee7;
  --premiumBorder: rgba(255, 255, 255, 0.14);
  --premiumGold: #c8a45d;
  --premiumShadow: rgba(0, 0, 0, 0.28);
}

.steth-contact-footer {
  background:
    radial-gradient(circle at 18% 22%, rgba(47, 168, 141, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(200, 164, 93, 0.12) 0%, transparent 32%),
    linear-gradient(135deg, #062f29 0%, #0b4339 48%, #021b18 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.steth-contact-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 42%);
  z-index: 1;
}

.steth-contact-footer::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 36px;
  pointer-events: none;
  z-index: 1;
}

.steth-contact-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.steth-contact-large-text {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.steth-contact-title {
  font-size: 210px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  line-height: 0.8;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.steth-contact-title:hover {
  color: var(--premiumWhite);
  -webkit-text-stroke: 0;
}

.steth-contact-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 164, 93, 0.9) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: steth-contact-text-glow 3s ease-in-out infinite;
  opacity: 0.35;
}

@keyframes steth-contact-text-glow {
  0%,
  100% {
    background-position: -200% 0;
  }

  50% {
    background-position: 200% 0;
  }
}

.steth-send-message-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--premiumWhite);
  color: var(--premiumGreenDark);
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  z-index: 10;
  text-decoration: none;
}

.steth-send-message-btn:hover {
  background: var(--premiumGold);
  color: var(--premiumGreenDark);
  transform: translate(-50%, -50%) translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
  text-decoration: none;
}

.steth-send-message-btn::after {
  content: "→";
  margin-left: 0.5rem;
  font-size: 1.2rem;
  transition: var(--transition);
}

.steth-send-message-btn:hover::after {
  transform: translateX(5px);
}

.steth-footer-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-top: 60px;
  position: relative;
  z-index: 5;
}

.steth-footer-content-grid * {
  position: relative;
  z-index: 10;
}

.steth-footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.steth-footer-logo img {
  width: 100%;
  object-fit: cover;
}

.steth-footer-section,
.steth-footer-brand {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

.steth-footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--premiumWhite);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premiumGreenDark);
  font-size: 1.5rem;
  transform: rotate(-10deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

.steth-footer-logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--premiumWhite);
  letter-spacing: -0.02em;
}

.steth-footer-description {
  color: var(--premiumTextSoft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 300px;
}

.steth-footer-social {
  display: flex;
  gap: 1rem;
}

.steth-footer-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--premiumBorder);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premiumWhite);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.steth-footer-social-link:hover {
  background: var(--premiumWhite);
  color: var(--premiumGreenDark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.steth-footer-section {
  display: flex;
  flex-direction: column;
}

.steth-footer-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--premiumWhite);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.steth-footer-section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--premiumGold);
  margin-top: 0.75rem;
}

.steth-footer-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steth-footer-office-address {
  color: var(--premiumTextSoft);
  font-size: 1rem;
  line-height: 1.7;
}

.steth-footer-office-address b {
  color: var(--premiumWhite);
}

.steth-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--premiumTextSoft);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.steth-footer-contact-item:hover {
  color: var(--premiumWhite);
  transform: translateX(5px);
}

.steth-footer-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--premiumGold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steth-footer-menu-link {
  color: var(--premiumTextSoft);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.steth-footer-menu-link:hover {
  color: var(--premiumWhite);
  transform: translateX(10px);
}

.steth-footer-menu-link::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--premiumGold);
  transition: var(--transition);
}

.steth-footer-menu-link:hover::before {
  width: 8px;
}

.steth-footer-developer-credit {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--premiumBorder);
  text-align: center;
}

.steth-developer-credit-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.steth-developer-text {
  color: var(--premiumTextSoft);
  font-weight: 400;
}

.steth-developer-name {
  color: var(--premiumWhite);
  font-weight: 800;
  letter-spacing: 0.06em;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.steth-developer-name:hover {
  color: var(--premiumGold);
  transform: translateY(-1px);
}

.steth-developer-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--premiumGold);
  transition: var(--transition);
}

.steth-developer-name:hover::after {
  width: 100%;
}

.stethlink-img2 {
  max-width: 400px;
}

.stethlink-img2 img {
  width: 100%;
  object-fit: cover;
  animation: breathing 4s ease-in-out infinite;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.24));
}

@keyframes breathing {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1) drop-shadow(0 22px 40px rgba(0, 0, 0, 0.24));
  }

  50% {
    transform: scale(1.08);
    opacity: 0.96;
    filter: brightness(1.06) drop-shadow(0 26px 48px rgba(0, 0, 0, 0.30));
  }
}

/* Footer decorative shapes premium color update */
.steth-contact-footer .floating-shape {
  opacity: 0.55;
}

.steth-contact-footer .shape-circle-12,
.steth-contact-footer .shape-circle-22,
.steth-contact-footer .shape-circle-3 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
}

.steth-contact-footer .shape-square-12 {
  background: radial-gradient(circle, rgba(200, 164, 93, 0.24), transparent 55%);
}

.steth-contact-footer .pulse-ring {
  border-color: rgba(255, 255, 255, 0.18);
}

.steth-contact-footer .particle {
  background: rgba(255, 255, 255, 0.42);
}

/* Responsive */
@media (max-width: 1300px) {
  .steth-contact-title {
    font-size: 180px;
  }
}

@media (max-width: 1200px) {
  .steth-contact-title {
    font-size: 150px;
  }
}

@media (max-width: 1024px) {
  .steth-footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .steth-contact-title {
    font-size: clamp(4rem, 12vw, 14rem);
  }
}

@media (max-width: 992px) {
  .stethlink-img2 {
    max-width: 400px;
    margin: 0 auto;
  }

  .stethlink-img2 img {
    margin-bottom: 60px;
  }

  .steth-contact-title {
    font-size: 140px;
    text-align: center;
  }

  .steth-footer-content-grid {
    margin-top: 40px;
  }

  .steth-footer-section-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .steth-contact-footer {
    padding: 80px 0 40px;
  }

  .steth-contact-footer::after {
    inset: 14px;
    border-radius: 24px;
  }

  .steth-contact-footer-container {
    padding: 0 1.5rem;
  }

  .steth-footer-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steth-contact-title {
    font-size: 110px;
  }

  .steth-send-message-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .steth-contact-large-text {
    margin-bottom: 60px;
  }

  .steth-footer-developer-credit {
    margin-top: 3rem;
    padding-top: 1.5rem;
  }

  .steth-developer-credit-content {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .steth-contact-title {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .steth-contact-footer {
    padding: 60px 0 30px;
  }

  .steth-contact-footer-container {
    padding: 0 1rem;
  }

  .steth-footer-content-grid {
    gap: 2rem;
  }

  .steth-send-message-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .steth-footer-developer-credit {
    margin-top: 2rem;
    padding-top: 1rem;
  }

  .steth-developer-credit-content {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 0.2rem;
  }
}

@keyframes steth-footer-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steth-footer-animate {
  animation: steth-footer-fade-in 0.8s ease-out forwards;
}

.steth-footer-section,
.steth-footer-brand {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.steth-footer-section.steth-animate,
.steth-footer-brand.steth-animate {
  opacity: 1;
  transform: translateY(0);
}




/* Footer send message button small device fix */
@media (max-width: 576px) {
  .steth-contact-large-text {
    margin-bottom: 45px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .steth-contact-title {
    font-size: clamp(64px, 19vw, 82px);
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .steth-send-message-btn {
    width: auto;
    min-width: 220px;
    max-width: calc(100vw - 70px);
    padding: 0.85rem 1.6rem;
    font-size: 0.85rem;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-decoration: none;
  }

  .steth-send-message-btn::after {
    margin-left: 0;
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none;
    
  }
}

@media (max-width: 420px) {
  .steth-contact-large-text {
    min-height: 135px;
    margin-bottom: 40px;
  }

  .steth-contact-title {
    font-size: clamp(58px, 18vw, 72px);
  }

  .steth-send-message-btn {
    min-width: 205px;
    max-width: calc(100vw - 54px);
    padding: 0.8rem 1.35rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .steth-send-message-btn {
    min-width: 190px;
    max-width: calc(100vw - 40px);
    padding: 0.75rem 1.1rem;
    font-size: 0.78rem;
  }

  .steth-contact-title {
    font-size: 56px;
  }
}




















/********************************************** END OF PREMIUM DARK GREEN FOOTER SECTION **********************************************/


/********************************************** PREMIUM ABOUT PAGE SECTION **********************************************/

:root {
  --premiumGreenDark: #062f29;
  --premiumGreenDeep: #0b4339;
  --premiumGreen: #116b5a;
  --premiumGreenLight: #2fa88d;
  --premiumWhite: #ffffff;
  --premiumWhiteSoft: #eefaf6;
  --premiumTextSoft: #d7eee7;
  --premiumTextDark: #172b25;
  --premiumTextMuted: #5f746d;
  --premiumBorder: rgba(255, 255, 255, 0.14);
  --premiumBorderDark: rgba(6, 47, 41, 0.14);
  --premiumGold: #c8a45d;
  --premiumShadow: rgba(0, 0, 0, 0.28);
}

/********************************************** INNER BANNER HERO **********************************************/

.innerbanner-hero {
  min-height: 70vh;
  background:
    radial-gradient(circle at 18% 22%, rgba(47, 168, 141, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(200, 164, 93, 0.12) 0%, transparent 32%),
    linear-gradient(135deg, #062f29 0%, #0b4339 48%, #021b18 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.innerbanner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 42%);
  z-index: 1;
}

.innerbanner-hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 36px;
  pointer-events: none;
  z-index: 1;
}

.innerbanner-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--premiumWhite);
  margin-top: 100px;
}

.innerbanner-hero-content2 {
  position: relative;
  z-index: 10;
  text-align: left;
  color: var(--premiumWhite);
  margin-top: 100px;
}

.innerbanner-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--premiumWhite);
}

.innerbanner-hero p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: var(--premiumTextSoft);
  opacity: 1;
  line-height: 1.8;
}

.innerimgcvr {
  position: relative;
  z-index: 5;
  max-width: 480px;
  margin: 0 auto;
}

.innerimgcvr img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.28));
}

/********************************************** PREMIUM TITLE EFFECT **********************************************/

.steth-ultra-title {
  background: linear-gradient(
    45deg,
    #ffffff 0%,
    #c8a45d 28%,
    #eefaf6 50%,
    #2fa88d 76%,
    #ffffff 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: stethTitleFlow 4s ease-in-out infinite;
}

@keyframes stethTitleFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/********************************************** STORY SECTION **********************************************/

.story-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(17, 107, 90, 0.08) 0%, transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5fbf8 100%);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(6, 47, 41, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--premiumTextDark);
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--premiumTextMuted);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.story-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 47, 41, 0.18);
  border: 1px solid rgba(6, 47, 41, 0.10);
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 47, 41, 0.10), transparent 55%);
  pointer-events: none;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/********************************************** ABOUT IMPACT SECTION **********************************************/

.about-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.about-section.white-bg {
  background: #ffffff;
}

.about-section.dark-bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(47, 168, 141, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(200, 164, 93, 0.12) 0%, transparent 32%),
    linear-gradient(135deg, #062f29 0%, #0b4339 48%, #021b18 100%);
}

.about-section.dark-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 42%);
  z-index: 1;
}

.about-section.dark-bg::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 36px;
  pointer-events: none;
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-section.gradient-bg {
  background: linear-gradient(135deg, #f5fbf8 0%, #ffffff 100%);
}

.about-section h2 {
  color: var(--premiumWhite);
}

.about-section .section-description {
  color: var(--premiumTextSoft);
}

/********************************************** SECTION COMMON **********************************************/

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-badge {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(6, 47, 41, 0.12);
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--premiumGreenDark);
  margin-bottom: 2rem;
}

.dark-bg .section-badge {
  color: var(--premiumWhite) !important;
  border-color: rgba(255, 255, 255, 0.18);
}

.section-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 93, 0.25), transparent);
  animation: badgeShine 2.5s ease-in-out infinite;
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--premiumTextDark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.2rem;
  color: var(--premiumTextMuted);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

/********************************************** PROCESS FLOW **********************************************/

.abt-process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 6rem;
  flex-wrap: wrap;
}

.abt-process-step {
  font-size: 3rem;
  font-weight: 900;
  color: var(--premiumWhite);
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  margin-bottom: 0;
}

.abt-process-step span {
  position: relative;
}

.abt-process-step span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--stethWhite);
  transition: width 0.4s ease;
}

.abt-process-step:hover span::after {
  width: 100%;
}

.abt-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-flow-icon {
  font-size: 40px;
  color: var(--premiumGold);
  transition: 0.3s ease;
}

.abt-process-flow:hover .abt-flow-icon {
  transform: translateX(4px);
}

/********************************************** MISSION VALUES SECTION **********************************************/

.values-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(17, 107, 90, 0.08) 0%, transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(200, 164, 93, 0.08) 0%, transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5fbf8 100%);
}

.values-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(6, 47, 41, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.values-section.gradient-bg {
  background: linear-gradient(135deg, #f5fbf8 0%, #ffffff 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}

.mission-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(6, 47, 41, 0.12);
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 47, 41, 0.10);
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--premiumGreen), var(--premiumGold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.mission-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(17, 107, 90, 0.10), transparent 65%);
  pointer-events: none;
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 34px 70px rgba(6, 47, 41, 0.18);
}

.mission-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #062f29, #116b5a);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--premiumWhite);
  margin-bottom: 2rem;
  box-shadow: 0 14px 34px rgba(6, 47, 41, 0.22);
  transition: var(--transition-spring);
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #116b5a, #062f29);
}

.mission-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--premiumTextDark);
}

.mission-card p {
  color: var(--premiumTextMuted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/********************************************** STATS OLD SUPPORT **********************************************/

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 6rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  backdrop-filter: blur(30px);
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffffff, #c8a45d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-label {
  color: var(--premiumWhite);
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 500;
}

/********************************************** FLOATING SHAPES **********************************************/

.floating-shape {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.65;
}

.shape-circle-1 {
  top: 15%;
  left: 8%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-square-1 {
  bottom: 30%;
  left: 20%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.24), transparent 55%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-2 {
  top: 80%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(47, 168, 141, 0.22), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-3 {
  top: 20%;
  right: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

@keyframes pulseMove {
  0%,
  100% {
    transform: scale(1) translateX(0);
    opacity: 0.7;
  }

  33% {
    transform: scale(1.2) translateX(-15px);
    opacity: 1;
  }

  66% {
    transform: scale(0.8) translateX(10px);
    opacity: 0.5;
  }
}

/********************************************** CTA SECTION **********************************************/

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(17, 107, 90, 0.08) 0%, transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f5fbf8 100%);
}

.cta-section .section-title {
  color: var(--premiumTextDark);
}

.cta-section .section-title span,
.cta-section h2 span {
  color: var(--premiumGreenDark) !important;
}

.cta-section .section-description {
  color: var(--premiumTextMuted);
}

/********************************************** PRICING SECTION IF USED LATER **********************************************/

.pricing-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(47, 168, 141, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(200, 164, 93, 0.12) 0%, transparent 32%),
    linear-gradient(135deg, #062f29 0%, #0b4339 48%, #021b18 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.pricing-section h2 {
  color: var(--premiumWhite);
}

.pricing-section .section-description {
  color: var(--premiumTextSoft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.pricing-card.featured {
  transform: scale(1.05);
  border-color: var(--premiumGold);
  box-shadow: 0 0 30px rgba(200, 164, 93, 0.24);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--premiumGold);
  color: var(--premiumGreenDark);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--premiumTextDark);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--premiumGreenDark);
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--premiumTextMuted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--premiumTextMuted);
  position: relative;
  padding-left: 2rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--premiumGreen);
  font-weight: 800;
  font-size: 1.2rem;
}

.pricing-cta {
  width: 100%;
  background: linear-gradient(135deg, #062f29, #116b5a);
  color: var(--premiumWhite);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(6, 47, 41, 0.24);
  color: var(--premiumWhite);
}

/********************************************** ANIMATION HELPERS **********************************************/

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.interactive-element {
  transition: var(--transition-spring);
}

.interactive-element:hover {
  transform: translateY(-2px);
}

/********************************************** RESPONSIVE **********************************************/

@media (max-width: 1400px) {
  .abt-process-step {
    font-size: 2.5rem;
  }
}

@media (max-width: 1200px) {
  .abt-process-step {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .innerbanner-hero-content2 {
    text-align: center;
    margin-top: 60px;
  }

  .abt-process-step {
    font-size: 2.5rem;
  }

  .abt-process-flow {
    flex-direction: column;
    gap: 25px;
  }

  .abt-flow-icon {
    transform: rotate(90deg);
    font-size: 28px;
  }

  .abt-process-flow:hover .abt-flow-icon {
    transform: rotate(90deg) translateY(4px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .innerbanner-hero {
    padding: 80px 0;
  }

  .innerbanner-hero::after,
  .about-section.dark-bg::after {
    inset: 14px;
    border-radius: 24px;
  }

  .story-section {
    padding: 80px 0;
  }

  .about-section {
    padding: 80px 0;
  }

  .values-section {
    padding: 80px 0;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .cta-section {
    padding: 80px 0;
  }

  .innerbanner-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }

  .innerbanner-hero p {
    font-size: 1rem;
  }

  .story-text p {
    text-align: left;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card {
    padding: 2rem;
  }

  .stats-grid {
    margin-top: 5rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .innerbanner-hero h1 {
    font-size: 2.7rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .story-image img {
    height: 320px;
  }

  .abt-process-step {
    font-size: 2rem;
  }

  .mission-card {
    padding: 1.7rem;
    border-radius: 22px;
  }

  .mission-icon {
    width: 76px;
    height: 76px;
    font-size: 2rem;
  }
}

/********************************************** END OF PREMIUM ABOUT PAGE SECTION **********************************************/





/********************************************** SERVICE PAGE MOBILE GAP FIX **********************************************/
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .services-main,
  .innerbanner-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .services-main .container,
  .innerbanner-hero .container,
  .main-services .container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .services-main {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .services-main-content,
  .innerbanner-hero-content,
  .innerbanner-hero-content2 {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .services-main h1,
  .innerbanner-hero h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .services-main p,
  .innerbanner-hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.8;
  }

  .main-services {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .services-main,
  .innerbanner-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .services-main h1,
  .innerbanner-hero h1 {
    font-size: 2.35rem;
  }

  .services-main p,
  .innerbanner-hero p {
    font-size: 0.95rem;
  }
}
/********************************************** END SERVICE PAGE MOBILE GAP FIX **********************************************/










/********************************************** END OF ABOUTPAGE SECTION **********************************************/
/* Stethlink green color theme - color-only update */
:root {
  --stethDarkGreen: #061c17;
  --stethDeepGreen: #0b3028;
  --stethGreen: #16c784;
  --stethMint: #b9ffe4;
  --stethWhite: #ffffff;
  --stethSoftGreen: #f3fff9;
  --stethText: #5d6f68;
  --stethDarkText: #112720;
  --stethBorder: rgba(22, 199, 132, 0.18);
}

.services-main {
  min-height: 70vh;
  background: linear-gradient(115deg, #061c17, #0b3028, #16c784);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.services-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 70% 80%,
      rgba(185, 255, 228, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 20% 60%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 40%);
  animation: backgroundFlow 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundFlow {

  0%,
  100% {
    background: radial-gradient(circle at 30% 20%,
        rgba(22, 199, 132, 0.15) 0%,
        transparent 60%),
      radial-gradient(circle at 70% 80%,
        rgba(185, 255, 228, 0.15) 0%,
        transparent 60%);
  }

  33% {
    background: radial-gradient(circle at 80% 30%,
        rgba(22, 199, 132, 0.2) 0%,
        transparent 60%),
      radial-gradient(circle at 20% 70%,
        rgba(185, 255, 228, 0.2) 0%,
        transparent 60%);
  }

  66% {
    background: radial-gradient(circle at 50% 80%,
        rgba(22, 199, 132, 0.18) 0%,
        transparent 60%),
      radial-gradient(circle at 60% 20%,
        rgba(185, 255, 228, 0.18) 0%,
        transparent 60%);
  }
}

.services-main-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.services-main h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.steth-ultra-title {
  background: linear-gradient(45deg,
      #ffffff 0%,
      #16c784 25%,
      #ffffff 50%,
      #0fa66d 75%,
      #ffffff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: stethTitleFlow 4s ease-in-out infinite;
}

@keyframes stethTitleFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.services-main p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.floating-shape {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

.shape-circle-1 {
  top: 15%;
  left: 8%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.2) 0%,
      transparent 50%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-square-1 {
  bottom: 30%;
  left: 20%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 50%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-2 {
  top: 80%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(185, 255, 228, 0.3), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-3 {
  top: 20%;
  right: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-12 {
  bottom: 15%;
  left: 8%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.2) 0%,
      transparent 50%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-square-12 {
  bottom: 20%;
  left: 20%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 50%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-22 {
  bottom: 80%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(185, 255, 228, 0.3), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

.shape-circle-32 {
  bottom: 10%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 60%);
  border-radius: 50%;
  animation: pulseMove 14s ease-in-out infinite;
}

@keyframes pulseMove {

  0%,
  100% {
    transform: scale(1) translateX(0);
    opacity: 0.7;
  }

  33% {
    transform: scale(1.2) translateX(-15px);
    opacity: 1;
  }

  66% {
    transform: scale(0.8) translateX(10px);
    opacity: 0.5;
  }
}

.main-services {
  padding: 120px 0 0px 0;
  background: #fff;
  position: relative;
}

.services-wrapper {
  margin-top: 4rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
  position: relative;
}

.service-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.service-item:nth-of-type(2n) .service-number {
  right: -20px;
  left: auto;
}

.service-item:nth-of-type(2n) .service-floating-shape.service-float-1 {
  left: -50px;
  right: auto;
}

.service-item:nth-of-type(2n) .service-floating-shape.service-float-2 {
  right: -30px;
  left: auto;
}

.service-item:last-child {
  margin-bottom: 5rem;
}

.service-content {
  flex: 1;
  /* max-width: 600px; */
}

.service-visual {
  flex: 1;
  /* max-width: 500px; */
  position: relative;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0fa66d, #16c784);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.service-badge-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-icon-large {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg,
      rgba(185, 255, 228, 0.1),
      rgba(22, 199, 132, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--stethGreen);
  position: relative;
  overflow: hidden;
  border: 2px solid #0fa66d;
}

.service-largeimg {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--stethGreen);
  position: relative;
  overflow: hidden;
  /* border: 2px solid #0fa66d; */
}

.service-largeimg img {
  width: 100%;
  object-fit: cover;
}

.service-icon-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(22, 199, 132, 0.1),
      transparent);
  transition: left 0.8s ease;
}

.service-item:hover .service-icon-large::before {
  left: 100%;
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0fa66d, #16c784);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-title .highlight {
  color: var(--stethGreen);
}

.service-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

.service-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 10px;
  transition: var(--transition);
}

.service-feature:hover {
  background: rgba(22, 199, 132, 0.1);
  transform: translateX(5px);
}

.service-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--stethGreen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.service-feature-text {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
}

.service-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0fa66d, #16c784);
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.service-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gray-700);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid #0fa66d;
  transition: var(--transition);
}

.service-cta-secondary:hover {
  background: #0fa66d;
  color: #fff;
}

.service-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      #061c17,
      #16c784,
      transparent);
  margin: 4rem 0;
  opacity: 0.3;
}

.service-floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.service-float-1 {
  top: 20%;
  right: -50px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #16c784, #0fa66d);
  border-radius: 50%;
  animation: serviceFloat 8s ease-in-out infinite;
}

.service-float-2 {
  bottom: 20%;
  left: -30px;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #0fa66d, #16c784);
  border-radius: 50%;
  animation: serviceFloat 6s ease-in-out infinite reverse;
}

@keyframes serviceFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 992px) {
  .service-item {
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
  }

  .serv-col-reverse {
    flex-direction: column-reverse !important;
  }

  .service-badge-group {
    display: inline-block;
    align-items: center;
  }

  .service-largeimg {
    margin-bottom: 2rem;
  }

  .service-number {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 1rem;
  }

  .service-icon-large {
    width: 300px;
    height: 250px;
    margin: 0 auto;
  }

  .service-features-list {
    grid-template-columns: 1fr;
  }

  .service-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .services-main {
    padding: 80px 0;
  }

  .main-services {
    padding: 80px 0 0px 0;
  }

  .services-main h1 {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-icon-large {
    width: 250px;
    height: 200px;
    font-size: 4rem;
  }

  /* .service-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  } */

  .services-container {
    padding: 0 1rem;
  }

  .service-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .service-cta-primary,
  .service-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-icon-large {
    width: 200px;
    height: 150px;
    font-size: 3rem;
  }

  .service-item {
    margin-bottom: 4rem;
  }

  .service-separator {
    margin: 2rem 0;
  }
}
/********************************************** END OF SERVICEPAGE SECTION **********************************************/
:root {
  --primary: #0b3028;
  --accent: #16c784;
  --gray-50: #f3fff9;
  --gray-600: #5d6f68;
  --gray-700: #364b44;
  --gray-900: #112720;
  --transition: all 0.3s ease;
  --shadow-glow: 0 10px 30px rgba(22, 199, 132, 0.28);
}

.service-detail-hero {
  min-height: 80vh;
  background: linear-gradient(115deg, #061c17, #0b3028, #16c784);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 70% 80%,
      rgba(185, 255, 228, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 20% 60%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 40%);
  animation: backgroundFlow 20s ease-in-out infinite;
  z-index: 1;
}

.service-detail-hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  max-width: 800px;
  margin-top: 100px;
}

.service-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.service-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-breadcrumb a:hover {
  color: #16c784;
}

.service-breadcrumb span {
  margin: 0 0.5rem;
  opacity: 0.6;
}

.service-detail-hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.service-detail-hero p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-tag:hover {
  background: rgba(22, 199, 132, 0.2);
  border-color: rgba(22, 199, 132, 0.4);
  transform: translateY(-2px);
}

/* Service Overview Section */
.service-overview {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.service-overview-content {
  padding-right: 2rem;
}

.service-overview-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 3rem;
  text-align: justify;
}

.service-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.service-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service-stat-label {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-overview-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-overview-image img {
  width: 100%;
  /* height: 600px; */
  object-fit: cover;
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-overview-image:hover .service-image-overlay {
  opacity: 1;
}

.service-play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.service-image-overlay:hover .service-play-button {
  transform: scale(1);
}

/* Key Features Section */
.service-key-features {
  padding: 120px 0;
  /* background: #f3fff9; */
  position: relative;
  background: #f3fff9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.feature-detail-card {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: all 0.3s ease;
  transform-origin: left;
}

.feature-detail-card:hover::before {
  transform: scaleX(1);
}

.feature-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.feature-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-detail-card:hover .feature-detail-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-detail-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.feature-detail-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-detail-list span {
  background: rgba(185, 255, 228, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* How It Works Section */
.service-how-it-works {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.process-timeline {
  margin-top: 5rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-step-content {
  text-align: right;
  padding-right: 4rem;
  padding-left: 0;
}

.process-step:nth-child(odd) .process-step-content {
  padding-left: 4rem;
}

.process-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-step-content {
  flex: 1;
  max-width: 45%;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.process-step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.process-step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.process-step-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.process-step-content ul {
  list-style: none;
  padding: 0;
}

.process-step-content li {
  color: var(--gray-700);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.process-step-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Benefits Section */
.service-benefits {
  padding: 120px 0;
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  position: relative;
  overflow: hidden;
}

.service-benefits h2 {
  color: #fff;
}

.service-benefits .section-description {
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Use Cases Section */
.service-use-cases {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.use-cases-tabs {
  margin-top: 4rem;
}

.use-case-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.use-case-tab {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid #e5e7eb;
  border-radius: 25px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.3s ease;
}

.use-case-tab.active,
.use-case-tab:hover {
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.use-case-content {
  position: relative;
}

.use-case-panel {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.use-case-panel.active {
  display: block;
}

.use-case-panel h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.use-case-panel p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.use-case-features {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.use-case-features li {
  padding: 0.75rem 0;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.use-case-features i {
  color: var(--accent);
  width: 20px;
}

.use-case-stats {
  display: flex;
  gap: 3rem;
}

.use-case-stats .stat-item {
  text-align: center;
}

.use-case-stats .stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.use-case-stats .stat-item span {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
}

.use-case-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.use-case-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Technology Stack Section */
.service-tech-stack {
  padding: 120px 0;
  background: #f3fff9;
  position: relative;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.tech-category {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.tech-category h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2rem;
  text-align: center;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.tech-item:hover {
  background: rgba(185, 255, 228, 0.1);
  transform: translateY(-3px);
}

.tech-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.tech-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* FAQ Section */
.service-faq {
  padding: 120px 0;
  background: #f3fff9;
  position: relative;
  overflow: hidden;
}

.faq-accordion {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  flex: 1;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 2rem 2rem 2rem;
  background: #fff;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease-out;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Service CTA Section */
.service-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0b3028, #16c784);
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%);
  z-index: 1;
}

.service-cta-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.service-cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.service-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta .cta-primary {
  background: #fff;
  color: var(--primary);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-cta .cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

.service-cta .cta-secondary {
  background: transparent;
  color: #fff;
  padding: 1.25rem 2.5rem;
  border: 2px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-cta .cta-secondary:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

/* Related Services Section */
.related-services {
  padding: 120px 0;
  background: #f3fff9;
  position: relative;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.related-service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.related-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.related-service-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.related-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.related-service-card:hover .related-service-image img {
  transform: scale(1.1);
}

.related-service-content {
  padding: 2rem;
}

.related-service-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.related-service-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.related-service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.related-service-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex-direction: column !important;
    text-align: center;
  }

  .process-step-number {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 2rem;
  }

  .process-step-content {
    max-width: 100%;
    text-align: center !important;
    padding: 2rem !important;
  }
}

@media (max-width: 992px) {
  .service-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .use-case-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .service-detail-hero {
    padding: 100px 0 80px;
  }

  .service-overview,
  .service-key-features,
  .service-how-it-works,
  .service-benefits,
  .service-use-cases,
  .service-tech-stack,
  .service-faq,
  .service-cta,
  .related-services {
    padding: 80px 0;
  }

  .service-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-detail-card {
    padding: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .use-case-nav {
    flex-direction: column;
    align-items: center;
  }

  .use-case-tab {
    width: 200px;
    text-align: center;
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-cta .cta-primary,
  .service-cta .cta-secondary {
    width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-detail-tags {
    gap: 0.5rem;
  }

  .service-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .feature-detail-card {
    padding: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/********************************************** END OF SERVICE DETAILPAGE SECTION **********************************************/
.contact-hero {
  min-height: 60vh;
  background: linear-gradient(115deg, #102c2d, #0c3233, #fe9000);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      rgba(254, 144, 0, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 70% 80%,
      rgba(36, 96, 96, 0.15) 0%,
      transparent 60%);
  animation: backgroundFlow 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundFlow {

  0%,
  100% {
    background: radial-gradient(circle at 30% 20%,
        rgba(254, 144, 0, 0.15) 0%,
        transparent 60%),
      radial-gradient(circle at 70% 80%,
        rgba(36, 96, 96, 0.15) 0%,
        transparent 60%);
  }

  33% {
    background: radial-gradient(circle at 80% 30%,
        rgba(254, 144, 0, 0.2) 0%,
        transparent 60%),
      radial-gradient(circle at 20% 70%,
        rgba(36, 96, 96, 0.2) 0%,
        transparent 60%);
  }

  66% {
    background: radial-gradient(circle at 50% 80%,
        rgba(254, 144, 0, 0.18) 0%,
        transparent 60%),
      radial-gradient(circle at 60% 20%,
        rgba(36, 96, 96, 0.18) 0%,
        transparent 60%);
  }
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.steth-ultra-title {
  background: linear-gradient(45deg, #ffffff 0%, #605950 25%, #ffffff 50%, #246060 75%, #ffffff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: stethTitleFlow 4s ease-in-out infinite;
}

@keyframes stethTitleFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.breadcrumb {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fe9000;
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: #fe9000;
}

.main-contact-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* .contact-form-container {
  background: linear-gradient(
    135deg,
    rgba(17, 54, 55, 0.9),
    rgba(12, 50, 51, 0.8)
  );
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(254, 144, 0, 0.3);
  position: relative;
} */

.contact-form-container {
  background: linear-gradient(75deg, #113637, #0c3233, #fe9000);
  backdrop-filter: blur(20px);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-badge {
  display: inline-block;
  background: linear-gradient(135deg,
      rgba(254, 144, 0, 0.2),
      rgba(36, 96, 96, 0.2));
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(254, 144, 0, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fe9000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-form-header p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.main-contact-form {
  position: relative;
  z-index: 2;
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #fff;
  position: relative;
  z-index: 2;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #fe9000;
  box-shadow: 0 0 20px rgba(254, 144, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.main-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #fe9000, #246060);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.main-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(254, 144, 0, 0.4);
  background: linear-gradient(135deg, #ff7a00, #1a4d4e);
}

.contact-info-container {
  color: #fff;
}

.contact-description {
  margin-bottom: 3rem;
}

.contact-description p {
  /* color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem; */
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.contact-info-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem; */
  margin-top: 4rem;
}

/* .contact-info-item {
  flex-direction: column;
  text-align: center;
  padding: 1rem;
} */

.contact-info-item {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  /* border: 2px solid #246060; */
  transition: var(--transition);
  text-align: center;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.contact-info-item:hover::before {
  transform: scaleX(1);
}

.contact-info-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #246060, #fe9000);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  color: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.contact-info-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fe9000;
  margin-bottom: 1rem;
}

.contact-info-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-info-details {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-info-link {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(254, 144, 0, 0.3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}

.message {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
  display: none;
}

.message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.message.show {
  display: block;
}

.contactdetails-section {
  /* background: linear-gradient(75deg, #113637, #0c3233, #fe9000); */
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  /* background: #fbfdfb; */
  background: #fafafa;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.contact-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  /* box-shadow: var(--shadow-lg); */
  /* border: 2px solid #246060; */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

/* .contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #246060, #fe9000);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  color: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
} */

.contact-info-card:hover::after {
  width: 100%;
}

.contact-info-icon {
  position: relative;
  background: linear-gradient(135deg, #246060, #fe9000);
  box-shadow: 0 8px 32px rgba(254, 144, 0, 0.3);
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fe9000, #246060, #fe9000, #246060);
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  animation: holographicBorder 4s ease-in-out infinite;
}

@keyframes holographicBorder {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.contact-info-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-info-card h3 span {
  color: #fe9000;
}

.contact-info-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-info-details {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-info-details span {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

.contact-info-details span a {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  text-decoration: none;
}

.contact-info-link {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-info-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .main-contact-section {
    padding: 80px 0;
  }

  .contactdetails-section {
    padding: 80px 0;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .contact-form-header h2 {
    font-size: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .contact-map {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .contact-info-item {
    padding: 1rem;
  }

  .contact-map {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .map-info {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 0 1rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/********************************************** END OF CONTACTPAGE SECTION **********************************************/
.innerimgcvr {
  width: 450px;
  margin: 0 auto;
}

.innerimgcvr img {
  width: 100%;
  object-fit: cover;
  animation: breathing 4s ease-in-out infinite;
}

/********************************************** END OF LANDINGPAGE SECTION **********************************************/
:root {
  --primary: #0b3028;
  --accent: #16c784;
  --gray-50: #f3fff9;
  --gray-600: #5d6f68;
  --gray-700: #364b44;
  --gray-900: #112720;
  --gradient-accent: linear-gradient(135deg, #0b3028, #16c784);
  --gradient-glass: rgba(22, 199, 132, 0.09);
  --transition: all 0.3s ease;
  --transition-spring: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-glow: 0 10px 30px rgba(22, 199, 132, 0.28);
  --shadow-xl: 0 25px 50px rgba(6, 28, 23, 0.15);
  --border-radius-lg: 24px;
}

.wl-hero {
  min-height: 100vh;
  background: linear-gradient(115deg, #061c17, #0b3028, #16c784);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.wl-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      rgba(22, 199, 132, 0.15) 0%,
      transparent 60%),
    radial-gradient(circle at 70% 80%,
      rgba(185, 255, 228, 0.15) 0%,
      transparent 60%);
  animation: wlBackgroundFlow 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes wlBackgroundFlow {

  0%,
  100% {
    background: radial-gradient(circle at 30% 20%,
        rgba(22, 199, 132, 0.15) 0%,
        transparent 60%),
      radial-gradient(circle at 70% 80%,
        rgba(185, 255, 228, 0.15) 0%,
        transparent 60%);
  }

  50% {
    background: radial-gradient(circle at 80% 30%,
        rgba(22, 199, 132, 0.2) 0%,
        transparent 60%),
      radial-gradient(circle at 20% 70%,
        rgba(185, 255, 228, 0.2) 0%,
        transparent 60%);
  }
}

.wl-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.wl-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wl-hero-text {
  color: #fff;
}

.wl-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.wl-hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.wl-ultra-title {
  background: linear-gradient(45deg,
      #ffffff 0%,
      #16c784 25%,
      #ffffff 50%,
      #0b3028 75%,
      #ffffff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wlTitleFlow 4s ease-in-out infinite;
}

@keyframes wlTitleFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.wl-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.wl-hero-cta-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.wl-cta-primary {
  background: linear-gradient(135deg, #16c784, #0b3028);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-spring);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wl-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.wl-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.wl-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.wl-hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.wl-stat-item {
  text-align: left;
}

.wl-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #16c784;
  margin-bottom: 0.5rem;
  display: block;
}

.wl-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.wl-hero-visual {
  position: relative;
}

.wl-hero-device {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: wlDeviceFloat 6s ease-in-out infinite;
}

@keyframes wlDeviceFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.wl-device-screen {
  background: linear-gradient(135deg, #0b3028, #16c784);
  height: 300px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.wl-device-screen::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wlSpin 1s linear infinite;
}

@keyframes wlSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.wl-device-screen img {
  width: 100%;
  object-fit: cover;
}

/* Floating Shapes */
.wl-floating-shape {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

.wl-shape-circle-1 {
  top: 15%;
  left: 8%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.6), transparent 50%);
  border-radius: 50%;
  animation: wlPulseMove 14s ease-in-out infinite;
}

.wl-shape-circle-2 {
  top: 20%;
  right: 5%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(185, 255, 228, 0.3), transparent 60%);
  border-radius: 50%;
  animation: wlPulseMove 16s ease-in-out infinite reverse;
}

.wl-shape-circle-3 {
  bottom: 30%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.4), transparent 50%);
  border-radius: 50%;
  animation: wlPulseMove 18s ease-in-out infinite;
}

@keyframes wlPulseMove {

  0%,
  100% {
    transform: scale(1) translateX(0);
    opacity: 0.7;
  }

  33% {
    transform: scale(1.2) translateX(-15px);
    opacity: 1;
  }

  66% {
    transform: scale(0.8) translateX(10px);
    opacity: 0.5;
  }
}









/* Features Section */
.wl-features {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.wl-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.wl-section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(185, 255, 228, 0.2);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2rem;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.wl-section-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(22, 199, 132, 0.3),
      transparent);
  animation: wlBadgeShine 2s ease-in-out infinite;
}

@keyframes wlBadgeShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.wl-section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.wl-section-title .highlight {
  color: var(--accent);
}

.wl-section-description {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.wl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.wl-feature-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid #e5e7eb;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.wl-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.wl-feature-card:hover::before {
  transform: scaleX(1);
}

.wl-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.wl-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  transition: var(--transition-spring);
}

.wl-feature-card:hover .wl-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.wl-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.wl-feature-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.wl-feature-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.wl-feature-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Features Section */
.wl-landingcontentsec {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.wl-landingcontent p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* Benefits Section */
.wl-benefits {
  padding: 120px 0;
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
  position: relative;
  overflow: hidden;
}

.wl-benefits .wl-section-header {
  color: #fff;
}

.wl-benefits .wl-section-title {
  color: #fff;
}

.wl-benefits .wl-section-description {
  color: rgba(255, 255, 255, 0.9);
}

.wl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.wl-benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: var(--transition);
  color: #fff;
}

.wl-benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wl-benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  color: #fff;
  transition: var(--transition);
}

.wl-benefit-card:hover .wl-benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.wl-benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.wl-benefit-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Testimonial Section */
.wl-testimonials {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.wl-testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
  max-width: 800px;
  margin: 4rem auto 0;
  border: 1px solid #e5e7eb;
}

.wl-testimonial-quote {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--gray-700);
}

.wl-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wl-author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.wl-author-info h4 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.wl-author-info p {
  color: var(--accent);
  font-size: 0.9rem;
}

/* CTA Section */
.wl-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0b3028, #16c784);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wl-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%);
  z-index: 1;
}

.wl-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  color: #fff;
}

.wl-cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.wl-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.wl-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wl-cta-section .wl-cta-primary {
  background: #fff;
  color: var(--primary);
}

.wl-cta-section .wl-cta-primary:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.wl-cta-section .wl-cta-secondary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.wl-cta-section .wl-cta-secondary:hover {
  background: #fff;
  color: var(--primary);
}

/* Footer */
.wl-footer {
  background: linear-gradient(120deg, #0b3028, #061c17);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
}

.wl-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wl-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.wl-footer-brand h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.wl-footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.wl-footer-social {
  display: flex;
  gap: 1rem;
}

.wl-social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0b3028, #16c784);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.wl-social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.wl-footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.wl-footer-section ul {
  list-style: none;
}

.wl-footer-section li {
  margin-bottom: 0.75rem;
}

.wl-footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.wl-footer-section a:hover {
  color: var(--accent);
}

.wl-footer-bottom {
  border-top: 1px solid rgba(22, 199, 132, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .wl-nav-menu {
    display: none;
  }

  .wl-nav-toggle {
    display: flex;
  }

  .wl-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .wl-hero-stats {
    justify-content: center;
  }

  .wl-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .wl-nav-container {
    padding: 0 1rem;
  }

  .wl-hero {
    padding: 100px 0 60px;
  }

  .wl-hero-container {
    padding: 0 1rem;
  }

  .wl-hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .wl-cta-primary,
  .wl-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .wl-hero-stats {
    gap: 2rem;
  }

  .wl-features {
    padding: 80px 0;
  }

  .wl-landingcontentsec {
    padding: 80px 0;
  }

  .wl-features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .wl-feature-card {
    padding: 2rem;
  }

  .wl-benefits {
    padding: 80px 0;
  }

  .wl-benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .wl-testimonials {
    padding: 80px 0;
  }

  .wl-testimonial-card {
    margin: 3rem 1rem 0;
    padding: 2rem;
  }

  .wl-cta-section {
    padding: 80px 0;
  }

  .wl-author-info {
    text-align: left;
  }

  .wl-footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .wl-hero h1 {
    font-size: 2.5rem;
  }

  .wl-stat-number {
    font-size: 2rem;
  }

  .wl-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .wl-testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .wl-author-info {
    text-align: center;
  }

  .wl-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .wl-cta-primary,
  .wl-cta-secondary {
    width: 100%;
    max-width: 280px;
  }
}








.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f8f6f, #0b3d2e);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
}

.scroll-top iconify-icon {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.scroll-top:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #3fbf8f, #135c45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.scroll-top:focus {
    outline: none;
}

@media (max-width: 575px) {
    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .scroll-top iconify-icon {
        font-size: 22px;
    }
}














/********************************************** WORKS SECTION **********************************************/
.steth-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.steth-work-card {
  text-decoration: none;
  display: block;
  transition: 0.4s ease;
}

.steth-work-photo {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.steth-work-photo img {
  width: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  min-height: 480px;
}

.steth-work-card:hover img {
  transform: scale(1.08);
}

.steth-work-detail {
  padding-top: 25px;
}

.steth-work-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.steth-work-category {
  font-size: 15px;
  font-weight: 500;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {
  .steth-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steth-work-grid {
    grid-template-columns: 1fr;
  }
}








































/**********************************************
  MOBILE FIX FOR SERVICES CUBE STICKY ROTATION
**********************************************/

.services-section {
  position: relative;
  
  overflow: visible;
}

/* .cube-container {
  background: linear-gradient(75deg, #061c17, #0b3028, #16c784);
} */

@media (max-width: 768px) {
  .services-section {
     min-height: var(--servicesMobileMinHeight, 460vh) !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    background: linear-gradient(75deg, #061c17, #0b3028, #16c784) !important;
  }

  .services-section .cube-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    padding: 115px 15px 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    perspective: 1200px !important;
    perspective-origin: center center !important;
    overflow: hidden !important;
    background: linear-gradient(75deg, #061c17, #0b3028, #16c784) !important;
    z-index: 20;
  }

  .services-section.services-pin-active .cube-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 100vw !important;
  }

  .services-section.services-pin-end .cube-container {
    position: absolute !important;
    top: auto !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: 100% !important;
  }

  .services-title {
    position: absolute !important;
    top: 42px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    text-align: center !important;
    font-size: clamp(2.8rem, 14vw, 4.5rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    z-index: 30 !important;
  }

  .cube-wrapper {
    width: 280px !important;
    height: 280px !important;
    margin-top: 15px !important;
    transform-style: preserve-3d !important;
    will-change: transform !important;
  }

  .cube-face {
    width: 280px !important;
    height: 280px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .face-front {
    transform: translateZ(140px) !important;
  }

  .face-back {
    transform: rotateY(180deg) translateZ(140px) !important;
  }

  .face-right {
    transform: rotateY(90deg) translateZ(140px) !important;
  }

  .face-left {
    transform: rotateY(-90deg) translateZ(140px) !important;
  }

  .face-top {
    transform: rotateX(90deg) translateZ(140px) !important;
  }

  .face-bottom {
    transform: rotateX(-90deg) translateZ(140px) !important;
  }

  .service-text,
  .service-text.left,
  .service-text.right {
    position: absolute !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    bottom: 55px !important;
    width: calc(100% - 36px) !important;
    max-width: 430px !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    background: rgba(0, 0, 0, 0.42) !important;
    backdrop-filter: blur(8px);
    padding: 16px 14px !important;
    z-index: 35 !important;
  }

  .service-name {
    font-size: clamp(27px, 8.8vw, 40px) !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }

  .service-tagline {
    max-width: 100% !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-top: 12px !important;
    letter-spacing: 0.06em !important;
  }
}

@media (max-width: 480px) {
  .services-section {
    min-height: var(--servicesMobileMinHeightSmall, 500vh) !important;
  }

  .services-section .cube-container {
    padding: 105px 12px 110px !important;
  }

  .cube-wrapper {
    width: 240px !important;
    height: 240px !important;
  }

  .cube-face {
    width: 240px !important;
    height: 240px !important;
  }

  .face-front {
    transform: translateZ(120px) !important;
  }

  .face-back {
    transform: rotateY(180deg) translateZ(120px) !important;
  }

  .face-right {
    transform: rotateY(90deg) translateZ(120px) !important;
  }

  .face-left {
    transform: rotateY(-90deg) translateZ(120px) !important;
  }

  .face-top {
    transform: rotateX(90deg) translateZ(120px) !important;
  }

  .face-bottom {
    transform: rotateX(-90deg) translateZ(120px) !important;
  }

  .service-text,
  .service-text.left,
  .service-text.right {
    bottom: 42px !important;
    width: calc(100% - 24px) !important;
    padding: 14px 12px !important;
  }

  .service-name {
    font-size: clamp(24px, 8.5vw, 34px) !important;
  }

  .service-tagline {
    font-size: 11px !important;
  }
}

/**********************************************
  END MOBILE FIX FOR SERVICES CUBE
**********************************************/











































.stethHoneypotField {
    display: none !important;
}

.stethPremiumFormMessage {
    display: none;
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.stethPremiumFormMessage.success {
    display: block;
    color: #0b3d2e;
    background: #dff8ec;
    border: 1px solid #8ee0b8;
}

.stethPremiumFormMessage.error {
    display: block;
    color: #7a1f1f;
    background: #ffe5e5;
    border: 1px solid #ffb5b5;
}

.steth-premium-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}











































