/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #f4f4f9 0%, #e0f7fa 100%);
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a {
  text-decoration: none;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #0056b3;
}

/* Header */
header {
  background-color: #f8f9fa;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li {
  display: inline;
}
.contact-info {
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: black;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: black;
}

/* Services */
.services {
  padding: 60px 0;
  background-color: #f1f1f1;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card i {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 10px;
}
.note {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 20px;
}

/* Team */
.team {
  padding: 60px 0;
}
.team h2 {
  text-align: center;
  margin-bottom: 40px;
}
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}
.member h3 {
  margin-bottom: 5px;
}
.member p {
  font-size: 0.95em;
  color: #555;
}

/* Contact */
.contact {
  padding: 60px 0;
  background-color: #e9ecef;
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.info {
  flex: 1;
}
.info p {
  margin-bottom: 10px;
  font-size: 1em;
}
.info i {
  margin-right: 8px;
}
.form {
  flex: 1;
}
.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.map iframe {
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2em;
}
