/* Global Styles */
/* Global Styles */
:root {
    --primary-color: #87A987;
    --text-color: #333;
    --white: #fff;
    --beige: #F4F1EA;
    --button-hover: #6E8E6E;
}   

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Top Header */
.top-header {
    background-color: #87A987;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.top-header .social-icons i {
    font-size: 18px;
    color: white;
    margin-left: 10px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--beige);
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar__logo {
    display: flex;
    align-items: center;
}
.navbar__logo a {
    font-size: 28px;
    font-weight: bold;
    color: #87A987;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar__logo .logo {
    width: 100px;
    height: 75px;
    margin-right: 10px;
}

.navbar__menu {
    display: flex;
    list-style: none;
}

.navbar__menu li {
    padding: 10px 15px;
}

.navbar__menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar__menu a:hover {
    color: var(--primary-color);
}

.navbar__toggleBtn {
    display: none;
}


/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 20px;
    background-color: #fafafa;
}

.about-content {
    flex: 1;
    min-width: 250px;
    padding: 15px;
}

.about-content h2,
.services h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 22px;
    color: #87A987;
}

.about-content p {
    margin: 20px 0;
    font-size: 16px;
}

.about-content .btn {
    display: inline-block;
    background-color: #87A987;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.about-content .btn:hover {
    background-color: #6E8E6E;
}

.about-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 20px;
    text-align: center;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer .social i {
    font-size: 18px;
    margin: 0 10px;
    color: white;
}
