/* Institutional Hero Section */
.institutional-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.institutional-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.institutional-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.institutional-hero p {
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background-color: var(--light); /* Black background */
    transition: background-color 0.3s ease;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background-color: var(--dark-gray); /* Dark gray background */
    border-radius: var(--rounded-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.mv-card h2 {
    color: var(--dark); /* White text */
    margin-bottom: 20px;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.mv-card p {
    color: var(--gray); /* Light gray text */
    line-height: 1.8;
    transition: color 0.3s ease;
}

.mv-card.mission::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.mv-card.vision::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: var(--light); /* Black background */
    transition: background-color 0.3s ease;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--dark); /* White text */
    font-size: 2.2rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.section-title p {
    color: var(--gray); /* Light gray text */
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.value-card {
    background-color: var(--dark-gray); /* Dark gray background */
    border-radius: var(--rounded-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary); /* Turquoise background */
}

.value-card:hover .value-icon,
.value-card:hover .value-title,
.value-card:hover .value-text {
    color: var(--light); /* Black text for contrast */
}

.value-icon {
    font-size: 3rem;
    color: var(--secondary);
}

.value-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark); /* White text */
    transition: color 0.3s ease;
}

.value-text {
    color: var(--gray); /* Light gray text */
    transition: color 0.3s ease;
}

/* Value Chain Section */
.value-chain {
    padding: 100px 0;
    background-color: var(--light); /* Black background */
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.vc-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    align-items: center;
}

.vc-content {
    position: relative;
    z-index: 2;
}

.vc-content h2 {
    color: var(--dark); /* White text */
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.vc-content p {
    color: var(--gray); /* Light gray text */
    line-height: 1.8;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.vc-image {
    position: relative;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vc-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vc-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%);
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--light); /* Black background */
    transition: background-color 0.3s ease;
}

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

.team-member {
    background-color: var(--dark-gray); /* Dark gray background */
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

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

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

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    color: var(--dark); /* White text */
    margin-bottom: 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.member-info .position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.member-info p {
    color: var(--gray); /* Light gray text */
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--dark-gray); /* Dark gray background */
    color: var(--dark); /* White text */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background-color: var(--primary); /* Turquoise background */
    color: var(--light); /* Black text for contrast */
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--light); /* Black background */
    color: var(--primary); /* Turquoise accent */
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--rounded-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background-color: var(--secondary);
    color: var(--light); /* Black text for contrast */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .institutional-hero {
        padding: 60px 0;
    }
    
    .institutional-hero h1 {
        font-size: 2.2rem;
    }
    
    .mission-vision {
        padding: 50px 0;
    }
    
    .mv-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 30px;
    }
    
    .values {
        padding: 50px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-chain {
        padding: 60px 0;
    }
    
    .vc-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team {
        padding: 50px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}