/* About Section Styles */
.about-section {
    background-color: #ffffff;
    overflow: hidden; /* Ensure decorations don't overflow */
    position: relative;
}

/* Subtle background decoration */
.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 164, 153, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.text-teal {
    color: var(--genie-teal);
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--genie-dark) 0%, var(--genie-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-img-wrapper {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
    transition: transform 0.3s ease;
}

.about-img-wrapper:hover {
    transform: translateY(-5px);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Deeper shadow */
}

/* Dot pattern decoration */
.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -1rem;
    bottom: -1rem;
    background-image: radial-gradient(var(--genie-teal) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: 0;
    opacity: 0.2;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--genie-orange), #ff9f43);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(255, 130, 0, 0.3);
    text-align: center;
    min-width: 180px;
    border: 4px solid white; /* Clean border to separate from image */
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.mission-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bg-teal {
    background: linear-gradient(135deg, #00A499 0%, #008f85 100%);
}

.bg-dark {
    background: linear-gradient(135deg, #333333 0%, #222222 100%);
}

.card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 15rem;
    opacity: 0.08;
    transform: rotate(-15deg);
    transition: transform 0.5s ease;
}

.mission-card:hover .card-bg-icon {
    transform: rotate(0deg) scale(1.1);
}
