* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: "DM Sans";
}

/*------------------------------------- payment popup -------------------------------------------*/
/* Trigger Button */
.glassx-open-btn {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #cce0f8;
  border-radius: 25px;
  color: #0077b6;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Modal Backdrop */
.glassx-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.glassx-modal.show {
  display: flex;
}
.glassx-popup {
  background: #f9fbfe;
  border-radius: 14px;
  padding: 40px 40px 30px;
  width: 95%;
  max-width: 800px; /* wider modal */
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeInScale {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.glassx-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

.glassx-close-btn:hover {
  color: #000;
}

/* Title and Subtitle */
.glassx-heading {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #1d1d1f;
}

.glassx-subheading {
  color: #6b7280;
  font-size: 18px;
  margin-top: 6px;
  margin-bottom: 28px;
  font-family: "Darker Grotesque";
}

/* Card Container */
.glassx-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 600px) {
  .glassx-card-wrapper {
    flex-direction: row;
  }
}

/* Cards */
.glassx-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e3eaf5;
  padding: 24px;
  transition: all 0.3s ease;
  text-align: left;
}

.glassx-card h3 {
  margin: 16px 0 6px;
  font-size: 22px;
  color: #1d1d1f;
  font-family: "Darker Grotesque";
  font-weight: 600;
}

.glassx-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  font-size: 20px;
  font-family: "Darker Grotesque";
}

/* Icons */
.glassx-icons img {
  height: 40px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

/* Prevent Scroll When Modal Is Open */
.glassx-noscroll {
  overflow: hidden;
  height: 100vh;
}

.glassx-card:hover {
  background-color: #10c7ac;
  color: #ffffff;
  border: 1.5008px solid #0077b6;
  cursor: pointer;
}

.glassx-card:hover h3,
.glassx-card:hover p {
  color: #ffffff;
}
/* -------------------------------------------Navbar--------------------------------------------- */
.navbar {
  /* width: 100%;
  background: #000;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center; */
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 90rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.9rem;
  background: #000;
}

.inner-navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar ul li ul.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #111;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 8px;
  z-index: 1000;
}
.logo img {
  height: 40px;
}
.nav-contact-us {
  background-color: #15fe8a !important;
  color: #000 !important;
  font-weight: 500 !important;
  font-size: 1.2rem !important;
}
.nav-contact-us:hover {
  background: #d91600 !important;
  color: #fff !important;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #4ade80;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: #111;
  padding: 12px 18px;
  list-style: none;
  border-radius: 8px;
  top: 35px;
  left: 0;
  min-width: 200px;
  z-index: 99;
  flex-direction: column;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown-menu li {
  margin: 6px 0;
}
.dropdown-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  color: #4ade80;
}
.contact-btn {
  background: #4ade80;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
.drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #111;
  transition: right 0.4s ease;
  padding: 20px;
  overflow-y: auto;
  z-index: 1000;
}

.drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-menu a,
.drawer-toggle {
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
}

.drawer-toggle:hover,
.drawer-menu a:hover {
  color: #4ade80;
}
.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-left: 15px;
  margin-top: 8px;
}

.drawer-dropdown.open .drawer-submenu {
  display: flex;
}

.close-drawer {
  cursor: pointer;
  font-size: 22px;
  color: #fff;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
  .nav-contact-us {
    display: none;
  }
}

/* === Mega Dropdown Menu (Minimal CSS) === */
.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover,
.nav-item.active > .nav-link {
  color: #007bff;
}

/* === Mega Dropdown Container === */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: none;
  z-index: 1000;
}

/* Show dropdown on hover */
.nav-item:hover .mega-dropdown {
  display: block;
}

/* === Mega Dropdown Tabs === */
.mega-dropdown-tabs {
  display: flex;
  border-bottom: 2px solid #f1f1f1;
  margin-bottom: 20px;
}

.mega-dropdown-tabs button {
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.mega-dropdown-tabs button.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}

/* === Tab Content === */
.mega-dropdown-content {
  display: none;
}

.mega-dropdown-content.active {
  display: block;
}

/* === Dropdown Layout === */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-md-4 {
  flex: 0 0 33.3333%;
}

.mega-dropdown-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.mega-dropdown-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.mega-dropdown-item {
  transition: transform 0.2s ease, color 0.2s ease;
}

.mega-dropdown-item:hover h5 {
  color: #007bff;
}

/* === Dropdown Icon === */
.mega-dropdown-item .icon {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 10px;
  display: inline-block;
}

/* === Responsive === */
@media (max-width: 992px) {
  .mega-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 15px;
  }

  .row {
    flex-direction: column;
  }

  .col-md-4 {
    flex: 0 0 100%;
  }

  .mega-dropdown-tabs {
    flex-direction: column;
  }

  .mega-dropdown-tabs button {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
}
.services-link {
  display: inline-flex;
  align-items:flex-start;       /* centers arrow vertically */
  font-size: 32px;
}

.service-arrow {
  display: inline-flex;
  justify-content:flex-start;
  align-items: center;
  padding: 2px;
  width: 16px;
  height: 16px;
  font-size: 24px;
}
/* ---------------------------------------------------Navbar Ends------------------------------------------- */
/* ------------------------------------------------------Hero Section------------------------------------------ */
.hero {
  width: 100%;
  padding: 40px 80px;
  background: #000;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.top-heading {
  color: #5fe8a1;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.main-heading {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.main-heading span {
  color: #5fe8a1;
}

.bottom-heading {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 10px;
}

.hero-card {
  background-color: #07090c;
  border: 1px solid rgb(255, 255, 255, 0.3);
  border-radius: 15px;
  margin: 0 auto;
  padding: 2%;
  max-width: 80rem;
  width: 100%;
}

.hero-card.kyc-card {
  background: linear-gradient(175deg, #1e1e1e 0%, #000000 50%, #00180b 100%);
  position: relative;
  overflow: hidden;
}

.hero-card.kyc-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  pointer-events: none;
}

.kyc-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.kyc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: #fff;
}

.kyc-heading {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.kyc-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 18px 45px rgba(21, 254, 138, 0.35));
}

.kyc-title {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.kyc-description {
  font-size: 1.25rem;
  color: #ffffff;
}

.price {
  font-size: 52px;
  font-weight: 700;
}

.old-price {
  font-size: 24px;
  color: #777;
  text-decoration: line-through;
}

.cta-btn {
  background: #5df8a6;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  width: fit-content;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #7affb8;
  color: #000;
}

.kyc-list {
  display: flex;
  font-size: 85%;
  gap: 2rem;
  color: #e3eee5;
}

.kyc-list ul {
  list-style: none;
  line-height: 1.75;
  margin: 0;
  padding: 0;
}

.kyc-list li {
  display: flex;
  align-items: flex-start;
}

.kyc-list li::before {
  content: "✓";
  color: #15fe8a;
  margin-right: 10px;
  font-weight: 600;
}

.kyc-cta-panel {
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1%;
  margin: 0 auto;
  color: #fff;
}

.cta-panel-label {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bolder;
  color: #7deca7;
}

.kyc-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.kyc-current-price {
  font-size: 4.25rem;
  font-weight: 700;
}

.kyc-old-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.kyc-per-user {
  color: rgba(255, 255, 255);
  margin-bottom: 34px;
  font-style: italic;
}

.kyc-cta-panel .cta-btn {
  width: 100%;
  max-width: 280px;
  border-radius: 14px;
  text-align: center;
  font-size: 1rem;
  padding: 16px 28px;
}
.kyc-cta-panel .cta-btn:hover {
  background: #d91600;
  color: #fff;
}

.btn:hover {
  background: #d91600;
  color: #fff;
}

@media (max-width: 1200px) {
  .main-heading {
    font-size: 3rem;
  }

  .hero-card {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .hero-heading {
    margin-bottom: 30px;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .kyc-container {
    flex-direction: column;
    align-items: center;
  }

  .kyc-list {
    flex-direction: column;
    gap: 24px;
  }

  .kyc-info {
    width: 100%;
  }

  .kyc-cta-panel {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 20px 10px;
  }

  .main-heading {
    font-size: 2rem;
    line-height: 1.3;
  }

  .bottom-heading {
    font-size: 1rem;
  }

  .hero-card {
    margin: 20px 0;
    border-radius: 20px;
    padding: 20px;
  }

  .price {
    font-size: 40px;
  }

  .old-price {
    font-size: 20px;
  }

  .headline {
    font-size: 18px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .kyc-right {
    padding: 20px;
  }

  .kyc-list ul {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .kyc-left {
    margin-left: -50px;
  }
  .kyc-right {
    margin-left: -25px;
  }
  .hero {
    padding: 15px 8px;
  }

  .top-heading {
    font-size: .9rem;
  }

  .main-heading {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .bottom-heading {
    font-size: .9rem;
  }

  .hero-card {
    margin: 10px;
    padding: 15px;
  }

  .price {
    font-size: 32px;
  }

  .old-price {
    font-size: 16px;
  }

  .headline {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 13px;
    padding: 10px 20px;
    width: 100%;
  }

  .kyc-right h3 {
    font-size: 16px;
  }

  .kyc-list ul {
    font-size: 13px;
    line-height: 1.6;
  }

  .kyc-list li::before {
    margin-right: 6px;
  }
}
/* --------------------------------------Hero Ens------------------------- */
/* -----------------------------------------Plans and Features--------------- */
.plans-feature {
  padding: 10px 20px;
  text-align: center;
}

.plan-main-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.plan-subtitle {
  color: #ffffffc2;
  font-size: 16px;
}

.pricing-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-container {
    gap: 20px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
.card {
  background: linear-gradient(175deg, #1e1e1e 0%, #000000 50%, #00180b 100%);
  border-radius: 16px;
  color: #fff;
  padding: 24px;
  max-width: 400px;
  text-align: left;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-height: auto !important;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card:hover {
  transform: translateY(-4px);
}

.plan-header {
  margin-bottom: 14px;
}

.plan-badge {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 10px 21px;
  font-size: 14px;
}

.plan-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
  height: 100px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.custom-price {
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.price {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.old-price {
  font-size: 36px;
  color: #999;
  text-decoration: line-through;
}

.per-text {
  font-size: 15px;
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
}
.get-started-btn {
  width: 100%;
  height: 50px !important;
}
.btn {
  display: inline-block;
  text-align: center;
  background: #5fe8a1;
  color: #000;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  width: 100%;
  margin-bottom: 24px;
  transition: 0.3s;
}
.other {
  margin-top: 60px;
  color: #fff;
  border: 1px solid #474747;
}
.card-1 {
  background: linear-gradient(175deg, #002115 0%, #003522 50%, #004c24 100%);
  border: 1px solid #5fe8a1;
}
.hightlight {
  background-color: #5fe8a1;
  padding: 40px 5px 5px 5px;
}
.card.highlighted {
  border: 3px solid #00c97e;
  box-shadow: 0 0 0 3px #00c97e1a;
  position: relative;
  overflow: hidden;
}
.card.other {
  position: relative;
  overflow: visible !important; /* very important */
}

.highlight-header {
  position: absolute;
  top: -18px; /* lifts it above the card */
  left: 50%; /* centers horizontally */
  transform: translateX(-50%);
  background: #5fe8a1; /* green pill like the screenshot */
  color: #000;
  padding: 6px 18px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 20px; /* fully rounded pill */
  border: none; /* remove the white border */
  white-space: nowrap;
  z-index: 2;
}

.highlight-btn {
  background: #00c97e;
  color: #000;
  font-weight: 700;
}

.highlight-btn:hover {
  background: #06b673;
}

.included-title {
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0 12px 0;
  /* margin-bottom: 12px;
  margin-top:20px */
}

.features {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.features li {
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c97e;
  font-weight: bold;
}
@media (max-width: 400px) {
  .plan-main-title {
    font-size: 20px;
  }
  .plan-subtitle {
    font-size: 14px;
  }
  .pricing-container {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 20px;
    border-radius: 14px;
  }
  .price {
    font-size: 26px;
  }
  .btn {
    font-size: 15px;
  }
  .features li {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .pricing-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}
/* -----------------------------------------
   FIX: Consistent Typography for Pricing Cards
------------------------------------------ */

.card .plan-title {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  min-height: auto;
  margin: 0;
  padding: 0;
}

.card .price {
  font-size: clamp(2rem, 3vw, 1.9rem);
  font-weight: 800;
  margin: 0;
}

.card .features li {
  font-size: clamp(.85rem, 1vw, 1rem);
  line-height: 1.5;
}
/* ======================================================
   UNIVERSAL FIX FOR PRICING CARD SPACING + TEXT SIZING
   Works on Mac / Safari / Windows / Chrome
====================================================== */

/* Price row spacing */
.card .price-row {
  margin-top: -10px; /* tighten gap */
  margin-bottom: -4px;
}

.card .old-price {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  opacity: 0.7;
  margin: 0;
}

/* “per audit” / “per user” text */
.card .per-text {
  font-size: clamp(0.8rem, 1vw, 1.1rem);
  opacity: 0.8;
  margin: 0;
}

/* CTA button spacing */
.card .btn {
  margin: 10px 0 6px;
}

/* Section title */
.card .included-title {
  margin: 12px 0 4px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
}

/* Features list spacing */
.card .features {
  display: flex;
  flex-direction: column;
  gap: 8px; /* uniform spacing */
}

.card .features li {
  font-size: clamp(.85rem, 1vw, 1rem);
  color: #fff;
  line-height: 1.5;
  margin: 0;
  padding-left: 22px;
}

/* Fix CMC icon alignment */
.card .cmc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* --------------------------------------------Plans and Features Ends--------- */
/* ------------------------------------------------Ecosystem-------------------- */
.ecosystem-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ecosystem-section h3 {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 20px;
}
.ecosystem-container {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); */
  grid-template-columns: repeat(2 minmax(0, 1fr));
  gap: 30px 100px;
  justify-items: start;
}

/* sm ≥ 640px (40rem) */
@media (max-width: 639px) {
  .ecosystem-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    letter-spacing: 0.050em; 
    font-size: 1.25rem;       
    font-weight: 600;  
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .ecosystem-container {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* sm:grid-cols-3 */
    gap: 20px;
    letter-spacing: 0.050em; 
    font-size: 1.25rem;       
    font-weight: 600;  
  }
}

/* md ≥ 768px (48rem) */
@media (min-width: 48rem) {
  .ecosystem-container {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* md:grid-cols-4 */
    letter-spacing: 0.050em; 
    font-size: 1.25rem;       
    font-weight: 600;  
  }
}

/* lg ≥ 1024px (64rem) */
@media (min-width: 64rem) {
  .ecosystem-container {
    grid-template-columns: repeat(6, minmax(0, 1fr)); /* lg:grid-cols-6 */
    letter-spacing: 0.050em; 
    font-size: 1.25rem;       
    font-weight: 600;  
  }
}

/* xl ≥ 1280px (80rem) */
@media (min-width: 80rem) {
  .ecosystem-container {
    grid-template-columns: repeat(7, minmax(0, 1fr)); /* xl:grid-cols-7 */
    letter-spacing: 0.050em; 
    font-size: 1.25rem;       
    font-weight: 600;  
  }
}

.ecosystem-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ecosystem-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #fff;
}

.ecosystem-item span {
  font-size: 14px;
  color: #fff;
}
/* @media (max-width: 768px) {
  .ecosystem-container {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 20px;
  }
} */

@media (max-width: 480px) {
  .ecosystem-section {
    padding: 30px 16px;
  }

  .ecosystem-item img {
    width: 24px;
    height: 24px;
  }

  .ecosystem-item span {
    font-size: 13px;
  }
}
/* -------------------------------Ecosystem Ends--------------------------------- */
/* ----------------------------------------------Services Cards-------------------- */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1px 0%;
}

.why-cards div {
  background: #1e1e1e;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.why-cards div:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-cards img {
  width: 120px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.why-cards h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #15fe8a;
  margin-bottom: 10px;
}

.why-cards p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 8%;
  }

  .why-cards img {
    width: 70px;
    height: 70px;
  }

  .why-cards h2 {
    font-size: 1.15rem;
  }

  .why-cards p {
    font-size: .95rem;
  }
}
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
    padding: 30px 0%;
  }

  .why-cards div {
    padding: 25px 15px;
  }

  .why-cards img {
    width: 60px;
    height: 60px;
  }

  .why-cards h2 {
    font-size: 1.1rem;
  }

  .why-cards p {
    font-size: .9rem;
  }
}

.cyberscope-services {
  background-color: #141414;
  color: #fff;
  padding: 80px 10%;
  border-radius: 24px;
  font-family: "Inter", sans-serif;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
}

.services-text {
  flex: 1;
  min-width: 280px;
}

.services-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services-text p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
}
.services-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  height: 7%;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 3rem;
}

.btn-primary {
  background-color: #4af896;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}
.contact-btn {
  background-color: #000;
  color: #fff;
}
.contact-btn:hover {
  background-color: #d91600;
  color: #fff;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #1d1d1d;
  padding: 40px 30px;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: #4af896;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box img {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 992px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-text h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 35px 25px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cyberscope-services {
    padding: 60px 6%;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .services-text h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
/* -------------------------------------------------Services Cards Ends------------- */
/* ----------------------------------------------------SLA Section--------------------- */
.sla-section {
  background-color: #000;
  color: #fff;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.sla-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* max-width: 1300px; */
  width: 100%;
}

.sla-left {
  flex: 1 1 45%;
}

.sla-left h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 80px;
}

.sla-left img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

.sla-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sla-item h3 {
  color: #00e28c;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.sla-item p {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .sla-container {
    flex-direction: column;
    text-align: center;
  }

  .sla-left img {
    max-width: 400px;
    margin: 0 auto;
  }

  .sla-right {
    align-items: center;
  }

  .sla-item {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .sla-section {
    padding: 60px 5%;
  }

  .sla-left h1 {
    font-size: 1.8rem;
  }

  .sla-item h3 {
    font-size: 1.2rem;
  }

  .sla-item p {
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .sla-left h1 {
    font-size: 1.5rem;
  }

  .sla-item h3 {
    font-size: 1.1rem;
  }

  .sla-item p {
    font-size: .9rem;
  }
}
/* -------------------------------------------------------SLA Ends------------------------ */
/* ---------------------------------------------------------Banner Section-------------------- */
.cyberscope-banner {
  color: #fff;
  padding: 50px 6%;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}

.banner-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* ⬅ aligns left & right content bottom */
  flex-wrap: nowrap;
  width: 100%;
  gap: 20px;
  background-color: #1b1b1b;
  padding: 40px;
  border-radius: 20px;
}


.banner-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* aligns heading bottom */
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo img {
  width: 200px;
  height: auto;
}

.logo-text h2 {
  color: #00e28c;
  font-size: 1.6rem;
  margin: 0;
}

.logo-text p {
  color: #b3b3b3;
  font-size: .9rem;
  margin: 0;
}

.banner-heading {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;;
}

.banner-right {
  display: flex;
  gap: 15px;
  margin:20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #00e28c;
  color: #000;
}

.btn-primary:hover {
  background-color: #d91600;
  color: #fff;
}

.btn-outline {
  border: 1.5008px solid #00e28c;
  color: #00e28c;
  background: transparent;
}

.btn-outline:hover {
  background-color: #00e28c;
  color: #000;
}

.arrow {
  font-size: 1.1rem;
}
@media (max-width: 1024px) {
  .banner-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-wrap: wrap;
  }

  .banner-right {
    justify-content: flex-start;
    font-size: 13px !important;
  }

  .banner-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .cyberscope-banner {
    padding: 40px 5%;
  }

  .logo-text h2 {
    font-size: 1.4rem;
  }

  .banner-heading {
    font-size: 1.4rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 200px;
  }

  .banner-heading {
    font-size: 1.2rem;
  }

  .btn {
    font-size: .95rem;
    padding: 12px 20px;
  }
}
/* -----------------------------------------------Banner Ends-------------------------------------- */
/* -------------------------------------------------Testimonials section-------------------- */
.testimonials-imgs {
  width: 50px !important;
  height: 80px !important;
  object-fit: contain !important;
  margin-bottom: 20px !important;
}
.why-cards .testimonials-cards {
  background-color: #fff;
}
.why-cards .testimonials-cards h2 {
  color: #000;
}
.why-cards .testimonials-cards p {
  color: #000;
}
.testimonialss {
  margin: 0px;
}
/* ----------------------------------------------------Testimonials Ends----------------------- */
/* --------------------Award Section----------------------------------------------- */
.awards-section {
  color: #fff;
  border-radius: 16px;
  margin: 40px auto;
}

.awards-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding:32px;
  border-radius: 16px;
  background-color:#1b1b1b !important;
  gap: 40px;
}

.awards-text {
  flex: 1 1 400px;
}

.awards-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.awards-text p {
  font-size: 1.1rem;
  color: #d1d1d1;
  line-height: 1.6;
}

.awards-logos {
  display: flex;
  flex: 1 1 500px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.awards-logos img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.awards-logos img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .awards-container {
    text-align: center;
  }

  .awards-logos {
    justify-content: center;
  }

  .awards-logos img {
    width: 100px;
  }

  .awards-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .awards-text h2 {
    font-size: 1.5rem;
  }

  .awards-text p {
    font-size: 1rem;
  }

  .awards-logos img {
    width: 80px;
  }

  .awards-section {
    padding: 40px 15px;
  }
}
/* --------------------------------Award Ends--------------------------- */
/* -------------------------------Footer------------------------------------ */
.footer {
  background: #000;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  padding: 60px 20px 20px 20px;
}

.footer-container {
  margin: 5px 15px;
}

.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer-logo-social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  width: 350px;
  height: auto;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
  justify-content: end;
}

.social-icons img {
  width: 29px;
  height: 29px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
.newsletter-card {
  background: #1a1a1a;
  padding: 20px;
  margin: 23px 10px 10px 0px;
  border-radius: 12px;
  max-width: 475px;
}

.newsletter-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 16px;
}

.newsletter-form {
  /* display: flex;
  gap: 1rem;
  border: 1px solid #444;
  border-radius: 8px;
  overflow: hidden; */
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 0.5rem;  
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
    gap: 0.25rem;   
  }
}

.gap.newsletter-form input {
  border: none;
  background: black;
  font-size: 14px;
  border-radius: 8px;
}

.newsletter-form button {
  background: #4ade80;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #d91600;
  color: #fff;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.link-column h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: .4rem;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 30px;
}

.link-column ul li {
  margin-bottom: 8px;
}

.link-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.link-column ul li a:hover {
  color: #4ade80;
}
.footer-bottom {
  border-top: 1px solid white;
  text-align: center;
  padding-top: 16px;
  margin-top: 40px;
}

.footer-bottom p {
  color: white;
  font-size: 16px;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
  }

  .newsletter-card {
    align-self: flex-start;
  }

  .footer-logo-social {
    flex: 1;
  }

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

@media (max-width: 480px) {
  .newsletter-card {
    max-width: 100%;
  }

  .footer-logo {
    width: 180px;
  }

  .link-column h4 {
    font-size: 15px;
  }
}
/* -----------------Slider------------ */

.trustedBy .slider-title h1 {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.slider {
  background: transparent;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  content: "";
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  display: flex;
  align-items: center;
  animation: scroll 35s linear infinite;
  width: calc(200px * 10);
}
.slider .slide {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slider .slide img {
  width: 160px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider .slide img:hover {
  transform: scale(1.1);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 5));
  }
}
@media (max-width: 1024px) {
  .slider .slide {
    width: 160px;
  }
  .slider .slide img {
    width: 130px;
  }
  .slider .slide-track {
    width: calc(160px * 10);
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-160px * 5));
    }
  }
}

@media (max-width: 640px) {
  .trustedBy .slider-title h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .slider {
    height: 80px;
  }

  .slider .slide {
    width: 120px;
  }

  .slider .slide img {
    width: 100px;
  }

  .slider .slide-track {
    width: calc(120px * 10);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 5));
    }
  }
}

/* ---------------------------------- contact us START ------------------------------*/
/* Hidden Modal Container */
.modal {
  display: none; /* initially hidden */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.4);
}

/* Modal Box */
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  margin: auto auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding-bottom: 1.5rem;
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #000;
}

.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  color: #4ade80;
  font-weight: bold;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
}

label {
  font-weight: 600;
  margin-top: .8rem;
  margin-bottom: .3rem;
  color: #333;
}

.required {
  color: red;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: #4ade80;
  outline: none;
}

/* Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 1rem;
  font-size: 13px;
  color: #555;
}

.checkbox-row input {
  margin-top: 4px;
}

/* Submit Button */
.submit-btn {
  background-color: #4ade80;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  margin-top: 1.5rem;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #d91600;
}
/* ---------------------------------- contact us END ------------------------------*/

.dropdown {
  position: relative;
}

.dropdown-menu.custom-dropdown {
  display: none;
  position: absolute;
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 900px;
  top: 100%;
  left: 0;
  z-index: 100;
}
/* Move the Services dropdown a bit to the left */
.services-dropdown {
  transform: translateX(-20%); /* adjust value as needed */
}

.dropdown-menu .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.dropdown-menu .item h4,
.dropdown-menu .item p {
  white-space: normal;
  word-break: break-word;
}

.dropdown-menu .grid,
.dropdown-menu .grid2 {
  width: 100%;
}
/* Scope everything to only this Solutions dropdown */
.solutions-dropdown {
  width: max-content;
  max-width: 560px;
  padding: 15px;
}

.solutions-dropdown .grid3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}

@media (min-width: 600px) and (max-width: 768px) {
  .solutions-dropdown .grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.solutions-dropdown .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;

  padding: 10px 8px;
  border-radius: 8px;
}

.solutions-dropdown .item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.solutions-dropdown .item h4,
.solutions-dropdown .item p {
  margin: 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.solutions-dropdown .item h4{
 font-size: large;
}

.solutions-dropdown .item p {
 font-size: small;
}


.solutions-dropdown a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.tab-buttons {
  display: flex;
  margin-bottom: 15px;
}

.tab-btn {
  flex: 1;
  background: #333;
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
}

.tab-btn.active {
  background: #3ade9d;
  color: #000;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.item {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  border-radius: 8px;
  gap: 10px;
}
.item:hover {
  background: #1a1a1a;
}

.item .icon {
  font-size: 24px;
  color: #3ade9d;
  margin-right: 10px;
}

.item h4 {
  margin: 0 0 5px;
  font-size: 14px;
  color: #fff;
}

.item p {
  font-size: 12px;
  color: #aaa;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.cmc-item {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* space between text and image */
}

.cmcIcon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  filter: invert(29%) sepia(99%) saturate(3000%) hue-rotate(200deg)
    brightness(90%) contrast(90%);
}

/* sidebar drawer css */
#drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 385px;
  height: 100%;
  background: black;
  color: white;
  padding: 20px;
  box-sizing: border-box;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

/* Open state */
#drawer.open {
  right: 0;
}

/* Close Button */
#closeDrawer {
  /* background: grey; */
  border: none;
  /* color: white; */
  height:24px;
  width:30px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
  float: right;
}

#drawer ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

#drawer li {
  margin: 20px 0;
}

#drawer a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.arrowColor {
  color: lab(83.2% -51.1 23.0); /* or use rgb/hex */
  display: inline-block; /* needed for transform */
}

.services-link.active {
  color: lab(83.2% -51.1 23.0) !important;
}

/* Active state rotates the arrow */
.arrowColor.active {
 transform: rotate(90deg);
}

@media screen and (max-width: 480px) {  
  body.stop-scroll {
      overflow: hidden;
      height: 100vh;
  }
  .dropdown-menu.custom-dropdown{
    display: none;
    position: absolute;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 350px !important;
    top: 100%;
    left: 0;
    z-index: 100;
    margin-top: 10px;
  }
  .custom-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 15px;
    width: 100%;
  }
  .services-dropdown{
    transform: none !important;
  }
  .dropdown-menu {
      display: none !important;
  }

  .dropdown-menu.show {
      display: block !important;
  }

  .grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .ecosystm.section-container {
    max-width: 23rem;
  }
}

@media (max-width: 890px) {
  body.stop-scroll {
      overflow: hidden;
      height: 100vh;
  }

 #drawer {
    width: 100% !important;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .social-icons li {
    display: inline-block;
  }
  .dropdown-menu {
      display: none !important;
      position: relative !important;
  }

  .dropdown-menu.show {
      display: block !important;
  }

  .dropdown-menu.custom-dropdown{
    width: 90% !important;
  }
  .custom-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    width: 100%;
  }
  .services-dropdown{
    transform: none !important;
  }
  .dropdown-menu {
      display: none !important;
  }

  .dropdown-menu.show {
      display: block !important;
  }

  .grid2 {
    grid-template-columns: repeat(4, 1fr);
  }
  #chains .grid2{
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }

  .footer-links .link-column {
    width: 35%;
    max-width: none;
  }

  .footer-links h4 {
    font-size: 18px;
  }

  .footer-links ul li a {
    font-size: 16px;
  }

  .footer-links ul {
    padding-left: 0;
  }
}

/* Footer */
.card-description{
  font-size: 16px;
  color: white !important;
}

.card-content{
  padding-inline: calc(var(--spacing)*6);
  margin-top: calc(var(--spacing) * 4);
}

.card-title{
  color:#ccc;
}

/* Global Container */
.section-container {
  margin-left: auto;      
  margin-right: auto;       
  width: 100%;             
  max-width: 80rem;         
  padding-left: 1rem;       
  padding-right: 1rem;      
  padding-top: 2.5rem;      
  padding-bottom: 2.5rem; 
  display: flex;
  flex-direction: column;
  gap: 3rem;              
  background: #000;
}

.footer-bottom-pb {
  padding-bottom: .5rem !important;
  max-width: 80rem;
}

.footer-1 {
  padding-top: 4rem;
  background: #000;
  color: #fff;
  width: 100%;
}

.footer-container-1 {
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* TOP SECTION */
.footer-top-1 {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .footer-top-1 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo-1 {
  width: auto;
  height: 100%;
}

@media (min-width: 768px) {
  .footer-logo-1 {
    height: 5rem;
  }
}

.footer-social-1 {
  display: flex;
  gap: .375rem;
}

.footer-social-1 img {
  width: 32px;
  height: 32px;
}

/* MIDDLE SECTION */
.footer-middle-1 {
  display: flex;
  /* flex-direction: column; */
  gap: 5.75rem;
}

@media (max-width: 767px) {
  .footer-middle-1 {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-middle-1 .newsletter-card-1  {
     width: 100%;
     max-width: 47rem !important;
  }
}

/* Newsletter */
.newsletter-card-1 {
  width: 100%;
  max-width: 28rem;
  border: 1px solid #222;
  padding: 1.5rem 0;
  border-radius: .75rem;
  background: #111;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 0 0 40%;
}

.newsletter-title-1 {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 1.5rem;
}

.newsletter-text-1 {
  color: #ccc;
  padding: 0 1.5rem;
}

.newsletter-iframe-1 {
  display: block;
  margin: 1rem auto 0;
  max-width: 100%;
}

/* GRID COLUMNS */
.footer-grid-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  /* margin-left: 10px; */
  flex: 0 0 60%;
}

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

.footer-column-1 {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-column-1 h4 {
  font-size: 1.125rem;
  font-weight: bold;
}

.footer-column-1 ul {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.footer-column-1 a {
  color: #aaa;
  padding: .25rem 0;
  transition: color 0.2s;
}

.footer-column-1 a:hover {
  color: #fff;
}

/* BOTTOM */
.footer-bottom-1 {
 border-top: 1px solid white;
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom-1 p {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .footer-middle-1 {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2.75rem;
  }
  .footer-top-1 {
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  .footer-logo {
    width: 412px;
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 890px) {
  .newsletter-card {
    max-width: 414px !important;
  }
  .footer-links {
    flex-wrap: nowrap;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-middle-1 {
    gap: 2.75rem;
  }
  .social-icons{
    gap: 1em;
  }
  .link-column ul li a{
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1265px) {
  .link-column ul{
    line-height: 23px !important;
  }
}
@media screen and (min-width: 890px) and (max-width: 1016px) {
  .footer-middle-1{
    gap: 2.75rem;
  }
  .newsletter-card {
    max-width: 464px;
  }
  .social-icons{
    gap: 1.5em;
  }
}

.promo-bar {
  background-color: #5FE8A1;
  color: var(--primary-foreground);
  padding: .625rem 0;
  text-align: center;
}

.promo-link {
  font-size: 1.0725rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}

.promo-link:hover {
  text-decoration: none;
}

.arrow-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  margin-left: .25rem;
}

@media (max-width: 1280px) {
  .section-container{
    max-width: 80rem !important;
  }
  .footer-container-1 {
    max-width: 80rem !important;
  }
  .navbar {
    max-width: 80rem;
  }
  .card .plan-title {
    font-size: clamp(1.4rem, 1.8vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    min-height: auto;
    margin: 0;
    padding: 0;
  }
  .card .price {
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 800;
    margin: 0;
  }
  .testimonials .section-container{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    background: #000;
  }
}

.newsletter-form .input-email {
  color: #000;
  background-color: #fff !important;
  border:none;
}

.success-message {
  display: flex; 
  padding-top: 0.75rem;
  padding-bottom: 0.75rem; 
  padding-left: 1rem;
  padding-right: 1rem; 
  margin-top: 0.5rem; 
  margin-bottom: 1rem; 
  gap: 0.5rem; 
  align-items: center; 
  border-radius: 0.375rem; 
  border-width: 1px; 
  width: 100%; 
  font-size: 0.875rem;
  line-height: 1.25rem; 
  color: #059669; 
  background-color: #A7F3D0; 
}

/* Icon size */
.success-icon {
  width: 24px;
  height: 24px;
}

/* Tablet / Desktop */
@media (min-width: 768px) { 
  .success-message {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; 
    padding-left: 1rem;
    padding-right: 1rem; 
    font-size: 1rem;
    line-height: 1.5rem; 
  }
}

.error-text {
  color: red;
  /* margin-top: 0.5rem; */
  display: none;
}

/* Mobile */
@media (max-width: 639px) {
  #error-mobile {
    display: none;
    color: red;
    line-height:0px;
  }
}

/* Desktop */
@media (min-width: 640px) {
  #error-desktop {
    display: none;
    color: red;
  }
  #subscribeBtn{
    width:14rem;
  }
}

.subscribe-btn {
  height: 40px;              /* h-10 */
  min-width: 140px;          /* similar to min-w-35 */
  border-radius: 12px;       /* rounded-xl */
  background: #4ade80;
  color: #000;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow-icon {
  width: 18px;
  height: 18px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  /* display: inline-flex; */
  display: none;
  align-items: center;
  gap: 6px;
  margin-top:1px;
}

.loading .spinner {
  display: inline-block;
}

.loading .btn-content {
  display: none;
}

.hidden {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-text{
  font-weight: 500;
}

.newsletter-form button.success {
  background: #22c55e; /* green */
  color: #fff;
}

.btn-primary,
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}