/* About Section - Matching Hero/Transformation Style */
#about {
    background: linear-gradient(135deg, #0f2847 0%, #1a4373 25%, #2a5a99 50%, #4A90E2 100%);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements - Same as Previous Sections */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated Gradient Overlay */
.about-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.about-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.15) 0%, transparent 50%);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(74, 144, 226, 0.3));
    top: 10%;
    left: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float1 20s infinite ease-in-out;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(46, 92, 138, 0.3));
    top: 50%;
    right: -80px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float2 25s infinite ease-in-out;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(74, 144, 226, 0.25));
    bottom: 10%;
    left: 50%;
    border-radius: 50%;
    animation: float3 18s infinite ease-in-out;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
    }

    75% {
        transform: translate(40px, 20px) rotate(270deg) scale(1.05);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) rotate(120deg) scale(1.15);
    }

    66% {
        transform: translate(30px, -40px) rotate(240deg) scale(0.85);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -30px) scale(1.2);
    }
}

.bg-particles span {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.bg-particles span:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.bg-particles span:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 35%;
    animation-delay: 3s;
}

.bg-particles span:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 55%;
    animation-delay: 6s;
}

.bg-particles span:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

.bg-particles span:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 70%;
    right: 35%;
    animation-delay: 12s;
}

.bg-particles span:nth-child(6) {
    width: 3px;
    height: 3px;
    top: 50%;
    right: 15%;
    animation-delay: 15s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px) scale(0);
        opacity: 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Content Grid */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Section with Decorations */
.about-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(96, 51, 51, 0.3);
    border-radius: 15px;
    padding: 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.overlay-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
}

/* Decorative elements */
.image-decoration {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    z-index: -1;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
}

.decoration-2 {
    width: 100%;
    height: 100%;
    bottom: -20px;
    right: -20px;
}

/* Text Content */
.about-text {
    position: relative;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.text-content {
    position: relative;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Value Grid */
.value-grid {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.value-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.value-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* About List */
.about-list {
    list-style: none;
    margin: 30px 0 40px 0;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.list-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: white;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Button - Matching Style */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--dark-blue);
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.btn-about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-about:hover::before {
    width: 300px;
    height: 300px;
}

.btn-about span,
.btn-about svg {
    position: relative;
    z-index: 1;
}

.btn-about:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
}

.btn-about svg {
    transition: transform 0.3s ease;
}

.btn-about:hover svg {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    #about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .decoration-1,
    .decoration-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .value-item {
        padding: 20px;
    }

    .image-overlay {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .btn-about {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.9rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .value-item {
        flex-direction: column;
        align-items: flex-start;
    }
}