@charset "UTF-8";

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Buttons */
.btn-success {
    background-color: #0d5c2e;
    border-color: #0d5c2e;
    padding: 12px 30px;
    font-weight: 600;
}
.btn-success:hover {
    background-color: #094220;
    border-color: #094220;
}
.btn-outline-success {
    border-color: #0d5c2e;
    color: #0d5c2e;
    padding: 12px 30px;
    font-weight: 600;
}
.btn-outline-success:hover {
    background-color: #0d5c2e;
    border-color: #0d5c2e;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d5c2e, #1a8a45);
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.section-header p {
    color: #666;
    font-size: 16px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13,92,46,0.15);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: #e8f5ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.service-icon i {
    font-size: 30px;
    color: #0d5c2e;
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13,92,46,0.15);
}
.project-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.project-img-placeholder {
    height: 200px;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-img-placeholder i {
    font-size: 48px;
    color: #0d5c2e;
}
.project-body {
    padding: 20px;
}
.project-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.project-info {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}
.project-info i {
    color: #0d5c2e;
    width: 20px;
}

/* Team Card */
.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13,92,46,0.15);
}
.team-avatar {
    background: linear-gradient(135deg, #0d5c2e, #1a8a45);
    padding: 30px;
}
.avatar-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.5);
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-letter {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d5c2e;
    color: white;
    font-size: 48px;
    font-weight: bold;
}
.team-info {
    padding: 20px;
}
.team-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.team-position {
    display: inline-block;
    background: #e8f5ee;
    color: #0d5c2e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.team-education {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Partner Card */
.partner-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #eee;
}
.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #0d5c2e;
}
.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.partner-img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}
.partner-logo-placeholder {
    width: 80px;
    height: 70px;
    background: #e8f5ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.partner-logo-placeholder i {
    font-size: 30px;
    color: #0d5c2e;
}
.partner-name {
    font-weight: 600;
    margin-bottom: 5px;
}
.partner-country {
    font-size: 12px;
    color: #999;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0d5c2e, #1a8a45);
    color: white;
    text-align: center;
    padding: 60px 0;
}
.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Page */
.contact-info {
    background: #e8f5ee;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
}
.contact-info i {
    color: #0d5c2e;
    width: 30px;
}
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* About Page */
.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section-header h2 { font-size: 28px; }
    .cta h2 { font-size: 28px; }
    .cta p { font-size: 16px; }
    .btn-success, .btn-outline-success { padding: 8px 20px; }
}