:root {
    --green-950: #3ea67d;
    --green-900: #52b98f;
    --green-800: #68c99f;
    --green-700: #7fd7ae;
    --green-500: #9ae6c4;
    --green-100: #ddf9ec;
    --surface: #ffffff;
    --text: #103128;
    --muted: #55776a;
    --line: #cde8dc;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: linear-gradient(130deg, #e4f9ee 0%, #f4fff9 38%, #ddf5e9 100%);
    min-height: 100vh;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 10%, rgba(17, 162, 109, 0.17), transparent 32%),
        radial-gradient(circle at 82% 10%, rgba(10, 122, 85, 0.14), transparent 36%),
        radial-gradient(circle at 50% 95%, rgba(42, 199, 139, 0.1), transparent 32%);
    pointer-events: none;
    z-index: -1;
}

.page-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #1f3d2b;
    margin-bottom: 20px;
}



.site-header {
    background: transparent;
}

.site-brand-link {
    color: #0d3f2e;
}

.site-brand-link:hover {
    color: #0d3f2e;
}

.site-nav {
    background: linear-gradient(120deg, #2E7D32 0%, #1B5E20 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.25);
}

.brand-name {
    font-family: "Sora", sans-serif;
    letter-spacing: 0.02em;
    font-size: 2rem;
}

.brand-badge {
    background: #9ef4cb;
    color: #033828;
    font-weight: 800;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}





.navbar-nav {
    gap: 0.55rem;
    flex-wrap: wrap;
    row-gap: 0.45rem;
}

.navbar-nav .nav-link {
    color: #ffffff;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 1.02rem;
    padding: 0.64rem 0.94rem;
    border-radius: 0.62rem;
    text-align: center;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* GLOBAL HERO FIX FOR ALL PAGES */
.global-hero-wrapper{
    margin-top: 5px ;    
    padding: 0;
    margin-bottom: 5px; !important;
}
 


.global-hero-frame{
    margin: 0 auto;
}



/* IMAGE */
.global-hero-frame img{
    width: 100%;
    height: auto;      /* important */
    max-height: 340px; /* optional limit */
    display: block;
    border-radius: 28px;
}


.hero-slider img {
    height: 340px;
    object-fit: cover;
}

.carousel-caption {
    background: linear-gradient(100deg, rgba(4, 51, 38, 0.9), rgba(4, 51, 38, 0.3));
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.2rem 1.4rem;
}

.carousel-caption h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
}

.solution-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.solution-card .row img {
    height: 90px;
}


.solution-card {
    padding: 1rem;
}

.hero-wrap .row {
    align-items: stretch;
}

.hero-slider,
.quick-aside {
    height: 100%;
}

.quick-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.quick-aside {
    background: #f9fbfa;
    border-radius: 10px;
}

/* Titles */
.aside-title {
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}


.aside-subtitle {
    font-family: "Sora", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1e5f4a;   /* stronger green */
}

/* Why List */
.why-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.why-list li {
    margin-bottom: 8px;
    color: #2f3e46;
    font-size: 14px;
}

/* Divider */
.aside-divider {
    margin: 20px 0;
    opacity: 0.2;
}

/* =========================
   KEY SERVICES – CLEAN & BALANCED
========================= */

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 2-column clean layout */
    gap: 12px;
}

.service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;              /* fixed compact height */
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: #eaf7f1;       /* lighter refined tone */
    color: var(--green-950);
    border: 1px solid var(--line);
    transition: all 0.25s ease;
}

.service-badge:hover {
    background: var(--green-900);
    color: #ffffff;
    transform: translateY(-2px);
}


/* Highlighted badge */
.service-badge.highlight {
    background: linear-gradient(120deg, var(--green-900), var(--green-700));
    color: #ffffff;
}
}

/* News List */
.news-list {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

.news-list li {
    margin-bottom: 8px;
    color: #344e41;
}

.quick-aside,
.news-aside,
.contact-card,
.contact-form,
.service-card,
.solution-card,
.program-item,
.product-row {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
}

.quick-aside,
.news-aside,
.service-card,
.solution-card,
.contact-card {
    box-shadow: 0 14px 30px rgba(4, 46, 36, 0.08);
}

.quick-aside li,
.news-aside li {
    padding: 0.55rem 0;
    border-bottom: 1px dashed #d6ebe1;
}

.quick-aside li:last-child,
.news-aside li:last-child {
    border-bottom: 0;
}

.section-title {
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    margin-bottom: 1.3rem;
}

.muted {
    color: var(--muted);
}

.news-aside h5,
.news-aside h6 {
    font-family: "Sora", sans-serif;
}

.news-date {
    color: var(--green-700);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.18rem;
}

.chip {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background-color: var(--green-100);
    color: var(--green-900);
    font-weight: 700;
    font-size: 0.82rem;
}

.btn-success {
    background: transparent;
    border: 1px solid var(--green-900);
    color: var(--green-900);
}

.btn-success:hover {
    background: var(--green-900);
    color: #ffffff;
}



.btn-success:hover,
.btn-success:focus {
    background: linear-gradient(120deg, var(--green-900), var(--green-700));
    border-color: transparent;
}

.product-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.price-tag {
    font-weight: 800;
    color: var(--green-800);
    white-space: nowrap;
}

.form-control:focus {
    border-color: #95d7bc;
    box-shadow: 0 0 0 0.15rem rgba(28, 138, 101, 0.2);
}

/* =========================
   Minimal Subtle Footer
   ========================= */

.site-footer {
    background: linear-gradient(120deg, #2E7D32 0%, #1B5E20 100%);
    color: rgba(255, 255, 255, 0.65);   /* Softer white */
    font-size: 0.9rem;                 /* Smaller text */
    padding: 1.8rem 0;
}

/* Footer headings – slightly stronger but still subtle */
.site-footer h6 {
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
}

/* Paragraph & normal text */
.site-footer p,
.site-footer .small,
.site-footer div {
    font-size: 0.85rem !important;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer links */
.site-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-right: 8px;
}

/* ===============================
   PRODUCT ROW
================================= */

.product-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
}


.product-row:hover {
    transform: translateY(-3px);
}

/* ===============================
   PRODUCT IMAGE
================================= */

.product-image img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

/* ===============================
   PRODUCT INFO
================================= */

.product-info h5 {
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.product-info p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* More details link */
.product-link {
    font-size: 0.85rem;
    color: var(--green-900);
    text-decoration: none;
    font-weight: 600;
}

.product-link:hover {
    text-decoration: underline;
}

/* ===============================
   PRICE TAG
================================= */

.price-tag {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green-950);
    white-space: nowrap;
}


.news-ticker-wrapper {
    background: #1f7a4c;
    color: #fff;
    overflow: hidden;
}

.news-ticker {
    display: flex;
    align-items: center;
}

.news-label {
    background: #145c37;
    padding: 10px 18px;
    font-weight: bold;
    white-space: nowrap;
}

.news-scroll {
    overflow: hidden;
    flex: 1;
}

.news-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
}

.news-track span {
    margin-right: 60px;
    font-size: 15px;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}



@media (max-width: 1199.98px) {
    .navbar-nav {
        justify-content: center;
    }

    .navbar-nav .nav-link {
        padding: 0.56rem 0.74rem;
        font-size: 0.96rem;
        display: inline-block;
    }
}

@media (max-width: 991.98px) {
    .hero-slider img {
        height: 340px;
    }

    .product-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-name {
        font-size: 1.65rem;
    }

   
	.site-brand-link {
    color: #ffffff;
}

.site-brand-link:hover {
    color: #e6fff3;
}



