:root {
  --primary-color: #517fef;
  --secondary-color: #a451ef;
  --bg-light: #f9f9f9;
  --text-dark: #222;
  --text-light: #fff;
  --font-family: 'Montserrat', 'Open Sans', 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_ {
  font-size: 10px;
}

/* header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
} */


header {
  background-color: #ffffff; /* white header */
  color: #333333; /* dark text */
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* subtle shadow to separate from content */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 150px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.menu-toggle {
  font-size: 1.8rem;
  color: #517fef; /* brand blue for hamburger */
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: #517fef; /* brand blue */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #a451ef; /* secondary purple on hover */
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  nav.show {
    display: flex;
  }
  
  nav a {
    margin: 10px 0;
  }
}


nav a:hover {
  color: var(--secondary-color);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/qhpjqsny.png') center/cover no-repeat;
  color: var(--text-light);
  padding: 140px 20px 100px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: scale(1.1);
}

.testimonials {
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  gap: 20px;
}

.testimonial {
  background: var(--text-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
}

.testimonial p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
}

footer {
  background-color: #ffffff; /* White background */
  color: #517fef; /* Brand blue text */
  text-align: center;
  padding: 30px 20px;
  font-family: var(--font-family, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0; /* subtle divider for clean separation */
}

footer .container {
  max-width: 900px;
  margin: 0 auto;
}

footer p {
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: #517fef; /* Ensure all text uses your brand blue */
}

footer p.footer_ {
  font-size: 10px;
  color: #517fef; /* Brand blue for disclaimers */
  line-height: 1.5;
  margin-top: 10px;
}

footer a {
  color: #517fef; /* Brand blue for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #a451ef; /* Secondary purple on hover */
}

@media (max-width: 600px) {
  footer {
    padding: 20px 15px;
    font-size: 0.85rem;
  }
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (min-width: 600px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .menu-toggle {
    display: none;
  }
  nav {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
  }
  nav a {
    margin: 0 15px;
  }
  .hero h2 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.5rem;
  }
}