.template3-about-section {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 20px;
}

.about-image-wrapper {
    position: relative;
    width: 800px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    transition: ease-in-out 0.3s;
}

.about-image-wrapper:hover {
    transform: scale(1.03);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    width: 600px;
    height: 400px;
    margin-top: -12rem;
    margin-left: -35rem;
    z-index: 2;
    align-content: center;
}


.about-title {
    font-size: 32px !important;
    font-weight: bold;
    color: #161616 !important;
    margin-bottom: 32px;
}

.about-desc {
    font-size: 18px !important;
    color: #555 !important;
    margin: 20px 0;
    margin-bottom: 48px;
    font-weight: 500;;
}
.about-us-btn {
    border-radius: 63px;
    font-weight: 600;
    font-size: 1.1rem;
}
.about-us-btn:hover {
  box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1);
}
/* Responsive Design */
@media (max-width: 991px) {
    .template3-about-section {
        padding: 60px 0;
    }
    .about-content {
        flex-direction: column;
    }
    .about-text {
        margin: 0;
        width: 100%;
        position: relative;
    }
    .about-image-wrapper {
        padding: 0;
        width: 100%;
        height: 400px;
        margin-bottom: 20px;
    }
}
