body {
  font-family: "Clear Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.navbar {
  background-color: #2a496a;
  border-bottom: 2px solid #ffffff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .nav-link {
  color: white !important;
  text-decoration: none;
  margin-left: 20px;
}

.navbar-brand img {
  height: 50px;
  margin-left: 0;
  max-height: 100%;
}

.search-bar-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-bar {
  width: 100%;
  padding: 10px 40px;
  border: 2px solid white;
  border-radius: 50px;
  background-color: #2a496a;
  color: white;
  font-size: 16px;
}

.search-bar::placeholder {
  color: #cbd5e0;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: white;
}

.hero {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('../images/bg.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: white;
}

.start-btn {
  background-color: #0066cc;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.start-btn:hover {
  background-color: #005bb5;
}

.hero-image img {
  max-width: 100%;
  border-radius: 5px;
  margin-top: 20px;
}

.training-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
  background-color: #fff;
}

.training-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.see-all {
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
  font-weight: bold;
  float: right;
  margin-top: -35px;
}

.see-all:hover {
  text-decoration: underline;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.carousel-button {
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-button.left {
  left: -20px;
}

.carousel-button.right {
  right: -20px;
}

.cards-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 260px;
  text-align: left;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 14px;
  color: #333;
  margin: 5px 0;
  line-height: 1.2;
}

.card .title {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
  color: #000;
}

.follow-btn {
  background-color: #0056b3;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
}

.follow-btn:hover {
  background-color: #003d80;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cards-container {
    gap: 10px;
  }

  .card {
    width: 200px;
  }

  .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .carousel-button.left {
    left: -10px;
  }

  .carousel-button.right {
    right: -10px;
  }
}

.gallery-container {
  padding: 50px 0;
}

.gallery-container .gallery-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-container .gallery-row img:hover {
  transform: scale(1.05);
}

#vocations {
  background-color: #ffffff;
}

.vocation-item {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #f1f5f8;
  transition: transform 0.3s ease-in-out;
}

.vocation-item:hover {
  transform: scale(1.05);
}

.vocation-icon {
  width: 80px; /* Adjust the size of the icons */
  height: auto;
  margin-bottom: 15px;
}

h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .vocation-item {
    margin-bottom: 20px;
  }
}

.questionnaire-section {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('../images/bg2.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.questionnaire-content {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  color: white;
}

.questionnaire-text {
  max-width: 400px;
}

.questionnaire-text h2 {
  font-size: 28px;
  font-weight: bold;
}

.questionnaire-form {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  width: 400px;
}

.questionnaire-form input,
.questionnaire-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.questionnaire-form textarea {
  height: 80px;
  resize: none;
}

.questionnaire-form button {
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 4px;
}

.questionnaire-form button:hover {
  background-color: #444;
}

.questionnaire-text img {
  width: 300px; /* Set the desired size */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
}

footer img {
  max-width: 200px;
}

footer p {
  margin: 5px 0;
}

footer .social-icons a {
  margin: 0 10px;
  text-decoration: none;
}

footer .social-icons img {
  width: 30px;
  height: 30px;
}

footer .copyright {
  font-size: 12px;
  color: #777;
}
