/* About Aabroo Section Styles */
.about-aabroo-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-aabroo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
     
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.about-description {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: #333;
}

.about-intro {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 20px;
     
}

.about-details,
.about-story,
.about-growth,
.about-founder,
.about-registration {
    font-size: 16px;
    margin-bottom: 18px;
    text-align: justify;
}

.about-story strong,
.about-growth strong {
    color: #2c5aa0;
     
}

.about-cta {
    margin-top: 30px;
    text-align: center;
}

.help-build-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
     
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto Condensed', sans-serif;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.help-build-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.about-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Decorative elements */
.about-aabroo-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.about-aabroo-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(32, 201, 151, 0.1), rgba(44, 90, 160, 0.1));
    border-radius: 50%;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
        padding: 40px;
    }
    
    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-aabroo-section {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-intro {
        font-size: 16px;
    }
    
    .about-details,
    .about-story,
    .about-growth,
    .about-founder,
    .about-registration {
        font-size: 15px;
        text-align: left;
    }
    
    .help-build-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-aabroo-section {
        padding: 40px 0;
    }
    
    .about-aabroo-container {
        padding: 0 15px;
    }
    
    .about-content {
        padding: 25px 15px;
    }
    
    .about-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .about-intro {
        font-size: 15px;
    }
    
    .about-details,
    .about-story,
    .about-growth,
    .about-founder,
    .about-registration {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .help-build-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
    }
}
