* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
}

.hero {
  background: linear-gradient(135deg, rgb(0 102 255 / 97%), rgb(0 60 255 / 0%)), url(../../dbausa/b.png);
  background-size: cover;
  background-position: center;
  color: white;
  padding-top: 25px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px;
}

.text-box {
  padding: 20px;
  max-width: 628px;
  z-index: 999;
}

.text-box h4 {
  opacity: 0.8;
  margin-bottom: 10px;
}

.text-box h1 {
  font-size: 48px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.text-box p {
  margin-bottom: 30px;
  font-size: 16px;
  opacity: 0.9;
}

.image-box img {
  width: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.text-box h1 {
  font-size: 51px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: aliceblue;
}

.text-box h2 {
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.text-box ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.text-box ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Wave */
.wave {
  position: absolute;
  bottom: -104px;
  left: 0;
  width: 100%;
}

/* Base button styles */
.btn {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
}

/* Primary button */
.primary {
  background: #fff;
  color: #0044ff;
}

.primary:hover {
  background-color: #0044ff;
  color: #fff;
  transform: scale(1.05);
  /* subtle hover animation */
}

/* Secondary button */
.secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.secondary:hover {
  background: rgba(0, 0, 0, 0.3);
  /* darker overlay for visibility */
  border-color: white;
  transform: scale(1.05);
}


.image-box img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content {
  max-width: 100%;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #212121;
}

.content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.content ul li {
  display: flex;
  /* align-items: center; */
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #555;
}

.content ul li svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  fill: #0062ff;
  flex-shrink: 0;
}

.btn1 {
  background-color: #fff;
  color: #0062ff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  user-select: none;
}

.btn1:hover {
  background-color: #0062ff;
  color: #fff;
}

.btn2 {
  background-color: #0062ff;
  color: #ffff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  user-select: none;
}

.btn2:hover {
  background-color: #fff;
  color: #0062ff;
}

.small-info {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #999;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.small-info svg {
  width: 16px;
  height: 16px;
  fill: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 25px;
  }

  .image-box img {
    width: 100%;
    max-width: 400px;
  }

  .content {
    max-width: 100%;
  }
}

.features {
  max-width: 100%;
  margin: 60px auto;
  padding: 0 20px;
  color: #333;
}

.features h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 50px;
}

.feature-card {
  background: #ff00008f;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h5 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.feature-card ul li {
  font-size: 1rem;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 12px;
  transition: background 0.3s;
}

.feature-card.feature-names ul li {
  font-weight: 600;
  color: #0044ff;
  background: #e6f0ff;
}

.feature-card.feature-values ul li {
  background: #ffffff;
  color: #555;
}

.feature-card.feature-values ul li:hover {
  background: #ff00008f;
  color: #fff;
}

.feature-card ul li:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .features .row {
    display: block;
  }

  .feature-card {
    margin-bottom: 25px;
  }
}

.features {
  background: linear-gradient(135deg, rgb(0 60 255 / 17%), rgba(0, 102, 255, 0.85)), url(./img/b1.jpg);
  /* Replace with your image URL */
  background-size: cover;
  /* Makes sure the image covers the whole section */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;
  /* Prevents tiling */
  padding: 60px 90px;
  /* Add some vertical spacing */
  position: relative;
  /* For overlay if needed */
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(5 42 104 / 5%);
  /* Semi-transparent black overlay */
  z-index: 0;
}

.features .features-section {
  position: relative;
  z-index: 1;
  /* Make sure content is above overlay */
}

/* Wrapper for badge + nodes */
.wrapper {
  width: 500px;
  position: relative;
  margin-left: 50px;
}

/* CENTER BADGE LEFT */
.center-badge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  padding-top: 58px;
  z-index: 10;
  position: absolute;
  left: 0;
  top: 245px;
}

.center-badge span {
  background: linear-gradient(45deg, #ff3b3b, #ff00c8, #6e00ff, #0096ff, #00cc44);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 34px;
  font-weight: 700;
}

/* NODES - Curved Vertical Sequence */
.node {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: absolute;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 17px;
  z-index: 5;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.node:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Node positions for maximum semicircular arc */
.n1 {
  top: -27px;
  left: 112px;
  background: linear-gradient(45deg, #00c8ff, #0066ff);
}

.n2 {
  top: 63px;
  left: 327px;
  background: linear-gradient(45deg, #00c8ff, #0066ff);
}

.n3 {
  top: 259px;
  left: 397px;
  background: linear-gradient(45deg, #00c8ff, #0066ff);
}

.n4 {
  top: 445px;
  left: 310px;
  background: linear-gradient(45deg, #00c8ff, #0066ff);
}

.n5 {
  top: 514px;
  left: 107px;
  background: linear-gradient(45deg, #00c8ff, #0066ff);
}

/* SVG */
svg {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 500px; */
  /* height: 900px; */
  z-index: 1;
}

/* Connector lines */
.connector {
  stroke: #000;
  /* stroke-width: 3; */
  fill: none;
  stroke-dasharray: 400;
  /* stroke-dashoffset: 400; */
  /* transition: stroke-dashoffset 0.8s ease; */
}

.wrapper {
  width: 500px;
  position: relative;
  margin-left: 50px;
}

/* Make sure SVG fills wrapper */
.wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* behind nodes */
}

/* Connector lines */
.connector {
  stroke: #000;
  stroke-width: 3;
  fill: none;
}

.circle-box {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  margin: auto;
}

.circle-progress {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(#4d9dfd 0deg,
      #a859e6 120deg,
      #dedede 120deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: 0.6s ease;
}

/* hover animation */
.circle-progress:hover {
  transform: scale(1.05);
}

.circle-box h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.circle-box p {
  font-size: 12px;
  color: #666;
  margin-top: -5px;
}

.circle-icon {
  font-size: 28px;
  margin-top: 12px;
  background: linear-gradient(45deg, #4d9dfd, #a859e6);
  -webkit-background-clip: text;
  color: transparent;
}



:root {
  --purple: #7b45f2;
  --light-purple: #b98af9;
  --peach: #f08a6e;
  --bg: #f8f8fb;
  --muted: #8b97a6;
}

html,
body {
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page container */
.page-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Card like panel */
.auth-wrap {
  width: 100%;
  max-width: 1100px;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(50, 50, 90, 0.08);
  overflow: hidden;
  display: flex;
  gap: 0;
  position: relative;
}

/* left / right columns */
.auth-left {
  flex: 0 0 46%;
  padding: 56px 48px;
  position: relative;
  background:
    radial-gradient(circle at 20% 10%, rgba(123, 69, 242, 0.03), transparent 10%),
    radial-gradient(circle at 70% 80%, rgba(240, 138, 110, 0.02), transparent 15%);
}

.auth-right {
  flex: 1;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: linear-gradient(120deg, rgba(123, 69, 242, 0.06), rgba(240, 138, 110, 0.02));
}

/* Big decorative circle on right */
.circle-panel {
  width: 100%;
  height: 100%;
  max-width: 643px;
  max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 20%),
    linear-gradient(150deg, #9b59ff 0%, #7b45f2 30%, #f08a6e 100%);
  box-shadow: 0 35px 80px rgba(123, 69, 242, 0.15), inset 0 10px 40px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  color: white;
  text-align: left;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}

.circle-panel::after {
  /* subtle overlay polygon shapes to match the example */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02), transparent 10%),
    linear-gradient(60deg, rgba(255, 255, 255, 0.03), transparent 20%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.circle-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.circle-desc {
  font-size: 14px;
  opacity: 0.95;
  max-width: 360px;
  margin-bottom: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.circle-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-learn {
  background: rgba(255, 255, 255, 0.9);
  color: #6b3ad6;
  border-radius: 26px;
  padding: 10px 18px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: none;
}

.btn-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
}

/* Form styles */
.auth-title {
  text-align: center;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.logo-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  border: 4px solid rgba(123, 69, 242, 0.25);
  box-shadow: 0 4px 20px rgba(123, 69, 242, 0.06), inset 0 -4px 12px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #b98af9, #7b45f2);
}

.form-label {
  font-size: 14px;
  color: #5b6b78;
  font-weight: 500;
}

.form-control {
  border-radius: 6px;
  padding: 11px 14px;
  border: 2px solid #ececf0;
  box-shadow: none;
  transition: all .18s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 6px 20px rgba(123, 69, 242, 0.08);
}

.login-btn {
  width: 100%;
  background: linear-gradient(90deg, #7b45f2 0%, #f08a6e 100%);
  border: none;
  color: white;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(123, 69, 242, 0.12);
}

.alt-text {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 130, 150, 0.08);
  background: white;
  text-decoration: none;
}

/* form extras row */
.form-row-extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 14px;
  gap: 10px;
}

.remember-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #606b77;
}

.forgot {
  color: #4b5b69;
  text-decoration: underline;
  font-size: 14px;
}

/* bottom link */
.signup-link {
  text-align: center;
  margin-top: 16px;
  color: #6b7480;
}

/* small screens: stack right below left */
@media (max-width: 992px) {
  .auth-wrap {
    flex-direction: column;
    max-width: 920px;
  }

  .auth-left {
    flex: 1 1 auto;
    padding: 36px;
  }

  .auth-right {
    flex: 1 1 auto;
    padding: 28px;
  }

  .circle-panel {
    width: 76%;
    height: 380px;
    max-width: none;
    max-height: none;
  }
}

@media (max-width: 520px) {
  .auth-left {
    padding: 28px 18px;
  }

  .auth-right {
    padding: 22px;
  }

  .circle-title {
    font-size: 36px;
  }

  .circle-desc {
    max-width: 100%;
    font-size: 13px;
  }
}

.service-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Image */
.service-card .service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Blur mask */
.service-card:after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(7px);
  transition: 0.6s ease;
}

/* Text */
.service-content {
  text-align: left;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 3;
  opacity: 0;
  transition: 0.6s;
  font-size: 15px;
}

/* Hover animation */
.service-card:hover:after {
  bottom: 0;
}

.service-card:hover .service-content {
  opacity: 1;
}

.info-card {
  position: relative;
  height: 120px;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Colors */
.info-card.orange {
  background: #f8a100;
}

.info-card.red {
  background: #e24b3a;
}

.info-card.blue {
  background: #0e9ec4;
}

/* Initial heading visible */
.info-heading {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

/* Full content box (hidden initially) */
.info-content {
  position: absolute;
  inset: 0;
  background: #fff;
  padding: 25px;
  opacity: 0;
  transform: translateY(100%);
  border-radius: 12px;
  box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.15);
  transition: 0.5s ease;
}

/* Icon inside */
.info-content .icon {
  font-size: 38px;
  margin-bottom: 10px;
}

/* Hover: Show full card */
.info-card:hover .info-content {
  transform: translateY(0);
  opacity: 1;
}

/* Hover: hide heading */
.info-card:hover .info-heading {
  opacity: 0;
}

.info-card {
  position: relative;
  height: 300px;
  /* ðŸ‘ˆ à¤¬à¤¡à¤¼à¤¾ à¤•à¤° à¤¦à¤¿à¤¯à¤¾ */
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Colors */
.info-card.orange {
  background: #f8a100;
}

.info-card.red {
  background: #e24b3a;
}

.info-card.blue {
  background: #0e9ec4;
}

/* Initial heading visible */
.info-heading {
  font-size: 30px;
  /* à¤¬à¤¡à¤¼à¤¾ */
  font-weight: 700;
  color: #fff;
  z-index: 2;
  transition: 0.4s;
}

/* Content Box */
.info-content {
  position: absolute;
  inset: 0;
  background: #fff;
  padding: 35px;
  /* Corner padding */
  opacity: 0;
  transform: translateY(100%);
  border-radius: 15px;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
  transition: 0.5s ease;
}

/* Icon */
.info-content .icon {
  font-size: 60px;
  /* à¤¬à¤¡à¤¼à¤¾ */
  margin-bottom: 15px;
}

/* Hover: Show full card */
.info-card:hover .info-content {
  transform: translateY(0);
  opacity: 1;
}

/* Hover: hide heading */
.info-card:hover .info-heading {
  opacity: 0;
}

.head {
  font-size: 41px;
  font-weight: 600;
}

.info-card {
  border-radius: 25px;
  padding: 20px;
  position: relative;
  color: #000;
  height: 260px;
  transition: 0.4s;
}

.info-inner {
  background: #fff;
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border-radius: 10px;
  padding: 25px;
  transform: rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  text-align: center;
}

.info-card:hover .info-inner {
  transform: rotate(0deg) scale(1.05);
}

.info-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.info-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 20px;
  color: #ff9000;
}

.feature-box {
  border-radius: 25px;
  padding: 20px;
  position: relative;
  height: 260px;
  transition: 0.4s;
}

.feature-content {
  background: #fff;
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border-radius: 10px;
  padding: 25px;
  transform: rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  text-align: center;
}

.feature-box:hover .feature-content {
  transform: rotate(0deg) scale(1.05);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.feature-heading {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 20px;
}

:root {
  /* Light Mode Palette */
  --neon-orange: #ff5e00;
  --neon-blue: #0077ff;
  /* Darker blue for visibility on white */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --bg-color: #ffffff;
  --text-main: #2c3e50;
  --text-secondary: #596275;
}



/* Sci-Fi Background Grid (Light Version) */
.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  perspective: 500px;
}

.cyber-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 90%);
}

.section-wrapper {
  padding: 20px 0;
  position: relative;
}

/* Title Styling */
.glitch-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 70px;
  position: relative;
  background: linear-gradient(90deg, #333, var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.glitch-title::before {
  content: 'MANAGED DBA SERVICES';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  color: var(--neon-blue);
  opacity: 0.1;
  transform: translate(-3px, 3px);
  z-index: -1;
  -webkit-text-fill-color: var(--neon-blue);
}

.subtitle {
  font-size: 0.4em;
  display: block;
  color: var(--text-secondary);
  letter-spacing: 8px;
  margin-top: 10px;
  -webkit-text-fill-color: var(--text-secondary);
  /* Override gradient fill */
  font-weight: 600;
}

/* 3D Card Container */
.card-container {
  perspective: 1000px;
}

.cyber-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  backdrop-filter: blur(15px);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  /* Soft shadow for light mode */
}

/* Border Animation Line */
.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.1), transparent);
  transition: 0.5s;
}

.cyber-card:hover::before {
  left: 100%;
}

.cyber-card:hover {
  border-color: var(--neon-orange);
  background: #fff;
  box-shadow: 0 15px 35px rgba(255, 94, 0, 0.15);
  transform: translateY(-5px) translateZ(20px);
}

/* Tech Icon styling */
.tech-icon-box {
  width: 50px;
  height: 50px;
  background: #f0f2f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
  color: var(--neon-blue);
}

.cyber-card:hover .tech-icon-box {
  background: var(--neon-blue);
  box-shadow: 0 5px 15px rgba(0, 119, 255, 0.3);
  transform: rotate(45deg);
  border-color: transparent;
}

.tech-icon {
  width: 24px;
  height: 24px;
  fill: var(--neon-blue);
  transition: 0.3s;
}

.cyber-card:hover .tech-icon-box svg {
  transform: rotate(-45deg);
  fill: #fff;
  /* White icon on hover */
}

.card-text {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--text-main);
}

/* Decoration lines */
.deco-line {
  position: absolute;
  background: var(--neon-orange);
  opacity: 0.8;
}

.cyber-card .corner-tl {
  top: 0;
  left: 0;
  width: 10px;
  height: 2px;
}

.cyber-card .corner-tr {
  top: 0;
  right: 0;
  width: 2px;
  height: 10px;
}

.cyber-card .corner-bl {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 10px;
}

.cyber-card .corner-br {
  bottom: 0;
  right: 0;
  width: 10px;
  height: 2px;
}

@media (max-width: 768px) {
  .glitch-title {
    font-size: 1.8rem;
  }

  .cyber-card {
    padding: 15px;
  }
}

/* --- Color Definitions (Soft Professional Palette) --- */
:root {
  --color-surface: #FAFAFA;
  /* Very light surface/card color */
  --color-background-start: #ffffff;
  --color-background-end: #f0f4f8;
  /* Soft light blue/gray */
  --color-primary: #1F2937;
  /* Dark Gray Text */
  --color-accent: #EF4444;
  /* Brighter, modern Red */
  --color-accent-dark: #DC2626;
  --color-shadow-light: rgba(0, 0, 0, 0.05);
  --color-shadow-medium: rgba(0, 0, 0, 0.1);
}

/* --- Keyframe Animations --- */
@keyframes flip-in {
  0% {
    opacity: 0;
    transform: rotateX(90deg) scale(0.9);
    transform-origin: bottom;
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg) scale(1);
  }
}

@keyframes header-scale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* --- Color Definitions (Soft Professional Palette) --- */
:root {
  --color-surface: #FAFAFA;
  /* Very light surface/card color */
  --color-background-start: #ffffff;
  --color-background-end: #f0f4f8;
  /* Soft light blue/gray */
  --color-primary: #1F2937;
  /* Dark Gray Text */
  --color-accent: #EF4444;
  /* Brighter, modern Red */
  --color-accent-dark: #DC2626;
  --color-shadow-light: rgba(0, 0, 0, 0.05);
  --color-shadow-medium: rgba(0, 0, 0, 0.1);
}



/* --- Header Styling --- */
.header {
  text-align: center;
  margin-bottom: 0;
}

.header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}

.header h1 span {
  color: var(--color-accent);
}

.header p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #6B7280;
  font-weight: 300;
}

/* --- Grid & Card Styling --- */
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: var(--color-surface);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 15px var(--color-shadow-light), 0 4px 6px var(--color-shadow-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

  /* Initial Hidden State (Off-screen) for Scroll Reveal */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s, border-color 0.3s;
}

/* Reveal State (Activated by JavaScript) */
.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dynamic Hover Effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--color-shadow-medium),
    0 0 15px rgba(239, 68, 68, 0.4);
}

.card h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.card .subtitle {
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 0;
}

/* --- Button Styling --- */
.button {
  background-color: #0062ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
  transition: all 0.2s ease-in-out;
}

.button:hover {
  background-color: var(--color-accent-dark);
  box-shadow: 0 6px 15px rgba(220, 38, 38, 0.6);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.99) translateY(1px);
  box-shadow: 0 2px 5px rgba(220, 38, 38, 0.5);
}

/* CSS Variables for a clean theme */
:root {
  --color-primary-red: #dc2626;
  /* Red-600 */
  --color-primary-blue: #2563eb;
  /* Blue-600 */
  --color-light-bg: #f8faff;
  /* Custom Light Background */
  --color-input-border: #d1d5db;
  /* Gray-300 */
  --color-text-dark: #374151;
  /* Gray-700 */
  --color-text-light: #f3f4f6;
  /* Gray-100 */
  --color-sky-light: #e0f2fe;
  /* Sky-100 */
}

/* Base & Typography */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
}

/* Utility Helpers */
.hidden {
  display: none !important;
}

.opacity-0 {
  opacity: 0;
}

/* Container & Layout */
.main-container {
  min-height: 100vh;
  display: flex;
  /* Default to column on mobile */
  flex-direction: column;
}

@media (min-width: 768px) {
  .main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-padding {
  padding: 1.5rem;
  /* p-6 */
}

@media (min-width: 768px) {
  .section-padding-md {
    padding: 3rem;
    /* md:p-12 */
    min-height: 100vh;
  }
}

.form-section-padding {
  padding: 2.5rem;
  /* p-10/p-16 equivalent */
}

@media (min-width: 640px) {
  .form-section-padding {
    padding: 4rem;
  }
}

/* --- 1. Left Section (Info Hub) --- */
.get-started-bg {
  background-color: #e0f2fe5c;
  /* Abstract pattern using subtle SVG pattern */
  /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239adcfd' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M0 0h12v12H0zM12 12h12v12H12zM24 24h12v12H24zM36 36h12v12H36zM48 48h12v12H48z'/%3E%3C/g%3E%3C/svg%3E"); */
  background-size: 30px 30px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 40vh;
}

.content-wrapper {
  width: 100%;
  max-width: 36rem;
  /* max-w-xl */
  /* z-index: 10; */
}

/* Tab Buttons */
.tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .tab-nav {
    justify-content: flex-start;
  }
}

.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  /* rounded-full */
  font-weight: 600;
  font-size: 0.875rem;
  /* text-sm */
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.tab-btn:not(.active) {
  background-color: var(--color-primary-blue);
  color: white;
}

.tab-btn:not(.active):hover {
  background-color: white;
  color: var(--color-primary-red);
}

.tab-btn.active {
  background-color: white;
  color: var(--color-primary-red);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.5),
    /* Blue ring shadow */
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  /* Standard shadow */
}

/* Tab Content Card */
.gradient-card {
  padding: 2rem;
  border-radius: 1rem;
  /* rounded-2xl */
  /* RED to BLUE Gradient */
  background-image: linear-gradient(to top right, var(--color-primary-red), var(--color-primary-blue));
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  color: white;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  text-align: center;
}

@media (min-width: 768px) {
  .gradient-card {
    text-align: left;
  }
}

.card-heading {
  font-size: 2.25rem;
  /* text-4xl */
  line-height: 1.25;
  /* leading-tight */
  font-weight: 800;
  /* font-extrabold */
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  /* tracking-tight */
}

@media (min-width: 640px) {
  .card-heading {
    font-size: 3rem;
    /* sm:text-5xl */
  }
}

@media (min-width: 1024px) {
  .card-heading {
    font-size: 3.75rem;
    /* lg:text-6xl */
  }
}

.card-page {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 300;
  /* font-light */
  color: var(--color-text-light);
}

@media (min-width: 640px) {
  .card-text {
    font-size: 1.25rem;
    /* sm:text-xl */
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-text-light);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-item {
    justify-content: flex-start;
  }
}

.contact-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fca5a5;
  /* Red-300 */
}

/* --- 2. Right Section (Form) --- */
.form-container {
  width: 100%;
  max-width: 42rem;
  /* max-w-2xl */
  background-color: white;
  padding: 2.5rem;
  border-radius: 0.75rem;
  /* rounded-xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  /* border border-gray-200 */
}

@media (min-width: 640px) {
  .form-container {
    padding: 3rem;
  }
}

.form-heading {
  font-size: 41px;
  /* text-3xl */
  font-weight: 700;
  color: #1f2937;
  /* gray-800 */
  margin-bottom: 2rem;
  /* border-bottom: 2px solid #60a5fa; */
  /* border-b border-blue-400 */
  padding-bottom: 0.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field-group {
  margin-bottom: 1.5rem;
  /* space-y-6 equivalent */
}

.form-field-label {
  display: block;
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

/* Custom Input Styling (replaces custom-input overrides) */
.input-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-input-border);
  border-radius: 0.5rem;
  /* rounded-lg */
  transition: all 0.3s ease;
  box-shadow: none;
  background-color: #ffffff;
  color: #333;
  appearance: none;
  /* for select box */
}

.input-control::placeholder {
  color: #9ca3af;
  /* Lighter placeholder text */
}

.input-control:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 0.75rem;
  pointer-events: none;
  color: #6b7280;
  /* Gray-500 */
}

.select-arrow svg {
  fill: currentColor;
  height: 1rem;
  width: 1rem;
}

textarea.input-control {
  resize: vertical;
}

/* Submit Button Styling (replaces submit-button overrides) */
.submit-button {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;

  /* RED/BLUE Gradient */
  background-image: linear-gradient(to right, var(--color-primary-red), var(--color-primary-blue));
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
  outline: none;
}

.submit-button:hover {
  /* BLUE to RED Gradient on hover */
  background-image: linear-gradient(to left, var(--color-primary-blue), var(--color-primary-red));
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
  transform: translateY(-3px);
}

/* Checkbox Styling */
.checkbox-container {
  padding-top: 1rem;
}

.checkbox-flex {
  display: flex;
  align-items: flex-start;
}

.checkbox-input {
  height: 1rem;
  width: 1rem;
  border-radius: 0.25rem;
  border-color: var(--color-input-border);
  background-color: #ffffff;
  accent-color: var(--color-primary-blue);
  /* Blue for checked state */
  flex-shrink: 0;
  margin-top: 0.125rem;
  /* Aligning with text */
}

.checkbox-label {
  margin-left: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25;
}

.text-gray-600 {
  color: #4b5563;
}

.text-blue-600 {
  color: var(--color-primary-blue);
}

.underline {
  text-decoration: underline;
}

.text-white {
  color: white;
}

/* --- 3. Modal Styling (Success Message) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 24rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  animation: fadeInSlideUp 0.3s ease-out forwards;
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  color: #10b981;
  /* Green-500 */
}

.modal-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  /* Gray-900 */
  margin-bottom: 0.5rem;
}

.modal-body {
  color: #4b5563;
  /* Gray-600 */
}

.modal-close-btn {
  margin-top: 1.5rem;
  background-color: #3b82f6;
  /* Blue-500 */
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.15s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
}

.modal-close-btn:hover {
  background-color: #2563eb;
  /* Blue-600 */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}


/* --- 4. Animations (Re-used original logic) --- */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animated-heading {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animated-text {
  animation: fadeInSlideUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.animated-form-field {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.tab-content {
  transition: opacity 0.3s ease-in-out;
}




/* --- CSS Variables & Reset --- */
:root {
  --color-bg: #050511;
  --color-surface: #0F1123;
  --color-neon-purple: #B026FF;
  --color-neon-cyan: #00E5FF;
  --color-text-main: #cbd5e1;
  /* slate-300 */
  --color-text-white: #ffffff;
  --color-text-muted: #64748b;
  /* slate-500 */
  --color-accent-blue: #2563eb;
  --color-accent-indigo: #4f46e5;

  --bg-glass: rgba(15, 17, 35, 0.6);
  --bg-glass-hover: rgba(15, 17, 35, 0.8);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(0, 229, 255, 0.3);
}


/* --- Animations --- */
@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 20px #00E5FF;
  }

  50% {
    opacity: .8;
    box-shadow: 0 0 5px #00E5FF;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-green {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


.hero-section {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem auto;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.6s forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #4ade80;
  animation: pulse-green 2s infinite;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #67e8f9;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.text-neon-gradient {
  background: #000;
  font-weight: 600;
  font-size: 41px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: #383b3e;
}

/* --- Comparison Grid --- */
.grid-wrapper {
  width: 100%;
  max-width: 64rem;
  /* Keeps the grid from stretching too wide */
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  /* Centers the grid horizontally */

  /* Optional if you want grid items centered individually */
  text-align: center;
}


.grid-headers {
  display: none;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
  margin-bottom: 0.5rem;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #000;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.6s forwards;
  animation-delay: 0.1s;
}

@media (min-width: 768px) {
  .grid-headers {
    display: grid;
  }
}

.col-metric {
  grid-column: span 3;
}

.col-legacy {
  grid-column: span 4;
}

.col-modern {
  grid-column: span 5;
  color: #000;
}

/* --- Card Styles --- */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.6s forwards;
}

.cyber-card2 {
  background: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  color: black;
  cursor: pointer;
  /* Float animation applied via JS or separate class */
  box-shadow: 2px 3px 10px #bdbdcc;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .cyber-card2 {
    padding: 1.25rem;
    grid-template-columns: repeat(12, 1fr);
  }
}

/* Hover States */
.cyber-card2:hover {
  transform: translateY(-5px) scale(1.01);
  background: var(--bg-glass-hover);
  border-color: var(--border-highlight);
  box-shadow: 0 15px 40px -10px rgba(0, 229, 255, 0.15);
}

.cyber-card2:hover .us-col {
  opacity: 0.7;
  transform: translateX(-5px);
  color: #fff;
}

.cyber-card2:hover .in-col {
  opacity: 1;
  transform: translateX(5px);
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
  color: #fff;
}

.cyber-card2:hover .icon-box {
  background: linear-gradient(135deg, #00E5FF, #2979FF);
  color: #000;
  transform: rotateY(180deg);
}

.cyber-card2:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

.cyber-card2:hover .icon-box i {
  transform: rotateY(-180deg);
}

/* Column Content */
.metric-cell {
  grid-column: span 3;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cyber-card2:hover .metric-cell {
  color: #fff;
}

/* Mobile Labels */
.mobile-label {
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .mobile-label {
    display: none;
  }
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.5s;
  color: #000;
}

.us-col {
  grid-column: span 4;
  color: #000;
  transition: all 0.5s;
}

.in-col {
  grid-column: span 5;
  color: #000;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-neon-cyan {
  color: var(--color-neon-cyan);
}

.text-xl-medium {
  font-size: 1.25rem;
  font-weight: 500;
}

.glow-text {
  color: #0062ff;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, -2.5));
}

.arrow-icon {
  opacity: 0;
  transform: translateX(-1rem);
  transition: all 0.3s;
  color: var(--color-neon-cyan);
}

/* Active State / Click */
.cyber-card.active-state {
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2) inset;
}

.active-marker {
  width: 4px;
  height: 0%;
  background: var(--color-neon-cyan);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.cyber-card.active-state .active-marker {
  height: 100%;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.4);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}

.feature-title {
  font-size: 25px;
}

.about {
  padding: 40px 0px 0px 0px;
}

.content .head3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #212121;
}

.content span {
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
  color: #212121;
}

@media (max-width: 768px) {
  .content .head3 {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .cyber-card2 {
    padding: 1.25rem;
    grid-template-columns: repeat(12, 1fr);
  }
}