/* About Page Styles */

.menu a.active {
    color: #4A9292;
    background: transparent;
    padding: 0;
}

.about-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 170px 5% 140px;
    background: #000000;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

/* Background Glowing Effect */
.about-hero::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    right: -10%;
    bottom: -20%;
    background: radial-gradient(circle, rgba(74, 146, 146, 0.25) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(40px, 7vw, 70px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -3px;
    background: linear-gradient(180deg, #FFFFFF 0%, #AFAFAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 16px;
    color: #676767;
    line-height: 1.5;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.8;
}

/* Specific Button Adjustments */
.get-in-touch-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.get-in-touch-btn:hover {
    background: #FFFFFF;
    color: #110E0D;
    border-color: #FFFFFF;
}

/* About Section Layout */
.about-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.section-container {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* .section-image {
    flex: 1;
    aspect-ratio: 16 / 10.5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
} */

.section-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-text {
    flex: 1.1;
    text-align: left;
}

.section-text h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-text p {
    font-size: 15px;
    color: #ACACAC;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.about-list li {
    font-size: 14.5px;
    color: #F9F9F9;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    opacity: 0.9;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4A9292;
    font-size: 20px;
    line-height: 1;
}

.highlight-text {
    font-size: 15px;
    font-style: italic;
    color: #4A9292 !important;
    font-weight: 500;
    line-height: 1.6;
    padding-top: 10px;
}

/* Specific Section Adjustments */
/* .solution {
    background: linear-gradient(to bottom, transparent, rgba(74, 146, 146, 0.05));
}

.strength {
    background: linear-gradient(to top, transparent, rgba(74, 146, 146, 0.05));
} */

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 5% 60px;
    }

    .section-container,
    .section-container.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .section-image {
        max-width: 100%;
    }

    .section-text {
        text-align: center;
    }

    .about-list {
        display: inline-block;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

/* Animation Refinements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}