/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Content */
.about-content {
    flex: 1;
    max-width: 500px;
}

.about-badge {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 5px 15px;
    display: inline-block;
    font-size: 14px;
    border-radius: 20px;
}

.about-title {
    font-size: 2.5rem;
    color: #0D47A1;
    margin: 10px 0;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    padding-bottom: 10px
}

/* Button */
.about-button {
    background: #0ea5e9;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.about-button .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-button:hover .arrow {
    transform: translateX(5px);
}

/* Images */
.about-images {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-images img {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out;
}

.tilt {
    transition: transform 0.2s ease-out;
    perspective: 1000px; /* Adds depth */
}


/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-images {
        justify-content: center;
    }
}
