.conatiner_img_title {
    position: relative;
    width: 100%; /* Adjust to your container's width */
    height: 50%; /* Adjust to your needs */
    
  }
  
  .title_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .conatiner_img_title h2 {
    position: absolute;
    top: 35%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust centering */
    color: white;
    font-size: 40px; /* Adjust text size as needed */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Make the text readable */
    font-weight: bold;
    text-align: center;
  }
  
  .cardname {
    display: grid;
    background-color: aqua;
    grid-template-columns: repeat(auto-fit, minmax(25px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
/* Container for the cards */
.card-container {
    display: grid;
    background-color: aqua;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .details {
    width: 100%; /* Full-width container */
    background-color: #5689f7; /* Plain white background */
    padding: 10px 15px; /* Simple padding */
    text-align: left; /* Align text to the left */
  }
  
  .details p {
    text-shadow: #666;
    padding: 40px;
    font-size: 20px; /* Standard font size */
    color:whitesmoke; /* Black text for clarity */
    line-height: 1.8; /* Moderate line spacing for readability */
    margin: 0; /* No extra margins */
    font-family: sans-serif; /* Default sans-serif font */
  }
  
  .card2 {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
  }
  /* Card styling */
  .card
  {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  /* Image styling */
  .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* Title styling */
  .card-title {
    font-size: 20px;
    margin: 10px 0;
    color: #0b3d01;
  }
  
  /* Description styling */
  .card-info {
    font-size: 18px;
    color: #010b13;
    margin: 0 10px 20px;
  }
  
  /* Button styling */
  .card-btn {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
  }
  
  .card-btn:hover {
    background-color: #0056b3;
  }


  .card2:hover {
    transform: translateY(-10px);
  }
  
  /* Image styling */
  .card-img2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* Title styling */
  .card-title2{
    font-size: 20px;
    margin: 10px 0;
    color: #0b3d01;
  }
  
  /* Description styling */
  .card-info2 {
    font-size: 18px;
    color: #010b13;
    margin: 0 10px 20px;
  }
  
  /* Button styling */
  .card-btn2 {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
  }
  
  .card-btn2:hover {
    background-color: #0056b3;
  }

