/* Global Styles */
:root {
    --primary-color: #006400; /* Dark green */
    --secondary-color: #f0c040; /* Gold */
    --text-color: #333;
    --light-text: #777;
    --background-color: #f8f9fa;
    --white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 60px 0;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: auto;
    margin-right: 15px;
}

header h1 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    padding: 10px 0;
    color: var(--text-color);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name, .contact-info {
    display: flex;
    align-items: center;
}

.company-name i, .contact-info i {
    margin-right: 10px;
}

/* Hero Section */
.hero {
    background-color: var(--background-color);
    padding: 60px 0;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 30px;
    background: none;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.tab-btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.tab-btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.tab-btn.active {
    background-color: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo-large {
    width: 200px;
    margin-right: 30px;
    flex-shrink: 0;
}

.mission-text, .vision-text {
    max-width: 600px;
    text-align: left;
    flex-grow: 1;
}

.cta-button a {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button a:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
}

.cta-button i {
    margin-right: 10px;
}

/* Services Section */
.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Team Section */
.team {
    background-color: var(--background-color);
}

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

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

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

.position {
    font-weight: bold;
    color: var(--primary-color);
}

/* Partners Section */
.partners {
    background-color: var(--white);
    text-align: center;
}

.partners-info {
    margin-bottom: 30px;
}

.partners-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partners-logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partners-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Projects Section */
.projects {
    background-color: var(--background-color);
    text-align: center;
}

.projects p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--light-text);
}

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

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 100, 0, 0.8);
    color: var(--white);
    padding: 15px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
    text-align: center;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--light-text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.contact-method {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.contact-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--background-color);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin: 0 auto 20px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-large {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .mission-text, .vision-text {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.5rem;
    }
    
    .service-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
