:root {
  --primary-color: #517fef;
  --secondary-color: #a451ef;
  --bg-light: #f9f9f9;
  --text-dark: #333;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --font-family: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding-top: 70px;
}

.nav-header {
  background: #fff;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}

nav a:hover {
  color: var(--secondary-color);
}

.hero-section {
    position: relative;
    background: url('./images/qhpjqsny.png') center/cover no-repeat;
    padding: 80px 20px;
    color: white; /* adjust as needed */
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 250px;
    border-radius: 12px;
    margin-bottom: 20px;
}


.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-form-section {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-section p {
  color: #555;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(81, 127, 239, 0.2);
}

.contact-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background-color: #405dc9;
  transform: translateY(-2px);
}

footer {
  background: #fff;
  color: var(--text-dark);
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

footer .container {
  max-width: 900px;
  margin: 0 auto;
  color:#517fef
}

footer p {
  margin: 0 0 10px 0;
}

footer p.footer_ {
  font-size: 10px;
  color: #517fef;
  line-height: 1.5;
}

footer a {
  color: var(--primary-color);
  text-decoration: underline;
}

footer a:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
