*{
    margin: 0;
    padding: 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    
    width: 100vw;
    height: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.Name {
    font-size: 24px;
    font-weight: bold;
    color: #ddd;;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-buttons button {
    background: none;
    border: none;
    font-size: 16px;
    color: #ddd;
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-buttons button:hover {
    color: #007bff;
}
/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 40px;
    color: #007b55; /* Evergreen green */
    margin-bottom: 15px;
}

.service-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-card ul li {
    margin-bottom: 10px;
    color: #444;
}

.cta-btn {
    display: inline-block;
    background: #007b55;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #005f3a;
}






.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 20px 20px;
   
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
}

.footer-left h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.footer-social a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}