:root {
  --primary-bg: #000000;
  --secondary-bg: #0a0a0a;
  --accent-color: #00b874;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --card-bg: #1e1e1e;
  --border-color: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  padding: 24px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 16px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 100px;
  height: auto;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

.cta-button {
  background-color: var(--accent-color);
  color: var(--primary-bg);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: poMontserrat;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #00a366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 184, 116, 0.3);
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: poMontserrat;
  z-index: 1001;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  backdrop-filter: blur(100px);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent-color);
}

.mobile-nav-cta {
  margin-top: 30px;
}

.mobile-nav-cta .cta-button {
  width: 100%;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  padding-right: 20px;
}

.pre-header {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.main-headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  color: var(--accent-color);
}

.hero-description {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 18px;
}

.user-count {
  display: flex;
  align-items: center;
  margin: 32px 0;
}

.user-avatars {
  display: flex;
  margin-right: 16px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-bg);
  background-color: var(--secondary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-left: -10px;
  overflow: hidden;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-count-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-box {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border-color);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--primary-bg);
}

.feature-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Right - Updated Image Display */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.background-text {
  position: absolute;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.glow-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 184, 116, 0.2) 0%,
    rgba(0, 184, 116, 0) 70%
  );
  filter: blur(20px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.phone-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.phone-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.phone-image:hover {
  transform: translateY(-10px) scale(1.02);
}

/* New Decade Section */
.new-decade {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 184, 116, 0.15) 0%,
    rgba(0, 184, 116, 0.1) 25%,
    rgba(0, 0, 0, 0.95) 100%
  );
  overflow: hidden;
}

.new-decade::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgb(0 0 0 / 25%), transparent 60%),
    radial-gradient(circle at 70% 70%, rgb(0 0 0 / 15%), transparent 60%),
    radial-gradient(circle at 50% 90%, rgb(0 0 0 / 20%), transparent 70%);
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  z-index: 0;
  opacity: 0.9;
}

.new-decade-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.new-decade-left {
  padding-right: 20px;
}

.section-pre-header {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-description {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 18px;
}

.new-decade-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-card {
  background: rgba(20, 20, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 184, 116, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-color);
  font-size: 24px;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card-description {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Trading Section */
.trading-section {
  padding: 100px 0;
  background-color: var(--primary-bg);
}

.trading-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trading-left {
  position: relative;
}

.trading-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background-color: var(--card-bg);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed var(--border-color);
  color: var(--text-secondary);
  text-align: center;
  padding: 20px;
}

.trading-image i {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.trading-right {
  padding-left: 20px;
}

.trading-pre-header {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.trading-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.trading-description {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 18px;
}

/* MedBed Section */
.medbed-section {
  padding: 100px 0;
  background-color: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}

.medbed-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(0, 184, 116, 0.1) 0%,
    transparent 50%
  );
  z-index: 0;
}

.medbed-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.medbed-left {
  padding-right: 20px;
}

.medbed-pre-header {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.medbed-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.medbed-description {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.7;
}

.medbed-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.medbed-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.medbed-feature-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(0, 184, 116, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

.medbed-feature-text {
  color: var(--text-secondary);
  font-size: 14px;
}

.medbed-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.medbed-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  box-shadow: 0 8px 30px rgba(0, 184, 116, 0.25);
}

.medbed-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.3s ease;
}

.medbed-image:hover img {
    transform: scale(1.05);
    opacity: 0.95;
}

.medbed-image i {
  font-size: 64px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.medbed-image h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.medbed-image p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Logo Ticker */
.ticker-container {
  width: 100%;
  max-width: 2000px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.ticker-container::before,
.ticker-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.ticker-container::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.ticker-container::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.ticker-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scroll 30s linear infinite;
}

.ticker-item {
  background-color: #1a1a1a;
  border-radius: 50px;
  padding: 8px 16px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: white;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.ticker-item:hover {
  transform: translateY(-2px);
  background-color: #2a2a2a;
}

.ticker-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--secondary-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 18px;
}

/* Footer */
footer {
  background-color: var(--secondary-bg);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.footer-image {
  width: 100px;
  height: auto;
  margin: 20px 0;
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-color);
  color: var(--primary-bg);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content,
  .new-decade-content,
  .trading-content,
  .medbed-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left,
  .new-decade-left,
  .trading-right,
  .medbed-left {
    padding-right: 0;
    text-align: center;
  }

  .trading-right,
  .medbed-left {
    padding-left: 0;
  }

  .main-headline,
  .section-title,
  .trading-title,
  .medbed-title {
    font-size: 36px;
  }

  .user-count {
    justify-content: center;
  }

  .nav-links,
  .cta-button.desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .new-decade-right {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .medbed-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-image {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 60px;
  }

  .medbed-right {
    padding: 20px;
  }

  .medbed-image {
    max-width: 100%;
    border-radius: 15px;
  }

  .main-headline,
  .section-title,
  .trading-title,
  .medbed-title,
  .cta-title {
    font-size: 32px;
  }

  .background-text {
    font-size: 120px;
  }

  .new-decade,
  .trading-section,
  .medbed-section,
  .features,
  .cta-section {
    padding: 60px 0;
  }

  .new-decade-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phone-image-container {
    height: 300px;
  }

  .medbed-image {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 40px;
  }

  .main-headline,
  .section-title,
  .trading-title,
  .medbed-title,
  .cta-title {
    font-size: 28px;
  }

  .background-text {
    font-size: 80px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .phone-image-container {
    height: 250px;
  }

  .medbed-image {
    height: 200px;
  }
}

/* Animation for counter */
.counter {
  font-weight: 700;
  color: var(--accent-color);
}
/* Hero Section */
    .medbed-hero {
      background: radial-gradient(circle at center, rgba(0,184,116,0.15), rgba(0,0,0,0.8));
      padding: 160px 20px 100px;
      text-align: center;
      color: var(--text-light);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
    }

    .medbed-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('assets/images/medbed-bg.jpg') center/cover no-repeat;
      opacity: 0.25;
      z-index: -1;
    }

    .medbed-hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #fff, #8affc1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .medbed-hero p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      color: rgba(255,255,255,0.8);
    }

    /* News Grid */
    .news-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(15,15,15,1));
    }

    .news-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }

    .news-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(20px);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    .news-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,184,116,0.25);
    }

    .news-image {
      width: 100%;
      height: 220px;
      background-size: cover;
      background-position: center;
    }

    .news-content {
      padding: 22px 24px;
      color: var(--text-light);
    }

    .news-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--text-gray);
      margin-bottom: 10px;
    }

    .news-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 10px;
      background: linear-gradient(90deg, #fff, #84ffbf);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .news-description {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .read-more {
      color: var(--primary-green);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.3s;
    }

    .read-more:hover {
      color: #00ff9c;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      margin-top: 50px;
      gap: 10px;
    }

    .pagination a {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 10px 16px;
      border-radius: 10px;
      color: #fff;
      text-decoration: none;
      transition: background 0.3s;
    }

    .pagination a:hover, .pagination a.active {
      background: rgba(0,184,116,0.2);
      border-color: rgba(0,184,116,0.4);
      color: var(--primary-green);
    }

    @media (max-width: 768px) {
      .medbed-hero h1 { font-size: 2.2rem; }
      .news-section { padding: 60px 15px; }
    }
    /* About Us Page Specific Styles - Namespaced to avoid conflicts */
        .about-page {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* About Hero Section */
        .about-hero {
            padding: 180px 0 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at 70% 30%,
                rgba(0, 184, 116, 0.1) 0%,
                transparent 50%
            );
            z-index: -1;
        }

        .about-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-hero-left {
            padding-right: 20px;
        }

        /* Liquid Glass Effect for Pre-Headers */
.about-pre-header {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(0, 184, 116, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 184, 116, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 184, 116, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-pre-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.about-pre-header:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 184, 116, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 184, 116, 0.4);
}

.about-pre-header:hover::before {
    left: 100%;
}

/* Optional: Add a subtle pulse animation */
@keyframes liquidPulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(0, 184, 116, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(0, 184, 116, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.about-pre-header {
    animation: liquidPulse 4s ease-in-out infinite;
}
/* Enhanced Liquid Effect with Gradient Border */
.about-pre-header.enhanced {
    background: rgba(10, 10, 10, 0.7);
    border: double 1px transparent;
    background-image: 
        linear-gradient(var(--secondary-bg), var(--secondary-bg)),
        linear-gradient(135deg, var(--accent-color), transparent 70%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.about-pre-header.enhanced::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        transparent 40%,
        transparent 60%,
        var(--accent-color)
    );
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-pre-header.enhanced:hover::after {
    opacity: 0.3;
}

        .about-main-headline {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .about-highlight {
            color: var(--accent-color);
        }

        .about-hero-description {
            color: var(--text-secondary);
            margin-bottom: 32px;
            font-size: 18px;
        }

        .about-hero-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-background-text {
            position: absolute;
            font-size: 180px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            z-index: -1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
        }

        .about-glow-effect {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                var(--glow) 0%,
                rgba(0, 184, 116, 0) 70%
            );
            filter: blur(20px);
            z-index: 0;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .about-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 20px;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: translateY(-10px) scale(1.02);
        }

        /* About Mission Section */
        .about-mission {
            padding: 100px 0;
            background-color: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }

        .about-mission::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at 30% 70%,
                rgba(0, 184, 116, 0.05) 0%,
                transparent 50%
            );
            z-index: 0;
        }

        .about-mission-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-section-header {
            margin-bottom: 40px;
        }

        .about-section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .about-section-subtitle {
            color: var(--text-secondary);
            max-width: 600px;
        }

        .about-mission-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .about-stat-card {
            background: rgba(20, 20, 20, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .about-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 184, 116, 0.2);
        }

        .about-stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .about-stat-label {
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 500;
        }

        /* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 70%,
        rgba(0, 184, 116, 0.05) 0%,
        transparent 50%
    );
    z-index: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.why-us-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 184, 116, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
}

.why-us-card:hover::before {
    left: 100%;
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 184, 116, 0.15) 0%, rgba(0, 184, 116, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-color);
    font-size: 32px;
    border: 2px solid rgba(0, 184, 116, 0.2);
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 184, 116, 0.2) 0%, rgba(0, 184, 116, 0.1) 100%);
    box-shadow: 0 8px 20px rgba(0, 184, 116, 0.3);
}

.why-us-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.why-us-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.why-us-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 184, 116, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 184, 116, 0.2);
    transition: all 0.3s ease;
}

.why-us-card:hover .feature-tag {
    background: rgba(0, 184, 116, 0.2);
    transform: translateY(-2px);
}

/* Stats Section */
.why-us-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-color), #00d48a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-card {
        padding: 30px 20px;
    }
    
    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .why-us-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-us-features {
        flex-direction: column;
        align-items: center;
    }
}

        .about-social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .about-social-link:hover {
            background: var(--accent-color);
            color: var(--primary-bg);
            transform: translateY(-3px);
        }

        /* About Values Section */
        .about-values {
            padding: 100px 0;
            background-color: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }

        .about-values::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at 70% 30%,
                rgba(0, 184, 116, 0.05) 0%,
                transparent 50%
            );
            z-index: 0;
        }

        .about-values-content {
            position: relative;
            z-index: 1;
        }

        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .about-value-card {
            background: rgba(20, 20, 20, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-value-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .about-value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 184, 116, 0.2);
        }

        .about-value-card:hover::after {
            transform: translateX(0);
        }

        .about-value-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 184, 116, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent-color);
            font-size: 28px;
        }

        .about-value-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .about-value-description {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* About CTA Section */
        .about-cta {
            padding: 100px 0;
            text-align: center;
            background: radial-gradient(
                circle at center,
                rgba(0, 184, 116, 0.1) 0%,
                rgba(0, 184, 116, 0.05) 25%,
                rgba(0, 0, 0, 0.95) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .about-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgb(0 0 0 / 25%), transparent 60%),
                radial-gradient(circle at 70% 70%, rgb(0 0 0 / 15%), transparent 60%),
                radial-gradient(circle at 50% 90%, rgb(0 0 0 / 20%), transparent 70%);
            backdrop-filter: blur(15px) saturate(160%);
            -webkit-backdrop-filter: blur(15px) saturate(160%);
            z-index: 0;
            opacity: 0.9;
        }

        .about-cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .about-cta-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-cta-description {
            color: var(--text-secondary);
            margin-bottom: 40px;
            font-size: 18px;
        }

        .about-cta-button {
            background-color: var(--accent-color);
            color: var(--primary-bg);
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-family: Montserrat, sans-serif;
        }

        .about-cta-button:hover {
            background-color: #00a366;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 184, 116, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-hero-content,
            .about-mission-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-hero-left {
                padding-right: 0;
                text-align: center;
            }
            

            .about-main-headline,
            .about-section-title,
            .about-cta-title {
                font-size: 36px;
            }

            .about-team-grid,
            .about-values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-mission-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                padding: 140px 0 60px;
            }

            .about-main-headline,
            .about-section-title,
            .about-cta-title {
                font-size: 32px;
            }

            .about-background-text {
                font-size: 120px;
            }

            .about-mission,
            .about-team,
            .about-values,
            .about-cta {
                padding: 60px 0;
            }

            .about-image-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .about-hero {
                padding: 120px 0 40px;
            }

            .about-main-headline,
            .about-section-title,
            .about-cta-title {
                font-size: 28px;
            }

            .about-background-text {
                font-size: 80px;
            }

            .about-team-grid,
            .about-values-grid {
                grid-template-columns: 1fr;
            }

            .about-image-container {
                height: 250px;
            }
        }