body {
  font-family: "Josefin Sans", sans-serif;
}
.hero-bg {
  height: 100%;
  background-image: radial-gradient(
    ellipse 150% 60% at 50% 100%,
    rgba(73, 255, 206, 0.24) 0%,
    transparent 70%
  );
  background-repeat: no-repeat, no-repeat; /* Repeat for gradient, repeat for image */
  background-size: 100% 100%, 100% 100%; /* Size for gradient, size for image */
  padding-bottom: 0;
  z-index: -1;
  padding-left: 0;
  pointer-events: none;
}
.hero {
  padding-bottom: 42px;
}
.hero-heading {
  letter-spacing: -5px;
  font-size: 4.9rem;
  font-weight: 600;
  line-height: 4%;
  width: max-content;
}
.highlight-yellow {
  color: #49f3ff;
}
.highlight-white {
  color: #e8e8e8;
}
.nav-button {
  border: 1px solid #49f3ff;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #49f3ff;
  transition: background 0.3s;
}
.nav-button:hover {
  background: rgba(225, 255, 73, 0.2);
}
.code-link {
  font-family: inherit; /* Changed from monospace to inherit body font */
  font-size: 1.1rem;
  color: #49f3ff;
  margin: 0 0.75rem;
  transition: color 0.2s;
}
.code-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #49f3ff;
}
.blue-btn {
  background: linear-gradient(90deg, #00b8d0 0%, #1395ff 100%);
  color: #111827;
  width: 12rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 14px rgba(19, 255, 124, 0.3);
  transition: background 0.3s, transform 0.2s;
  border: none;
}
.blue-btn:hover {
  background: linear-gradient(90deg, #13e3ff 0%, #7881ff 100%);
  color: #001620;
  box-shadow: 0 8px 24px #0099ff86;
  transform: translateY(-4px) scale(1.04);
}

.green-btn {
  background: linear-gradient(90deg, #00d092 0%, #13ff7c 80%);
  color: #0c2000 !important;
  font-size: 1.1rem;
  font-weight: 600;
  width: 12rem;
  padding: 0.65rem 1rem;
  box-shadow: 0 4px 14px rgba(19, 255, 124, 0.3);
  transition: background 0.3s, transform 0.2s;
  border: none;
}
.green-btn:hover {
  background: linear-gradient(90deg, #13ff7c 0%, #00d0bf 70%);
  color: #0c2000 !important;
  box-shadow: 0 2px 8px rgba(19, 255, 124, 0.5);
  transform: translateY(-4px) scale(1.04);
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto; /* Ensure vertical scrolling is handled by the browser */
}
.bgG-section {
  background: url("assets/bgG.webp") center center no-repeat #2020209f;
  background-size: cover;
}
.scrolled-nav {
  background: rgba(0, 0, 0, 0.706) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.738);
}

.floating-img {
  position: relative;
  z-index: 50;
  transform: translate(-50%, -50%);
  max-width: 20%;
  margin-left: 50%;
  border-radius: 2rem;
  animation: floatY 3.5s ease-in-out infinite alternate;
  background: transparent;
}
@keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-32px);
  }
}

.two-column-content-layout {
  display: flex;
  justify-content: center;
  max-width: 1400px; /* Adjust to control overall width */
  width: 100%;
  gap: 40px; /* Space between the two text columns */
}

.left-text-column {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.right-text-column {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
}

.right-text-column::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; /* Slightly larger for a more prominent effect, adjust as needed */
  height: 350px; /* Adjust as needed */
  background-image: radial-gradient(
    circle,
    rgba(0, 220, 180, 0.719),
    /* Teal/Aqua - Center color */ rgba(50, 149, 255, 0.658) 30%,
    /* Bright Blue - Mid ring 1 */ rgba(180, 100, 255, 0.527) 55%,
    /* Purple/Violet - Mid ring 2 */ rgba(0, 200, 100, 0.5) 25%,
    /* Greenish - Outer ring */ transparent 85% /* Fading to transparent */
  );
  border-radius: 50%;
  filter: blur(90px); /* Increased blur for a softer, more spread-out effect */
  z-index: -1;
  opacity: 0.65; /* Adjust overall opacity */
}

/* Optional: Adjustments for the left column if the gradient overlaps or needs specific layering */
.left-text-column {
  flex: 1;
  position: relative; /* If you need to manage z-index here too */
  z-index: 1; /* Ensure it's above any background elements if necessary */
}

/* Responsive adjustments for the gradient on smaller screens if needed */
@media (max-width: 768px) {
  .right-text-column::before {
    width: 200px; /* Smaller gradient on mobile */
    height: 200px;
    filter: blur(60px); /* Potentially less blur on smaller size */
    /* You might also want to adjust positioning if the layout changes significantly */
  }
}

.main-title-styled {
  font-size: 5.2rem; /* Adjust to match image */
  font-weight: 500; /* Bold */
  color: #ffffff; /* White text */
  letter-spacing: -4px;
  line-height: 1;
  margin: 0 0 20px 0; /* Optional: margin if you add graphic below */
}

.main-title-styled .highlight-title-text {
  color: #00ffc8; /* A bright yellow/green, adjust to match 'FinTech' in image */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .two-column-content-layout {
    flex-direction: column;
    align-items: flex-start; /* Align text to left for stacked columns */
    text-align: left;
    gap: 30px;
  }

  .left-text-column,
  .right-text-column {
    width: 100%;
    max-width: 100%; /* Ensure they take full width when stacked */
    text-align: center; /* Center text on mobile if preferred */
  }

  .main-title-styled {
    font-size: 2.8rem; /* Adjust for mobile */
    text-align: center; /* Center heading on mobile if preferred */
  }
}
.black-section-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.black-section-heading {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .black-section-heading {
    font-size: 1.5rem;
  }
  .black-section-content {
    padding: 2rem 0.5rem;
  }
}

.bgG-two-col {
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .bgG-two-col {
    gap: 4rem;
  }
}
.bgG-section img {
  display: block;
  margin-top: 4rem !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 1023px) {
  .bgG-section img {
    margin-top: 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.nav-button {
  border: 1px solid #49f3ff;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #49f3ff;
  transition: background 0.3s;
}
.nav-button:hover {
  background: rgba(225, 255, 73, 0.2);
}
.code-link {
  font-family: inherit; /* Changed from monospace to inherit body font */
  font-size: 1.1rem;
  color: #49f3ff;
  margin: 0 0.75rem;
  transition: color 0.2s;
}
.code-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #49f3ff;
}

.btn-primary {
  background: #49f3ff;
  color: #000000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 6px rgba(73, 255, 200, 0.5);
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: #3fb4ea;
  color: #000000;
  box-shadow: 0 8px 14px rgba(73, 255, 200, 0.7);
  transform: translateY(-4px) scale(1.04);
}

.gradient-text {
  background: linear-gradient(90deg, #34f8ff 0%, #8cffc9 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-text1 {
  background: linear-gradient(90deg, #1cb7ff 0%, #9afdc7 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text2 {
  background: linear-gradient(90deg, #00ffb3 0%, #94e1ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.bgG-section {
  background: url("assets/bgG.webp") center center no-repeat #2020209f;
  background-size: cover;
}
.card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #49f3ff;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  text-align: left;
  letter-spacing: -0.5px;
}
@media (min-width: 1024px) {
  .card-heading {
    font-size: 1.2rem; /* Adjust to match image */
    font-weight: 500; /* Bold */
    color: #00d9ff; /* White text */
    line-height: 1;
    margin: 0 0 20px 0;
  }
}
.fullscreen-bg {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #3636367a;
}
.bgG-section {
  background: url("assets/bgG.webp") center center no-repeat #2020209f;
  background-size: cover;
}

.card {
  background: linear-gradient(135deg, #000000 60%, #000000 100%);
  box-shadow: 0 4px 14px #00000033;
  padding: 2.5rem 1.5rem;
  color: #e8e8e8;
  font-size: 1.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-height: 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}
/* .card:hover {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 4px 22px #49ffb340;
} */
@keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-32px);
  }
}

.two-column-content-layout {
  display: flex;
  justify-content: center;
  max-width: 1400px; /* Adjust to control overall width */
  width: 100%;
  gap: 40px; /* Space between the two text columns */
}

.left-text-column {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.right-text-column {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
}

.right-text-column::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; /* Slightly larger for a more prominent effect, adjust as needed */
  height: 350px; /* Adjust as needed */
  background-image: radial-gradient(
    circle,
    rgba(0, 220, 180, 0.719),
    /* Teal/Aqua - Center color */ rgba(50, 149, 255, 0.658) 30%,
    /* Bright Blue - Mid ring 1 */ rgba(180, 100, 255, 0.527) 55%,
    /* Purple/Violet - Mid ring 2 */ rgba(0, 200, 100, 0.5) 25%,
    /* Greenish - Outer ring */ transparent 85% /* Fading to transparent */
  );
  border-radius: 50%;
  filter: blur(90px); /* Increased blur for a softer, more spread-out effect */
  z-index: -1;
  opacity: 0.65; /* Adjust overall opacity */
}

/* Optional: Adjustments for the left column if the gradient overlaps or needs specific layering */
.left-text-column {
  flex: 1;
  position: relative; /* If you need to manage z-index here too */
  z-index: 1; /* Ensure it's above any background elements if necessary */
}

/* Responsive adjustments for the gradient on smaller screens if needed */
.main-title-styled {
  font-size: 5.5rem; /* Adjust to match image */
  font-weight: 500; /* Bold */
  color: #ffffff; /* White text */
  letter-spacing: -4px;
  line-height: 1;
  margin: 0 0 20px 0; /* Optional: margin if you add graphic below */
}

.description-styled {
  font-size: 1.3rem; /* Adjust to match image */
  color: #cccccc; /* Light grey text */
  width: 55%;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .two-column-content-layout {
    flex-direction: column;
    align-items: flex-start; /* Align text to left for stacked columns */
    text-align: left;
    gap: 30px;
  }

  .left-text-column,
  .right-text-column {
    width: 100%;
    max-width: 100%; /* Ensure they take full width when stacked */
    text-align: center; /* Center text on mobile if preferred */
  }
  .right-text-column::before {
    width: 200px; /* Smaller gradient on mobile */
    height: 200px;
    filter: blur(60px); /* Potentially less blur on smaller size */
    /* You might also want to adjust positioning if the layout changes significantly */
  }

  .main-title-styled {
    font-size: 2.8rem; /* Adjust for mobile */
    text-align: center; /* Center heading on mobile if preferred */
  }

  .description-styled {
    font-size: 0.95rem; /* Adjust for mobile */
  }
}
.bgG-section p {
  margin-left: 0 !important;
}

.black-section-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (max-width: 600px) {
  .black-section-heading {
    font-size: 1.5rem;
  }
  .black-section-content {
    padding: 2rem 0.5rem;
  }
}

body {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
.bgG-two-col {
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .bgG-two-col {
    gap: 4rem;
  }
}
.bgG-section img {
  display: block;
  margin-top: 4rem !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 1023px) {
  .bgG-section img {
    margin-top: 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.nav-button {
  border: 1px solid #49f3ff;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #49f3ff;
  transition: background 0.3s;
}
.nav-button:hover {
  background: rgba(225, 255, 73, 0.2);
}
.code-link {
  font-family: inherit; /* Changed from monospace to inherit body font */
  font-size: 1.1rem;
  color: #49f3ff;
  margin: 0 0.75rem;
  transition: color 0.2s;
}
.code-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #49f3ff;
}

.btn-primary {
  background: #49f3ff;
  color: #000000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 14px rgba(73, 255, 200, 0.5);
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: #3fdfea;
  color: #000000;
  box-shadow: 0 8px 24px rgba(73, 176, 255, 0.7);
  transform: translateY(-4px) scale(1.04);
}
.scrolled-nav {
  background: rgba(0, 0, 0, 0.706) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.738);
}

.bgG-section {
  background: url("assets/bgG3.jpg") center center no-repeat #2020209f;
  background-size: cover;
}
.bgB-section {
  background: url("assets/h1.jpg") center center no-repeat #18181879 !important;
  background-size: cover;
}

@keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-32px);
  }
}
.black-section {
  width: 100%;
  background: #000000;
  min-height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.two-column-content-layout {
  display: flex;
  justify-content: center;
  max-width: 1400px; /* Adjust to control overall width */
  width: 100%;
  gap: 40px; /* Space between the two text columns */
}

.left-text-column {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.right-text-column {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
}

.right-text-column::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; /* Slightly larger for a more prominent effect, adjust as needed */
  height: 350px; /* Adjust as needed */
  background-image: radial-gradient(
    circle,
    rgba(0, 220, 180, 0.719),
    /* Teal/Aqua - Center color */ rgba(50, 149, 255, 0.658) 30%,
    /* Bright Blue - Mid ring 1 */ rgba(180, 100, 255, 0.527) 55%,
    /* Purple/Violet - Mid ring 2 */ rgba(0, 200, 100, 0.5) 25%,
    /* Greenish - Outer ring */ transparent 85% /* Fading to transparent */
  );
  border-radius: 50%;
  filter: blur(90px); /* Increased blur for a softer, more spread-out effect */
  z-index: -1;
  opacity: 0.65; /* Adjust overall opacity */
}

/* Optional: Adjustments for the left column if the gradient overlaps or needs specific layering */
.left-text-column {
  flex: 1;
  position: relative; /* If you need to manage z-index here too */
  z-index: 1; /* Ensure it's above any background elements if necessary */
}

/* Responsive adjustments for the gradient on smaller screens if needed */
@media (max-width: 768px) {
  .right-text-column::before {
    width: 200px; /* Smaller gradient on mobile */
    height: 200px;
    filter: blur(60px); /* Potentially less blur on smaller size */
    /* You might also want to adjust positioning if the layout changes significantly */
  }
}

.main-title-styled {
  font-size: 5.5rem; /* Adjust to match image */
  font-weight: 500; /* Bold */
  color: #ffffff; /* White text */
  letter-spacing: -4px;
  line-height: 1;
  margin: 0 0 20px 0; /* Optional: margin if you add graphic below */
}

.description-styled {
  font-size: 1.6rem; /* Adjust to match image */
  color: #ffffff; /* Light grey text */
  width: 65%;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .two-column-content-layout {
    flex-direction: column;
    align-items: flex-start; /* Align text to left for stacked columns */
    text-align: left;
    gap: 30px;
  }

  .left-text-column,
  .right-text-column {
    width: 100%;
    max-width: 100%; /* Ensure they take full width when stacked */
    text-align: center; /* Center text on mobile if preferred */
  }

  .main-title-styled {
    font-size: 2.8rem; /* Adjust for mobile */
    text-align: center; /* Center heading on mobile if preferred */
  }

  .description-styled {
    font-size: 0.95rem; /* Adjust for mobile */
  }
}
.bgG-section p {
  margin-left: 0 !important;
}
.hleft1 {
  text-align: left;
  font-size: 5xl;
  font-weight: 500;
}
.hleft2 {
  text-align: left;
  font-size: 5xl;
  font-weight: 500;
}
.black-section-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (max-width: 600px) {
  .black-section-heading {
    font-size: 1.5rem;
  }
  .black-section-content {
    padding: 2rem 0.5rem;
  }
}

/* Enhanced Cards Section Styling */
.cards-section {
  background: url("/assets/bg1.jpg") center center no-repeat #181818;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 4rem 0;
}

.cards-heading-left {
  font-size: 3.2rem;
  font-weight: 500;
  width: 100%;
  line-height: 1.1;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #00ff88 0%, #00e1ffc7 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media (min-width: 1024px) {
  .cards-heading-left {
    font-size: 5rem;
    width: 60%;
    letter-spacing: -3px;
  }
}

.card {
  background: linear-gradient(135deg, #181a27 0%, #14151b 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  padding: 2rem 1.5rem;
  min-height: 280px;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 12px;
  gap: 1rem;
  border: 1px solid rgba(73, 219, 255, 0.1);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(225, 255, 73, 0.15);
  border-color: rgba(225, 255, 73, 0.623);
}

.card-heading {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #49f3ff;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.icon {
  color: #49f3ff;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.card p {
  color: #b0b0b0;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.cta-section h3 {
  background: linear-gradient(90deg, #ffffff 0%, #49f3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cards-heading-left {
    font-size: 2.5rem;
    width: 100%;
    text-align: center;
  }

  .card {
    min-height: 240px;
    padding: 1.5rem 1.25rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .cta-section h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  .cards-heading-left {
    font-size: 2rem;
  }
}

/* Premium CTA Wrapper */
.premium-cta-wrapper {
  margin-top: 4rem;
  padding: 0 1rem;
}

.premium-cta-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border: 2px solid #2a2a2a;
  border-radius: 0; /* Sharp edges */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Background Overlay */
.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      rgba(225, 255, 73, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(0, 208, 146, 0.03) 0%,
      transparent 60%
    );
  z-index: 1;
}

/* Diagonal Accent Line */
.cta-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #49f3ff 0%, #00d092 50%, #1395ff 100%);
  z-index: 2;
}

/* Content Wrapper */
.cta-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 3rem 2rem;
  text-align: center;
}

/* Enterprise Badge */
.enterprise-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #49f3ff 0%, #00d092 100%);
  color: #000;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-radius: 0; /* Sharp edges */
  box-shadow: 0 4px 12px rgba(73, 249, 255, 0.3);
}

.badge-icon {
  width: 16px;
  height: 16px;
}

/* Main Title */
.cta-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.cta-main-title {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Description */
.cta-description {
  font-size: 1.1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Statistics Container */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(73, 219, 255, 0.1);
  border-bottom: 1px solid rgba(73, 219, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #49f3ff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(73, 249, 255, 0.3),
    transparent
  );
}

/* Buttons Wrapper */
.cta-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* Sharp-Edged Primary Button */
.cta-btn-primary-sharp {
  background: linear-gradient(135deg, #49f3ff 0%, #00d092 100%);
  color: #000;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0; /* Sharp edges */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 320px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(225, 255, 73, 0.2);
}

.cta-btn-primary-sharp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.cta-btn-primary-sharp:hover::before {
  left: 100%;
}

.cta-btn-primary-sharp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(225, 255, 73, 0.4);
  background: linear-gradient(135deg, #00d092 0%, #49f3ff 100%);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-btn-primary-sharp:hover .btn-arrow {
  transform: translateX(5px);
}

/* Sharp-Edged Secondary Button */
.cta-btn-secondary-sharp {
  background: transparent;
  color: #49f3ff;
  border: 2px solid #49f3ff;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0; /* Sharp edges */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn-secondary-sharp:hover {
  background: rgba(73, 219, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(73, 234, 255, 0.2);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: #00d092;
}

/* Responsive Design */
@media (min-width: 640px) {
  .cta-buttons-wrapper {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  .cta-content-wrapper {
    padding: 2.5rem 1.5rem;
  }

  .cta-main-title {
    font-size: 2.5rem;
  }

  .stats-container {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .premium-cta-container {
    border-radius: 8px; /* Slightly rounded on mobile for better UX */
  }

  .cta-content-wrapper {
    padding: 2rem 1rem;
  }

  .cta-main-title {
    font-size: 2rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(73, 249, 255, 0.3),
      transparent
    );
  }

  .cta-buttons-wrapper {
    flex-direction: column;
  }

  .cta-btn-primary-sharp,
  .cta-btn-secondary-sharp {
    width: 100%;
    max-width: 300px;
  }

  .trust-badges {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-main-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Premium Cards Grid Container */
.premium-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  perspective: 1000px;
}

@media (min-width: 768px) {
  .premium-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .premium-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: -40px;
  }
}

/* Premium Card Base Styling */
.premium-card {
  position: relative;
  background: linear-gradient(145deg, #171717c2 0%, #000000 70%, #091412e7 90%);
  border: 2px solid #303030;
  border-radius: 0px 0px; /* Sharp edges for premium feel */
  padding: 2.3rem 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.2s cubic-bezier(0.25, 0.4, 0.25, 0.5);
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  backface-visibility: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card Accent Border */
.card-accent-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, #49f3ff 0%, #00d092 100%);
  transition: all 0.2s ease;
  z-index: 2;
}

/* Card Numbering System */
.card-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, #49f3ff 0%, #00d092 100%);
  padding: 0.2rem 0.6rem;
  border-radius: 0; /* Sharp edges */
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(225, 255, 73, 0.2);
}

/* Premium Icon Container */
.premium-icon-container {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(73, 255, 164, 0.273) 0%,
    rgba(0, 208, 149, 0.129) 100%
  );
  border: 2px solid rgb(0, 255, 213);
  border-radius: 0; /* Sharp edges */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.premium-icon-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(73, 255, 91, 0.273) 0%,
    rgba(0, 208, 149, 0.129) 100% transparent
  );
  transition: left 0.6s ease;
}

.premium-icon {
  width: 32px;
  height: 32px;
  color: #49f3ff;
  stroke-width: 2.5;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 4px rgba(73, 249, 255, 0.3));
}

/* Premium Card Title */
.premium-card-title {
  font-size: 1.26rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  letter-spacing: -0.1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Premium Card Description */
.premium-card-description {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  transition: color 0.3s ease;
}

/* Card Glow Overlay */
.card-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(73, 249, 255, 0.11) 0%,
    rgba(0, 208, 146, 0.048) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Hover Effects */
.premium-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(73, 234, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(73, 249, 255, 0.3),
    0 0 40px rgba(73, 255, 149, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.premium-card:hover .card-accent-border {
  height: 100%;
  background: linear-gradient(180deg, #49f3ff 0%, #00d092 50%, #13ffb8 100%);
  width: 3px;
}

.premium-card:hover .premium-icon-container {
  background: linear-gradient(
    135deg,
    rgba(73, 255, 143, 0.2) 0%,
    rgba(0, 194, 208, 0.2) 100%
  );
  border-color: rgba(73, 249, 255, 0.685);
  transform: scale(1.1);
}

.premium-card:hover .premium-icon-container::before {
  left: 100%;
}

.premium-card:hover .premium-icon {
  color: #ffffff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(73, 228, 255, 0.6));
}

.premium-card:hover .premium-card-title {
  color: #49f3ff;
  text-shadow: 0 0 10px rgba(73, 249, 255, 0.3);
}

.premium-card:hover .premium-card-description {
  color: #c0c0c0;
}

/* Stagger Animation for Cards */
.premium-card:nth-child(1) {
  animation-delay: 0.1s;
}
.premium-card:nth-child(2) {
  animation-delay: 0.15s;
}
.premium-card:nth-child(3) {
  animation-delay: 0.2s;
}
.premium-card:nth-child(4) {
  animation-delay: 0.25s;
}
.premium-card:nth-child(5) {
  animation-delay: 0.3s;
}
.premium-card:nth-child(6) {
  animation-delay: 0.35s;
}
.premium-card:nth-child(7) {
  animation-delay: 0.4s;
}
.premium-card:nth-child(8) {
  animation-delay: 0.45s;
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/* Focus States for Accessibility */
.premium-card:focus {
  outline: 3px solid #49f3ff;
  outline-offset: 4px;
}

/* Active State */
.premium-card:active {
  transform: translateY(-10px) scale(1.01);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .premium-cards-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .premium-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }

  .premium-card-title {
    font-size: 1.125rem;
  }

  .premium-card-description {
    font-size: 0.875rem;
  }

  .premium-icon-container {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .premium-icon {
    width: 28px;
    height: 28px;
  }

  .card-number {
    font-size: 0.6875rem;
    padding: 0.3rem 0.6rem;
    top: 1.25rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .premium-card {
    padding: 1.75rem 1.25rem;
    min-height: 260px;
  }

  .premium-card-title {
    font-size: 1rem;
  }

  .premium-card-description {
    font-size: 0.8125rem;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .premium-card {
    transition: none;
    animation: none;
  }

  .premium-card:hover {
    transform: none;
  }

  .premium-icon-container::before {
    transition: none;
  }
}

/* Performance Optimizations */
.premium-card {
  contain: layout style paint;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .premium-card {
    border-color: #ffffff;
  }

  .premium-card-title {
    color: #ffffff;
  }

  .premium-card-description {
    color: #ffffff;
  }
}

.typewriter-text {
  display: inline-block;
  position: relative;
  color: linear-gradient(90deg, #49f3ff 0%, #80ffb5c7 70%);
}

/* ───────────── Hire Banner ───────────── */
.hire-section {
  position: relative;
  /* New gradient: Softer blues and greens */
  background: linear-gradient(
    135deg,
    #285477 0%,
    #1a833a 100%
  ); /* Darker, more muted blue-green */
  /* You could also add a subtle background pattern here if desired, e.g., using a very light SVG or a repeating-linear-gradient */
  /* background-image: 
    linear-gradient(135deg, rgba(42, 82, 102, 0.95) 0%, rgba(48, 115, 98, 0.95) 100%),
    url('path/to/subtle-pattern.svg'); 
  */
  overflow: hidden;
  padding: 4rem 1rem; /* Increased padding slightly for a more spacious feel */
}

.hire-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%; /* Slightly wider accent */
  height: 100%;
  /* Softer, theme-aligned accent color with more transparency */
  background: linear-gradient(
    to bottom right,
    rgba(73, 243, 255, 0.05),
    rgba(20, 150, 130, 0.1)
  );
  /* Kept the clip-path, but you could experiment with others e.g. polygon(25% 0, 100% 0, 75% 100%, 0% 100%) for a trapezoid */
  clip-path: polygon(
    10% 0,
    100% 0,
    90% 100%,
    0% 100%
  ); /* Adjusted clip-path for a softer edge */
  opacity: 0.7; /* Further soften the overlay */
}

.hire-container {
  position: relative; /* to sit above the ::before */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hire-title {
  color: #e0e0e0; /* Lighter color for better contrast on the new darker background */
  font-size: 2.8rem; /* Slightly increased size */
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* Subtle text shadow for depth */
}

.hire-btn {
  display: inline-flex;
  align-items: center;
  /* Adjusted button colors to fit the new theme */
  background: #00bfa5; /* A teal/green shade */
  color: #ffffff; /* White text for good contrast */
  font-weight: 600; /* Slightly bolder */
  padding: 0.85rem 1.75rem; /* Slightly larger padding */
  font-size: 1.3rem;
  text-decoration: none;
  border: 1px solid #008c7a; /* Subtle border */
  border-radius: 4px; /* Added slight rounding */
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hire-btn:hover {
  background: #00a790; /* Darker shade on hover */
  color: #f0f0f0;
  border-color: #006655;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hire-arrow {
  display: inline-block;
  margin-left: 0.5ch;
  transition: transform 0.2s;
}

.hire-btn:hover .hire-arrow {
  transform: translateX(4px);
}
/* ───────── Collaborate Section ───────── */
.collab-section {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin: 3rem 1rem;
  padding: 3rem 0;

  /* use your image only, no gradient */
  background: url("assets/collab.jpg") center center / cover no-repeat;
}

/* arrow cut-out with the same image */

.collab-content {
  position: relative; /* sits above the ::after */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 260px;
}

.collab-text {
  max-width: 480px;
  color: #66dbff;
  z-index: 1;
}

.collab-title {
  font-size: 4rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.collab-copy {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.collab-btn {
  display: inline-flex;
  align-items: center;
  background: #66faff;
  color: #111517;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background 0.2s, transform 0.1s;
}

.collab-btn:hover {
  background: #8cfff0;
  transform: translateY(-2px);
}

.collab-arrow {
  display: inline-block;
  margin-left: 0.5ch;
  transition: transform 0.2s;
}

.collab-btn:hover .collab-arrow {
  transform: translateX(4px);
}

.how-we-work-section {
  background: rgba(41, 41, 41, 0.973);
  position: relative;
  overflow: hidden;
}

.how-we-work-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/cardbg.webp") center center no-repeat;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.work-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}

.work-steps-container::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0088ff, #00ff88 50%);
  opacity: 0.3;
  z-index: 1;
}

.work-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.step-number {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
  background: #20232a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #00ccff;
  border: 2px solid #00ccff;
  text-shadow: 0 0 10px #00ccff;
  box-shadow: 0 0 20px rgba(0, 136, 255, 0.2);
}

.work-step:nth-child(2) .step-number {
  color: #00ff88;
  border-color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
}

.work-step:nth-child(3) .step-number {
  color: #00ccff;
  border-color: #00ccff;
  text-shadow: 0 0 10px #00ccff;
}

.work-step:nth-child(4) .step-number {
  color: #00ff88;
  border-color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
}

.work-step h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.work-step p {
  color: #cccccc;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .work-steps-container {
    flex-direction: column;
    align-items: center;
  }

  .work-steps-container::after {
    display: none;
  }

  .work-step {
    width: 100%;
    max-width: 300px;
  }
}

/* ─────────────────────────────── Feature Row ─────────────────────────────── */
.feature-row {
  display: flex;
  justify-content: center;
  /* Center cards horizontally */
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.feature-card {
  width: 100%;
  /* Take full width */
  max-width: 420px;
  /* Decreased width */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0;
  display: flex;
  /* Enable flex layout */
  align-items: flex-start;
  /* Align items to top */
  gap: 1.25rem;
  /* Space between icon and content */
  min-height: 160px;
  /* Increased height */
}

.feature-icon {
  color: #00ff84;
  flex-shrink: 0;
  /* Prevent shrinking */
  width: 36px;
  /* Fixed icon size */
  height: 36px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-content {
  flex: 1;
  /* Take remaining space */
  text-align: left;
  /* Align text to left */
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  word-wrap: break-word;
  /* Ensure wrapping */
}

/* ───────────────────── Feature Buttons (below features) ───────────────────── */
.feature-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-feature-primary {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background: linear-gradient(45deg, #00e676 0%, #00c853 100%);
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: opacity 0.2s;
}

.btn-feature-primary:hover {
  background: #00e668;
  color: #000;
  box-shadow: 0 12px 20px rgba(0, 255, 64, 0.2);
}

.btn-feature-secondary {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background: transparent;
  color: #00dee6;
  border: 2px solid #008fbb;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.btn-feature-secondary:hover {
  background: #00e6db;
  color: #000;
  box-shadow: 0 12px 20px rgba(0, 183, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    max-width: 100%;
    /* Full width on mobile */
  }
}

/* Add these new styles */
.glowing-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  top: 41px;
  z-index: 2;
  left: 0;
  filter: drop-shadow(0 0 10px #00ff88);
  animation: slide 11s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(calc(100vw - 20px));
  }
}

/* For mobile */
@media (max-width: 768px) {
  .glowing-dot {
    width: 15px;
    height: 15px;
    animation-duration: 3s;
  }
}

work-steps-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background: #4f8bff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 8px #4f8bffaa);
  animation: slide 4s linear infinite;
  z-index: 2;
}

@keyframes slide {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translate(-50%, 0px);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: translate(-50%, -20px);
    animation-timing-function: ease-out;
  }
}

.junction-image {
  position: relative;
}

.floating-junction {
  position: absolute;
  width: 180px;
  animation: floatY 4s ease-in-out infinite;
  left: 50%;
  top: -6rem;
  transform: translateX(-50%) rotate(-3deg);
  animation: floatY 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(79, 139, 255, 0.4));
}

@media (max-width: 768px) {
  .floating-junction {
    width: 80px;
    bottom: -10px;
  }
}

/* Footer Styles */
.premium-footer {
  background: linear-gradient(135deg, #0f172a 0%, #0d2538 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(20, 184, 166, 0.05) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 30%
    );
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  color: #f8fafc;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-container {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.logo-icon {
  font-size: 2rem;
  color: white;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f8fafc, #14b8a6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: #f8fafc;
  font-size: 1.1rem;
}

.social-link:hover {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #14b8a6;
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 10px;
  color: #14b8a6;
  width: 20px;
  text-align: center;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #14b8a6;
  flex-shrink: 0;
}

.contact-text {
  color: #94a3b8;
  line-height: 1.6;
}

.contact-text strong {
  color: #f8fafc;
  display: block;
  margin-bottom: 3px;
}

.newsletter {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter p {
  color: #94a3b8;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #f8fafc;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.newsletter-button {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.footer-bottom {
  max-width: 90rem;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #94a3b8;
}

.copyright {
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: #14b8a6;
}

.back-to-top {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

.leading-tight {
  line-height: 1.02;
}

.word-reveal-container .word {
  display: inline-block;
  color: #6b7280;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(8px);
  opacity: 0.4;
  margin-right: 0.25rem;
}

.word-reveal-container .word.revealed {
  color: #ffffff;
  transform: translateY(0);
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
/* ✅ CSS Styling */

/* transparent ribbon  */

/* Fade mask */
.ribbon-fade-mask-transparent {
  position: relative;
  overflow: hidden;
}

.ribbon-fade-mask-transparent::before,
.ribbon-fade-mask-transparent::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ribbon-fade-mask-transparent::before {
  left: 0;
  background: linear-gradient(to right, #00000074, transparent);
}

.ribbon-fade-mask-transparent::after {
  right: 0;
  background: linear-gradient(to left, #00000067, transparent);
}

/* Transparent ribbon */
.ribbon-marquee-transparent {
  background: transparent;
  padding: 1rem 0;
  overflow: hidden;
}

.ribbon-track-transparent {
  display: flex;
  white-space: nowrap;
  font-size: 2rem;
  font-family: "Rubik Mono One", sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.95;
  will-change: transform;
  user-select: none;
  pointer-events: none;
}

/* Green ribbon fade mask */
.ribbon-fade-mask-green {
  position: relative;
  overflow: hidden;
}

.ribbon-fade-mask-green::before,
.ribbon-fade-mask-green::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ribbon-fade-mask-green::before {
  left: 0;
  background: linear-gradient(to right, #000000, transparent);
}

.ribbon-fade-mask-green::after {
  right: 0;
  background: linear-gradient(to left, #000000, transparent);
}

/* Green ribbon styling */
.ribbon-marquee-green {
  background-color: #00a653;
  padding: 1rem 0;
  overflow: hidden;
}
.ribbon-track-green {
  display: flex;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  gap: 3rem;
  will-change: transform;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 480px) {
  .cta-main-title {
    font-size: 1.75rem;
  }
  .cta-description {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-icon {
  width: 16px;
  height: 16px;
  color: #00d092;
}
.description-styled {
  font-size: 1.3rem; /* and margin-bottom: 35px; */
}
.main-title-styled {
  font-size: 4rem; /* in media query */
}
