:root {
      --td-ff-body: "Inter", serif;
  --td-ff-heading: "Plus Jakarta Sans", serif;
  --td-ff-dm: "DM Serif Display", serif;
  --td-ff-dm-sans: "DM Sans", sans-serif;
  --td-ff-manrope: "Manrope", serif;
  --td-ff-bebas: "Bebas Neue", serif;
  --td-ff-teko: "Teko", sans-serif;
  --td-ff-rethink: "Rethink Sans", serif;
  --td-ff-bellefair: "Bellefair", serif;
  --td-ff-roboto: "Roboto", serif;
  --td-ff-fontawesome: "Font Awesome 6 Pro";

  /* Updated Color Palette */
  --td-common-white: #ffffff;
  --td-common-black: #3d3d3d;
  --td-common-black-2: #000000;
  --td-common-black-3: #010101;
  --td-common-black-4: #2d2d2d;
  --td-common-black-5: #1f1306;

  /* Navy Colors */
  --td-common-navy: #0d247c;
  --td-common-navy-light: #1a3a9e;
  --td-common-navy-dark: #071a5c;

  /* Orange Colors */
  --td-common-orange: #f57e20;
  --td-common-orange-light: #ff9848;
  --td-common-orange-dark: #e06910;

  /* Grey Colors */
  --td-grey-1: #6f7071;
  --td-grey-2: #f5f5f5;
  --td-grey-3: #90a49a;
  --td-grey-4: #787875;
  --td-grey-5: #555855;
  --td-grey-6: #756c63;

  /* Theme Colors - Updated with Navy and Orange */
  --td-theme-primary: #0d247c;
  /* Navy as primary */
  --td-theme-secondary: #f57e20;
  /* Orange as secondary */
  --td-theme-1: #000000;
  --td-theme-2: #ff9857;
  --td-theme-3: #000000;
  --td-theme-4: #e08824;

  --td-border-1: rgba(13, 36, 124, 0.15);
  --primary-color: #1a1a1a;
  --accent-color: #2563eb;
  --text-color: #333;
  --light-text: #6b7280;
  --background: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

/* Header Styles */
.header-area {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background-color: var(--background);
  box-shadow: var(--shadow);
  border-radius: 12px;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
  transition: var(--transition);
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-menu li {
  margin-left: 28px;
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-menu a:hover {
  color: var(--td-theme-primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--td-theme-primary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* CTA Button */
.cta-button {
  background-color: var(--td-theme-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 3px 0 rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
  background-color: var(--td-theme-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 20px;
  right: -100%;
  width: 280px;
  height: auto;
  background-color: var(--background);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 70px 25px 25px;
  transition: var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 5%;
}

.mobile-menu ul {
  list-style: none;
  margin-bottom: 25px;
}

.mobile-menu li {
  margin-bottom: 18px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--td-theme-3);
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--td-theme-primary);
}

.mobile-menu .cta-button {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--td-theme-3);
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-area {
    width: 95%;
    top: 15px;
  }

  .header-container {
    height: 65px;
  }

  .logo img {
    height: 32px;
  }
}

@media (max-width: 576px) {
  .header-area {
    width: 95%;
    top: 10px;
    padding: 0 15px;
  }

  .header-container {
    height: 60px;
  }

  .mobile-menu {
    width: 260px;
    right: -100%;
  }

  .mobile-menu.active {
    right: 2.5%;
  }
}

/* Demo Content */
.demo-content {
  margin-top: 120px;
  padding: 40px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.demo-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
/* 
.demo-content p {
  font-size: 1.125rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
} */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  text-align: left;
  color: var(--light-text);
}



/* Stacked User Images Styling */
.user-images-stack {
  display: flex;
  align-items: center;
  position: relative;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -15px;
}

.user-avatar:first-child {
  margin-left: 0;
}

.more-users {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: 3px solid #fff;
  margin-left: -15px;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}
