
.resourses_main_conteinar{
    width: 100%;
    height: auto;
    /* padding-top: 110px; */
    background-image: url(../../image/Resource-&-Link.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.resourses_main_conteinar_area{
    width: 95%;
    height: auto;
    height: 28vh;
    margin: auto;
    text-align: center
}
.resourses_main_conteinar_header{
  position: absolute;
  right: 50px;
}
.resourses_main_conteinar_header h1{
    color: #fff;
    font-size: 35px;
    padding-top: 55px;
}
.resourses_main_conteinar_header p{
    color: #fff;
    font-size: 15px;
}
.resourses_main_conteinar_header p a{
    color: #fff;
    text-decoration: none;
}
.resourses_sec_header{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
.resourses_sec_header h3 i{
    font-size: 25px;
  }
.resourses_sec_header h3{
    width: 95%;
    margin: auto;
    color: #3E3E86;
    font-size: 20px;
    padding: 20px 0px;
    border-bottom: 1px solid #3E3E86;

}
.rehab_resources_and_link_conteinar {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .resources_details_container {
    width: 100%;
  }

  .resource-card {
    width: 95%;
    background-color: #fff;
    border-left: 6px solid #3E3E86;
    margin: 0 auto 10px auto;
    padding: 10px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    transform: translateY(0);
  }

  .resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .resource-content {
    flex: 1;
    min-width: 250px;
  }

  .resource-content h2 {
    font-size: 18px;
    margin-bottom: 0.8rem;
    color: #3E3E86;
  }
  .resource-content h2 a{
    text-decoration: none;
    color: #3E3E86;
  }
  .resource-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0.5rem;
    color: #444;
  }

  .read-more {
    white-space: nowrap;
    padding: 0.6rem 1.2rem;
    background-color: #3E3E86;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .read-more:hover {
    background-color: #6a6ad8;
    transform: scale(1.05);
  }


  @media (max-width: 1200px) {
    .resourses_main_conteinar_area{
      padding: 10px;
    }
    .resource-card {
      width: 100%;
      padding: 1rem;
    }

    .resource-content h2 {
      font-size: 1.1rem;
    }

    .resource-content p {
      font-size: 0.95rem;
    }
    .resourses_main_conteinar_header h1{
      padding-top: 80px;
  }
  .rehab_resources_and_link_conteinar{
    padding: 10px;
  }
  }