* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 120px; 
}

.top-bar {
    background-color: #124a2f;
    color: white;
    padding: 10px 0;
    font-size: 15px;
}

.top-flex-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-group {
    display: flex;
    gap: 30px;
}

.top-items {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-items img {
    width: 35px;
    height: auto;
}

.top-social img {
    width: 35px;
    height: auto;
    transition: 0.3s;
    cursor: pointer;
}

.CU {
    background-color: #2a7d2e;
    color: #f8f6f6;
    border-radius: 20px;
    padding: 8px 25px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.CU:hover {
    background-color: #1e5a21; 
}

.head-2 {
    display: flex;
    justify-content: space-between;
}

.logo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 80px;
    list-style: none;
    margin-right: 5%;
    text-decoration: none;
}

.logo-banner-left {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10%;
}

.logo-banner img {
    width: 50px;
}

.logo {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    max-width: 550px;
}

.logo-banner ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.logo-banner ul li {
    cursor: pointer;
    list-style: none;
}

.logo-banner ul li a {
    text-decoration: none;
    color: black;
}

.hero {
    background-image: url('banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
}

.hero-text h1 {
    color: white;
    font-size: 40px;
    max-width: 750px;
    margin-bottom: 10px;
    margin-top: 150px;
}

.hero button {
    background-color: #2a7d2e;
    color: white;
    border-radius: 30px 30px;
    padding: 18px 40px;
    cursor: pointer;
    border: none;
    font-size: 17px;
    transition: all 0.3s ease;
    margin-left: 30%;
}

button:hover {
    background-color: #1e5a21; 
}

/*services*/

.services-section {
    position: relative;
    z-index: 10;
    margin-top: -120px;
    padding-bottom: 50px;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-floating-card {
    background: #ffffff;
    border-radius: 50px;
    padding: 60px 40px;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.services-header h1 {
    color: #2d7a32;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 1px;
}

.services-header p {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 50px;
}

/* Cards */
.service-box {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

/* Icon */
.card-icon img {
    width: 90px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 18px;
    color: #124a2f;
    font-weight: 400;
    margin-bottom: 8px;
}

.card p {
    font-size: 12px;
    color: #0c0c0c;
    margin-bottom: 25px;
}

/* Read More Button */
.btn-read {
    background-color: #2d7a32;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.text-center {
    text-align: center;
}

/* MAINTENANCE SECTION */
.maintenance-section {
    position: relative;
    z-index: 10;
    background-color: #faf8f5;
    height: 600px;
    display: flex;
}

.white-card-wrapper {
    background: white;
    width: 80%;
    margin: auto;
    border-radius: 60px;
    padding: 60px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.section-header h2 {
    color: #124a2f;
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.section-header .subtitle {
    color: black;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.m-item img {
    width: 55px;
    margin-bottom: 20px;
}

.m-item h4 {
    color: #124a2f;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.m-item p {
    color: black;
    font-size: 13px;
    line-height: 1.5;
}

.maintenance-footer p {
    margin-bottom: 20px;
    font-size: 15px;
    color: black;
}

/* DESIGN SECTION */
.design-section {
    padding: 80px 0;
    background-color: white;
}

.design-desc {
    max-width: 650px;
    margin: 0 auto 50px auto;
    color: black;
    font-size: 15px;
    line-height: 1.6;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.d-item h4 {
    color: #124a2f;
    font-size: 19px;
    margin-bottom: 15px;
}

.d-item p {
    color: #777;
    font-size: 14px;
}

/* BUTTON DESIGN */
.btn-green {
    background-color: #2d7a32;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.design-footer p {
    margin-bottom: 20px;
    color: black;
}

.text-center {
    text-align: center;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.gallery-title {
    color: #12412f;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* GRID CONTAINER */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.btn-green {
    background-color: #2d7a32;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ABOUT US */
.about-section {
    padding: 100px 0;
    background-color: #faf8f5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.about-main-title {
    color: #124a2f;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 20px;
    color: black;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.gardener-name {
    font-size: 14px;
    color: black;
    margin-left: 30px;
}

.about-content p {
    color: black;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.about-content strong {
    color: #222;
    font-weight: 700;
}

.about-title-box {
    margin-top: 30%;
}

/* FOOTER */
.site-footer {
    background-image: url(footer.png);
    position: relative;
    padding-top: 100px;
    color: white;
    background-size: cover;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    margin-top: 100px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    margin-top: 80px;
}

.footer-logo p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 25%;
}

.footer-logo {
    display: flex;
    justify-content: space-evenly;
}

.footer-social-icons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.footer-social-icons i {
    font-size: 22px;
    color: white;
}

.footer-nav {
    list-style: none;
    text-align: center;
    margin-top: 50px;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.map-container img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.footer-bottom {

    text-align: center;
    padding: 15px 0;
    font-size: 13px;
}