.director-section {
    padding: 60px 0;
    /* background-color:  #81847E; */
}

.directors-heading {
    font-weight: bold;
    margin-bottom: 70px;
    font-size: 45px;
    /* text-decoration: underline; */
}

.director-card {
   background-color: #B2A67F; 
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* 3D effect */
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5); 
  }

.director-image {
    width: 50%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #fff;
    margin: 0 auto; /* Center the image */
}

.director-image-2 {
    width: 70%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto; /* Center the image */
}

.text-section {
    padding: 20px;
}

.text-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.text-section p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}