
.about-section {
    width: 100%;
    background-color: #DFFFFD;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 219, 205, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

/* About Content */
.about-content {
    /* Styling handled by child elements */
}

.section-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0ADBCD;
    background: rgba(10, 219, 205, 0.1);
    border: 1px solid rgba(10, 219, 205, 0.3);
    border-radius: 30px;
    font-family: "Roboto", sans-serif;
    transition: all 300ms ease;
}

.section-badge:hover {
    background: rgba(10, 219, 205, 0.2);
    border-color: #0ADBCD;
    /* Removed animation for cleaner feel */
}

.about-content h2 {
    font-family: "Young Serif", serif;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #0a0a0a;
    font-weight: 400;
}

.about-content h2 .highlight {
    background: linear-gradient(135deg, #0ADBCD 0%, #08B5A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-primary-text {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
    font-weight: 400;
}

.about-secondary-text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Features List */
.about-features {
    margin: 22px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    transition: transform 200ms ease;
}

.feature-item:hover {
    /* Interaction styles applied via transform */
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0ADBCD, #08B5A8);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.feature-item p {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

/* CTA Button */
.about-cta-btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #0ADBCD, #08B5A8);
    color: white;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 6px 18px rgba(10, 219, 205, 0.2);
    letter-spacing: 0.4px;
    margin-top: 4px;
    display: inline-block;
    will-change: transform, box-shadow;
}

.about-cta-btn:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 12px 32px rgba(10, 219, 205, 0.35);
    background: linear-gradient(135deg, #08B5A8, #0ADBCD);
}

.about-cta-btn:active {
    transform: translateY(-2px) translateZ(0);
}

/* Right Side Logo */
.about-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 350px;
}

.logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(10, 219, 205, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite;
}

.logo-container::after {
    content: "";
    position: absolute;
    inset: -40px;
    border: 2px solid rgba(10, 219, 205, 0.2);
    border-radius: 50%;
    animation: rotateBorder 8s linear infinite;
}

.logo-container {
    box-shadow: 
        0 0 60px rgba(10, 219, 205, 0.08),
        inset 0 0 40px rgba(10, 219, 205, 0.05);
}

.about-logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 3.5s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(10, 219, 205, 0.2));
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Modern Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
 

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}   }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}




.about-card {
    background: linear-gradient(135deg, #0ADBCD 0%, #08B5A8 100%);
    border-radius: 20px;
    padding: 35px 28px;
    display: grid;
    gap: 24px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(10, 219, 205, 0.18);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-card .stat-box {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    transition: transform 300ms ease;
}

.about-card .stat-box:hover {
    transform: scale(1.08);
}




/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .container-about {
        padding: 0 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-content h2 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .about-primary-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-secondary-text {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .about-image-wrapper {
        min-height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 45px 0;
    }

    .container-about {
        padding: 0 20px;
    }

    .about-grid {
        gap: 28px;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .about-primary-text {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .about-secondary-text {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .about-features {
        margin: 18px 0 16px 0;
        gap: 8px;
    }

    .feature-item {
        gap: 10px;
        padding: 4px 0;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .about-cta-btn {
        padding: 9px 24px;
        font-size: 13px;
    }

    .about-image-wrapper {
        min-height: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-section {
        padding: 32px 0;
    }

    .container-about {
        padding: 0 15px;
    }

    .section-badge {
        padding: 5px 12px;
        font-size: 10px;
        margin-bottom: 10px;
    }

    .about-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .about-primary-text,
    .about-secondary-text {
        font-size: 12px;
    }

    .about-secondary-text {
        margin-bottom: 12px;
    }

    .about-features {
        margin: 14px 0 12px 0;
    }

    .feature-item p {
        font-size: 12px;
    }

    .about-cta-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .about-card {
        padding: 22px 16px;
        gap: 14px;
    }

    .stat-number {
        font-size: 24px;
        margin-bottom: 3px;
    }

    .about-image-wrapper {
        min-height: 200px;
    }
}