/*--------------------------------------------------------------
# Services detail Section
--------------------------------------------------------------*/
#services_detail_general{
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: space-between;
    margin: 0 auto;
    padding: 60px 0;
  }
  
  #title_services_detail_general{
  border-right: 2px solid #c8a664;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  justify-content: center;
  }
  .service_detail_title img{
    width: 80px;
    height: auto;
    z-index: 1;
    position: relative;
    top: 10px;
    left: 0px;
  }
  .service_detail_title h3{
    width: 95%;
    padding-left: 75px;
    background-color: #c8a664;
    color: white;
    font-size: 1.3rem;
    margin-left: 5%;
    margin-top: -12%;
    margin-bottom: 30px;
  
  }
  #services_detail_general_container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding-left: 20px;
  }
  #services_detail_general .servicce_detail{
    width: 45%;
  }
  
  
  .service_detail_description p {
    text-align: justify;
    color: #4b5563;
    font-size: 0.8rem;
  
  }
  .hidden {
    display: none;
  }
  button {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    color: #c8a664;
    transition: color 0.3s;
    border: none;
    background: none;
    cursor: pointer;
  }
  button:hover {
    color: #4b5563;
  }
  svg {
    height: 1.25rem;
    width: 1.25rem;
    transition: transform 0.3s ease;
  }
  .rotate-180 {
    transform: rotate(180deg);
  }
  
  @media(max-width:620px){
    #services_detail_general{
         flex-direction: column !important;
     } 
    #title_services_detail_general{
           padding-bottom: 20px !important;
       }
    #services_detail_general .servicce_detail{
    width: 95% !important;
  }
  
      
  }
  