/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f8fc;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
}

/* NAVBAR */
.logo img {
    height: 50px;   /* adjust size */
    width: auto;
}
.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* HERO */
/* HERO SECTION - UPDATED */
/* HERO SECTION - GREEN THEME */
.hero {
    background: linear-gradient(135deg, #0f3d2e 0%, #1f7a63 50%, #3bd4a7 100%);
    padding: 80px 0;
    color: #fff;
}

/* WRAPPER */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

/* HIGHLIGHT WORD */
.hero-text h1 span {
    color: #7fffd4; /* light green highlight */
}

/* PARAGRAPH */
.hero-text p {
    margin: 20px 0;
    color: #d8f5ec;
    font-size: 15px;
    max-width: 500px;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #2ecc71;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

/* About */

/* ABOUT SECTION */
.about {
    padding: 80px 0;
    background: #ffffff;
}

/* WRAPPER */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CONTENT */
.about-content {
    flex: 1;
}

/* SUBTITLE */
.about-content .subtitle {
    color: #2ecc71;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* TITLE */
.about-content h2 {
    font-size: 32px;
    margin: 10px 0 20px;
    color: #0f3d2e;
}

/* TEXT */
.about-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

/* BUTTON (reuse your existing .btn) */

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
}
.products {
    padding: 80px 0;
    background: #f3fbf7;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: #2ecc71;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 32px;
    color: #0f3d2e;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TEXT */
.product-card h4 {
    color: #0f3d2e;
    font-size: 16px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 13px;
    color: #666;
}

/* HOVER */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}
/* SERVICES */
.services {
    padding: 70px 0;
    background: #f3fbf7; /* light green background */
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #0f3d2e;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
    border: 1px solid rgba(46, 204, 113, 0.15);
}

/* ICON */
.card i {
    font-size: 30px;
    color: #2ecc71; /* green icon */
    margin-bottom: 15px;
}

/* TITLE */
.card h3 {
    color: #0f3d2e;
    margin-bottom: 10px;
}

/* TEXT */
.card p {
    color: #666;
    font-size: 14px;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
}

/* WHY */
/* SECTION BACKGROUND */
.why {
    background: #f3fbf7; /* light green */
    padding: 80px 0;
    text-align: center;
}

/* HEADER */
.why-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.why-header .subtitle {
    font-size: 12px;
    color: #2ecc71; /* green */
    letter-spacing: 2px;
    font-weight: 600;
}

.why-header h2 {
    font-size: 32px;
    margin: 10px 0;
    font-weight: 600;
    color: #0f3d2e; /* dark green */
}

.why-header p {
    font-size: 14px;
    color: #5f7f73;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOX */
.why-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

/* ICON */
.why-box i {
    font-size: 28px;
    color: #2ecc71; /* green icon */
    margin-bottom: 15px;
}

/* TITLE */
.why-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f3d2e;
}

/* TEXT */
.why-box p {
    font-size: 14px;
    color: #5f7f73;
}

/* HOVER EFFECT */
.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
/* FOOTER MAIN */
.footer {
    background: linear-gradient(135deg, #0f3d2e, #1f7a63); /* green gradient */
    color: #ffffff;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

/* GRID LAYOUT */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* HEADINGS */
.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #d8f5ec; /* soft green text */
}

/* ICONS */
.footer-col i {
    margin-right: 30px;
    color: #2ecc71; /* green icons */
}

/* ALIGNMENT */
.footer-col {
    text-align: left;
}

/* FOOTER BOTTOM */
/* 90% WIDTH CONTAINER */
.container-90 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
}

/* FLEX ALIGNMENT */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* SOCIAL ICONS */
.socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    background: #2ecc71;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom p {
    color: #c8f2e3;
    font-size: 14px;
}

/* MOBILE FIX */
@media (max-width: 576px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}
/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}