:root {
  --primary: #2563eb;
  --secondary: #f8fafc;
  --text: #1e293b;
  --accent: #f59e0b;
  --dark: #0f172a;
  --card-bg: #ffffff;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--secondary);
  color: var(--text);
  line-height: 1.6;
}

header {
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--accent);
}

.menu {
  display: flex;
  gap: 1.5rem;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.menu a:hover {
  color: var(--accent);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

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

.search-box {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  position: relative;
}

.search-box input {
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: none;
  border-radius: 50px;
  width: 200px;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  width: 250px;
}

.search-box i {
  position: absolute;
  left: 1rem;
  color: var(--text);
}

/* Mobile Header */
.mobile-header {
  display: none;
  width: 95%;
  margin: 0 auto;
  padding: 0.8rem 0;
  position: relative;
}

.burger {
  position: absolute;
  left: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
}

.mobile-search {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
}

.mobile-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
  width: fit-content;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  padding: 1rem 2rem;
  z-index: 99;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

/* Mobile Search */
.mobile-search-container {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  padding: 1rem 2rem;
  z-index: 99;
}

.mobile-search-container.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-search-container input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero a {
  background-color: var(--accent);
  color: #000;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Sections */
.section {
  padding: 4rem 2rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
}

.section h3::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Vendor Logos */
.vendors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.vendor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.vendor:hover {
  transform: translateY(-5px);
}

.vendor-logo {
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}

.vendor-logo svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  transition: var(--transition);
}

.vendor:hover .vendor-logo svg {
  opacity: 1;
}

.vendor-name {
  font-weight: 600;
  color: var(--text);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

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

.card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.card p {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.8;
}

/* FAQ Section */
.faq-section {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0.5rem;
  color: var(--text);
  opacity: 0.9;
}

.faq-answer.active {
  max-height: 300px;
  margin-top: 1rem;
}

.faq-question.active i {
  transform: rotate(180deg);
}

/* Testimonials Section - Fixed Version */
.testimonials-section {
  background-color: #f1f5f9;
  padding: 4rem 0;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.testimonials-header h3::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.testimonials-header p {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.3s ease;
  gap: 20px;
}

.testimonial-card {
  min-width: 300px;
  max-width: 350px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex: 0 0 calc(33.333% - 14px);
  transition: var(--transition);
}

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

.testimonial-content {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.author-info h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 0.9rem;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.testimonial-date {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.6;
}

.testimonial-exam {
  background-color: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav button:hover {
  background-color: var(--accent);
  color: #000;
}

.testimonial-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

footer p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

footer a {
  color: #e2e8f0;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent);
  color: #000;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .vendor-logo {
    width: 100px;
    height: 100px;
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .header-container {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h2 {
    font-size: 1.75rem;
  }

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

  .section {
    padding: 3rem 1.5rem;
  }
  
  .vendors {
    gap: 1.5rem;
  }
  
  .vendor-logo {
    width: 80px;
    height: 80px;
  }
  
  .faq-section {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero a {
    padding: 0.75rem 1.5rem;
  }

  .section h3 {
    font-size: 1.5rem;
  }
  
  .vendors {
    gap: 1rem;
  }
  
  .vendor-logo {
    width: 70px;
    height: 70px;
  }
  
  .vendor-name {
    font-size: 0.9rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .testimonials-header p {
    text-align: center;
  }
}
/* Body/content links only - EXCLUDES header menu and footer links */
body a:not(.menu a):not(footer a) {
  color: #2563eb; /* Normal link color */
  text-decoration: none; /* Optional: removes underline */
}

body a:not(.menu a):not(footer a):hover {
  color: #f59e0b; /* Hover color */
}

body a:not(.menu a):not(footer a):visited {
  color: #9333ea; /* Visited color */
}

/* Keep footer links white */
footer a {
  color: #e2e8f0; /* Matches your footer's original white */
}

footer a:hover {
  color: var(--accent); /* Matches your theme accent color */
}