
.about-us {
    background-color: #ffffff; 
    color: #f5f5f5; 
    padding: 80px 100px; 
    min-height: 700px; 
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #dfb84d;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}


.about-card {
    background-color: #1e1e1e; 
    border: 2px solid #dfb84d; 
    text-align: center;
    padding: 0px;
    margin: 20px; 
    height: 700px; 
    width: 300px; 
    border-radius: 15px;
    position: relative;
    box-shadow: 0px 6px 15px rgba(223, 184, 77, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.about-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 25px rgba(223, 184, 77, 0.6);
}


.about-card img {
    width: 100%;
    height: 350px; 
    object-fit: cover; 
    margin-bottom: 0px;
    border-bottom: 2px solid #dfb84d; 
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


.card-content {
    padding: 20px; 
}


.special-text {
    font-family: 'Great Vibes', cursive; 
    font-size: 4.5rem; 
    color: #dfb84d; 
    margin-bottom: -10px; 
    margin-top: 20px; 
}


.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f5f5f5;
}


.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ddd;
}


.btn-learn-more {
    font-family: 'Montserrat', sans-serif;
    background-color: #dfb84d;
    color: #121212;
    font-weight: 700;
    padding: 15px 30px; 
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    display: inline-block;
}

.btn-learn-more:hover {
    background-color: #fff;
    color: #121212;
}


.image-overlay-card img {
    height: 350px;
}

.image-overlay-card .card-content {
    position: absolute; 
    top: 70%; 
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 20px;
        padding-bottom: 600px;
        flex-direction: column;
        min-height: auto;
    }

    .about-card {
        margin-bottom: 30px;
        height: auto; 
        width: 90%;
    }

    .about-card img {
        height: auto; 
    }

    .special-text {
        font-family: 'Great Vibes', cursive; 
        font-size: 3rem;
        color: #dfb84d;
        margin-bottom: -10px;
        margin-top: 20px;
    }
    
    /* Title */
    .card-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #f5f5f5;
    }
    .btn-learn-more {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        background-color: #dfb84d;
        color: #121212;
        font-weight: 700;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 30px;
        transition: all 0.3s ease;
        margin-bottom: 10px;
        display: inline-block;
    }
}
