
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.9)), url('images/hero-bg.jpg') no-repeat center/cover;
    padding:  10vw 0 6vw;
    text-align: center;
    position: relative;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.hero-content .subtitle {
    font-size: clamp(1rem, 3vw, 1.375rem);
    font-weight: 300;
    color: #4a4a4a;
    max-width: 90%; /* Better fit on smaller screens */
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}
/* Mission and Values Section */
.mission-values-section {
    padding: 120px 0;
    background: var(--dark-bg);
}
.mission-values-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: clamp(30px, 5vw, 50px);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.mission-values-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    display: block;
    margin: 15px auto 0;
    transition: width 0.4s ease;
}
.mission-values-section h2:hover::after {
    width: 100px;
}
.mission-values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.mission-text p {
    font-size: 1.375rem;
    color: #555555;
    font-weight: 300;
    opacity: 0;
    animation: fadeInLeft 0.8s ease 0.2s forwards;
}
.values-grid {
    display: grid;
    gap: 30px;
}
.value-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: calc(0.1s * var(--i));
}
.value-card:nth-child(1) { --i: 1; }
.value-card:nth-child(2) { --i: 2; }
.value-card:nth-child(3) { --i: 3; }
.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}
.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}
.value-card:hover i {
    transform: scale(1.15) rotate(5deg);
}
.value-card h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.value-card p {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 300;
}
/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Technical Capabilities Section */
.technical-capabilities-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: var(--light-bg);
    position: relative;
}

.technical-capabilities-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: clamp(40px, 8vw, 60px);
    text-align: center;
    position: relative;
}

.technical-capabilities-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 20px auto 0;
    transition: width 0.4s ease;
}

.technical-capabilities-section h2:hover::after {
    width: 120px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.capability-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--primary-color);
}

.capability-header i {
    font-size: 1.8rem;
    color: #ffffff;
}

.capability-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.capability-content {
    padding: 25px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tech-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tech-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.tech-rating {
    display: flex;
    gap: 3px;
}

.tech-rating i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(35, 108, 178, 0.03);
    z-index: 0;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.team-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 20px auto 0;
    transition: width 0.4s ease;
}

.team-section h2:hover::after {
    width: 120px;
}

.team-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Team Member Card */
.team-member-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
    background: var(--light-bg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.member-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.member-credentials {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.credential-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 5px;
}

.credential-item span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Team Member Bio */
.team-member-bio {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.team-member-bio:hover {
    box-shadow: var(--hover-shadow);
}

.team-member-bio h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.team-member-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.expertise-areas {
    margin-top: 25px;
}

.expertise-areas h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.expertise-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.expertise-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .capabilities-grid {
        gap: 20px;
    }
    
    .capability-header {
        padding: 20px;
    }
    
    .capability-content {
        padding: 20px;
    }
}

@media screen and (max-width: 992px) {
    .capabilities-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .team-member-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .capability-header i {
        font-size: 1.5rem;
    }
    
    .capability-header h3 {
        font-size: 1.2rem;
    }
    
    .technical-capabilities-section {
        padding: 60px 0;
    }
    
    .technical-capabilities-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    .capability-header {
        padding: 15px;
    }
    
    .capability-content {
        padding: 15px;
    }
    
    .tech-name {
        font-size: 0.9rem;
    }
    
    .tech-rating i {
        font-size: 0.8rem;
    }
}
.team-card {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(0.1s * var(--i));
}
.team-card:nth-child(1) { --i: 1; }
.team-card:nth-child(2) { --i: 2; }
.team-card:nth-child(3) { --i: 3; }
.team-card:hover {
    transform: translateY(-12px);
    background: var(--light-bg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.team-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}
.team-card:hover .team-image {
    transform: scale(1.05);
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.team-card:hover .team-image img {
    transform: scale(1.1);
}
.team-card h3 {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.team-card p {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 300;
}
/* History Section */
.history-section {
    padding: 120px 0;
    background: var(--accent-bg);
}
.history-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.history-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 20px auto 0;
    transition: width 0.4s ease;
}
.history-section h2:hover::after {
    width: 120px;
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
    .mission-values-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .hero-section {
        padding: 180px 0 80px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content .subtitle {
        font-size: 1.25rem;
    }
        
}
