/* Content Section */
.content-wrapper {
    padding: 2rem 0;
}

.description {
    font-size: 1.5rem;    
    line-height: 30px;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

/* Button Styles */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


/* Image Section */
.image-container {
    position: relative;    
    display: flex;
    align-items: center;
    justify-content: end;
    overflow: hidden;
}

.professional-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .main-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    
    .button-group {
        justify-content: center;
    }
    
    .why-choose {
        text-align: center;
    }
    
    
    
    .content-wrapper {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .main-heading {
        font-size: 1.8rem;
    }
    .description {
        text-align: left;
        font-size: 1rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    
    .shape-1, .shape-2 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .main-heading {
        font-size: 1.6rem;
    }
    
    .content-wrapper {
        padding: 1rem 0;
    }
    
    
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper > * {
    animation: fadeInUp 0.8s ease-out;
}

.content-wrapper > *:nth-child(2) {
    animation-delay: 0.2s;
}

.content-wrapper > *:nth-child(3) {
    animation-delay: 0.4s;
}

.content-wrapper > *:nth-child(4) {
    animation-delay: 0.6s;
}