body {
  font-family: 'Inter', sans-serif;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 8px; /* makes edges slightly rounded */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* soft blur around edges */
}

.logo h1 {
  font-size: 20px;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  position: relative;
  background: url("contactushero.jpg") no-repeat center center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
}

.hero h1,
.hero p,
.hero .btn {
  position: relative;
  z-index: 1;
}

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

body {
  /* font-family: Arial, sans-serif;*/
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #222;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #ff9800;
  font-weight: bold;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  /* background: linear-gradient(to right, #ff9800, #f57c00);*/
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #f57c00;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #fbe9e7;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact h2 {
  margin-bottom: 25px;
  font-size: 2rem;
  color: #333;
}

form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #f57c00;
  box-shadow: 0 0 5px rgba(245,124,0,0.3);
}

.btn-submit {
  background: #f57c00;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #e65100;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
.social-icons a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1da1f2; /* Changes color on hover (e.g., Twitter blue) */
}