  @import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  body {
      font-family: "Be Vietnam Pro", sans-serif;
      font-weight: 400;
      font-style: normal;
  }


  /* ---------------------------
   TYPOGRAPHY HELPER CLASSES
---------------------------- */

  /* HEADINGS */
  .heading-1 {
      font-size: 3rem;
      /* large hero heading */
      line-height: 1.3;
      letter-spacing: 0.01em;
      font-weight: 700;
  }

  .heading-2 {
      font-size: 2.25rem;
      line-height: 1.35;
      letter-spacing: 0.008em;
      font-weight: 600;
  }

  .heading-3 {
      font-size: 1.75rem;
      line-height: 1.4;
      letter-spacing: 0.005em;
      font-weight: 600;
  }

  /* SUBHEADINGS */
  .subheading {
      font-size: 1.25rem;
      line-height: 1.5;
      letter-spacing: 0.002em;
      font-weight: 500;
      color: #555;
      /* muted modern look */
  }

  /* BODY TEXT */
  .body-text {
      font-size: 1rem;
      line-height: 1.75;
      /* comfortable for reading */
      letter-spacing: -0.025em;
      /* subtle tightening */
      font-weight: 400;
      color: #333;
  }

  /* SMALL TEXT / CAPTIONS */
  .small-text {
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0em;
      font-weight: 400;
      color: #777;
  }

  /* CENTERED TEXT */
  .text-center {
      text-align: center;
  }

  /* UTILITY FOR RESPONSIVE SCALING */
  @media (min-width: 768px) {
      .heading-1 {
          font-size: 4rem;
      }

      .heading-2 {
          font-size: 3rem;
      }

      .heading-3 {
          font-size: 2rem;
      }

      .subheading {
          font-size: 1.5rem;
      }
  }


  img {
      max-width: 100%;
      height: auto;
      display: block;
      /* optional - removes inline gaps */
  }

  .wrapper .index__container{
      max-width: 1600px;
      margin: 0 auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      /* subtle lift */

  }

  /* Hero Section */
  .hero {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --brand-blue: #4988DB;
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg, #ffffff 0%, #F8FAFF 50%, #ffffff 100%);
      overflow: hidden;
      z-index: 0;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background: linear-gradient(135deg, var(--brand-blue), var(--primary-color));
      clip-path: polygon(30% 0%, 100% 0%, 100% 85%, 0% 100%);
      z-index: -1;
      opacity: 0.12;
  }

  .hero::after {
      content: '';
      position: absolute;
      top: 10%;
      right: 10%;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, var(--accent-color), var(--brand-blue));
      border-radius: 50%;
      z-index: -1;
      opacity: 0.06;
      animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {

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

      50% {
          transform: scale(1.1);
      }
  }

  /* Navigation Styles */
  .hero .navigation {
      position: relative;
      z-index: 10;
  }

  .hero .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      margin: 1rem 0;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .hero .navbar:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      transform: translateY(-2px);
  }

  .hero .navbar-brand img {
      height: 40px;
      transition: transform 0.3s ease;
  }

  .hero .navbar-brand:hover img {
      transform: scale(1.05);
  }

  .hero .nav-link {
      color: #1e293b !important;
      font-weight: 600;
      padding: 0.75rem 1.25rem !important;
      border-radius: 12px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .hero .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--brand-blue), var(--accent-color));
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 12px;
      z-index: -1;
  }

  .hero .nav-link:hover::before,
  .hero .nav-link.active::before {
      opacity: 0.1;
  }

  .hero .nav-link:hover,
  .hero .nav-link.active {
      color: var(--brand-blue) !important;
      transform: translateY(-2px);
  }

  .hero .btn-primary {
      background: linear-gradient(135deg, var(--brand-blue), var(--primary-color));
      border: none;
      border-radius: 25px;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      box-shadow: 0 8px 25px rgba(73, 136, 219, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .hero .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
  }

  .hero .btn-primary:hover::before {
      left: 100%;
  }

  .hero .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(73, 136, 219, 0.4);
  }

  /* Content Styles */
  .hero .content {
      padding: 5rem 0 3rem 0;
      position: relative;
      z-index: 5;
  }

  .hero .heading-1 {
      font-size: 4rem;
      font-weight: 900;
      color: #1e293b;
      line-height: 1.1;
      margin-bottom: 2rem;
      position: relative;
      background: linear-gradient(135deg, #1e293b, var(--brand-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .hero .heading-1::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-blue), var(--accent-color));
      border-radius: 2px;
  }

  .hero .subheading {
      font-size: 1.3rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero .ctas {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
  }

  .hero .btn {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      border: 2px solid;
  }

  .hero .btn-light {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      color: #1e293b;
      border-color: rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .hero .btn-light:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
      background: white;
      color: var(--brand-blue);
      border-color: var(--brand-blue);
  }

  .hero .btn-outline-dark {
      background: transparent;
      color: #1e293b;
      border-color: #1e293b;
      backdrop-filter: blur(10px);
  }

  .hero .btn-outline-dark:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, var(--brand-blue), var(--primary-color));
      color: white;
      border-color: transparent;
      box-shadow: 0 8px 25px rgba(73, 136, 219, 0.3);
  }

  /* Product Section */
  .product {
      position: relative;
      padding: 2rem 0;
      background: transparent;
  }

  .product-image {
      display: block;
      max-width: 80%;
      height: auto;
      border-radius: 24px;
      border: 1px solid var(--border-color);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
  }

  .product-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 2s ease;
      pointer-events: none;
  }

  .product-image:hover::before {
      left: 100%;
  }

  .product-image:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
  }

  /* Floating elements for visual interest */
  .hero .floating-element {
      position: absolute;
      border-radius: 50%;
      opacity: 0.08;
      animation: float 6s ease-in-out infinite;
  }

  .hero .floating-element:nth-child(1) {
      top: 20%;
      left: 10%;
      width: 25px;
      height: 25px;
      background: var(--accent-color);
      animation-delay: 0s;
  }

  .hero .floating-element:nth-child(2) {
      top: 60%;
      left: 15%;
      width: 15px;
      height: 15px;
      background: var(--brand-blue);
      animation-delay: 2s;
  }

  .hero .floating-element:nth-child(3) {
      bottom: 30%;
      right: 20%;
      width: 20px;
      height: 20px;
      background: var(--primary-color);
      animation-delay: 4s;
  }

  @keyframes float {

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

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

  /* Responsive Design */
  @media (max-width: 992px) {
      .hero .heading-1 {
          font-size: 3.2rem;
      }

      .hero .content {
          padding: 3rem 0 2rem 0;
      }

      .hero::before {
          width: 70%;
          clip-path: polygon(40% 0%, 100% 0%, 100% 80%, 0% 100%);
      }

      .hero .navbar {
          margin: 0.5rem;
          border-radius: 16px;
      }
  }

  @media (max-width: 768px) {
      .hero {
          min-height: auto;
          padding-bottom: 2rem;
      }

      .hero .heading-1 {
          font-size: 2.8rem;
      }

      .hero .subheading {
          font-size: 1.1rem;
      }

      .hero .ctas {
          flex-direction: column;
          align-items: center;
      }

      .hero .btn {
          width: 100%;
          max-width: 300px;
          margin-bottom: 1rem;
      }

      .hero .navbar {
          border-radius: 12px;
      }

      .hero .nav-link {
          padding: 0.5rem 1rem !important;
      }

      .product-image {
          max-width: 95%;
          border-radius: 16px;
      }

      .hero::before {
          width: 80%;
          clip-path: polygon(50% 0%, 100% 0%, 100% 75%, 0% 100%);
      }
  }

  @media (max-width: 576px) {
      .hero .heading-1 {
          font-size: 2.2rem;
      }

      .hero .subheading {
          font-size: 1rem;
          padding: 0 1rem;
      }

      .hero .content {
          padding: 2rem 0 1rem 0;
      }

      .hero .btn {
          padding: 0.875rem 2rem;
          font-size: 1rem;
      }

      .hero .navbar {
          margin: 0.25rem;
      }
  }

  /* Navbar mobile styles */
  @media (max-width: 991px) {
      .hero .navbar-collapse {
          background: rgba(255, 255, 255, 0.98);
          backdrop-filter: blur(20px);
          border-radius: 16px;
          margin-top: 1rem;
          padding: 1rem;
          border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .hero .navbar-nav {
          gap: 0.5rem;
      }
  }

  /* hero section end */



  .content {
      margin-top: 4rem;
      text-align: center;
  }

  .icons {
      justify-content: center;
      gap: 32px;
      /* comfortable spacing between each “logo” */
  }

  .integration-badge {
      background: none;
      border: none;
      padding: 0;
      width: auto;
      height: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      /* smaller, cleaner size */
      font-weight: 700;
      font-style: italic;
      /* subtle slant */
      color: #000;
      /* pure black */
      letter-spacing: 0.5px;
      /* crisp spacing */
      text-transform: uppercase;
      /* optional: strong brand look */
      transition: transform 0.2s ease;
  }

  .integration-badge:hover {
      transform: skewX(-5deg) scale(1.04);
      /* extra slant on hover for edge */
  }

  .integration-badge .icon {
      font-size: 20px;
      color: #000;
      transform: skewX(-5deg);
      /* slight built-in slant to match text */
  }

  .integration-badge .label {
      white-space: nowrap;
      transform: skewX(-5deg);
      /* keeps the label aligned with the slant */
  }

  /* card */

  .custom-card {
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      padding: 20px;
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .custom-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .custom-card .icon {
      width: 76px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      /* adjust size to fit nicely */
      margin-bottom: 15px;
      color: #0d6efd;
      /* brand color (Bootstrap blue) */
  }

  .custom-card h5 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      font-weight: 600;
  }

  .custom-card p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 15px;
  }

  .custom-card a {
      font-weight: 500;
      text-decoration: none;
      color: #0d6efd;
  }

  .custom-card a:hover {
      text-decoration: underline;
  }

  /* individual accent colors */
  .custom-card.finance .icon {
      color: #2ecc71;
  }

  /* emerald green */
  .custom-card.automation .icon {
      color: #f39c12;
  }

  /* amber/orange */
  .custom-card.analytics .icon {
      color: #e74c3c;
  }

  /* soft red */
  .custom-card.support .icon {
      color: #9b59b6;
  }

  /* purple */

  /* optional: match the link color to the icon for a cohesive look */
  .custom-card.finance a {
      color: #2ecc71;
  }

  .custom-card.automation a {
      color: #f39c12;
  }

  .custom-card.analytics a {
      color: #e74c3c;
  }

  .custom-card.support a {
      color: #9b59b6;
  }

  .custom-card.finance a:hover,
  .custom-card.automation a:hover,
  .custom-card.analytics a:hover,
  .custom-card.support a:hover {
      text-decoration: underline;
  }

  /* Solutions Section */
  .solutions {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --brand-blue: #4988DB;
      position: relative;
      background: linear-gradient(135deg, #ffffff 0%, #F8FAFF 100%);
      overflow: hidden;
      z-index: 0;
      padding: 100px 0;
      margin-top: 3rem;
  }

  .solutions::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 40%;
      height: 100%;
      background: linear-gradient(135deg, var(--brand-blue), var(--primary-color));
      border-radius: 0 100px 0 0;
      z-index: -1;
      opacity: 0.08;
  }

  .solutions::after {
      content: '';
      position: absolute;
      bottom: 20%;
      left: -3%;
      width: 150px;
      height: 150px;
      background: linear-gradient(135deg, var(--accent-color), var(--brand-blue));
      border-radius: 50%;
      z-index: -1;
      opacity: 0.06;
  }

  .solutions .container {
      position: relative;
      z-index: 2;
  }

  .solutions .heading-2 {
      font-size: 3rem;
      font-weight: 800;
      color: #1e293b;
      line-height: 1.2;
      margin-bottom: 1rem;
      position: relative;
  }

  .solutions .heading-2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-blue), var(--accent-color));
      border-radius: 2px;
  }

  .solutions .subheading {
      font-size: 1.2rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 3rem;
      font-weight: 400;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .solutions .custom-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      border: 1px solid var(--border-color);
      backdrop-filter: blur(15px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .solutions .custom-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .solutions .custom-card:hover::before {
      opacity: 1;
  }

  .solutions .custom-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      border-color: rgba(73, 136, 219, 0.3);
  }

  .solutions .custom-card .icon {
      width: 70px;
      height: 70px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
  }

  .solutions .custom-card .icon::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transform: rotate(45deg);
      transition: all 0.6s ease;
      opacity: 0;
  }

  .solutions .custom-card:hover .icon::after {
      animation: shimmer 1.5s ease-in-out;
  }

  @keyframes shimmer {
      0% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
          opacity: 0;
      }

      50% {
          opacity: 1;
      }

      100% {
          transform: translateX(100%) translateY(100%) rotate(45deg);
          opacity: 0;
      }
  }

  /* Card-specific colors */
  .solutions .finance .icon {
      background: linear-gradient(135deg, #10b981, #059669);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  }

  .solutions .automation .icon {
      background: linear-gradient(135deg, #8b5cf6, #7c3aed);
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  }

  .solutions .analytics .icon {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  }

  .solutions .support .icon {
      background: linear-gradient(135deg, #ef4444, #dc2626);
      box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
  }

  .solutions .custom-card h5 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1rem;
      line-height: 1.3;
  }

  .solutions .custom-card p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      flex-grow: 1;
  }

  .solutions .custom-card a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
  }

  .solutions .custom-card a::after {
      content: '→';
      transition: transform 0.3s ease;
  }

  .solutions .custom-card a:hover {
      color: var(--primary-color);
      transform: translateX(5px);
  }

  .solutions .custom-card a:hover::after {
      transform: translateX(5px);
  }

  /* Floating elements */
  .solutions .floating-element {
      position: absolute;
      width: 15px;
      height: 15px;
      background: var(--accent-color);
      border-radius: 50%;
      opacity: 0.08;
      animation: float 8s ease-in-out infinite;
  }

  .solutions .floating-element:nth-child(1) {
      top: 15%;
      right: 20%;
      animation-delay: 0s;
  }

  .solutions .floating-element:nth-child(2) {
      top: 70%;
      right: 10%;
      animation-delay: 3s;
  }

  .solutions .floating-element:nth-child(3) {
      top: 40%;
      right: 30%;
      animation-delay: 6s;
  }

  @keyframes float {

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

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

  /* Card hover effects with different animations */
  .solutions .custom-card.finance:hover {
      background: rgba(255, 255, 255, 0.95);
  }

  .solutions .custom-card.automation:hover {
      background: rgba(255, 255, 255, 0.95);
  }

  .solutions .custom-card.analytics:hover {
      background: rgba(255, 255, 255, 0.95);
  }

  .solutions .custom-card.support:hover {
      background: rgba(255, 255, 255, 0.95);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .solutions {
          padding: 80px 0;
      }

      .solutions .heading-2 {
          font-size: 2.5rem;
      }

      .solutions .custom-card {
          margin-bottom: 2rem;
      }

      .solutions::before {
          width: 50%;
          border-radius: 0 60px 0 0;
      }
  }

  @media (max-width: 768px) {
      .solutions {
          padding: 60px 0;
      }

      .solutions .heading-2 {
          font-size: 2.2rem;
      }

      .solutions .subheading {
          font-size: 1.1rem;
      }

      .solutions .custom-card {
          padding: 2rem 1.5rem;
          border-radius: 16px;
      }

      .solutions .custom-card .icon {
          width: 60px;
          height: 60px;
          font-size: 1.5rem;
      }

      .solutions::before {
          width: 70%;
          border-radius: 0 40px 0 0;
      }
  }

  @media (max-width: 576px) {
      .solutions .custom-card {
          padding: 1.5rem;
      }

      .solutions .heading-2 {
          font-size: 1.9rem;
      }

      .solutions .subheading {
          font-size: 1rem;
      }
  }

  /* colloboration */

  .collaboration {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --brand-blue: #4988DB;
      position: relative;
      background: linear-gradient(135deg, #ffffff 0%, #F8FAFF 100%);
      overflow: hidden;
      z-index: 0;
      padding: 100px 0;
      margin-top: 3rem;
  }

  .collaboration::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(135deg, var(--brand-blue), var(--primary-color));
      border-radius: 0 0 0 100px;
      z-index: -1;
      opacity: 0.1;
  }

  .collaboration::after {
      content: '';
      position: absolute;
      top: 20%;
      right: -5%;
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, var(--accent-color), var(--brand-blue));
      border-radius: 50%;
      z-index: -1;
      opacity: 0.05;
  }

  .collaboration .container {
      position: relative;
      z-index: 2;
  }

  .collaboration .row {
      padding: 3rem;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 24px;
      border: 1px solid var(--border-color);
      backdrop-filter: blur(10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
  }

  .collaboration .row::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  }

  .collaboration .left-accent {
      position: relative;
      padding-left: 2rem;
  }

  .collaboration .left-accent::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(180deg, var(--brand-blue), var(--primary-color));
      border-radius: 3px;
      box-shadow: 0 0 10px rgba(73, 136, 219, 0.3);
  }

  .collaboration .heading-2 {
      font-size: 3rem;
      font-weight: 800;
      color: #1e293b;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      position: relative;
  }

  .collaboration .heading-2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-blue), var(--accent-color));
      border-radius: 2px;
  }

  .collaboration .small-text {
      font-size: 1.125rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      font-weight: 400;
  }

  .collaboration .btn {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      border: none;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      display: inline-block;
  }

  .collaboration .btn-dark {
      background: linear-gradient(135deg, #1e293b, #334155);
      color: white;
      box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
  }

  .collaboration .btn-dark:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(30, 41, 59, 0.4);
      background: linear-gradient(135deg, #334155, #475569);
      color: white;
  }

  .collaboration .btn-dark::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.5s ease;
  }

  .collaboration .btn-dark:hover::before {
      left: 100%;
  }

  .collaboration .image-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
  }

  .collaboration .collaboration-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 20px;
      border: 1px solid var(--border-color);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      object-fit: cover;
  }

  .collaboration .collaboration-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 2s ease;
      pointer-events: none;
  }

  .collaboration .collaboration-image:hover::before {
      left: 100%;
  }

  .collaboration .collaboration-image:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .collaboration .feature-highlight {
      position: absolute;
      top: -15px;
      right: -15px;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--brand-blue), var(--accent-color));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 8px 20px rgba(73, 136, 219, 0.3);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          box-shadow: 0 8px 20px rgba(73, 136, 219, 0.3);
      }

      50% {
          box-shadow: 0 8px 30px rgba(73, 136, 219, 0.5);
          transform: scale(1.05);
      }

      100% {
          box-shadow: 0 8px 20px rgba(73, 136, 219, 0.3);
      }
  }

  /* Floating elements for visual interest */
  .collaboration .floating-element {
      position: absolute;
      width: 20px;
      height: 20px;
      background: var(--accent-color);
      border-radius: 50%;
      opacity: 0.1;
      animation: float 6s ease-in-out infinite;
  }

  .collaboration .floating-element:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
  }

  .collaboration .floating-element:nth-child(2) {
      top: 60%;
      left: 20%;
      animation-delay: 2s;
  }

  .collaboration .floating-element:nth-child(3) {
      top: 30%;
      right: 15%;
      animation-delay: 4s;
  }

  @keyframes float {

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

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

  /* Responsive adjustments */
  @media (max-width: 992px) {
      .collaboration {
          padding: 80px 0;
      }

      .collaboration .row {
          padding: 2rem;
      }

      .collaboration .heading-2 {
          font-size: 2.5rem;
          text-align: center;
      }

      .collaboration .heading-2::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .collaboration .left-accent {
          padding-left: 1rem;
          text-align: center;
      }

      .collaboration .left-accent::before {
          display: none;
      }

      .collaboration .small-text {
          text-align: center;
      }

      .collaboration .image-container {
          padding: 1rem;
          margin-top: 2rem;
      }

      .collaboration .collaboration-image {
          height: 300px;
          object-fit: cover;
      }

      .collaboration::before {
          width: 60%;
          border-radius: 0 0 0 50px;
      }
  }

  @media (max-width: 768px) {
      .collaboration {
          padding: 60px 0;
      }

      .collaboration .row {
          padding: 1.5rem;
          border-radius: 16px;
      }

      .collaboration .heading-2 {
          font-size: 2rem;
      }

      .collaboration .btn {
          padding: 0.875rem 2rem;
          font-size: 1rem;
          width: 100%;
          text-align: center;
      }

      .collaboration .collaboration-image {
          height: 250px;
          object-fit: cover;
      }

      .collaboration .feature-highlight {
          width: 60px;
          height: 60px;
          font-size: 1.2rem;
      }
  }




  /* Section background & blue shape */
  .implementation {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
      padding: 80px 0;
  }

  .implementation .heading-2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1rem;
      line-height: 1.2;
  }

  .implementation .section-subtitle {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 3rem;
  }

  .implementation .feature-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      transition: all 0.3s ease;
      height: 100%;
      overflow: hidden;
      position: relative;
  }

  .implementation .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      border-color: var(--accent-color);
  }

  .implementation .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .implementation .feature-card:hover::before {
      opacity: 1;
  }

  .implementation .feature-card .card-body {
      padding: 2rem;
  }

  .implementation .card-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .implementation .card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
  }

  .implementation .small-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
  }

  .implementation .product-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 3rem;
      margin-top: auto;
  }

  .implementation .large-card {
      min-height: 400px;
  }

  .implementation .image-card {
      padding: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .implementation .image-card .product-image {
      height: 300px;
      margin: 0;
  }

  /* Tabs Styling */
  .implementation .nav-tabs {
      border: none;
      background: var(--light-bg);
      border-radius: 50px;
      padding: 0.5rem;
      margin-bottom: 2rem;
  }

  .implementation .nav-tabs .nav-item {
      margin: 0;
  }

  .implementation .nav-tabs .nav-link {
      border: none;
      border-radius: 25px;
      padding: 0.75rem 1.5rem;
      color: var(--text-muted);
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
  }

  .implementation .nav-tabs .nav-link:hover {
      color: var(--primary-color);
      background: rgba(37, 99, 235, 0.1);
  }

  .implementation .nav-tabs .nav-link.active {
      background: var(--primary-color);
      color: white;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .implementation .tab-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .implementation .tab-content-wrapper {
      padding: 3rem;
  }

  .implementation .tab-pane h4 {
      color: #1e293b;
      font-weight: 700;
      margin-bottom: 1.5rem;
  }

  .implementation .tab-image {
      height: 250px;
      background: linear-gradient(135deg, var(--light-bg) 0%, #e2e8f0 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 3rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .implementation .heading-2 {
          font-size: 2rem;
      }

      .implementation .feature-card .card-body {
          padding: 1.5rem;
      }

      .implementation .tab-content-wrapper {
          padding: 2rem;
      }

      .implementation {
          padding: 60px 0;
      }
  }

  /* Animation for better UX */
  .implementation .fade-in {
      animation: fadeInUp 0.6s ease-out;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

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



  /* slider tabs */
  .nav-tabs .nav-link {
      border: none;
      color: #6c757d;
  }

  .nav-tabs .nav-link.active {
      border-bottom: 3px solid #6f42c1;
      /* purple accent */
      color: #6f42c1;
      background: transparent;
  }

  /* footer */

  .footer {
      background-color: #f8f9fa;
      padding-top: 3rem;
      padding-bottom: 2rem;
  }

  .testimonial {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --brand-blue: #4988DB;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .testimonial::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
          radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
      z-index: 0;
  }

  .testimonial .container {
      position: relative;
      z-index: 2;
  }

  .testimonial .heading-2 {
      font-size: 3rem;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 1.5rem;
      position: relative;
  }

  .testimonial .heading-2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-blue), var(--accent-color));
      border-radius: 2px;
  }

  .testimonial .subheading {
      font-size: 1.25rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 4rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .testimonial .testimonial-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      overflow: hidden;
  }

  .testimonial .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .testimonial .testimonial-card:hover::before {
      opacity: 1;
  }

  .testimonial .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      border-color: var(--accent-color);
  }

  .testimonial .user-info {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      gap: 1rem;
  }

  .testimonial .user-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 3px solid var(--border-color);
      transition: border-color 0.3s ease;
  }

  .testimonial .testimonial-card:hover .user-avatar {
      border-color: var(--accent-color);
  }

  .testimonial .user-details h6 {
      font-weight: 700;
      color: #1e293b;
      margin: 0;
      font-size: 1.1rem;
  }

  .testimonial .user-details small {
      color: var(--text-muted);
      font-weight: 500;
  }

  .testimonial .company-tag {
      background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
      color: var(--text-muted);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-top: 0.25rem;
      display: inline-block;
  }

  .testimonial .testimonial-text {
      font-size: 1rem;
      color: #374151;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
      position: relative;
  }

  .testimonial .testimonial-text::before {
      content: '"';
      font-size: 4rem;
      color: var(--accent-color);
      position: absolute;
      top: -20px;
      left: -10px;
      opacity: 0.3;
      font-family: Georgia, serif;
  }

  .testimonial .rating {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;
  }

  .testimonial .rating i {
      color: #fbbf24;
      font-size: 1.1rem;
      transition: transform 0.2s ease;
  }

  .testimonial .testimonial-card:hover .rating i {
      transform: scale(1.1);
  }

  .testimonial .rating-text {
      font-size: 0.875rem;
      color: var(--text-muted);
      font-weight: 600;
  }

  /* Pagination Styles */
  .testimonial .pagination-container {
      margin-top: 4rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
  }

  .testimonial .pagination {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 50px;
      padding: 0.5rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .testimonial .page-link {
      border: none;
      background: transparent;
      color: var(--text-muted);
      padding: 0.75rem 1.25rem;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .testimonial .page-link:hover {
      background: var(--light-bg);
      color: var(--primary-color);
      transform: translateY(-2px);
  }

  .testimonial .page-link.active {
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      color: white;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .testimonial .page-info {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 500;
  }

  /* Page transition effects */
  .testimonial .testimonials-container {
      position: relative;
  }

  .testimonial .testimonial-page {
      display: none;
      animation: fadeInUp 0.6s ease-out;
  }

  .testimonial .testimonial-page.active {
      display: block;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

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

  /* Loading animation */
  .testimonial .loading {
      text-align: center;
      padding: 3rem;
      color: var(--text-muted);
  }

  .testimonial .loading i {
      font-size: 2rem;
      animation: spin 1s linear infinite;
  }

  @keyframes spin {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
      .testimonial {
          padding: 80px 0;
      }

      .testimonial .heading-2 {
          font-size: 2.5rem;
      }

      .testimonial .testimonial-card {
          padding: 1.5rem;
          margin-bottom: 2rem;
      }
  }

  @media (max-width: 768px) {
      .testimonial {
          padding: 60px 0;
      }

      .testimonial .heading-2 {
          font-size: 2rem;
      }

      .testimonial .subheading {
          font-size: 1.125rem;
          margin-bottom: 3rem;
      }

      .testimonial .testimonial-card {
          padding: 1.25rem;
      }

      .testimonial .user-avatar {
          width: 60px;
          height: 60px;
      }

      .testimonial .pagination-container {
          flex-direction: column;
          gap: 1rem;
      }

      .testimonial .page-link {
          padding: 0.5rem 1rem;
          font-size: 0.9rem;
      }
  }

  /* Staggered animation for cards */
  .testimonial .testimonial-card {
      animation-delay: 0.1s;
  }

  .testimonial .testimonial-card:nth-child(2) {
      animation-delay: 0.2s;
  }

  .testimonial .testimonial-card:nth-child(3) {
      animation-delay: 0.3s;
  }


  /* FAQ Section */
  .faq-section {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --brand-blue: #4988DB;
      position: relative;
      background: linear-gradient(135deg, #ffffff 0%, #F8FAFF 100%);
      overflow: hidden;
      z-index: 0;
      padding: 100px 0;
      margin-top: 3rem;
  }

  .faq-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(135deg, var(--brand-blue), var(--primary-color));
      border-radius: 0 80px 80px 0;
      z-index: -1;
      opacity: 0.06;
  }

  .faq-section::after {
      content: '';
      position: absolute;
      bottom: 10%;
      right: -5%;
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, var(--accent-color), var(--brand-blue));
      border-radius: 50%;
      z-index: -1;
      opacity: 0.05;
      animation: pulse 6s ease-in-out infinite;
  }

  @keyframes pulse {

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

      50% {
          transform: scale(1.1);
      }
  }

  .faq-section .container {
      position: relative;
      z-index: 2;
  }

  .faq-section .heading-2 {
      font-size: 3rem;
      font-weight: 800;
      color: #1e293b;
      line-height: 1.2;
      margin-bottom: 1rem;
      position: relative;
      text-align: center;
  }

  .faq-section .heading-2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-blue), var(--accent-color));
      border-radius: 2px;
  }

  .faq-section .subheading {
      font-size: 1.2rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 3rem;
      font-weight: 400;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
  }

  /* FAQ Items */
  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      border: 1px solid var(--border-color);
      backdrop-filter: blur(15px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      margin-bottom: 1.5rem;
      overflow: hidden;
      transition: all 0.4s ease;
      position: relative;
  }

  .faq-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .faq-item:hover::before {
      opacity: 1;
  }

  .faq-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      border-color: rgba(73, 136, 219, 0.3);
  }

  .faq-item.active {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(73, 136, 219, 0.3);
  }

  .faq-item.active::before {
      opacity: 1;
  }

  .faq-question {
      padding: 2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0;
      font-size: 1.2rem;
      font-weight: 600;
      color: #1e293b;
      transition: all 0.3s ease;
      position: relative;
  }

  .faq-question:hover {
      color: var(--brand-blue);
  }

  .faq-icon {
      width: 50px;
      height: 50px;
      border-radius: 15px;
      background: linear-gradient(135deg, var(--brand-blue), var(--accent-color));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      margin-right: 1.5rem;
      box-shadow: 0 8px 25px rgba(73, 136, 219, 0.3);
      transition: all 0.3s ease;
      flex-shrink: 0;
  }

  .faq-item:hover .faq-icon {
      transform: scale(1.1);
      box-shadow: 0 12px 30px rgba(73, 136, 219, 0.4);
  }

  .faq-toggle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--light-bg);
      border: 2px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
  }

  .faq-toggle i {
      font-size: 0.9rem;
      color: var(--text-muted);
      transition: all 0.3s ease;
  }

  .faq-item.active .faq-toggle {
      background: linear-gradient(135deg, var(--brand-blue), var(--accent-color));
      border-color: transparent;
      transform: rotate(180deg);
  }

  .faq-item.active .faq-toggle i {
      color: white;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
      opacity: 0;
  }

  .faq-answer.active {
      max-height: 300px;
      opacity: 1;
  }

  .faq-answer-content {
      padding: 0 2rem 2rem 2rem;
      margin-left: 65px;
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
  }

  /* Floating elements */
  .faq-section .floating-element {
      position: absolute;
      border-radius: 50%;
      opacity: 0.08;
      animation: float 8s ease-in-out infinite;
  }

  .faq-section .floating-element:nth-child(1) {
      top: 20%;
      left: 15%;
      width: 20px;
      height: 20px;
      background: var(--accent-color);
      animation-delay: 0s;
  }

  .faq-section .floating-element:nth-child(2) {
      top: 60%;
      left: 10%;
      width: 15px;
      height: 15px;
      background: var(--brand-blue);
      animation-delay: 3s;
  }

  .faq-section .floating-element:nth-child(3) {
      top: 40%;
      right: 20%;
      width: 25px;
      height: 25px;
      background: var(--primary-color);
      animation-delay: 6s;
  }

  @keyframes float {

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

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

  /* Responsive Design */
  @media (max-width: 992px) {
      .faq-section {
          padding: 80px 0;
      }

      .faq-section .heading-2 {
          font-size: 2.5rem;
      }

      .faq-section::before {
          width: 60%;
          border-radius: 0 60px 60px 0;
      }
  }

  @media (max-width: 768px) {
      .faq-section {
          padding: 60px 0;
      }

      .faq-section .heading-2 {
          font-size: 2.2rem;
      }

      .faq-section .subheading {
          font-size: 1.1rem;
      }

      .faq-question {
          padding: 1.5rem;
          font-size: 1.1rem;
      }

      .faq-answer-content {
          margin-left: 55px;
          padding: 0 1.5rem 1.5rem 1.5rem;
      }

      .faq-icon {
          width: 40px;
          height: 40px;
          font-size: 1rem;
          margin-right: 1rem;
      }

      .faq-item {
          border-radius: 16px;
          margin-bottom: 1rem;
      }

      .faq-section::before {
          width: 70%;
          border-radius: 0 40px 40px 0;
      }
  }

  @media (max-width: 576px) {
      .faq-question {
          padding: 1.25rem;
          font-size: 1rem;
      }

      .faq-answer-content {
          font-size: 0.95rem;
          margin-left: 45px;
          padding: 0 1.25rem 1.25rem 1.25rem;
      }

      .faq-icon {
          width: 35px;
          height: 35px;
          font-size: 0.9rem;
          margin-right: 0.75rem;
      }

      .faq-section .heading-2 {
          font-size: 1.9rem;
      }
  }


  /* footer */


  .footer {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #94a3b8;
      --border-color: #334155;
      --brand-blue: #4988DB;
      --footer-bg: #0f172a;
      --footer-card-bg: #1e293b;
      background: linear-gradient(135deg, var(--footer-bg) 0%, #1e293b 100%);
      color: #e2e8f0;
      position: relative;
      overflow: hidden;
      padding-top: 4rem;
  }

  .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
          radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 40% 40%, rgba(73, 136, 219, 0.05) 0%, transparent 50%);
      z-index: 0;
  }

  .footer .container {
      position: relative;
      z-index: 2;
      padding: 0 3rem;
  }


  .footer .brand-section {
      position: relative;
  }

  .footer .brand-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1.5rem;
      position: relative;
  }

  .footer .brand-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-blue), var(--accent-color));
      border-radius: 2px;
  }

  .footer .brand-description {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      max-width: 300px;
  }

  .footer .contact-info {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
  }

  .footer .contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text-muted);
      font-size: 0.95rem;
      transition: color 0.3s ease;
  }

  .footer .contact-item:hover {
      color: var(--accent-color);
  }

  .footer .contact-item i {
      width: 20px;
      color: var(--brand-blue);
      font-size: 1rem;
  }

  .footer .footer-section h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.5rem;
      position: relative;
  }

  .footer .footer-section h4::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--accent-color);
      border-radius: 1px;
  }

  .footer .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      padding-left: 0;
  }

  .footer .footer-links a:hover {
      color: var(--accent-color);
      padding-left: 0.5rem;
  }

  .footer .footer-links a::before {
      content: '';
      position: absolute;
      left: -0.5rem;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 2px;
      background: var(--accent-color);
      transition: width 0.3s ease;
  }

  .footer .footer-links a:hover::before {
      width: 0.25rem;
  }

  .footer .social-section {
      text-align: right;
  }

  .footer .social-media {
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
      margin-top: 1.5rem;
  }

  .footer .social-link {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 1.25rem;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .footer .social-link:hover {
      background: var(--accent-color);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  }

  .footer .social-link.facebook:hover {
      background: #1877f2;
  }

  .footer .social-link.pinterest:hover {
      background: #bd081c;
  }

  .footer .social-link.instagram:hover {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  .footer .social-link.linkedin:hover {
      background: #0077b5;
  }

  .footer .divider {
      border: none;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-color), transparent);
      margin: 2rem 0;
  }

  .footer .footer-bottom {
      padding: 1.8rem 1.2rem;
      background: rgba(15, 23, 42, 0.8);
      border-radius: 16px;
      border: 1px solid var(--border-color);
      backdrop-filter: blur(5px);
      margin-top: 2rem;
  }

  .footer .copyright {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin: 0;
  }

  .footer .footer-bottom-links {
      display: flex;
      gap: 2rem;
      margin: 0;
  }

  .footer .footer-bottom-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
      position: relative;
  }

  .footer .footer-bottom-links a:hover {
      color: var(--accent-color);
  }

  .footer .footer-bottom-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--accent-color);
      transition: width 0.3s ease;
  }

  .footer .footer-bottom-links a:hover::after {
      width: 100%;
  }

  /* Floating decoration elements */
  .footer .floating-element {
      position: absolute;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.1);
      animation: float 6s ease-in-out infinite;
  }

  .footer .floating-element:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .footer .floating-element:nth-child(2) {
      width: 60px;
      height: 60px;
      top: 60%;
      right: 10%;
      animation-delay: 2s;
  }

  .footer .floating-element:nth-child(3) {
      width: 40px;
      height: 40px;
      top: 30%;
      right: 20%;
      animation-delay: 4s;
  }

  @keyframes float {

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

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


  /* Responsive adjustments */
  @media (max-width: 992px) {
      .footer .container {
          padding: 0 2rem;
      }

      .footer .main-content {
          padding: 2rem;
      }

      .footer .brand-title {
          font-size: 2rem;
      }

      .footer .social-section {
          text-align: left;
          margin-top: 2rem;
      }

      .footer .social-media {
          justify-content: flex-start;
      }
  }

  @media (max-width: 768px) {
      .footer {
          padding-top: 3rem;
      }

      .footer .container {
          padding: 0 1.5rem;
      }

      .footer .main-content {
          padding: 1.5rem;
          border-radius: 16px;
      }

      .footer .brand-title {
          font-size: 1.75rem;
      }

      .footer .footer-bottom {
          padding: 1rem;
          border-radius: 12px;
      }

      .footer .footer-bottom-links {
          flex-direction: column;
          gap: 0.5rem;
          margin-top: 1rem;
      }


      .footer .social-media {
          gap: 0.75rem;
      }

      .footer .social-link {
          width: 45px;
          height: 45px;
          font-size: 1.1rem;
      }
  }


  /* Login css */


  /* Login container to center the card */
  .login-container {
      font-family: "Be Vietnam Pro", sans-serif;
      background: #f8fafc;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
  }

  /* Login-specific CSS variables */
  .login-card {
      --primary-color: #2563eb;
      --primary-dark: #1d4ed8;
      --primary-light: #60a5fa;
      --secondary-color: #f1f5f9;
      --accent-color: #0ea5e9;
      --text-primary: #1e293b;
      --text-secondary: #64748b;
      --text-light: #94a3b8;
      --background: #f8fafc;
      --card-bg: rgba(255, 255, 255, 0.95);
      --border-color: #e2e8f0;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      --gradient-accent: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-light));
  }

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

  /* Login Card */
  .login-card {
      background: var(--card-bg);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      max-width: 420px;
      width: 100%;
      animation: fadeInUp 0.8s ease-out forwards;
      font-family: "Be Vietnam Pro", sans-serif;
  }

  .login-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-accent);
      box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

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

  /* Header */
  .login-card .login-header {
      text-align: center;
      margin-bottom: 32px;
  }

  .login-card .logo {
      width: 60px;
      height: 60px;
      background: var(--gradient-primary);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: var(--shadow-lg);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

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

      50% {
          transform: scale(1.05);
      }
  }

  .login-card .logo i {
      color: white;
      font-size: 24px;
  }

  .login-card .login-title {
      font-size: 1.75rem;
      line-height: 1.4;
      letter-spacing: 0.005em;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 8px;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .login-card .login-subtitle {
      font-size: 1rem;
      line-height: 1.75;
      letter-spacing: -0.025em;
      font-weight: 400;
      color: #555;
  }

  /* Form */
  .login-card .login-form {
      margin-bottom: 24px;
  }

  .login-card .form-group {
      margin-bottom: 20px;
      position: relative;
  }

  .login-card .form-label {
      display: block;
      color: var(--text-primary);
      font-weight: 500;
      margin-bottom: 8px;
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0em;
  }

  .login-card .form-input {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid var(--border-color);
      border-radius: 12px;
      font-size: 1rem;
      line-height: 1.75;
      letter-spacing: -0.025em;
      font-weight: 400;
      background: rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
      outline: none;
      font-family: "Be Vietnam Pro", sans-serif;
  }

  .login-card .form-input:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      background: white;
  }

  .login-card .form-input::placeholder {
      color: var(--text-light);
  }

  .login-card .password-toggle {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--text-secondary);
      cursor: pointer;
      font-size: 18px;
      transition: color 0.3s ease;
  }

  .login-card .password-toggle:hover {
      color: var(--primary-color);
  }

  /* Buttons */
  .login-card .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 14px 20px;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      line-height: 1.75;
      letter-spacing: -0.025em;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      font-family: "Be Vietnam Pro", sans-serif;
  }

  .login-card .btn-primary {
      background: var(--gradient-primary);
      color: white;
      box-shadow: var(--shadow-md);
      margin-bottom: 16px;
  }

  .login-card .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
  }

  .login-card .btn-primary::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.5s;
  }

  .login-card .btn-primary:hover::before {
      left: 100%;
  }

  .login-card .btn-google {
      background: white;
      color: var(--text-primary);
      border: 2px solid var(--border-color);
      margin-bottom: 24px;
  }

  .login-card .btn-google:hover {
      background: #f8fafc;
      border-color: var(--primary-color);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
  }

  .login-card .google-icon {
      width: 20px;
      height: 20px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
  }

  /* Divider */
  .login-card .divider {
      position: relative;
      text-align: center;
      margin: 24px 0;
  }

  .login-card .divider::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--border-color);
  }

  .login-card .divider span {
      background: var(--card-bg);
      padding: 0 16px;
      color: var(--text-light);
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0em;
      font-weight: 400;
  }

  /* Footer Links */
  .login-card .form-footer {
      text-align: center;
  }

  .login-card .form-footer a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0em;
  }

  .login-card .form-footer a:hover {
      color: var(--primary-dark);
  }

  .login-card .forgot-password {
      display: block;
      margin-bottom: 16px;
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0em;
      font-weight: 400;
  }

  .login-card .signup-link {
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0em;
      font-weight: 400;
      color: #777;
  }

  /* Remember Me */
  .login-card .remember-me {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 24px;
  }

  .login-card .remember-me input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: var(--primary-color);
  }

  .login-card .remember-me label {
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0em;
      font-weight: 400;
      color: #777;
      cursor: pointer;
  }

  /* Responsive Design */
  @media (min-width: 768px) {
      .login-card .login-title {
          font-size: 2rem;
      }

      .login-card .login-subtitle {
          font-size: 1.25rem;
          line-height: 1.5;
          letter-spacing: 0.002em;
          font-weight: 500;
      }
  }

  @media (max-width: 768px) {
      .login-card {
          padding: 32px 24px;
          margin: 16px;
      }

      .login-card .btn {
          padding: 12px 16px;
          font-size: 15px;
      }
  }

  @media (max-width: 480px) {
      .login-card {
          padding: 24px 20px;
      }
  }


  /* dashboard css */


  /* Dashboard CSS Variables */
  .dashboard {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --light-bg: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --brand-blue: #4988DB;
      --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
      --glass-bg: rgba(255, 255, 255, 0.25);
      --glass-border: rgba(59, 130, 246, 0.3);
      --glass-hover: rgba(255, 255, 255, 0.35);
  }

  /* Dashboard Main Container */
  .dashboard {
      min-height: 100vh;
      background: var(--gradient-primary);
      position: relative;
      overflow: hidden;
  }

  .dashboard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
          radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
          radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
      z-index: 1;
      animation: backgroundPulse 8s ease-in-out infinite;
  }

  @keyframes backgroundPulse {

      0%,
      100% {
          opacity: 0.8;
      }

      50% {
          opacity: 1;
      }
  }

  .dashboard-container {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      padding: 20px;
  }

  /* Glassmorphic Sidebar */
  .dashboard-sidebar {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 30px 20px;
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
  }

  .dashboard-sidebar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
      border-radius: 20px 20px 0 0;
  }

  /* Logo with Pulsing Animation */
  .dashboard-logo {
      margin-bottom: 40px;
      text-align: center;
  }

  .dashboard-logo h1 {
      color: var(--primary-color);
      margin: 0;
      font-size: 1.5rem;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
      animation: logoPulse 3s ease-in-out infinite;
  }

  @keyframes logoPulse {

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

      50% {
          transform: scale(1.05);
          opacity: 1;
      }
  }

  /* Navigation Styles */
  .dashboard-nav {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .dashboard-nav li {
      margin-bottom: 8px;
  }

  .dashboard-nav a {
      display: flex;
      align-items: center;
      padding: 16px 20px;
      color: var(--text-muted);
      text-decoration: none;
      border-radius: 12px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-weight: 500;
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }

  .dashboard-nav a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
      transform: scaleY(0);
      transition: transform 0.3s ease;
  }

  .dashboard-nav a:hover,
  .dashboard-nav a.active {
      background: var(--glass-hover);
      color: var(--primary-color);
      transform: translateX(5px) translateY(-2px);
      box-shadow:
          0 8px 25px rgba(59, 130, 246, 0.15),
          0 4px 10px rgba(59, 130, 246, 0.1);
  }

  .dashboard-nav a:hover::before,
  .dashboard-nav a.active::before {
      transform: scaleY(1);
  }

  .dashboard-nav-icon {
      width: 20px;
      height: 20px;
      margin-right: 15px;
      opacity: 0.8;
      transition: opacity 0.3s ease;
  }

  .dashboard-nav a:hover .dashboard-nav-icon {
      opacity: 1;
  }

  /* Content Area */
  .dashboard-content-area {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 30px;
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      min-height: 600px;
  }

  .dashboard-content-area::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
      border-radius: 20px 20px 0 0;
  }

  /* Welcome Header */
  .dashboard-welcome {
      color: var(--text-muted);
      margin-bottom: 30px;
  }

  .dashboard-welcome h2 {
      color: var(--primary-color);
      margin: 0 0 10px 0;
      text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
  }

  .dashboard-welcome p {
      color: var(--text-muted);
      margin: 0;
  }

  /* Content Cards */
  .dashboard-card {
      background: var(--glass-bg);
      backdrop-filter: blur(15px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 25px;
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.15);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px) scale(0.95);
      animation: cardFadeIn 0.6s ease-out forwards;
  }

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

  .dashboard-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
      border-radius: 16px 16px 0 0;
  }

  .dashboard-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow:
          0 20px 50px rgba(59, 130, 246, 0.2),
          0 10px 25px rgba(59, 130, 246, 0.15),
          inset 0 1px 0 rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.35);
  }

  .dashboard-card h3 {
      color: var(--primary-color);
      margin: 0 0 15px 0;
      text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
  }

  .dashboard-card p {
      color: var(--text-muted);
      margin: 0 0 20px 0;
      line-height: 1.6;
  }

  /* Stats */
  .dashboard-stat {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 15px 0;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }

  .dashboard-stat:last-child {
      border-bottom: none;
  }

  .dashboard-stat:hover {
      background: rgba(59, 130, 246, 0.05);
      border-radius: 8px;
      padding: 15px 12px;
      margin: 15px -12px;
  }

  .dashboard-stat-label {
      color: var(--text-muted);
      font-weight: 500;
  }

  .dashboard-stat-value {
      color: var(--primary-color);
      font-weight: 600;
      font-size: 1.1rem;
  }

  /* Buttons */
  .dashboard-button {
      background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.15));
      border: 1px solid var(--glass-border);
      color: var(--primary-color);
      padding: 12px 24px;
      border-radius: 12px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
  }

  .dashboard-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
      transition: left 0.5s ease;
  }

  .dashboard-button:hover {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
      transform: translateY(-3px);
      box-shadow:
          0 10px 30px rgba(59, 130, 246, 0.2),
          0 5px 15px rgba(59, 130, 246, 0.1);
      color: var(--primary-color);
  }

  .dashboard-button:hover::before {
      left: 100%;
  }

  .dashboard-button-primary {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border: none;
      color: white;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }

  .dashboard-button-primary:hover {
      background: linear-gradient(135deg, var(--secondary-color), #1e3a8a);
      box-shadow:
          0 8px 25px rgba(37, 99, 235, 0.4),
          0 4px 15px rgba(37, 99, 235, 0.2);
      color: white;
  }

  /* Status Indicators */
  .dashboard-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 500;
      backdrop-filter: blur(10px);
  }

  .dashboard-status-active {
      background: rgba(34, 197, 94, 0.2);
      color: #22c55e;
      border: 1px solid rgba(34, 197, 94, 0.3);
      box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
  }

  .dashboard-status-pending {
      background: rgba(249, 115, 22, 0.2);
      color: #f97316;
      border: 1px solid rgba(249, 115, 22, 0.3);
      box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
  }

  .dashboard-status-expired {
      background: rgba(239, 68, 68, 0.2);
      color: #ef4444;
      border: 1px solid rgba(239, 68, 68, 0.3);
      box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
  }

  /* Hidden content initially */


  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateX(20px);
      }

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

  /* Form Styles */
  .dashboard-form {
      max-width: 500px;
  }

  .dashboard-form .form-control {
      background: rgba(255, 255, 255, 0.3);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 12px 16px;
      color: var(--primary-color);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
  }

  .dashboard-form .form-control:focus {
      background: rgba(255, 255, 255, 0.4);
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
      color: var(--primary-color);
  }

  .dashboard-form .form-control::placeholder {
      color: var(--text-muted);
  }

  /* Sub-navigation Styles */
  .dashboard-sub-nav {
      display: flex;
      gap: 8px;
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 8px;
      box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
      margin-bottom: 20px;
  }

  .dashboard-sub-nav-item {
      flex: 1;
      padding: 12px 20px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      color: var(--text-muted);
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
  }

  .dashboard-sub-nav-item:hover {
      background: rgba(59, 130, 246, 0.2);
      color: var(--primary-color);
      border-color: var(--primary-color);
  }

  .dashboard-sub-nav-item.active {
      background: var(--primary-color);
      color: white;
      border-color: var(--primary-color);
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }

  /* Sub-section Styles */
  .dashboard-sub-section {
      display: none;
      animation: fadeInUp 0.4s ease-out;
  }

  .dashboard-sub-section.active {
      display: block !important;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(15px);
      }

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

  /* Table Styles */
  .dashboard-table {
      color: var(--primary-color);
      background: transparent;
  }

  .dashboard-table thead th {
      background: rgba(59, 130, 246, 0.1);
      border: none;
      color: var(--primary-color);
      font-weight: 600;
      padding: 15px 12px;
      border-radius: 8px;
  }

  .dashboard-table tbody td {
      border: none;
      padding: 12px;
      color: var(--text-muted);
      border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .dashboard-table tbody tr:hover {
      background: rgba(59, 130, 246, 0.05);
  }

  .dashboard-table tbody tr:last-child td {
      border-bottom: none;
  }

  /* Select dropdown styles */
  .dashboard-form select.form-control {
      background: rgba(255, 255, 255, 0.3);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 12px 16px;
      color: var(--primary-color);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
      background-position: right 12px center;
      background-repeat: no-repeat;
      background-size: 16px;
      padding-right: 40px;
  }

  .dashboard-form select.form-control:focus {
      background: rgba(255, 255, 255, 0.4);
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
      color: var(--primary-color);
  }

  /* Radio Button Styles */
  .dashboard-form .form-check-input {
      background: rgba(255, 255, 255, 0.3);
      border: 2px solid var(--glass-border);
      backdrop-filter: blur(10px);
  }

  .dashboard-form .form-check-input:checked {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
  }

  .dashboard-form .form-check-input:focus {
      box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
  }

  .dashboard-form .form-check-label {
      color: var(--primary-color);
      font-weight: 500;
  }

  .dashboard-form .form-label {
      color: var(--primary-color);
      font-weight: 500;
      margin-bottom: 8px;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .dashboard-container {
          padding: 15px;
      }

      .dashboard-sidebar {
          margin-bottom: 20px;
      }

      .dashboard-nav {
          display: flex;
          overflow-x: auto;
          gap: 8px;
          padding-bottom: 10px;
      }

      .dashboard-nav li {
          margin: 0;
          white-space: nowrap;
      }

      .dashboard-nav a {
          padding: 12px 16px;
          font-size: 0.9rem;
      }

      .dashboard-content-area {
          padding: 20px;
      }
  }

  /* payment summary table */

  /* Summary Table Styles with Glassmorphic Effect */
  .summary-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 2rem;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .summary-table th,
  .summary-table td {
      padding: 16px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .summary-table th {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      font-weight: 600;
      color: #333;
  }

  .summary-table tr:hover {
      background: rgba(255, 255, 255, 0.1);
  }

  .total-row {
      font-weight: 600;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
  }

  .subscription-terms {
      background: rgba(135, 206, 235, 0.15);
      backdrop-filter: blur(10px);
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-left: 4px solid var(--primary-color, #007bff);
  }

  .subscription-terms strong {
      color: var(--primary-color, #007bff);
  }

  .hidden {
      display: none;
  }

  .dashboard-button-secondary {
      background-color: #6c757d;
      color: white;
  }

  .dashboard-button-secondary:hover {
      background-color: #545b62;
  }

  
  /* logout button css */

  /* Make logout button match nav links */
.dashboard-nav .logout-btn {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
}

.dashboard-nav .logout-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dashboard-nav .logout-btn:hover,
.dashboard-nav .logout-btn.active {
    background: var(--glass-hover);
    color: var(--primary-color);
    transform: translateX(5px) translateY(-2px);
    box-shadow:
        0 8px 25px rgba(59, 130, 246, 0.15),
        0 4px 10px rgba(59, 130, 246, 0.1);
}

.dashboard-nav .logout-btn:hover::before,
.dashboard-nav .logout-btn.active::before {
    transform: scaleY(1);
}

.dashboard-nav .logout-btn .dashboard-nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.dashboard-nav .logout-btn:hover .dashboard-nav-icon {
    opacity: 1;
}

.nav-form {
    margin: 0;
    padding: 0;
}