
body{
  background-color: #004fa2;
}
.navbar, .footer {
  /* background-color: #002f6c; */
  color: white;
  text-align: center;
  padding: 20px;
}
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 20px;
  padding: 0;
}
.navbar a {
  color: white;
  text-decoration: none;
}
.navbar a:hover {
  text-decoration: underline;
}
.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.card {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 20px;
  padding: 20px;
  width: 90%;
  /* max-width: 1000px; */
  display: flex;
  gap: 20px;
}
.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #228b22;
}
.card-content {
  flex: 1;
}
.card-rating {
  text-align: left;
}
.footer{
  background-color: #000;
  margin: 0 -8px;
}

.footer-columns {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  padding: 40px;
  /* background-color: #000; */
  color: #fff;
}
.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* Contact Section (Scoped Styles) */

.contact-info {
  /* background-color: #004ba8; */
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.contact-info h2 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: 1px;
}

.contact-info p {
  margin: 0;
  font-size: 14px;
}

.contact-info .info-container {
  display: flex;
  justify-content: space-around;
  gap: 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-info .info-box {
  max-width: 250px;
  font-size: 14px;
}

.contact-info .info-box .icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  color: orange;
}

.contact-info .info-box a {
  color: white;
  text-decoration: underline;
  font-size: 13px;
}

.contact-info .social-icons {
  margin-top: 20px;
}

.contact-info .social-icons a {
  margin: 0 8px;
  font-size: 20px;
  color: white;
  text-decoration: none;
}


/* Contact Form Section */
.contact-form-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.contact-form-section form {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.contact-form-section h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-form-section .input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-form-section .input-group input {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form-section textarea {
  height: 150px;
  resize: none;
}

.contact-form-section button {
  background-color: orange;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


/* case history */
 .case-header {
      color: white;
      text-align: center;
      font-size: 24px;
      padding: 20px;
      font-weight: bold;
    }

    .search-container {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }

    .search-container input {
      width: 60%;
      padding: 10px;
      font-size: 16px;
      border-radius: 8px;
      border: none;
    }

    .category-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 20px;
    }

    .category-buttons button {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      background-color: white;
      cursor: pointer;
      font-weight: bold;
    }

    .filter-btn {
      display: flex;
      justify-content: flex-end;
      margin: 10px 20px;
    }

    .filter-btn button {
      padding: 8px 12px;
      border-radius: 8px;
      background-color: white;
      border: none;
      cursor: pointer;
    }

    .card-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .case-card {
      background-color: white;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      padding: 20px;
      margin: 20px;
      width: 90%;
      color: black;
    }

    .case-card-left {
      flex: 1;
    }

    .case-type {
      background-color: #004fa2;
      color: white;
      display: inline-block;
      padding: 6px 12px;
      border-radius: 6px;
      margin-bottom: 10px;
    }

    .case-description {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .progress-bar {
      height: 20px;
      background-color: lightgray;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 10px;
      width: 150px;
    }

    .progress-fill {
      height: 100%;
      background-color: green;
      text-align: center;
      color: white;
      line-height: 20px;
      font-size: 12px;
    }

    .case-card-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
    }

    .case-card-right img {
      width: 120px;
      height: 120px;
      border-radius: 12px;
      border: 1px solid #ccc;
    }

    .case-date {
      margin-top: 10px;
    }

    .case-view-btn {
      background-color: #004fa2;
      color: white;
      border: none;
      padding: 10px 20px;
      margin-top: 10px;
      border-radius: 6px;
      cursor: pointer;
    }