* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 2rem;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02);
}
.logo-image {
    height: 5rem;
    width: auto;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: green;
    letter-spacing: -0.5px;
}
.logo-subtitle {
    font-size: 0.8rem;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #4b5563;
    margin: 5px 0;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                opacity 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 1rem;
    }

    .logo-image {
        height: 4.1rem;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        padding: 6rem 2rem;
        flex-direction: column;
        gap: 2rem;
        transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
        transition-delay: calc(0.1s * var(--i));
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        display: none;
    }
}
body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(to right, #308f38, #101110);
    color: white;
}

.hero-content {
    flex: 1 1 50%;
    padding: 20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.hero-image {
    flex: 1 1 40%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* About Us Section */
.about {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

/* Meet Our Team Section */
.team {
    padding: 40px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.team h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.team-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background-color: #333;
    color: white;
}

.footer a {
    color: #fe0000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        margin-top: 20px;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .about h2,
    .team h2,
    .services h2 {
        font-size: 1.5rem;
    }

    .team-card {
        padding: 15px;
    }

    .services li {
        font-size: 0.9rem;
    }
}

@media (max-width: 280px) {
    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-content p,
    .about p,
    .services li {
        font-size: 0.8rem;
    }
}
.achievements {
    padding: 40px 20px;
    background: linear-gradient(to right, #e3ffe7, #d9e7ff);
    text-align: center;
}

.achievements h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.achievements p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.achievement-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
}

.stat h3 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1rem;
    color: #333;
}

#backToTop {
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#backToTop:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .achievement-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .achievements h2 {
        font-size: 1.5rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 280px) {
    .achievements h2 {
        font-size: 1.2rem;
    }

    .stat {
        min-width: 100px;
        padding: 10px;
    }

    .stat h3 {
        font-size: 1.2rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    #backToTop {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}
/* Operations Section Styles */
.operations {
    padding: 40px 20px;
    background: linear-gradient(to right, #dff9fb, #c7ecee);
    text-align: center;
}

.operations h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.operations p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.office-locations {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.office {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-width: 200px;
    max-width: 300px;
}

.office h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.office p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .achievement-stats,
    .office-locations {
        flex-direction: column;
        align-items: center;
    }

    .stat, .office {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .achievements h2,
    .operations h2 {
        font-size: 1.5rem;
    }

    .stat h3,
    .office h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 280px) {
    .achievements h2,
    .operations h2 {
        font-size: 1.2rem;
    }

    .stat, .office {
        min-width: 100px;
        padding: 10px;
    }

    .stat h3,
    .office h3 {
        font-size: 1.2rem;
    }

    .stat p,
    .office p {
        font-size: 0.8rem;
    }

    #backToTop {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}