@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
.duration-section{
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-color: #1e1842;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: -100px;
}

.flex i{
    font-size: 10rem;
    background: linear-gradient(to right, #01a3ab, #ffffff); 
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 1s ease-in-out forwards;
}

.duration-section img{
    width: 100%;
    height: 100%;
}

.duration-section h1{
    text-align: left;
    z-index: 2;
    font-size: 4rem;
    background: linear-gradient(to right, #01a3ab, #ffffff); 
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 5px #000;
}

.overlay{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 1;
    background-image: radial-gradient(at center center, rgb(1, 163, 171)0%, #01141d 70%);
    -webkit-font-smoothing: antialiased;
    opacity: 0.5;
}

.assure-text{
    padding: 10px 50px;
    font-family: "Poppins", sans-serif;
    text-align: left;
}
.assure-text ul li{
    font-size: 0.9rem;
}

.acting{
    color: #000;
    font-family: "Poppins", sans-serif;
}

.acting h2{
    width: 70%;
    text-align: center;
    font-size: 1.2rem;
    background: #01a3ab;
    border: 3px solid #01a3ab;
    padding: 10px;
    background: linear-gradient(to right, #01a3ab, #000000); 
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 5px #ffffff;
    margin: 50px auto;
    font-size: 4rem;
}

.acting-content h3{
    text-align: center;
}

.cards{
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.card-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 2px solid #01a3ab;
    border-radius: 30px;
}

.cards img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.card-text{
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(to right, #01a3ab, #000000); 
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 5px #ffffff;
}

.card {
    opacity: 0; 
    transform: translateY(50px); 
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.card.visible {
    opacity: 1; 
    transform: translateY(0); 
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card-container .card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-container .card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-container .card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.card-container .card p {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #555;
}

.card-container .card strong {
  color: #000;
}

@media (max-width: 1024px) {
    .duration-section img {
        width: 50%;
        height: 100%;
    }
    .acting h2 {
        font-size: 2.5rem;
    }
    .cards {
        width: 90%;
    }
    .card-text{
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .navbar-menu{
        z-index: 9999;
    }
    .duration-section img {
        display: none;
    }
    .cards{
        grid-template-columns: repeat(2, 1fr);
    }
    .flex i{
        font-size: 5.5rem;
    }
    .flex h1{
        font-size: 2.5rem;
    }
    .acting h2 {
        font-size: 1.5rem;
    }
    .acting-content h3{
        width: 80%;
        margin: 0 auto;
    }
    .cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .duration-section {
        height: 80vh;
    }
    .overlay {
        height: 80vh;
    }
}