.about-section {
    padding: 80px 20px;
    margin-top: 40px;
}

.about-section .heading {
    text-align: center;
    margin-bottom: 80px;
}

.about-section .heading h2 {
    font-size: 42px;
    font-weight: bold;
    color: #111;
    font-family: var(--body-font);
}

.about-section .heading p {
    font-family: var(--secondary-font);
    font-size: 18px;
}

.about-section .heading span {
    color: #ef5123;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 40px;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-row.gradient-bg {
    background: linear-gradient(135deg, #1c3f60, #ef5123);
    color: #fff;
    padding: 60px;
    border-radius: 20px;
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: inherit;
    font-family: var(--secondary-font);
}

/* Image Styles */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    transition: 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Circle */
.about-image.circle img {
    border-radius: 50%;
}

/* Hexagon Shape */
.about-image.hexagon img {
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
}

/* Tilted Shape */
.about-image.tilted img {
    transform: rotate(-5deg);
    border-radius: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #ef5123, #1c3f60);
    padding: 60px 20px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: #fff;
}

.stats-section .stat-box h3 {
    font-size: 40px;
    font-weight: bold;
}

.stats-section .stat-box p {
    margin-top: 10px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .about-row.reverse {
        flex-direction: column;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}


/* Common Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.about-image img:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}