* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.about-me {
    padding: 60px 0;
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-top: -70px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-text {
    max-width: 60%;
    line-height: 1.8;
    text-align: left;
    color: #444;
    margin-bottom: 5px;
}

.about-text h2 {
    font-size: 2.4rem;
    color: #ff6600;
    margin-bottom: 10px;
    font-weight: bold;
}

.subheading {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 50px;
    font-weight: 500;
    margin-top: -20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    max-width: 35%;
    text-align: center;
    position: relative;
    display: block;
    margin-left: 40px;
    transition: transform 0.3s ease;
}

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

.profile-photo {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 6px solid #ff6600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: right 10px top -25px;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    justify-items: center;
    margin: 0 auto;
    max-width: 1000px;
}

.cta-section ul li {
    background-color: #fff;
    padding: 30px;
    border: 2px solid #ff6600;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.cta-section ul li:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section ul li::before {
    content: attr(data-num);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6600;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    border: 3px solid #fff;
}

.cta-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .about-text h2 {
        font-size: 2rem;
    }

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        max-width: 100%;
    }

    .profile-photo {
        width: 250px;
        height: 250px;
        display: block;
        margin: 0 auto;
        transform: scale(1.1) translateX(-20px);
    }

    .cta-section ul {
        grid-template-columns: 1fr;
    }
}
