body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #004aad;
  color: white;
  padding: 10px 20px;
}

.logo {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

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

.center-text {
  text-align: center;
  flex: 1; /* ye center text ko beech me rakhta hai */
  font-size: 16px;
  font-weight: 500;
}

.nav-right a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-right a:hover {
  color: #ffd700;
}

.help-btn {
  background-color: #f1c40f;
  color: #004aad;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: bold;
}

.help-btn:hover {
  background-color: #ffd700;
}
/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  color: #004aad;
  background-color: #f5faff;
}

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

.hero p {
  font-size: 1.1rem;
  color: #333;
}

/* Feedback Section */
.feedback {
  background-color: rgba(144, 238, 144, 0.9); /* light green box */
  width: 400px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.feedback h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.feedback input[type="text"],
.feedback textarea {
  width: 90%;
  padding: 10px;
  border: 1px solid #004aad;
  border-radius: 5px;
  font-size: 14px;
}

.feedback input[type="submit"] {
  background-color: #004aad;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.feedback input[type="submit"]:hover {
  background-color: #00327a;
}

/* Optional Page Background Image */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
}

/* Only index page pe background image chahiye */
body.index-page {
  background-image: url("download (1).jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* Services Section */
.services {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5faff;
}

.services h1 {
  color: #004aad;
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: none;
  background-color: #f5faff !important;

}

.services .intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box {
  background-color: white;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.service-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-box h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #555;
}
.services-page {
  background: none !important;
  background-color: white !important;
}
/* Team Section */
.team {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5faff;
}

.team h1 {
  color: #004aad;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.team .intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  background-color: white;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h3 {
  color: #004aad;
  margin-bottom: 5px;
}

.team-member .role {
  color: #555;
  font-weight: bold;
  margin-bottom: 10px;
}
/* Certificates Section */
.certificates {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5faff;
}

.certificates h1 {
  color: #004aad;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.certificates .intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.certificate-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.certificate-box {
  background-color: white;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.certificate-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.certificate-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.certificate-box h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.certificate-box p {
  font-size: 14px;
  color: #555;
}
/* Help Us Section */
.help {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5faff;
}

.help h1 {
  color: #004aad;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.help .intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.help-form {
  background-color: rgba(173, 216, 230, 0.4); /* light blue */
  width: 400px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.help-form label {
  color: #004aad;
  font-weight: bold;
}

.help-form input[type="text"],
.help-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #004aad;
  border-radius: 5px;
  font-size: 14px;
}

.help-form input[type="submit"] {
  background-color: #004aad;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.help-form input[type="submit"]:hover {
  background-color: #00327a;
}

/* Thank You Message */
.thankyou {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

/* Show thank you message after submit (HTML-only trick) */
:target {
  display: block;
}
