/* 
* URBANATIKA Website Styles
* Custom CSS for the Urbanatika website based on web archive
*/

/* Global Styles */
:root {
    --primary-color: #4caf50;
    --secondary-color: #6c757d;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Poppins', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px; /* Adjust for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #1e7e34;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #43a047;
    border-color: #388e3c;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title h3 {
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1.5rem auto;
    border: none;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Header Section */
.header-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 120px 0 100px;
    text-align: left;
    margin-top: -70px; /* To offset the padding-top on body for fixed navbar */
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Montserrat', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    border-radius: 10px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.header-content h1.display-4 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: -0.03em;
    word-spacing: 0.1em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding: 10px 0;
    margin-bottom: 20px;
}

.header-content h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    transition: all 0.5s ease;
}

.header-content h1:hover:after {
    width: 120px;
}

.header-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.mission-vision {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 25px;
    border-radius: 5px;
}

.mission-vision h4 {
    color: var(--primary-color);
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    word-spacing: 0.1em;
}

header .display-4,
.hero-section .display-4 {
    position: relative;
    padding-bottom: 15px;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header .display-4:after,
.hero-section .display-4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

header .display-4,
.hero-section .display-4 {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-section h1,
.header-section h1 {
    position: relative;
    z-index: 1;
}

.hero-section h1:before,
.header-section h1:before {
    content: '';
    position: absolute;
    width: 120%;
    height: 30%;
    background: rgba(0, 0, 0, 0.1);
    bottom: 10%;
    left: -10%;
    z-index: -1;
    border-radius: 50px;
    transform: rotate(-1deg);
}

.hero-section .lead,
.header-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.header-content .animate-on-scroll.fade-in-up {
    animation-duration: 1.2s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Technology Section */
#technology-section {
    padding: 80px 0;
}

.service-item {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-content {
    padding: 25px;
    flex: 1;
}

.service-img {
    flex: 0 0 40%;
    max-width: 40%;
}

.service-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Insect Revolution Section */
#insect-revolution {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/nature-11.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

#insect-revolution:before,
#insect-revolution:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--primary-color);
    opacity: 0.1;
}

#insect-revolution:before {
    top: -10px;
}

#insect-revolution:after {
    bottom: -10px;
}

.insect-revolution-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insect-revolution-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.insect-revolution-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Platform Section */
#platform-section {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 80px;
    position: relative;
    margin-top: -1px; /* Ensure smooth connection with divider */
}

.feature-item {
    padding: 30px 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.events {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.event-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.platform-divider {
    position: relative;
    padding: 20px 0;
}

.divider-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.divider-icon i {
    font-size: 24px;
}

.platform-divider:before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    top: 50%;
}

/* Section Divider */
.section-divider {
    position: relative;
    height: 70px;
    overflow: hidden;
}

.divider-wave {
    position: absolute;
    width: 100%;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%234caf50' fill-opacity='0.2' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,149.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* Insect Icon */
.insect-icon-container {
    background-color: rgba(255, 255, 255, 0.1);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.insect-icon {
    font-size: 60px;
    color: var(--primary-color);
}

/* Focus Group Section */
#focus-group {
    padding: 80px 0;
}

/* Director Section */
#director {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    padding: 100px 0;
    position: relative;
}

#director:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.director-bio {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* Partner and Sponsor Sections */
.partner-slider, .sponsor-slider {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.social-icon {
    color: #fff;
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    background-color: rgba(76, 175, 80, 0.9) !important;
}

.navbar.bg-dark-scrolled {
    background-color: rgba(76, 175, 80, 0.95) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .active > .nav-link {
    color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link.active:after,
.navbar-dark .navbar-nav .active > .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.visible {
    opacity: 1;
}

/* Section transitions */
section {
    position: relative;
    transition: all 0.5s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-section {
        text-align: center;
        padding-top: 150px;
    }
    
    .mission-vision {
        margin-top: 30px;
    }
    
    .service-item {
        flex-direction: column;
    }

    .service-img {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content h3 {
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }

    .header-content h1.display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .header-content h1.display-4,
    .hero-section h1.display-4 {
        font-size: 2.2rem;
    }
    
    .header-content h3,
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

/* Mission Vision Section Styles */
.mission-vision-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.15);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.25);
}

.mission-vision-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.mission-vision-card h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

#mision-vision {
    position: relative;
    background: linear-gradient(rgba(76, 175, 80, 0.05), rgba(255, 255, 255, 0.7));
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: -70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Contact Page Styles */
.contact-form-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px !important;
}

.icon-box {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.sumate-section {
    background-color: rgba(76, 175, 80, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-summary-info {
    margin-top: 30px;
}

.contact-summary-item {
    text-align: center;
    padding: 15px;
    min-width: 160px;
}

.contact-summary-item i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
}

.social-links-large {
    text-align: center;
}

.social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    background-color: #388e3c;
    color: white;
    transform: translateY(-3px);
}

/* Values Section Styles */
.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* About Content Styles */
.about-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Project Cards */
.project-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-body {
    padding: 20px;
}

.project-body h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Call to Action Section */
#cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2e7d32 100%);
}

#cta-section h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

#cta-section .btn-light:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Quienes Somos Page - Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(76, 175, 80, 0.7) 100%), url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 120px 0 80px;
    margin-top: -70px;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    word-spacing: 0.1em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding: 10px 0;
    margin-bottom: 20px;
}

.hero-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    transition: all 0.5s ease;
}

.hero-section h1:hover:after {
    width: 120px;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,144C96,128,192,96,288,90.7C384,85,480,107,576,128C672,149,768,171,864,154.7C960,139,1056,85,1152,74.7C1248,64,1344,96,1392,112L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.2);
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 40px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

/* Modern Mission Vision Cards */
.mission-vision-modern {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.mission-vision-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.mission-vision-modern h3 {
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.mission-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-points li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.mission-points li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Team Cards */
.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-card-header {
    position: relative;
    overflow: hidden;
}

.team-card-header img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-header img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: rgba(76, 175, 80, 0.9);
    padding: 10px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
    opacity: 1;
}

.team-social a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
}

.team-card-body {
    padding: 20px;
    text-align: center;
}

.team-card-body h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.position {
    display: block;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 15px;
}

/* Hexagon Values */
.hexagon-value {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.hexagon {
    width: 100px;
    height: 115px;
    background-color: var(--primary-color);
    position: relative;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.hexagon-value:hover .hexagon {
    transform: rotate(30deg);
    background-color: #388e3c;
}

.hexagon-value h4 {
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

/* CTA List */
.cta-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cta-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.cta-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-image img {
    border: 5px solid white;
}
