body {
  font-family: Arial, sans-serif;
}

/* Example utility classes similar to Tailwind */
.min-h-screen {
  min-height: 100vh;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.bg-white {
  background-color: #ffffff;
}
.text-gray-800 {
  color: #1f2937;
}
.text-gray-600 {
  color: #4b5563;
}
.font-bold {
  font-weight: bold;
}
.font-medium {
  font-weight: 500;
}

/* Mobile Hamburger Menu Styles */
.mobile-menu-toggle {
  transition: all 0.3s ease;
}

/* Hamburger Animation using Tailwind classes and custom transforms */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
  margin-bottom: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  margin-bottom: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
  margin-bottom: 0;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.mobile-nav-menu.hidden {
  display: none;
}

.mobile-nav-menu.show {
  display: block;
}

/* Mobile Navigation Links */
.mobile-nav-menu a {
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-menu a:hover {
  border-left-color: #3b82f6;
  background-color: #f9fafb;
}

/* Hero section spacing - removed as body padding handles navbar spacing now */
/* @media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }

  .min-h-screen .relative.overflow-hidden {
    padding-top: 120px !important;
  }

  .hero-mobile-spacing {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
  }
}

@media (min-width: 769px) {
  body {
    padding-top: 0;
  }

  .min-h-screen .relative.overflow-hidden {
    padding-top: 80px;
  }

  .hero-mobile-spacing {
    margin-top: 2rem;
    padding-top: 1rem;
  }
} */

/* Universal fix for fixed navbar - target body class */
body.fixed-navbar-page {
  padding-top: 64px !important; /* Space for fixed navbar (h-16 = 64px) */
}

/* Additional spacing for content containers */
body.fixed-navbar-page > div {
  padding-top: 0px !important; /* No extra padding - hero section touches navbar */
}

/* Mobile adjustment */
@media (max-width: 768px) {
  body.fixed-navbar-page {
    padding-top: 64px !important; /* Same as desktop - navbar height */
  }

  body.fixed-navbar-page > div {
    padding-top: 0px !important; /* No extra padding on mobile - hero section touches navbar */
  }
}

/* Testimonial avatar styles */
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Show testimonial avatar when image fails to load */
.testimonial-avatar.show {
  display: flex !important;
}

.avatar-blue { background-color: #3b82f6 !important; }
.avatar-green { background-color: #10b981 !important; }
.avatar-purple { background-color: #8b5cf6 !important; }

/* Add additional styles as needed */
