/* About Section Styling */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb, 255, 107, 0), 0.03);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(var(--secondary-rgb, 0, 128, 255), 0.03);
    z-index: 0;
}

/* About Image Styling */
.about-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.about-image-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: rgba(var(--primary-rgb, 255, 107, 0), 0.1);
    border-radius: 10px;
    z-index: -1;
}

.about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    transition: transform 0.6s ease;
}

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

/* Experience Badge */
.about .image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: auto;
    left: 5%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color, #1d60ec), #4c83f5);
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb, 255, 107, 0), 0.3);
}

.badge-inner {
    text-align: center;
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

/* About Content Styling */
.about-content {
    padding-left: 20px;
}

.swiss-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    color: #2d3748;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.swiss-badge i {
    margin-right: 8px;
    color: #D80027; /* Swiss red color */
}

.about-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6873;
    margin-bottom: 30px;
}

/* Team Highlight */
.team-highlight {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--secondary-color, #0080ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.highlight-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.highlight-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6873;
    margin: 0;
}

/* Values */
.values-wrapper {
    margin-bottom: 30px;
}

.value-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-icon {
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--primary-color, #1d60ec);
}

.value-item h5 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    color: #2d3748;
}

/* About CTA */
.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

/* About section responsive */
@media (max-width: 992px) {
    .about .image-wrapper .experience-badge {
        /* Position at bottom left of image container */
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: fit-content;
        margin: 0;
        z-index: 10;
        transform: scale(0.85);
        transform-origin: bottom left;
    }

    .about .image-wrapper {
        position: relative;
    }

    .about .image-wrapper .images {
        position: relative;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 70px 0;
    }

    .about-heading {
        font-size: 24px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge .years {
        font-size: 26px;
    }

    .experience-badge .text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .about .image-wrapper .experience-badge {
        bottom: 10px;
        left: 10px;
        transform: scale(0.75);
    }
}
