/* About Section */
.about-section {
    padding: 100px 0 60px;
    /* Reduced bottom padding */
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    /* Increased margin */
    position: relative;
}

.about-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.about-tagline i,
.about-decoration i {
    color: var(--primary-color);
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-title .highlight {
    color: var(--primary-color);
}

.about-decoration {
    position: absolute;
    top: 50px;
    right: -30px;
}

.about-decoration i {
    position: absolute;
    color: var(--primary-color);
}

.star-1 {
    font-size: 28px;
    top: 0;
    right: 0;
    animation: floating 3s ease-in-out infinite;
}

.star-2 {
    font-size: 18px;
    top: 25px;
    right: 25px;
    animation: floating 2.5s ease-in-out infinite 0.5s;
}

.star-3 {
    font-size: 14px;
    top: -10px;
    right: 30px;
    animation: floating 3.5s ease-in-out infinite 1s;
}

.about-description {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.about-grid {
    display: flex;
    align-items: flex-start;
    /* Changed from center */
    justify-content: space-between;
    gap: 80px;
    /* Increased gap */
    padding-bottom: 80px;
}

.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Increased spacing between items */
}

.service-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: rgba(252, 128, 117, 0.15);
    /* Light peach */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.service-info h3 {
    font-size: 1.3rem;
    /* Increased font size */
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.about-images {
    flex: 1;
    display: flex;
    gap: 15px;
    /* Reduced gap */
    height: 480px;
    /* Taller area */
    position: relative;
    justify-content: center;
    align-items: center;
    /* Center vertically */
}

.image-box {
    overflow: hidden;
    border-radius: 70px;
    /* Highly rounded corners relative to size */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-images .img-1 {
    width: 48%;
    height: 60%;
    align-self: flex-end;
    /* Bottom */
    margin-bottom: 20px;
    z-index: 2;
}

.about-images .img-2 {
    width: 52%;
    height: 70%;
    align-self: flex-start;
    /* Top */
    margin-top: 20px;
    z-index: 1;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-box:hover img {
    transform: scale(1.05);
}

/* Bottom Banner / Ticker */
.bottom-banner {
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    padding: 40px 0;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid #eee;
}

.ticker-text {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 60px 0 0;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .about-grid {
        flex-direction: column-reverse;
        gap: 60px;
    }

    .about-images {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .ticker-text {
        font-size: 3rem;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}