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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: azure;
    position: fixed;
    top: 0;
    z-index: 1000; /* makes sure it's always on top */
    width: 100%;
    height: 90px;
    padding: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1em;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

nav a {
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent; /* invisible by default */
  color: #333;
  font-weight: bold;
}

nav a.active {
  border-bottom: 2px solid #4caf50; /* green underline */
  color: #4caf50; /* optional: highlight color */
}


/* Hero */
.contact-hero {
  text-align: center;
  padding: 150px;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: #fff;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.info-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.info-box h3 {
  margin-bottom: 0.5rem;
  color: #4f46e5;
}

.info-box a {
  color: #333;
  text-decoration: none;
}

.info-box a:hover {
  color: #4f46e5;
}

/* Contact Form */
.contact-form-section {
  background: #fff;
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #4f46e5;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 4px rgba(79, 70, 229, 0.4);
}

.btn {
  display: inline-block;
  background: #4f46e5;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #4338ca;
}

/* Form Message */
#formMessage {
  margin-top: 1rem;
  font-weight: 600;
}
