/* About Us Page Styles */

/* Active navigation link */
nav ul li a.active {
    color: #7BFF00;
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #7BFF00;
    bottom: -5px;
    left: 0;
}

/* About Hero Section */
.about-hero {
    background-color: #000;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 600px;
}

.about-hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.about-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
}

.about-hero-title::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #7BFF00, #02FFFB);
    bottom: -15px;
    left: 0;
}

.about-hero-text {
    position: relative;
}

.about-hero-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 90%;
}

.arrow-indicators {
    display: flex;
    flex-direction: column;
    float: left;
    margin-right: 20px;
    margin-top: 5px;
}

.arrow-up, .arrow-down {
    font-size: 18px;
    color: #03FEF7;
    margin: 3px 0;
}

.about-hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.donut-image {
    max-width: 100%;
    height: auto;
    animation: rotate 120s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-lines {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    z-index: 1;
}

/* Team Section */
.team-section {
    background-color: #001810;
    padding: 80px 100px;
    color: white;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #7BFF00, #02FFFB);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #333;
    margin: 0 auto 20px;
    overflow: hidden;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-title {
    color: #7BFF00;
    margin-bottom: 15px;
    font-size: 14px;
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

/* Values Section */
.values-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    padding: 30px;
    border: 2px solid #03FFF8;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #7BFF00;
    transform: translateY(-5px);
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #7BFF00;
}

.value-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* Mobile responsiveness */
@media screen and (max-width: 1024px) {
    .about-hero, .team-section, .values-section {
        padding: 60px 40px;
    }
    
    .about-hero-title {
        font-size: 48px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-hero, .team-section, .values-section {
        padding: 40px 20px;
    }
    
    .about-hero-content, .about-hero-image {
        width: 100%;
    }
    
    .about-hero-content {
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-text p {
        font-size: 14px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .value-title {
        font-size: 20px;
    }
    
    .value-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-title {
        font-size: 30px;
    }
    
    .about-tag {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .member-name {
        font-size: 18px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
} 

.clients-section {
    background-color: #000;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.dot-marker {
    width: 8px;
    height: 8px;
    background-color: #7BFF00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    position: absolute;
    left: 190px;
    top: 50px;
}

.clients-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    width: 150px;
    height: 80px;
    background-color: #001810;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.logo-img {
    max-width: 100%;
    max-height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover .logo-img {
    opacity: 1;
}

/* Performance-Driven Section */
.performance-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
}

.performance-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.performance-content {
    flex: 0 0 45%;
}

.performance-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.green-text {
    color: #7BFF00;
    background: linear-gradient(90deg, #7BFF00, #02FFFB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.performance-text {
    flex: 0 0 55%;
}

.performance-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

/* Experts Section */
.experts-section {
    background-color: #000;
    padding: 50px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

.experts-line-decoration {
    position: relative;
    height: 2px;
    max-width: 800px;
    margin: 0 auto 50px;
    background: linear-gradient(90deg, transparent, #03FEF7, transparent);
}

.experts-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
}

.experts-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.expert-card {
    text-align: center;
}

.expert-photo-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 1px solid white;
    position: relative;
}

.expert-photo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 254, 247, 0.2);
    mix-blend-mode: overlay;
}

.expert-photo {
    width: 90%;
    height: 90%;
    object-fit: cover;
    filter: grayscale(100%);
    margin: 10px 10px;
}

.expert-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.expert-position {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.expert-social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.expert-social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-social-link img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px dashed #7BFF00;
    border-radius: 30px;
    padding: 10px 30px;
    color: #7BFF00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background-color: rgba(123, 255, 0, 0.1);
}

.arrow-right {
    font-size: 18px;
}

/* Mobile responsiveness for new sections */
@media screen and (max-width: 1024px) {
    .performance-section {
        padding: 60px 40px;
    }
    
    .performance-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .performance-title {
        font-size: 42px;
    }
    
    .experts-grid {
        flex-wrap: wrap;
        gap: 50px 20px;
    }
}

@media screen and (max-width: 768px) {
    .performance-section {
        padding: 40px 20px;
    }
    
    .performance-title {
        font-size: 36px;
    }
    
    .performance-text p {
        font-size: 14px;
    }
    
    .experts-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .expert-photo-container {
        width: 150px;
        height: 150px;
    }
    
    .expert-name {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .performance-title {
        font-size: 30px;
    }
    
    .experts-title {
        font-size: 30px;
    }
    
    .expert-photo-container {
        width: 120px;
        height: 120px;
    }
    
    .expert-name {
        font-size: 18px;
    }
    
    .expert-position {
        font-size: 12px;
    }
    
    .show-more-btn {
        width: 80%;
    }
}