/* About Page Styles - Services Theme */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(72, 202, 228, 0.1) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(64,224,208,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Tab Section */
.tab-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 24px;
    padding: 1.2rem 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.1), transparent);
    transition: left 0.6s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(64, 224, 208, 0.4);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.15);
    color: #ffffff;
}

.tab-btn.active {
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    border-color: rgba(64, 224, 208, 0.4);
    color: #0f1419;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
    font-weight: 700;
}

/* Tab Content */
.tab-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 25px 60px rgba(64, 224, 208, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, rgba(72, 202, 228, 0.05) 100%);
    pointer-events: none;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.5s ease;
    position: relative;
    z-index: 2;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
}

.tab-pane p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(64, 224, 208, 0.4);
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.2);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(64, 224, 208, 0.3);
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    position: relative;
    z-index: 2;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 1rem;
    color: rgba(64, 224, 208, 0.8);
    font-weight: 500;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(64, 224, 208, 0.2);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(64, 224, 208, 0.2);
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem;
}

.member-detail {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.member-photo-large {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(64, 224, 208, 0.3);
}

.member-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info-detail {
    flex: 1;
}

.member-name-large {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.member-title-large {
    font-size: 1.3rem;
    color: rgba(64, 224, 208, 0.8);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.member-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.member-skills h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(72, 202, 228, 0.2));
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.member-contact {
    display: flex;
    gap: 1rem;
}

.contact-btn {
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #0f1419;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.3);
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-title {
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .member-detail {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .member-photo-large {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .member-name-large {
        font-size: 2rem;
    }
    
    .member-title-large {
        font-size: 1.1rem;
    }
    
    .member-bio {
        font-size: 1rem;
    }
    
    .member-contact {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-card {
        padding: 1rem;
    }
    
    .team-photo {
        width: 80px;
        height: 80px;
    }
    
    .modal-container {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .member-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .member-name-large {
        font-size: 1.8rem;
    }
    
    .contact-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tab-section {
        padding: 4rem 0;
    }
    
    .tab-navigation {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .tab-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .tab-content {
        padding: 2.5rem;
        margin: 0 1rem;
    }
    
    .tab-pane h2 {
        font-size: 2.2rem;
    }
    
    .tab-pane p {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 50vh;
        padding: 4rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .tab-content {
        padding: 2rem;
        margin: 0 0.5rem;
        border-radius: 20px;
    }
    
    .tab-pane h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-pane p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Content Rich Styles */
.content-rich {
    padding: 20px 0;
}

.intro-text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #40e0d0;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.feature-item h4 {
    color: #40e0d0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Objectives */
.mission-objectives {
    margin: 40px 0;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #40e0d0;
    transition: all 0.3s ease;
}

.objective-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.objective-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.objective-content h4 {
    color: #40e0d0;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.objective-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Mission Values */
.mission-values {
    margin: 40px 0;
}

.mission-values h3 {
    color: #40e0d0;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #40e0d0;
    transform: translateY(-3px);
}

.value-title {
    display: block;
    color: #40e0d0;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.value-item p {
    color: #b0b0b0;
    font-size: 0.9em;
    margin: 0;
}

/* Vision Goals */
.vision-goals {
    margin: 40px 0;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #40e0d0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.15);
}

.goal-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.goal-content h4 {
    color: #40e0d0;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.goal-content p {
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
}

/* Vision Roadmap */
.vision-roadmap {
    margin: 40px 0;
}

.vision-roadmap h3 {
    color: #40e0d0;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.roadmap-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
}

.roadmap-item:hover {
    transform: translateY(-5px);
    border-color: #40e0d0;
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.2);
}

.roadmap-year {
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(135deg, #40e0d0, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.roadmap-target {
    color: #40e0d0;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.roadmap-desc {
    color: #b0b0b0;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Vision Commitment */
.vision-commitment {
    margin: 40px 0;
}

.commitment-box {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(72, 202, 228, 0.1));
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.commitment-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4em;
    color: #40e0d0;
    opacity: 0.3;
}

.commitment-box h4 {
    color: #40e0d0;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.commitment-box p {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1em;
    margin: 0;
}