* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f7fb;
  color: #333;
  line-height: 1.6;
}


header {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 15px 10%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  width: 150px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #0b4f8a;
  font-weight: 500;
}

nav a:hover {
  color: #1e88e5;
}


.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 10%;
  background: linear-gradient(135deg, #ffffff, #e9f3ff);
}

.hero h1 {
  font-size: 42px;
  color: #0b4f8a;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
}

.hero img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn {
  display: inline-block;
  background: #0b4f8a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
}

.btn:hover {
  background: #06345e;
}


section {
  padding: 70px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  color: #0b4f8a;
}


.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 70px;
  margin-bottom: 18px;
}

.card h3 {
  color: #0b4f8a;
  margin-bottom: 10px;
}


.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 14px;
}


.contact {
  background: #0b4f8a;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


footer {
  background: #06345e;
  color: #fff;
  text-align: center;
  padding: 25px;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact form label {
  font-weight: 600;
}

.contact form input,
.contact form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.contact form button {
  padding: 12px;
  border: none;
  background-color: #007bff;
  color: white;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact form button:hover {
  background-color: #0056b3;
}
    body {
      font-family: 'Poppins', sans-serif;
      background: #f7f9fc;
      margin: 0;
      padding: 0;
    }
    .contact-container {
      max-width: 800px;
      margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .contact-container h2 {
      text-align: center;
      margin-bottom: 20px;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    label {
      font-weight: 600;
    }
    input, textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      width: 100%;
    }
    button {
      padding: 12px;
      background-color: #007bff;
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    button:hover {
      background-color: #0056b3;
    }
    .success-message {
      text-align: center;
      color: green;
      font-weight: 600;
      margin-top: 15px;
    }


    
@media (max-width: 900px) {
  .hero,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}
