@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #020711;
  --panel: rgba(7, 18, 35, 0.74);
  --panel-strong: rgba(8, 21, 41, 0.93);
  --line: rgba(58, 144, 219, 0.25);
  --line-soft: rgba(255, 255, 255, 0.09);
  --cyan: #08c7ff;
  --blue: #1478ff;
  --purple: #7c45ff;
  --amber: #ff9b19;
  --text: #f8fbff;
  --muted: #a9b7c9;
  --font: 'Inter', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 77% 9%, rgba(20, 120, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 7% 38%, rgba(8, 199, 255, 0.08), transparent 18rem),
    linear-gradient(180deg, #01050d 0%, #020711 44%, #030914 100%);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 78%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--cyan);
  text-decoration: none;
}

.site-shell {
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.navbar-custom {
  padding: 24px 0 18px;
  background: rgba(2, 7, 17, 0.82);
  border-bottom: 1px solid rgba(55, 150, 230, 0.28);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: padding, background, box-shadow;
}

.navbar-custom.scrolled {
  padding: 13px 0;
  background: rgba(2, 7, 17, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .42);
}

.navbar-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff !important;
  min-width: 170px;
}

.brand-mark {
  width: 36px;
  height: 52px;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 11px rgba(255, 255, 255, .28));
}

.brand-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .2));
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #fff 0%, #aeb9ca 45%, #fff 68%, #607086 100%);
  clip-path: polygon(13% 0, 72% 58%, 54% 54%, 82% 100%, 35% 72%, 58% 70%, 19% 42%, 34% 47%);
}

.brand-type {
  font-weight: 900;
  letter-spacing: 8px;
  font-size: 26px;
  line-height: .9;
}

.brand-type small {
  display: block;
  margin-top: 9px;
  font-size: 9px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
}

.nav-link-custom {
  color: rgba(255, 255, 255, .83) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 10px;
  padding: 12px 0 !important;
  position: relative;
  transition: color 0.2s ease;
  backface-visibility: hidden;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: .2s ease;
}

.nav-link-custom.active::after,
.nav-link-custom:hover::after {
  width: 100%;
}

.btn-nav-action,
.btn-primary-custom,
.btn-outline-custom {
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
}

.btn-nav-action,
.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff !important;
  background: rgba(255, 255, 255, .02);
}

.btn-primary-custom {
  color: #fff !important;
  border: 1px solid rgba(8, 199, 255, .28);
  background: linear-gradient(135deg, #087cff, #075add);
  box-shadow: 0 0 25px rgba(13, 113, 255, .24);
}

.btn-primary-custom:hover,
.btn-outline-custom:hover,
.btn-nav-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(8, 199, 255, .24);
}

.tagline {
  display: inline-block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-section {
  padding: 142px 0 26px;
  min-height: 670px;
  position: relative;
  background-color: #01050d;
  background-image:
    radial-gradient(circle at 76% 44%, rgba(8, 159, 255, .34), transparent 29rem),
    radial-gradient(circle at 66% 84%, rgba(8, 199, 255, .13), transparent 18rem);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  background: linear-gradient(to top, rgba(2, 7, 17, .98), transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 22px;
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 24px;
  color: #fff;
}

.hero-copy h1 span {
  color: #19adff;
}

.hero-copy p {
  max-width: 540px;
  color: #d4deec;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-visual {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: url("../images/banner-bg.png") 62% center / 135% no-repeat;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, .45), transparent 26%),
    linear-gradient(180deg, rgba(2, 7, 17, .25), transparent 35%, rgba(2, 7, 17, .28));
  pointer-events: none;
}

.hero-logo-orbit {
  width: min(432px, 30vw);
  max-width: 100%;
  margin-top: 8px;
  margin-left: 35px;
  mix-blend-mode: screen;
  opacity: .88;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, .3)) drop-shadow(0 0 34px rgba(8, 199, 255, .34));
  animation: logoPulse 4.2s ease-in-out infinite;
}



.logo-text {
  font-family: 'Michroma', sans-serif;
}


@keyframes logoPulse {

  0%,
  100% {
    transform: translateY(0) scale(.96);
    opacity: .78;
  }

  50% {
    transform: translateY(-7px) scale(1.02);
    opacity: .94;
  }
}@keyframes logoPulseCentered {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) scale(.96);
    opacity: .78;
  }
  50% {
    transform: translate(-50%, -50%) translateY(-7px) scale(1.02);
    opacity: .94;
  }
}

.hero-features-list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 660px;
  margin-top: 54px;
}

.hero-feature-item {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0 22px;
  min-height: 64px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.hero-feature-item:first-child {
  padding-left: 0;
}

.hero-feature-item:last-child {
  border-right: 0;
}

.hero-feature-item i {
  color: #2dbdff;
  font-size: 30px;
}

.compact-section,
.portfolio-section,
.trusted-section,
.insights-section,
.cta-section,
.about-section {
  padding: 18px 0;
  position: relative;
}

.service-row {
  margin-left: -9px;
  margin-right: -9px;
}

.service-row>[class*="col-"] {
  padding-left: 9px;
  padding-right: 9px;
  margin-bottom: 20px;
}

.service-card {
  min-height: 230px;
  height: 100%;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(10, 29, 55, .92), rgba(4, 12, 25, .88)),
    var(--panel);
  border-radius: 7px;
  padding: 30px 28px 24px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 18px;
  width: 72px;
  height: 56px;
  opacity: .22;
  background: repeating-linear-gradient(90deg, transparent 0 12px, currentColor 12px 18px);
}

.service-blue {
  color: var(--blue);
}

.service-purple {
  border-color: rgba(124, 69, 255, .36);
  color: var(--purple);
}

.service-cyan {
  color: var(--cyan);
}

.service-orange {
  border-color: rgba(255, 155, 25, .34);
  color: var(--amber);
}

.service-card h2 {
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 900;
  margin: 2px 0 16px 88px;
}

.service-card p {
  color: #c9d5e6;
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 18px 88px;
}

.service-card a {
  color: currentColor;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .6px;
  margin-left: 88px;
}

.icon-box-glowing {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 31px;
  border: 1px solid currentColor;
  box-shadow: 0 0 22px currentColor, inset 0 0 30px rgba(255, 255, 255, .06);
}

.icon-box-glowing.cyan {
  color: var(--blue);
}

.icon-box-glowing.purple {
  color: var(--purple);
}

.icon-box-glowing.blue {
  color: var(--cyan);
}

.icon-box-glowing.amber {
  color: var(--amber);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border: 1px solid rgba(92, 176, 255, .28);
  border-radius: 7px;
  background: rgba(8, 17, 33, .72);
  margin-top: 2px;
  min-height: 108px;
}

.stat-box {
  display: grid;
  grid-template-columns: 58px auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-box:last-child {
  border-right: 0;
}

.stat-box i {
  grid-row: 1 / 3;
  font-size: 42px;
  color: #5bc7ff;
}

.stat-box strong {
  font-size: 33px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
}

.stat-box span {
  font-size: 12px;
  color: #d5dfec;
}

.about-section {
  padding-top: 42px;
}

.about-copy h2 {
  font-size: 36px;
  line-height: 1.18;
  font-weight: 900;
  max-width: 360px;
  margin-bottom: 18px;
}

.about-copy p {
  color: #d1dbea;
  line-height: 1.72;
  max-width: 395px;
}

.about-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  color: #bdd0e3;
}

.about-copy li {
  margin-bottom: 12px;
  font-size: 14px;
}

.about-copy li i {
  color: var(--cyan);
  margin-right: 10px;
}

.video-mockup-wrapper {
  position: relative;
  border: 1px solid rgba(8, 199, 255, .34);
  border-radius: 28px 6px 28px 6px;
  padding: 14px;
  background: rgba(6, 18, 36, .5);
  box-shadow: 0 0 36px rgba(0, 0, 0, .42);
}

.video-mockup-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 9px;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .82);
  color: #fff;
  background: rgba(4, 13, 25, .55);
  display: grid;
  place-items: center;
  font-size: 26px;
  cursor: pointer;
}

.video-play-btn i {
  margin-left: 5px;
}

.mission-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 330px;
  min-height: 112px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  background: rgba(8, 24, 47, .9);
  border: 1px solid rgba(8, 199, 255, .34);
  border-radius: 7px;
}

.mission-card i {
  color: var(--cyan);
  font-size: 34px;
}

.mission-card strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 9px;
}

.mission-card span {
  display: block;
  color: #d3deec;
  font-size: 12px;
  line-height: 1.65;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(50, 154, 231, .22);
  padding-top: 22px;
  margin: 0 0 18px;
}

.section-head a {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
}

.project-card {
  border: 1px solid rgba(84, 160, 226, .24);
  background: var(--panel-strong);
  border-radius: 7px;
  overflow: hidden;
  height: 100%;
}

.project-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  display: block;
}

.project-card div {
  padding: 18px 20px 20px;
  position: relative;
}

.project-card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 12px;
}

.project-card span {
  position: absolute;
  right: 18px;
  top: 17px;
  color: var(--cyan);
  background: rgba(8, 199, 255, .09);
  border: 1px solid rgba(8, 199, 255, .2);
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 900;
}

.project-card p {
  color: #c4d0e0;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.trusted-section {
  padding-top: 32px;
}

.trusted-section .tagline {
  font-size: 13px;
  margin-bottom: 24px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(50, 154, 231, .22);
  padding-bottom: 34px;
}

.logo-strip span {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  opacity: .92;
  white-space: nowrap;
}

.logo-strip i {
  margin-right: 9px;
}

.insight-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 12px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 7px;
  background: rgba(7, 17, 32, .76);
}

.insight-card img {
  width: 170px;
  height: 120px;
  object-fit: cover;
  border-radius: 3px;
}

.insight-card div {
  padding: 10px 6px 8px 0;
}

.insight-card span {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .5px;
}

.insight-card h3 {
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  margin: 14px 0 11px;
}

.insight-card small {
  color: #9eabba;
  font-size: 10px;
  text-transform: uppercase;
}

.cta-section {
  padding: 34px 0 42px;
}

.cta-banner {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(8, 199, 255, .48);
  border-radius: 8px;
  padding: 32px 62px;
  background:
    linear-gradient(90deg, rgba(10, 55, 120, .72), rgba(5, 21, 46, .66)),
    repeating-linear-gradient(90deg, rgba(8, 199, 255, .14) 0 1px, transparent 1px 22px);
  box-shadow: inset 0 0 40px rgba(8, 199, 255, .12);
}

.cta-content-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-image-box {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 113, 255, 0.15) 0%, rgba(8, 199, 255, 0.05) 100%);
  border: 1px solid rgba(8, 199, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(8, 199, 255, 0.1);
}

.cta-image-box img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.cta-text h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 10px;
  color: #fff;
}

.cta-text p {
  color: #d6e2ef;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.cta-actions-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer {
  background: #020711;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 35px 0 18px;
}

.footer h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .9px;
  margin: 8px 0 18px;
}

.footer p,
.footer a {
  display: block;
  color: #b8c6d7;
  font-size: 12px;
  line-height: 1.8;
}

.footer-brand p {
  margin: 18px 0;
  max-width: 250px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.footer-contact i {
  color: #8ddaff;
  width: 20px;
}

.footer-map svg,
.footer-map img {
  width: 100%;
  height: auto;
  margin-top: 42px;
  opacity: .72;
  border-radius: 6px;
  display: block;
}

.footer-map path {
  fill: rgba(255, 255, 255, .08);
}

.footer-map circle {
  fill: var(--cyan);
  filter: drop-shadow(0 0 5px var(--cyan));
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 30px;
  padding-top: 16px;
  color: #8796a9;
  font-size: 11px;
}

.bottom-footer a {
  display: inline-block;
  margin-left: 35px;
  color: #a7b5c7;
}

.modal-content {
  background: #020711;
  border: 1px solid rgba(8, 199, 255, .3);
  border-radius: 8px;
  padding: 12px;
}

.modal-content img {
  width: 100%;
  border-radius: 4px;
}

.modal-content .close {
  color: #fff;
  opacity: 1;
  position: absolute;
  right: 16px;
  top: 10px;
  z-index: 3;
}

@media (max-width: 1199.98px) {
  .nav-link-custom {
    margin: 0 7px;
    font-size: 13px;
  }

  .brand-type {
    font-size: 23px;
    letter-spacing: 7px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .stats-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-box:nth-child(3) {
    border-right: 0;
  }

  .stat-box:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .logo-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-card img {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    background: rgba(3, 10, 20, .96);
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .hero-section {
    padding-top: 124px;
    background-color: #01050d;
  }

  .hero-visual {
    min-height: 380px;
    transform: translateX(0);
  }

  .hero-logo-orbit {
    width: min(230px, 42vw);
    margin-left: 0;
    margin-top: 78px;
  }

  .hero-features-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin-top: 15px;
  }

  .about-copy {
    margin-bottom: 32px;
  }
}

@media (max-width: 767.98px) {
  .site-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-type {
    font-size: 20px;
    letter-spacing: 5px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-section {
    min-height: auto;
    background-color: #01050d;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-visual {
    display: flex;
    min-height: 300px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-features-list,
  .stats-band,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .hero-feature-item,
  .stat-box {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .stat-box:last-child,
  .hero-feature-item:last-child {
    border-bottom: 0;
  }

  .service-card h2,
  .service-card p,
  .service-card a {
    margin-left: 0;
  }

  .icon-box-glowing {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 16px;
  }

  .mission-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .project-card {
    margin-bottom: 18px;
  }

  .project-card span {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }

  .cta-banner {
    padding: 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .cta-actions-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions-wrapper .btn {
    width: 100%;
  }

  .bottom-footer {
    flex-direction: column;
  }

  .bottom-footer a {
    margin: 0 18px 0 0;
  }
}

/* ==========================================================================
   ABOUT PAGE CUSTOM STYLING & DYNAMIC HOLOGRAM GLOBE
   ========================================================================== */

.about-hero-section {
  padding: 150px 0 60px;
  position: relative;
  background-color: #01050d;
  background-image:
    radial-gradient(circle at 80% 40%, rgba(8, 199, 255, 0.14), transparent 36rem),
    radial-gradient(circle at 20% 70%, rgba(20, 120, 255, 0.08), transparent 28rem);
}

.about-story-header {
  margin-bottom: 24px;
}

.about-story-header .top-line {
  width: 50px;
  height: 2px;
  background-color: var(--cyan);
  margin-bottom: 15px;
  box-shadow: 0 0 8px var(--cyan);
}

.about-story-header .subtitle {
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.about-story-header h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 24px;
  color: #fff;
  text-transform: uppercase;
}

.about-story-header h1 span {
  color: var(--blue);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-story-p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Cards Grid */
.about-grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.about-grid-card {
  background: rgba(8, 21, 41, 0.45);
  border: 1px solid rgba(58, 144, 219, 0.15);
  border-radius: 6px;
  padding: 22px 16px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.about-grid-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(8, 199, 255, 0.18);
  transform: translateY(-3px);
  background: rgba(8, 21, 41, 0.7);
}

.about-grid-card .card-icon {
  font-size: 26px;
  color: var(--cyan);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(8, 199, 255, 0.3));
}

.about-grid-card h3 {
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 10px 0;
}

.about-grid-card p {
  font-size: 11px;
  line-height: 1.6;
  color: #abbdcf;
  margin: 0;
}

/* Hologram Visual */
.hologram-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  margin: 0 auto;
}

.hologram-globe-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-globe-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(8, 199, 255, 0.18) 0%, rgba(20, 120, 255, 0.04) 55%, transparent 70%);
  border-radius: 50%;
  filter: blur(12px);
  animation: hologramPulse 4.5s infinite ease-in-out;
}

.hologram-globe-svg {
  position: absolute;
  width: 90%;
  height: 90%;
  animation: hologramRotate 24s infinite linear;
  opacity: 0.82;
}

.hologram-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 0 12px rgba(8, 199, 255, 0.5));
  animation: logoPulseCentered 4.2s ease-in-out infinite;
}

.hologram-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hologram-line {
  stroke: rgba(8, 199, 255, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: dashAnimation 40s infinite linear;
}

.hologram-callout {
  position: absolute;
  width: 190px;
  z-index: 10;
  transition: all 0.3s ease;
}

.hologram-callout:hover {
  transform: scale(1.03);
}

.hologram-callout.top-left {
  top: 70px;
  left: 0;
  text-align: right;
}

.hologram-callout.top-right {
  top: 70px;
  right: 0;
  text-align: left;
}

.hologram-callout.bottom-left {
  bottom: 130px;
  left: 0;
  text-align: right;
}

.hologram-callout.bottom-right {
  bottom: 130px;
  right: 0;
  text-align: left;
}

.callout-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.hologram-callout.top-left .callout-header,
.hologram-callout.bottom-left .callout-header {
  flex-direction: row-reverse;
}

.callout-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(8, 199, 255, 0.25);
  background: rgba(8, 21, 41, 0.8);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--cyan);
  box-shadow: 0 0 8px rgba(8, 199, 255, 0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hologram-callout:hover .callout-icon {
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.callout-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.callout-desc {
  font-size: 10.5px;
  line-height: 1.5;
  color: #8fa0b5;
}

/* Stats Section */
.about-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid rgba(8, 199, 255, 0.3);
  border-radius: 8px;
  background: rgba(6, 18, 36, 0.65);
  margin-top: 50px;
  box-shadow: inset 0 0 25px rgba(8, 199, 255, 0.06);
}

.about-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 20px;
  border-right: 1px solid rgba(8, 199, 255, 0.12);
}

.about-stat-box:last-child {
  border-right: 0;
}

.about-stat-box strong {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(8, 199, 255, 0.35);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.about-stat-box .stat-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.about-stat-box .stat-desc {
  font-size: 11px;
  color: #a9b7c9;
  line-height: 1.4;
}

/* Hologram Animations */
@keyframes hologramPulse {

  0%,
  100% {
    transform: scale(0.97);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes hologramRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes hologramFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 12px rgba(8, 199, 255, 0.45));
  }

  50% {
    transform: translateY(-6px) scale(1.02);
    filter: drop-shadow(0 0 20px rgba(8, 199, 255, 0.7));
  }
}

@keyframes dashAnimation {
  to {
    stroke-dashoffset: -1000;
  }
}

/* Responsive Overrides */
@media (max-width: 1199.98px) {
  .about-story-header h1 {
    font-size: 34px;
  }

  .about-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hologram-wrapper {
    max-width: 500px;
    height: 500px;
  }

  .hologram-globe-container {
    width: 250px;
    height: 250px;
  }

  .hologram-logo {
    width: 160px;
  }

  .hologram-callout {
    width: 150px;
  }

  .hologram-callout.top-left {
    top: 30px;
    left: 0px;
  }

  .hologram-callout.top-right {
    top: 30px;
    right: 0px;
  }

  .hologram-callout.bottom-left {
    bottom: 80px;
    left: 0px;
  }

  .hologram-callout.bottom-right {
    bottom: 80px;
    right: 0px;
  }

  .about-stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-box:nth-child(2) {
    border-right: 0;
  }

  .about-stat-box:nth-child(n+3) {
    border-top: 1px solid rgba(8, 199, 255, 0.12);
  }
}

@media (max-width: 991.98px) {
  .about-hero-section {
    padding-top: 120px;
  }

  .hologram-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .about-grid-cards {
    grid-template-columns: 1fr;
  }

  .hologram-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 30px 0;
  }

  .hologram-globe-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto;
  }

  .hologram-callout {
    position: static !important;
    width: 100%;
    text-align: left !important;
  }

  .hologram-callout.top-left .callout-header,
  .hologram-callout.bottom-left .callout-header {
    flex-direction: row !important;
  }

  .hologram-lines-svg {
    display: none;
  }

  .about-stats-band {
    grid-template-columns: 1fr;
  }

  .about-stat-box:last-child {
    border-bottom: 0;
  }
}

/* ==========================================================================
   INSIGHTS PAGE CUSTOM STYLING
   ========================================================================== */

.insights-hero-section {
  padding: 150px 0 45px;
  position: relative;
  background-color: #01050d;
  background-image:
    radial-gradient(circle at 80% 40%, rgba(8, 199, 255, 0.12), transparent 36rem),
    radial-gradient(circle at 20% 70%, rgba(20, 120, 255, 0.08), transparent 28rem);
}

.insights-hero-section h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 24px;
  color: #fff;
}

.insights-hero-section h1 span {
  color: var(--cyan);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(8, 199, 255, 0.25);
}

.insights-hero-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 580px;
}

.insights-hero-image {
  max-width: 100%;
  height: auto;
  border: none;
  filter: drop-shadow(0 0 25px rgba(8, 199, 255, 0.35));
  animation: logoPulse 4.5s ease-in-out infinite;
}

.insights-hero-section .hero-visual {
  background: none;
  min-height: auto;
}

/* Category Unified Panel Layout */
.insights-tabs-panel {
  display: flex;
  width: 100%;
  border: 1px solid rgba(58, 144, 219, 0.22);
  border-radius: 8px;
  background: rgba(7, 18, 35, 0.45);
  margin: 30px 0 50px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}

.insights-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(58, 144, 219, 0.16);
  color: #8fa0b5;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  min-height: 106px;
}

.insights-tab-btn:last-child {
  border-right: none;
}

.insights-tab-btn span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.insights-tab-btn i {
  font-size: 26px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Individual Icon Colors - matching the screenshot exactly */
.insights-tab-btn:nth-child(1) i { color: #08c7ff; } /* All Insights - Blue/Cyan */
.insights-tab-btn:nth-child(2) i { color: #ff9b19; } /* AI Solutions - Orange */
.insights-tab-btn:nth-child(3) i { color: #1478ff; } /* Data Analytics - Blue */
.insights-tab-btn:nth-child(4) i { color: #7c45ff; } /* Business Intelligence - Purple */
.insights-tab-btn:nth-child(5) i { color: #00ffc4; } /* Web Development - Green/Teal */
.insights-tab-btn:nth-child(6) i { color: #39ff14; } /* Technology Trends - Neon Green */
.insights-tab-btn:nth-child(7) i { color: #ff007f; } /* Business Strategy - Neon Pink */

.insights-tab-btn:hover {
  background: rgba(255, 255, 255, 0.02);
}

.insights-tab-btn:hover span {
  color: #fff;
}

.insights-tab-btn:hover i {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px currentColor);
}

/* Active State with Bottom Underline Indicator */
.insights-tab-btn.active {
  background: rgba(8, 199, 255, 0.03);
}

.insights-tab-btn.active span {
  color: #fff;
  font-weight: 800;
}

.insights-tab-btn.active i {
  filter: drop-shadow(0 0 10px currentColor);
}

.insights-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 2px;
}

.insights-tab-btn:nth-child(1).active::after { background: #08c7ff; box-shadow: 0 0 12px #08c7ff; }
.insights-tab-btn:nth-child(2).active::after { background: #ff9b19; box-shadow: 0 0 12px #ff9b19; }
.insights-tab-btn:nth-child(3).active::after { background: #1478ff; box-shadow: 0 0 12px #1478ff; }
.insights-tab-btn:nth-child(4).active::after { background: #7c45ff; box-shadow: 0 0 12px #7c45ff; }
.insights-tab-btn:nth-child(5).active::after { background: #00ffc4; box-shadow: 0 0 12px #00ffc4; }
.insights-tab-btn:nth-child(6).active::after { background: #39ff14; box-shadow: 0 0 12px #39ff14; }
.insights-tab-btn:nth-child(7).active::after { background: #ff007f; box-shadow: 0 0 12px #ff007f; }

/* Responsive adjustment for scrolling tab bar on small screens */
@media (max-width: 991.98px) {
  .insights-tabs-panel {
    overflow-x: auto;
    display: flex;
    white-space: nowrap;
  }
  
  .insights-tab-btn {
    flex: 0 0 140px;
    min-width: 140px;
    padding: 20px 10px;
  }
}

/* Featured Insight Card */
.featured-insight-card {
  border: 1px solid rgba(8, 199, 255, 0.28);
  background: linear-gradient(145deg, rgba(8, 21, 41, 0.8), rgba(4, 12, 25, 0.95));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  margin-bottom: 50px;
}

.featured-insight-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.featured-insight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-insight-card:hover .featured-insight-img-wrapper img {
  transform: scale(1.04);
}

.featured-insight-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  color: #10b981;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.featured-insight-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.featured-insight-content p {
  color: #abbdcf;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 25px;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 11.5px;
  color: #8fa0b5;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.insight-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.insight-meta i {
  color: var(--cyan);
  font-size: 13px;
}

.insight-category-badge {
  background: rgba(8, 199, 255, 0.08);
  border: 1px solid rgba(8, 199, 255, 0.2);
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.insight-read-more {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}

.insight-read-more:hover {
  gap: 12px;
  color: #fff;
}

/* Latest Insights Section */
.insights-grid {
  margin-bottom: 50px;
}

.latest-insight-card {
  border: 1px solid rgba(58, 144, 219, 0.16);
  background: rgba(7, 18, 35, 0.8);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.latest-insight-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(8, 199, 255, 0.18);
  background: rgba(8, 21, 41, 0.95);
}

.latest-insight-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.latest-insight-card:hover .latest-insight-img {
  transform: scale(1.05);
}

.latest-insight-content {
  padding: 20px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.latest-insight-category {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

/* Category Badge Colors */
.latest-insight-category.cat-data-analytics {
  color: #1478ff;
  background: rgba(20, 120, 255, 0.12);
  border: 1px solid rgba(20, 120, 255, 0.3);
}

.latest-insight-category.cat-web-development {
  color: #00ffc4;
  background: rgba(0, 255, 196, 0.12);
  border: 1px solid rgba(0, 255, 196, 0.3);
}

.latest-insight-category.cat-business-intelligence {
  color: #7c45ff;
  background: rgba(124, 69, 255, 0.12);
  border: 1px solid rgba(124, 69, 255, 0.3);
}

.latest-insight-category.cat-ai-solutions {
  color: #ff9b19;
  background: rgba(255, 155, 25, 0.12);
  border: 1px solid rgba(255, 155, 25, 0.3);
}

.latest-insight-category.cat-technology-trends {
  color: #39ff14;
  background: rgba(57, 255, 20, 0.12);
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.latest-insight-category.cat-business-strategy {
  color: #ff007f;
  background: rgba(255, 0, 127, 0.12);
  border: 1px solid rgba(255, 0, 127, 0.3);
}

.latest-insight-title {
  color: #fff;
  font-size: 17.5px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .latest-insight-title {
    font-size: 11.5px;
  }
}

@media (min-width: 1200px) {
  .latest-insight-title {
    font-size: 13px;
  }
}

.latest-insight-meta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  font-size: 11px;
  color: #8fa0b5;
  margin-top: auto;
}

.latest-insight-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Featured Case Studies Section */
.case-studies-section {
  padding: 40px 0;
  border-top: 1px solid rgba(50, 154, 231, 0.22);
}

.case-study-card {
  border: 1px solid rgba(58, 144, 219, 0.18);
  background: var(--panel-strong);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(8, 199, 255, 0.15);
  transform: translateY(-4px);
}

.case-study-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.case-study-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-img-wrapper img {
  transform: scale(1.05);
}

.case-study-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-study-industry {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.case-study-title {
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 12px;
}

.case-study-desc {
  color: #abbdcf;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.case-study-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  background: rgba(8, 199, 255, 0.08);
  border: 1px solid rgba(8, 199, 255, 0.2);
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.case-study-metric i {
  color: var(--cyan);
  font-size: 16px;
}

.case-study-link {
  color: var(--cyan);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.case-study-link:hover {
  gap: 10px;
  color: #fff;
}

/* Reports & Resources Section */
.resources-section {
  padding: 40px 0;
  border-top: 1px solid rgba(50, 154, 231, 0.22);
}

.resource-card {
  background: rgba(7, 18, 35, 0.6);
  border: 1px solid rgba(58, 144, 219, 0.16);
  border-radius: 8px;
  padding: 30px 24px;
  text-align: left;
  display: flex;
  gap: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(8, 199, 255, 0.15);
  transform: translateY(-3px);
  background: rgba(8, 21, 41, 0.85);
}

.resource-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.resource-icon-wrapper.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.resource-icon-wrapper.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.resource-icon-wrapper.purple {
  background: rgba(124, 69, 255, 0.1);
  color: var(--purple);
  border: 1px solid rgba(124, 69, 255, 0.2);
}

.resource-icon-wrapper.blue {
  background: rgba(20, 120, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(20, 120, 255, 0.2);
}

.resource-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.resource-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 8px;
}

.resource-desc {
  color: #abbdcf;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.resource-download-btn {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.resource-download-btn:hover {
  color: #fff;
}

/* Newsletter Section */
.newsletter-section {
  padding: 40px 0 60px;
}

.newsletter-banner {
  border: 1px solid rgba(8, 199, 255, 0.35);
  background: linear-gradient(135deg, rgba(7, 24, 47, 0.95), rgba(3, 10, 22, 0.98));
  border-radius: 8px;
  padding: 40px 50px;
  box-shadow: inset 0 0 30px rgba(8, 199, 255, 0.08), 0 15px 45px rgba(0, 0, 0, 0.4);
}

.newsletter-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(8, 199, 255, 0.1);
  border: 1px solid rgba(8, 199, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(8, 199, 255, 0.15);
  flex-shrink: 0;
}

.newsletter-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-info h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
}

.newsletter-info p {
  color: #abbdcf;
  font-size: 13.5px;
  margin: 0;
}

.newsletter-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  background: rgba(2, 7, 17, 0.7);
  border: 1px solid rgba(58, 144, 219, 0.24);
  color: #fff;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 13px;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--cyan);
  outline: none;
  box-shadow: 0 0 15px rgba(8, 199, 255, 0.15);
  background: rgba(2, 7, 17, 0.9);
}

.newsletter-submit {
  background: var(--blue);
  border: 1px solid rgba(8, 199, 255, 0.28);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  padding: 0 26px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: #087cff;
  box-shadow: 0 0 20px rgba(8, 199, 255, 0.25);
  transform: translateY(-1px);
}

.newsletter-footer-text {
  font-size: 11px;
  color: #8fa0b5;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Responsive Styles for Insights */
@media (max-width: 1199.98px) {
  .insights-hero-section h1 {
    font-size: 38px;
  }
  
  .featured-insight-content {
    padding: 30px;
  }
  
  .featured-insight-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .insights-hero-section {
    padding-top: 120px;
  }

  .insights-hero-image {
    margin-top: 30px;
  }

  .featured-insight-img-wrapper {
    height: 320px;
  }

  .featured-insight-content {
    padding: 30px;
  }

  .newsletter-banner {
    padding: 30px;
  }

  .newsletter-form-container {
    margin-top: 24px;
  }
}

@media (max-width: 767.98px) {
  .insights-hero-section h1 {
    font-size: 32px;
  }

  .featured-insight-content {
    padding: 24px;
  }

  .featured-insight-content h2 {
    font-size: 20px;
  }

  .newsletter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-submit {
    padding: 14px 20px;
  }
}

/* ==========================================================================
   SERVICES PAGE CUSTOM STYLING & DYNAMIC CARDS
   ========================================================================== */

/* Hero Section */
.services-hero-section {
  padding: 160px 0 60px;
  position: relative;
  background-color: transparent;
  background-image:
    url("../images/servicebg.png"),
    radial-gradient(circle at 75% 20%, rgba(8, 199, 255, 0.15), transparent 38rem),
    radial-gradient(circle at 25% 75%, rgba(20, 120, 255, 0.1), transparent 30rem);
  background-size: cover, auto, auto;
  background-position: center top, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  text-align: center;
}

.services-hero-section .services-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  color: #fff;
  text-transform: uppercase;
}

.services-hero-section .services-subtitle {
  color: #f8fbff;
  font-size: 16px;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 12px;
  opacity: 0.9;
  line-height: 1.6;
}

.services-hero-section .services-tagline {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

.services-hero-section .text-highlight {
  color: #00a2ff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 162, 255, 0.4);
}

/* Quick Nav Cards */
.services-quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 70px;
}

.quick-nav-card {
  background: rgba(7, 18, 35, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quick-nav-card:hover {
  transform: translateY(-4px);
  background: rgba(8, 21, 41, 0.8);
}

.quick-nav-card.nav-blue:hover { border-color: var(--blue); box-shadow: 0 0 20px rgba(20, 120, 255, 0.25); }
.quick-nav-card.nav-purple:hover { border-color: var(--purple); box-shadow: 0 0 20px rgba(124, 69, 255, 0.25); }
.quick-nav-card.nav-cyan:hover { border-color: var(--cyan); box-shadow: 0 0 20px rgba(8, 199, 255, 0.25); }
.quick-nav-card.nav-orange:hover { border-color: var(--amber); box-shadow: 0 0 20px rgba(255, 155, 25, 0.25); }

.quick-nav-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 20px;
  border: 1px solid currentColor;
  box-shadow: 0 0 12px currentColor;
}

.quick-nav-card h3 {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.quick-nav-card p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.quick-nav-card .learn-more-link {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* Detailed Service Sections */
.service-detail-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
}

.service-showcase-card {
  background: linear-gradient(145deg, rgba(8, 21, 41, 0.6), rgba(4, 12, 25, 0.9));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.service-showcase-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.service-showcase-card.card-blue::before { background: var(--blue); }
.service-showcase-card.card-purple::before { background: var(--purple); }
.service-showcase-card.card-cyan::before { background: var(--cyan); }
.service-showcase-card.card-orange::before { background: var(--amber); }

.service-showcase-card.card-blue { border-color: rgba(20, 120, 255, 0.3); }
.service-showcase-card.card-purple { border-color: rgba(124, 69, 255, 0.3); }
.service-showcase-card.card-cyan { border-color: rgba(8, 199, 255, 0.3); }
.service-showcase-card.card-orange { border-color: rgba(255, 155, 25, 0.3); }

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

.showcase-title-area {
  flex: 1;
}

.showcase-title-area h2 {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
}

.showcase-title-area h2 span {
  font-size: 20px;
  opacity: 0.8;
}

.showcase-title-area .showcase-subtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.showcase-title-area p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 580px;
  margin: 0;
}

/* Showcase Tech Area */
.showcase-tech-area {
  flex-shrink: 0;
  max-width: 520px;
}

.showcase-tech-area h4 {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-align: left;
}

.tech-icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-icon-item {
  background: rgba(2, 7, 17, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px;
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.25s ease;
  cursor: default;
}

.tech-icon-item:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(8, 199, 255, 0.15);
  background: rgba(7, 18, 35, 0.8);
}

.tech-icon-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.tech-icon-item i {
  font-size: 24px;
}

.tech-icon-item span {
  font-size: 8px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: center;
  white-space: nowrap;
}

.tech-icon-item:hover span {
  color: #fff;
}

/* Detail Lists Grid */
.detail-lists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-list-col h4 {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.detail-list-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.detail-list-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list-col li {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.detail-list-col li i {
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.detail-list-col li.industry-item i {
  color: var(--cyan);
  width: 14px;
  text-align: center;
}

/* Horizontal Deliverables Bar */
.horizontal-deliverables-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(2, 7, 17, 0.6);
  border: 1px solid rgba(58, 144, 219, 0.16);
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 40px;
}

.horizontal-deliverables-bar h4 {
  font-size: 11px;
  font-weight: 900;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-right: 20px;
  flex-shrink: 0;
}

.deliverables-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-grow: 1;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
}

.deliverable-item i {
  color: var(--cyan);
  font-size: 14px;
}

/* Why Choose Xaerel */
.why-choose-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.why-choose-section h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 45px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.why-choose-card {
  background: rgba(7, 18, 35, 0.5);
  border: 1px solid rgba(58, 144, 219, 0.16);
  border-radius: 8px;
  padding: 24px 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(8, 199, 255, 0.15);
  background: rgba(8, 21, 41, 0.8);
}

.why-choose-card i {
  font-size: 28px;
  color: var(--cyan);
  margin-bottom: 16px;
}

.why-choose-card h3 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.why-choose-card p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

/* Our Process */
.process-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.process-section h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 60px;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0px, var(--line) 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  width: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(2, 7, 17, 0.9);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(8, 199, 255, 0.1);
}

.process-step:hover .process-icon-box {
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0;
}

/* Case Studies & Testimonial Section */
.cases-testimonials-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
}

.cases-testimonials-section h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 45px;
  text-align: center;
}

.case-study-metric-box {
  background: rgba(2, 7, 17, 0.5);
  border: 1px solid rgba(58, 144, 219, 0.16);
  border-radius: 6px;
  padding: 14px;
  margin-top: 16px;
}

.case-study-metric-box strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1.2;
}

.case-study-metric-box span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.testimonial-card-premium {
  background: linear-gradient(145deg, rgba(8, 21, 41, 0.7), rgba(4, 12, 25, 0.95));
  border: 1px solid rgba(8, 199, 255, 0.28);
  border-radius: 8px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.testimonial-card-premium h4 {
  font-size: 11px;
  font-weight: 900;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.testimonial-quote-icon {
  font-size: 36px;
  color: rgba(8, 199, 255, 0.15);
  position: absolute;
  top: 30px;
  right: 40px;
}

.testimonial-card-premium p {
  font-size: 14px;
  line-height: 1.8;
  color: #d1dbea;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 11px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--amber);
  margin-top: 14px;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}

.faq-accordion-item {
  background: rgba(7, 18, 35, 0.45);
  border: 1px solid rgba(58, 144, 219, 0.16);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.faq-accordion-item:hover,
.faq-accordion-item.active-item {
  border-color: var(--cyan);
  background: rgba(8, 21, 41, 0.65);
  box-shadow: 0 0 15px rgba(8, 199, 255, 0.1);
}

.faq-header-btn {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none !important;
}

.faq-header-btn i {
  color: var(--cyan);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-header-btn[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-body-content {
  padding: 0 24px 20px 24px;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* Responsive Overrides for Services Page */
@media (max-width: 1199.98px) {
  .services-hero-section h1 { font-size: 40px; }
  .services-quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-header { flex-direction: column; gap: 24px; }
  .showcase-tech-area { max-width: 100%; }
  .detail-lists-grid { grid-template-columns: repeat(3, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .process-timeline::before { display: none; }
  .process-step { width: 30%; }
}

@media (max-width: 991.98px) {
  .detail-lists-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { width: 45%; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .horizontal-deliverables-bar { flex-direction: column; align-items: flex-start; }
  .horizontal-deliverables-bar h4 { border-right: none; padding-right: 0; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
}

@media (max-width: 767.98px) {
  .services-hero-section h1 { font-size: 32px; }
  .services-quick-nav-grid { grid-template-columns: 1fr; }
  .service-showcase-card { padding: 30px 20px; }
  .showcase-title-area h2 { font-size: 20px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .detail-lists-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .process-step { width: 100%; margin-bottom: 20px; }
}
/* Contact Page */
.contact-hero-section {
  padding: 180px 0 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 199, 255, .18), transparent 34rem),
    linear-gradient(180deg, rgba(5, 17, 35, .72), rgba(2, 7, 17, .95));
  border-bottom: 1px solid rgba(58, 144, 219, .16);
}

.contact-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(48, 119, 188, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 119, 188, .06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.contact-hero-section .site-shell {
  position: relative;
  z-index: 1;
}

.contact-hero-section h1 {
  max-width: 850px;
  margin: 18px auto 20px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.contact-hero-section h1 span {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(8, 199, 255, .34);
}

.contact-hero-section p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-page-section {
  padding: 88px 0 110px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  border: 1px solid rgba(58, 144, 219, .22);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(5, 15, 31, .84);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.contact-info-panel,
.contact-form-panel {
  padding: clamp(34px, 5vw, 64px);
}

.contact-info-panel {
  position: relative;
  background:
    radial-gradient(circle at 15% 8%, rgba(8, 199, 255, .15), transparent 20rem),
    linear-gradient(145deg, rgba(8, 31, 59, .96), rgba(3, 12, 27, .98));
  border-right: 1px solid rgba(58, 144, 219, .2);
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -100px;
  border: 1px solid rgba(8, 199, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(8, 199, 255, .08);
}

.section-kicker {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.contact-info-panel h2,
.contact-form-panel h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 850;
  margin: 13px 0 17px;
}

.contact-intro,
.contact-form-panel > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 34px;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(58, 144, 219, .14);
  border-radius: 8px;
  background: rgba(4, 13, 28, .48);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.contact-detail-item:hover {
  transform: translateX(4px);
  border-color: rgba(8, 199, 255, .36);
  background: rgba(8, 32, 57, .65);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 199, 255, .32);
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(8, 199, 255, .08);
  box-shadow: inset 0 0 18px rgba(8, 199, 255, .06);
}

.contact-detail-item h3 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .7px;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.contact-detail-item p {
  margin: 0;
  color: #cbd8e8;
  line-height: 1.55;
}

.contact-detail-item a {
  color: #cbd8e8;
}

.contact-detail-item a:hover {
  color: var(--cyan);
  text-decoration: none;
}

.contact-detail-item small {
  color: var(--muted);
}

.contact-response-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--cyan);
  color: #bfd0e3;
  background: rgba(8, 199, 255, .07);
  font-size: .86rem;
  line-height: 1.55;
}

.contact-response-note i {
  color: var(--cyan);
  margin-top: 4px;
}

.contact-form-panel {
  background: linear-gradient(155deg, rgba(8, 20, 39, .9), rgba(3, 10, 23, .98));
}

.contact-page-form {
  margin-top: 30px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 9px;
  color: #dce8f6;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .45px;
}

.contact-form-group label span {
  color: var(--cyan);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  border: 1px solid rgba(91, 150, 204, .28);
  border-radius: 7px;
  padding: 14px 15px;
  outline: none;
  color: #eef7ff;
  background: rgba(2, 9, 20, .78);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form-group select {
  min-height: 52px;
  color-scheme: dark;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 145px;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #62758b;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(4, 17, 34, .92);
  box-shadow: 0 0 0 3px rgba(8, 199, 255, .1), 0 0 22px rgba(8, 199, 255, .08);
}

.contact-page-form.was-validated :invalid {
  border-color: #ff6680;
}

.contact-submit-btn {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  margin-top: 2px;
}

.contact-form-status {
  min-height: 24px;
  margin: 15px 0 0;
  color: #ff8295;
  font-size: .84rem;
}

.contact-form-status.success {
  color: #4de8ae;
}

@media (max-width: 991.98px) {
  .contact-hero-section {
    padding: 150px 0 72px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(58, 144, 219, .2);
  }
}

@media (max-width: 575.98px) {
  .contact-hero-section {
    padding: 132px 0 60px;
  }

  .contact-page-section {
    padding: 58px 0 76px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 28px 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   PORTFOLIO PAGE CUSTOM STYLING & INTERACTIVE GRID
   ========================================================================== */

.portfolio-hero-section {
  padding: 150px 0 60px;
  position: relative;
  background-color: #01050d;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(8, 199, 255, 0.14), transparent 36rem),
    radial-gradient(circle at 20% 70%, rgba(20, 120, 255, 0.08), transparent 28rem);
  text-align: center;
}

.portfolio-hero-section h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

.portfolio-hero-section h1 span {
  color: var(--cyan);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(8, 199, 255, 0.25);
}

/* Tabs Panel */
.portfolio-tabs-panel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
  border: 1px solid rgba(58, 144, 219, 0.22);
  border-radius: 8px;
  background: rgba(7, 18, 35, 0.45);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}

.portfolio-tab-btn {
  flex: 1;
  min-width: 150px;
  padding: 18px 10px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(58, 144, 219, 0.16);
  color: #8fa0b5;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  outline: none !important;
}

.portfolio-tab-btn:last-child {
  border-right: none;
}

.portfolio-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.portfolio-tab-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(8, 124, 255, 0.22), rgba(7, 90, 221, 0.22));
  box-shadow: inset 0 -3px 0 var(--cyan);
}

/* Portfolio Item Cards */
.portfolio-grid-section {
  padding: 10px 0 80px;
}

.portfolio-item-col {
  margin-bottom: 30px;
}

.portfolio-card-premium {
  height: 100%;
  border: 1px solid rgba(58, 144, 219, 0.22);
  background: var(--panel-strong);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.portfolio-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 199, 255, 0.45);
  box-shadow: 0 20px 40px rgba(8, 199, 255, 0.12), 0 0 25px rgba(8, 199, 255, 0.06);
}

.portfolio-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #01050d;
}

.portfolio-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card-premium:hover .portfolio-card-img-wrapper img {
  transform: scale(1.08);
}

.portfolio-card-category {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(8, 199, 255, 0.12);
  border: 1px solid rgba(8, 199, 255, 0.25);
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.portfolio-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.3;
}

.portfolio-card-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.portfolio-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.portfolio-tech-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c9d5e6;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.portfolio-card-btn {
  width: 100%;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none !important;
}

.portfolio-card-premium:hover .portfolio-card-btn {
  background: linear-gradient(135deg, var(--blue), #0056cc);
  border-color: rgba(8, 199, 255, 0.28);
  box-shadow: 0 0 15px rgba(20, 120, 255, 0.3);
}

.portfolio-card-btn i {
  transition: transform 0.3s ease;
}

.portfolio-card-premium:hover .portfolio-card-btn i {
  transform: translateX(4px);
}

/* Modal details styling */
.portfolio-modal-details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-top: 15px;
}

.portfolio-modal-img-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(58, 144, 219, 0.2);
  height: 310px;
  background: #01050d;
}

.portfolio-modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-modal-meta-item {
  margin-bottom: 16px;
}

.portfolio-modal-meta-item:last-child {
  margin-bottom: 0;
}

.portfolio-modal-meta-item h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 5px;
  font-weight: 800;
}

.portfolio-modal-meta-item p {
  color: #eef7ff;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.portfolio-modal-metrics {
  background: rgba(8, 199, 255, 0.05);
  border: 1px solid rgba(8, 199, 255, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.portfolio-modal-metrics i {
  font-size: 24px;
  color: var(--cyan);
  filter: drop-shadow(0 0 5px rgba(8, 199, 255, 0.4));
}

.portfolio-modal-metrics div strong {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
}

.portfolio-modal-metrics div span {
  font-size: 10.5px;
  color: var(--muted);
}

.portfolio-modal-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.modal-content .close {
  outline: none !important;
}

@media (max-width: 991.98px) {
  .portfolio-modal-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .portfolio-modal-img-wrapper {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .portfolio-hero-section h1 {
    font-size: 32px;
  }
  
  .portfolio-tabs-panel {
    flex-direction: column;
    border-radius: 6px;
  }
  
  .portfolio-tab-btn {
    border-right: none;
    border-bottom: 1px solid rgba(58, 144, 219, 0.16);
    width: 100%;
    padding: 14px 10px;
  }
  
  .portfolio-tab-btn:last-child {
    border-bottom: none;
  }
}

/* ==========================================
   Case Studies Page Styles
   ========================================== */

/* Hero Section */
.case-hero-section {
  padding: 150px 0 60px;
  position: relative;
  background-color: #01050d;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(20, 120, 255, 0.15), transparent 30rem),
    radial-gradient(circle at 20% 80%, rgba(8, 199, 255, 0.08), transparent 25rem);
}

.case-hero-section h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.case-hero-section h1 span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(8, 199, 255, 0.2);
}

.case-hero-section p {
  color: #bdd0e3;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.case-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: visible;
  animation: floatAnim 4.5s ease-in-out infinite;
}

.case-hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Case Study Cards Selector */
.case-selectors-section {
  padding: 40px 0 20px;
}

.case-card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  background: #01050d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-selector-card:hover .case-card-img-wrapper img {
  transform: scale(1.05);
}

.case-selector-card {
  height: 100%;
  background: var(--panel);
  border: 1px solid rgba(58, 144, 219, 0.2);
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.case-selector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.case-selector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 199, 255, 0.4);
  background: var(--panel-strong);
  box-shadow: 0 15px 30px rgba(8, 199, 255, 0.08);
}

.case-selector-card.active {
  border-color: rgba(8, 199, 255, 0.5);
  background: var(--panel-strong);
  box-shadow: 0 15px 35px rgba(20, 120, 255, 0.15), inset 0 0 15px rgba(8, 199, 255, 0.05);
}

.case-selector-card.active::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.case-card-cat {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.cat-cyan { color: var(--cyan); }
.cat-purple { color: var(--purple); }
.cat-blue { color: var(--blue); }
.cat-amber { color: var(--amber); }

.case-selector-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.case-selector-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.case-card-link {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.case-selector-card:hover .case-card-link {
  color: #fff;
  gap: 10px;
}

/* Detailed Case Study Section */
.case-details-section {
  padding: 40px 0 80px;
}

.case-details-wrapper {
  display: none;
}

.case-details-wrapper.active {
  display: block;
  animation: fadeInEffect 0.5s ease forwards;
}

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

.case-detail-heading-area {
  margin-bottom: 35px;
}

.case-detail-heading-area .tagline {
  margin-bottom: 10px;
}

.case-detail-heading-area h2 {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.case-detail-heading-area p {
  font-size: 16px;
  color: var(--muted);
  max-width: 750px;
}

/* Laptop Mockup Frame CSS */
.laptop-mockup-container {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.laptop-screen-frame {
  position: relative;
  width: 82%;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  background: #080c14;
  border: 14px solid #17202f;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.6);
}

.laptop-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-base-frame {
  position: relative;
  width: 100%;
  height: 14px;
  background: #2a3443;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.laptop-base-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 6px;
  background: #111823;
  border-radius: 0 0 6px 6px;
}

/* Stats Row inside Detail view */
.case-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.case-meta-badge {
  background: rgba(58, 144, 219, 0.08);
  border: 1px solid rgba(58, 144, 219, 0.2);
  border-radius: 6px;
  padding: 10px 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.case-meta-badge span {
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.8px;
}

.case-meta-badge strong {
  font-size: 13.5px;
  color: #fff;
  font-weight: 700;
}

/* Challenge & Solution Lists */
.case-info-row {
  margin-top: 40px;
  border-top: 1px solid rgba(58, 144, 219, 0.15);
  padding-top: 40px;
}

.case-info-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-info-block h3 i {
  color: var(--cyan);
}

.case-info-block h3 img {
  width: 19px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.case-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-info-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #d1dbea;
}

.case-info-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 14px;
}

.case-info-list li img {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: auto;
}

.challenge-list li i { color: #ff5e5e; }
.solution-list li i { color: #2ecc71; }

/* Technologies Box */
.case-tech-box {
  background: rgba(7, 18, 35, 0.5);
  border: 1px solid rgba(58, 144, 219, 0.15);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
}

.case-tech-box h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.case-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.case-tech-icon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 14px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: all 0.25s ease;
}

.case-tech-icon:hover {
  background: rgba(8, 199, 255, 0.06);
  border-color: rgba(8, 199, 255, 0.3);
  transform: translateY(-2px);
}

.case-tech-icon i {
  font-size: 24px;
  color: #c9d5e6;
  transition: color 0.25s ease;
}

.case-tech-icon:hover i {
  color: var(--cyan);
}

.case-tech-icon img {
  height: 24px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.case-tech-icon:hover img {
  transform: scale(1.1);
}

.case-tech-icon span {
  font-size: 9.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Project Process Steps */
.case-process-section {
  margin-top: 50px;
  border-top: 1px solid rgba(58, 144, 219, 0.15);
  padding-top: 45px;
}

.case-process-section h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.case-process-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.case-process-step {
  flex: 1;
  min-width: 220px;
  background: rgba(7, 18, 35, 0.45);
  border: 1px solid rgba(58, 144, 219, 0.15);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.case-process-step:hover {
  border-color: rgba(8, 199, 255, 0.3);
  background: rgba(7, 18, 35, 0.7);
  transform: translateY(-2px);
}

.case-process-step img {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-bottom: 0 !important;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.case-process-step h4 {
  grid-column: 2;
  grid-row: 1;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.case-process-step p {
  grid-column: 2;
  grid-row: 2;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 992px) {
  .case-process-step:not(:last-child)::after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: calc(100% + 2px);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(8, 199, 255, 0.4);
    font-size: 14px;
    pointer-events: none;
    z-index: 10;
  }
}

/* Results Metrics Grid */
.case-results-section {
  margin-top: 50px;
  border-top: 1px solid rgba(58, 144, 219, 0.15);
  padding-top: 45px;
}

.case-results-section h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.case-metric-card {
  background: linear-gradient(145deg, rgba(8, 24, 47, 0.7), rgba(4, 12, 25, 0.8));
  border: 1px solid rgba(58, 144, 219, 0.15);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.case-metric-card:hover {
  transform: translateY(-3px);
}

/* Card theme-specific border color shifts on hover */
.case-metric-card.card-cyan { border: 1px solid rgba(8, 199, 255, 0.15); }
.case-metric-card.card-cyan:hover { border-color: rgba(8, 199, 255, 0.45); box-shadow: 0 15px 30px rgba(8, 199, 255, 0.12); }

.case-metric-card.card-purple { border: 1px solid rgba(124, 69, 255, 0.15); }
.case-metric-card.card-purple:hover { border-color: rgba(124, 69, 255, 0.45); box-shadow: 0 15px 30px rgba(124, 69, 255, 0.12); }

.case-metric-card.card-blue { border: 1px solid rgba(20, 120, 255, 0.15); }
.case-metric-card.card-blue:hover { border-color: rgba(20, 120, 255, 0.45); box-shadow: 0 15px 30px rgba(20, 120, 255, 0.12); }

.case-metric-card.card-amber { border: 1px solid rgba(255, 155, 25, 0.15); }
.case-metric-card.card-amber:hover { border-color: rgba(255, 155, 25, 0.45); box-shadow: 0 15px 30px rgba(255, 155, 25, 0.12); }

.case-metric-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.case-metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Theme-specific styles for the icon circle */
.case-metric-card.card-cyan .case-metric-icon {
  background: rgba(8, 199, 255, 0.08);
  border: 1px solid rgba(8, 199, 255, 0.15);
}
.case-metric-card.card-purple .case-metric-icon {
  background: rgba(124, 69, 255, 0.08);
  border: 1px solid rgba(124, 69, 255, 0.15);
}
.case-metric-card.card-blue .case-metric-icon {
  background: rgba(20, 120, 255, 0.08);
  border: 1px solid rgba(20, 120, 255, 0.15);
}
.case-metric-card.card-amber .case-metric-icon {
  background: rgba(255, 155, 25, 0.08);
  border: 1px solid rgba(255, 155, 25, 0.15);
}

.case-metric-value {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  display: inline-block;
}

.val-cyan { color: var(--cyan); text-shadow: 0 0 12px rgba(8, 199, 255, 0.2); }
.val-purple { color: var(--purple); text-shadow: 0 0 12px rgba(124, 69, 255, 0.2); }
.val-blue { color: var(--blue); text-shadow: 0 0 12px rgba(20, 120, 255, 0.2); }
.val-amber { color: var(--amber); text-shadow: 0 0 12px rgba(255, 155, 25, 0.2); }

.case-metric-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.case-metric-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Overview and Testimonial Area */
.case-overview-testimonial-row {
  margin-top: 50px;
  border-top: 1px solid rgba(58, 144, 219, 0.15);
  padding-top: 45px;
}

.case-overview-thumbs-section {
  background: rgba(7, 18, 35, 0.6);
  border: 1px solid rgba(58, 144, 219, 0.2);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.case-overview-thumbs-section h3,
.case-testimonial-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.case-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  flex-grow: 1;
}

.case-thumb-item {
  background: rgba(2, 7, 17, 0.5);
  border: 1px solid rgba(58, 144, 219, 0.15);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  height: 100%;
}

.case-thumb-item img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease;
  margin-bottom: 12px;
}

.case-thumb-item:hover img {
  transform: scale(1.05);
}

.case-thumb-caption {
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: auto;
}

/* Testimonial Box Styling */
.case-testimonial-card {
  background: rgba(7, 18, 35, 0.6);
  border: 1px solid rgba(58, 144, 219, 0.2);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  position: relative;
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.case-testimonial-content {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
  flex-grow: 1;
}

.case-testimonial-content i.quote-icon {
  font-size: 28px;
  color: var(--cyan);
  line-height: 1.2;
  flex-shrink: 0;
  opacity: 1;
  margin-top: 2px;
}

.case-testimonial-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #cddbec;
  margin: 0;
}

.case-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.case-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(8, 199, 255, 0.2);
}

.case-author-info strong {
  display: block;
  font-size: 13.5px;
  color: #fff;
  font-weight: 700;
}

.case-author-info span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

/* Responsiveness media queries */
@media (max-width: 991.98px) {
  .case-hero-section {
    padding: 120px 0 40px;
    text-align: center;
  }
  .case-hero-section h1 {
    font-size: 32px;
  }
  .case-hero-visual {
    margin-top: 40px;
  }
  .case-process-flow::before {
    display: none;
  }
  .case-process-step {
    flex: 1 1 45%;
  }
  .case-thumbs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .case-process-step {
    flex: 1 1 100%;
  }
  .case-thumbs-grid {
    grid-template-columns: 1fr;
  }
  .case-meta-row {
    justify-content: center;
  }
  .case-detail-heading-area {
    text-align: center;
  }
}

/* ==========================================================================
   TECHNOLOGIES PAGE STYLING
   ========================================================================== */

/* Hero Section */
.tech-hero-section {
  padding: 160px 0 60px;
  position: relative;
  background-color: transparent;
  background-image:
    radial-gradient(circle at 75% 20%, rgba(8, 199, 255, 0.15), transparent 38rem),
    radial-gradient(circle at 25% 75%, rgba(124, 69, 255, 0.1), transparent 30rem);
  text-align: center;
}

.tech-hero-section .tech-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  color: #fff;
  text-transform: uppercase;
}

.tech-hero-section .tech-subtitle {
  color: #f8fbff;
  font-size: 16px;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 12px;
  opacity: 0.9;
  line-height: 1.6;
}

.tech-hero-section .tech-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 15px;
}

.text-highlight-purple {
  color: var(--purple);
  text-shadow: 0 0 10px rgba(124, 69, 255, 0.3);
}

.text-highlight-cyan {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(8, 199, 255, 0.3);
}

/* Tabs Navigation */
.tech-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px auto 20px;
  max-width: 900px;
}

.tech-tab-btn {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  color: var(--muted);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tech-tab-btn:hover {
  border-color: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
}

.tech-tab-btn.active {
  background: linear-gradient(135deg, #087cff, #075add);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 0 0 15px rgba(8, 124, 255, 0.4);
}

/* Grid & Cards */
.tech-grid-section {
  padding: 40px 0 80px;
}

.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.tech-card-item {
  background: var(--panel-strong);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 30px 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
}

.tech-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 70%);
  pointer-events: none;
}

.tech-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--card-glow-color, var(--cyan));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--card-glow-opacity-color, rgba(8, 199, 255, 0.15));
}

.tech-card-icon-area {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  height: 60px;
}

.tech-card-icon-area svg {
  width: 48px;
  height: 48px;
}

.tech-card-info h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.tech-card-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--card-glow-color, var(--cyan));
  margin-bottom: 12px;
  display: inline-block;
}

.tech-card-desc {
  color: #c9d5e6;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 0;
}

.tech-card-da {
  --card-glow-color: var(--blue);
  --card-glow-opacity-color: rgba(20, 120, 255, 0.2);
}

.tech-card-bi {
  --card-glow-color: var(--purple);
  --card-glow-opacity-color: rgba(124, 69, 255, 0.2);
}

.tech-card-web {
  --card-glow-color: var(--cyan);
  --card-glow-opacity-color: rgba(8, 199, 255, 0.2);
}

.tech-card-ai {
  --card-glow-color: var(--amber);
  --card-glow-opacity-color: rgba(255, 155, 25, 0.2);
}

/* Why Us Section */
.tech-why-section {
  padding: 60px 0 80px;
  background: rgba(4, 13, 29, 0.4);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.tech-why-section h2 {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 45px;
  color: #fff;
}

.tech-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tech-why-card {
  text-align: center;
  padding: 20px;
}

.tech-why-card i {
  font-size: 40px;
  color: var(--cyan);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(8, 199, 255, 0.3));
}

.tech-why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.tech-why-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   GET A QUOTE PAGE CUSTOM STYLING
   ========================================================================== */

.quote-hero-section {
  padding: 180px 0 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 199, 255, .18), transparent 34rem),
    linear-gradient(180deg, rgba(5, 17, 35, .72), rgba(2, 7, 17, .95));
  border-bottom: 1px solid rgba(58, 144, 219, .16);
  text-align: center;
}

.quote-hero-section h1 {
  max-width: 850px;
  margin: 18px auto 20px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.quote-hero-section h1 span {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(8, 199, 255, .34);
}

.quote-hero-section p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.quote-page-section {
  padding: 88px 0 110px;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 34px;
}

@media (max-width: 991.98px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

.quote-form-panel {
  padding: clamp(34px, 5vw, 64px);
  background: linear-gradient(155deg, rgba(8, 20, 39, .9), rgba(3, 10, 23, .98));
  border: 1px solid rgba(58, 144, 219, .22);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.quote-step {
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(58, 144, 219, 0.15);
  padding-bottom: 35px;
}

.quote-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.quote-step-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.quote-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(8, 199, 255, 0.1);
  border: 1px solid rgba(8, 199, 255, 0.35);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(8, 199, 255, 0.2);
}

.quote-step-title h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Service Selector Grid */
.service-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 575.98px) {
  .service-selector-grid {
    grid-template-columns: 1fr;
  }
}

.service-select-card {
  position: relative;
  background: rgba(2, 9, 20, 0.78);
  border: 1px solid rgba(91, 150, 204, 0.2);
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  gap: 18px;
  align-items: center;
}

.service-select-card:hover {
  border-color: rgba(8, 199, 255, 0.35);
  background: rgba(4, 17, 34, 0.9);
  transform: translateY(-2px);
}

.service-select-card.selected {
  border-color: var(--service-color, var(--cyan));
  background: rgba(8, 24, 47, 0.6);
  box-shadow: 0 0 20px var(--service-glow, rgba(8, 199, 255, 0.15));
}

.service-select-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-select-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #cbd8e8;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.service-select-card.selected .service-select-icon {
  color: #fff;
  background: var(--service-color, var(--cyan));
  border-color: var(--service-color, var(--cyan));
}

.service-select-info h3 {
  font-size: 14.5px;
  font-weight: 750;
  color: #fff;
  margin: 0 0 4px;
}

.service-select-info p {
  font-size: 11.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Color theme-specific rules for service cards */
.service-select-card.theme-blue {
  --service-color: var(--blue);
  --service-glow: rgba(20, 120, 255, 0.2);
}
.service-select-card.theme-purple {
  --service-color: var(--purple);
  --service-glow: rgba(124, 69, 255, 0.2);
}
.service-select-card.theme-cyan {
  --service-color: var(--cyan);
  --service-glow: rgba(8, 199, 255, 0.2);
}
.service-select-card.theme-amber {
  --service-color: var(--amber);
  --service-glow: rgba(255, 155, 25, 0.2);
}

/* Option cards radio buttons */
.option-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 767.98px) {
  .option-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-radio-card {
  position: relative;
  background: rgba(2, 9, 20, 0.78);
  border: 1px solid rgba(91, 150, 204, 0.2);
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-radio-card:hover {
  border-color: rgba(8, 199, 255, 0.35);
  background: rgba(4, 17, 34, 0.9);
  transform: translateY(-1px);
}

.option-radio-card.selected {
  border-color: var(--cyan);
  background: rgba(8, 24, 47, 0.6);
  box-shadow: 0 0 15px rgba(8, 199, 255, 0.15);
}

.option-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-radio-card h3 {
  font-size: 13.5px;
  font-weight: 750;
  color: #fff;
  margin: 0;
}

/* Sticky quote summary card */
.summary-sticky-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(145deg, rgba(8, 24, 47, .96), rgba(3, 12, 27, .98));
  border: 1px solid rgba(58, 144, 219, .22);
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.summary-sticky-card h2 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(58, 144, 219, 0.15);
  padding-bottom: 14px;
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}

.summary-item-label {
  color: var(--muted);
}

.summary-item-val {
  color: #fff;
  font-weight: 700;
}

.summary-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.summary-service-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(8, 199, 255, 0.08);
  border: 1px solid rgba(8, 199, 255, 0.2);
  color: var(--cyan);
}

.summary-estimate-box {
  background: rgba(8, 199, 255, 0.06);
  border: 1px solid rgba(8, 199, 255, 0.25);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.summary-estimate-box strong {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.summary-estimate-val {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(8, 199, 255, 0.2);
}

.summary-estimate-subtext {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.quote-response-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid rgba(58, 144, 219, 0.15);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.quote-response-note i {
  color: var(--cyan);
  margin-top: 3px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #19ADFF 0%, #0086d4 100%);
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(25, 173, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(25, 173, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.whatsapp-icon {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: whatsapp-pulse 2s infinite alternate;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: rgba(7, 18, 35, 0.93);
  border: 1px solid rgba(58, 144, 219, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  font-family: var(--font);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulsing outline animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #19ADFF;
  opacity: 0.76;
  animation: whatsapp-glow 2s infinite ease-out;
  pointer-events: none;
}


@keyframes whatsapp-glow {
  0% {
    transform: scale(1);
    opacity: 0.76;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
  .whatsapp-tooltip {
    display: none; /* Hide tooltips on touch devices */
  }
}
