html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }

  /* Apply the background image to the body */
  body {
    background-image: url('./imges/back_body.webp');
    background-size: cover; /* Make sure the image covers the entire screen */
    background-position: center; /* Center the image */ 
  }

.nav-link {
  border: 2px solid rgb(255, 255, 255);
  background-color: rgb(113, 195, 222);
  margin: 10px;
  border-radius: 10px;
  padding: 10px;
}
.nav-link:hover {
    border: 2px solid rgb(0, 0, 0);
  background-color: rgb(162, 224, 244);
  color: black;
}



/* ----- card ---------- */

.card-container {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
}

.card-container:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blur {
    filter: blur(3px); /* Adjust the blur amount as needed */
    transition: filter 0.3s ease; /* Smooth transition */
}


.card-title h3 {
  color: #000000; /* Bright blue color for title */
  margin-bottom: 12px; /* Space below the title */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Modern font for title */
  font-weight: 600; /* Semi-bold title */
  letter-spacing: 1px; /* Slight letter spacing for a stylish look */
}

.card-content {
  color: #555; /* Darker gray for better readability */
  line-height: 1.6; /* Improved readability with line spacing */
  font-family: "Arial", sans-serif; /* Clean, readable font */
  font-size: 16px; /* Standard font size for readability */
}

.text-dark {
  color: #2c3e50; /* Consistent dark color */
}

.mt-2 {
  margin-top: 8px; /* Small margin on top */
}

/* Optional: Add a subtle gradient background for the card */
.card-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0));  */
  z-index: -1; /* Place behind the card content */
  transition: opacity 0.3s ease;
}

.card-container:hover::before {
  opacity: 0.2; /* Slightly intensify the gradient on hover */
}
