* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: green;
    color: white;
    padding: 1rem 0;
    height: 55px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #ffd700;
    text-align: left;
    margin-left: 0px;
    margin-right: 370px;
    margin-top: -1rem;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-top: -1rem;
}

.hero-image {
    padding: 100px 0 60px
    height: auto;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

#logo-icon {
    width: 90px;        /* Resize logo */
    height: auto;
    margin-right: 5px;
    margin-left: 5px;
    margin-top: -1rem;
}

.favicon {
    width: 32px;
    height: 32px;
}

#sm-icon {
    width: 40px;        /* Resize logo */
    height: auto;
    margin-right: 10px;
    margin-left: 5px;
}

#wb-icon {
    width: 70px;        /* Resize logo */
    height: ;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

#ig-icon {
    width: 70px;        /* Resize logo */
    height: auto;
    margin-right: 10px;
    margin-left: 5px;
}

#tiktok-icon {
    width: 40px;        /* Resize logo */
    height: auto;
    margin-right: 10px;
    margin-left: 5px;
}

#youtube-icon {
    width: 50px;        /* Resize logo */
    height: auto;
    margin-right: 10px;
    margin-left: 5px;
}

/* Hero */
.hero {
    background: green;
    color: white;
    height: auto;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: -4rem;
    animation: fadeInUp 1s;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: -4rem;
    padding: 5px 0 5px;
    animation: fadeInUp 1.2s;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #ffd700;
    color: #1a472a;
    font-weight: 600;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: green;
}

/* About */
.about {
    background: #f9f9f9;
    margin-bottom: -2rem;
    margin-top: -2rem;
}

.about-p {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: -3rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.vm-card h4 {
    color: green;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Projects */
.projects {
    background: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: green;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}


.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: green;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.project-info p {
    color: #666;
    line-height: 1.6;
}

/* Services */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f9f9f9;
    padding-top: 2rem;
    height: auto;
    width: auto;
    content-align: left;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card img {
    width: 100%;
    height: 300px;
    padding-top: 3rem;
    margin-bottom: -0.5rem;
    border: none;
    object-fit: cover;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 5rem;
}

.service-card h3 {
    color: green;
    margin-left: 10px;
    margin-bottom: -2rem;
    margin-top: -1rem;

}

.service-card ul {
    list-style: none;
    padding-top: 2rem;
    padding-left: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a3e;
    font-weight: bold;
}

/* Team */
.team {
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a472a, #2d6a3e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.team-card h3 {
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.w-contact-card {
    padding: 0rem;
    height: auto;
    margin-right: -5rem;
    width: 100%
    display: flex;
    list-style: none;
    gap: 1rem;
}

.w-contact-card h3 {
    padding: 1rem;
    display: flex;
    color: green;
}

.contact-card {
    background: #f9f9f9;
    padding: 1rem;
    margin-left: 5px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: green;
    margin-bottom: 2rem;

}

.contact-card a {
    color: #2d6a3e;
    text-decoration: none;
}

.contact-form {
    background: #f9f9f9;
    padding: 1rem;
    margin-left: -7rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: green;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background: green;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a472a;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

}