:root {
  --primary: #6a11cb;
  /*--primary: #4f46e5;*/
  --primary-dark: #4338ca;
  --accent: #10b981;
  --secondary-accent: #a855f7;
  --dark: #111827;
  --medium-dark: #1f2937;
  --light: #f9fafb;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --secondary: #2575fc
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
  padding: 0;
  background-color: var(--light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Header & Navigation */
.main-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px; /* Adjust height of the new logo */
  width: auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  width: fit-content;
}

.logo-container:hover .logo-text {
  color: #4DD9D9;
}

.logo-icon {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu > li {
  margin-left: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 1rem 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0.75rem;
  left: 0;
  background-color: #29272b;
  transition: width 0.3s ease;
}

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

.nav-menu > li > a:hover {
  color: #29272b;
}

.cta-buttons { display: flex; gap: 1rem; margin-left: 2rem;}
.btn {
  display: inline-block; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 600; text-decoration: none;
  transition: all 0.2s ease; text-align: center; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-primary { background-color: var(--primary); color: white; border: 1px solid var(--primary); }
.btn-primary:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: white; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { height: 3px; width: 25px; background-color: var(--dark); margin-bottom: 4px; border-radius: 2px; }

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Footer */
.main-footer { background-color: var(--dark); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { color: white; font-weight: 700; }
.footer-col a,.footer-col p { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.5); }

/* Responsive */

@media (max-width: 992px) {
  .nav-menu { display: none; flex-direction: column; width: 100%; background-color: white;
    position: absolute; top: 100%; left: 0; box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li { margin: 0; width: 100%; }
  .nav-menu li a { padding: 1rem; display: block; text-align: left; border-bottom: 1px solid #f3f4f6; }
  .nav-menu a::after { display: none; }
  .cta-buttons { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; gap: 1rem; }
  .section-header h2 { font-size: 2.25rem; }
  .solution-content,.about-content { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* This media query targets tablets and mobile devices */
@media (max-width: 992px) {
  /* Hides the standard desktop navigation links */
  .navbar .nav-menu {
    display: none;
  }

  /* Hides the desktop Call-to-Action buttons */
  .navbar .cta-buttons {
    display: none;
  }

  /* Shows the hamburger menu icon */
  .navbar .hamburger {
    display: block; /* This is likely already in your CSS, but we ensure it's visible */
  }

  /* Styles for the mobile navigation menu when it's active (opened) */
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #111827; /* Matches the live site's overlay background */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000; /* Ensures it's on top of other content */
  }

  /* Prevents the page from scrolling when the mobile menu is open */
  body.no-scroll {
    overflow: hidden;
  }
}