.whatwedo-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0;
    margin-bottom: 50px;
}

.whatwedo-title{
    font-size: 3.5rem;
    text-align: center;
    font-style: italic;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    margin: 0;
}

.whatwedo-background{
    margin-top: 5%;
    width: 60%;
    height: 250px;
    background-color: #273c67;
    padding: 20px;
    color: white;
    border-radius: 30px;
}

.whatwedo-card-container {
    display: flex;
    gap: 20px;
    width: 70%;
    height: auto;
    padding: 30px 70px;
}

.whatwedo-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40%;
    height: auto;
    background-color: white;
    border-radius:20px;
    background-color: #fd8914;
    color: #fff;
    align-self: start;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animasyon geçişleri */
    border: 2px solid #fff;
    transform: rotate(2deg);
}
.whatwedo-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(0deg);
  }

.card-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 150vh;
    margin-top: 30px;
}

.card-icon img{
    width: 10vh;
    padding: 10px;
}

.card-title{
    max-height: 10vh;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.card-p{
    height: 15vh;
    align-self: flex-end;
    text-align: center;
    font-family: "Noto Sans", serif;
}

.card-p p{
    padding: 0 30px 20px 30px;
}

.card-button{
    font-size: 0.8rem;
    font-weight: bold;
    height: 33vh;
    padding: 10px;
    text-align: center;
    
}

.whatwedo-background h1{
    margin-top: 4%;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    font-style: italic;
}

.arrows{
    width: 62%;
    height: 50%;
}

.scratch{
    width: 30%;
    height: 40%;
}

.overlay-btn{
  display: none;
}

/* .overlay-btn a{
    display: inline-block;
    padding: 12px 24px;
    background-color: #fd8914 ;
    color: white; 
    font-size: 16px; 
    font-weight: bold; 
    text-align: center; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease; 
    cursor: pointer; 
    text-decoration: none;
    border: 2px solid #fff;
}

.overlay-btn a:hover {
    background-color: #ffcc00; 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); 
    transform: translateY(-2px); 
  }

  .overlay-btn a:active {
    transform: translateY(0); 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  }

.overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    border-radius:20px;
  }

  .whatwedo-card:hover .overlay {
    bottom: 0;
    height: 100%;
  } */
/* 
  .organization-overlay{
    background-image: url(imgs/organization.jpg);
  }

  .tech-sup-overlay{
    background-image: url(imgs/technical_support.jpg);
  }

  .personal-overlay{
    background-image: url(imgs/personnel_support.jpg);
  }

  .stand-overlay{
    background-image: url(imgs/exhibition_stands.jpg);
  }
 */
 

  @media (max-width: 768px) {
    .whatwedo-section{
      padding: 25% 0;
    }
    .whatwedo-card-container {
      display: none;
    }

    .whatwedo-section h1{
      font-size: 2.5rem;
    }
    .scratch{
      width: 80%;
    height: 40%;
    }
    .arrows {
      display: none;
    }

  }


  .whatwedo-about{
    display: flex;
    width: 80%;
    margin: 0 auto 150px auto;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
  }

  .whatwedo-about img{
    height: 500px;
  }

  .whatwedo-about-title{
    font-style: italic;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    height: 60px;
    align-content: center;
    margin: 40px auto;
  }

  .whatwedo-about-card{
    width: 20%;
  }

  .whatwedo-p{
    font-family: "Patrick Hand", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
  }

  @media (max-width: 768px){
    .whatwedo-about{
      flex-direction: column;
      align-items: center;
    }

    .whatwedo-about-divider{
      display: none;
    }

    .whatwedo-about-card{
      width: 90%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
    }

    .whatwedo-about-title{
      width: 90%;
      margin: 20px auto;
    }

    .whatwedo-p{
      width: 200px;
    }
  }