/* --- COLOR & VARIABLE DICTIONARY --- */
:root {
    --primary-green: #033a4b;   /* Brilliant branding brand green */
    --dark-green: #1f8e4b;      /* Deep forest title green */
    --light-green: #E4F2EB;     /* Soft curve green background layer */
    --text-dark: #0A3221;
    --text-muted: #5F746A;
    --brand-bg-grey:#f8f9fa;
    --white: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Incorrect: This can break icon fonts */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
}
/* --- RESET & BASIC DECORATION --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- HEADER / NAVIGATION SYSTEM --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 7%;
    background-color: var(--white);
    position: relative;
    z-index: 100;
}

.logo {
    position: absolute;
    left: 2rem; /* Matches your layout margin/padding from the left edge */
    top: 50%;
    transform: translateY(-50%); /* Keeps it perfectly centered vertically */
    z-index: 10; /* Ensures it stays on top of background layers */
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.brand-logo-img {
   padding-top: 20px;
    height: 115px;
    width: auto;  /* Maintains aspect ratio automatically to prevent stretching */
    display: block;
    
    object-fit: contain;
}

.navbar {
    margin-left: 180px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green);
}

/* NAVIGATION DROPDOWN ARCHITECTURE */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    min-width: 240px;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(11, 60, 38, 0.12);
    border: 1px solid rgba(10, 126, 69, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 200;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: var(--light-green);
    color: var(--dark-green);
}
/* Target desktop screens only to prevent breaking mobile tap states */
@media (min-width: 992px) {
    /* 1. Ensure the parent container can anchor the absolute dropdown */
    .nav-item-dropdown {
        position: relative;
    }

    /* 2. Show the dropdown menu when hovering over the parent wrapper */
    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0; /* Aligns smoothly under the link */
    }
}

/* Force the hamburger menu to stick to the far right edge */
.menu-toggle {
    margin-left: auto; /* This acts as an elastic spacer, pushing the icon all the way to the right */
    cursor: pointer;
    z-index: 11;       /* Keeps it clickable and above hidden layers */
}
@media (max-width: 991px) {
    /* Target the container that drops down or slides in when toggled */
    .navbar {
        position: absolute;
        top: 100%;          /* Sits perfectly right beneath the header bar */
        left: 0;            /* Pulls the menu alignment all the way to the left boundary */
        width: 100%;        /* Forces it to stretch completely across the mobile screen */
        background-color: #022c3d; /* Matches your brand identity color */
        
        /* Reset the desktop left margin we added earlier */
        margin-left: 0 !important; 
        
        /* Stack links vertically on small screens */
        display: flex;
        flex-direction: column;
        padding: 20px !important;
        
        /* Ensure it sits cleanly on top of underlying body sections */
        z-index: 999; 
    }

    /* Clean vertical spacing for your mobile menu items */
    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--dark-green);
    color: var(--white);
    border: 1px solid var(--dark-green);
}

.btn-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--light-green);
}

.btn-icon i {
    margin-left: 8px;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-green);
    cursor: pointer;
}

/* --- HERO HERO CONTENT DESIGN --- */
.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-green {
    color: var(--primary-green);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.65;
}

/* --- FEATURES LAYOUT --- */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    color: var(--dark-green);
    font-size: 1.4rem;
    margin-top: 2px;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- RIGHT SIDE GRAPHICS & CRESCENT BACKGROUND --- */
.hero-graphics-col {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.curve-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-green);
    border-top-left-radius: 75% 100%;
    z-index: 1;
}

.image-wrapper {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
}

/* --- HIGH-FIDELITY RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.4rem;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 20px 5%;
    }
    .brand-logo-img {
        height: 75px;
    }
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 5%;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 300;
        gap: 15px;
    }
    .navbar.active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        padding: 6px 0;
    }
    .header-cta {
        display: none !important;
    }
    .menu-toggle {
        display: block;
    }

    /* Mobile Dropdown Mechanics */
    .nav-item-dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
        display: none;
        background-color: var(--light-green);
        border-radius: 8px;
        margin-top: 8px;
    }
    .nav-item-dropdown.open .dropdown-menu {
        display: block;
    }
    .nav-item-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Mobile Context Layout Flip (Text on top, Graphic underneath) */
    .hero-graphics-col {
        min-height: 500px;
    }
    .curve-bg {
        width: 100%;
        border-radius: 40px 40px 0 0;
    }
    .image-wrapper {
        height: 500px;
        justify-content: center !important;
    }
    .main-img {
        object-position: center bottom;
        width: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    .hero-graphics-col {
        min-height: 300px;
    }
   .image-wrapper {
        height: 380px;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .image-wrapper img{
        margin-top: 0 !important;
        padding-top: 0 !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/*2ndsection*/
/* --- BRAND METRICS SECTION ARCHITECTURE --- */
.brand-metrics-section {
    background-color: var(--primary-green);
    padding: 35px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.metrics-row {
    max-width: 1400px;
    margin: 0 auto !important;
}

.metric-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 15px;
    width: 100%;
}

.metric-icon-wrap {
    font-size: 2.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.95;
}

.metric-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-text-content h4 {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.metric-text-content p {
    font-family: var(--font-main);
    color: var(--light-green);
    font-size: 0.88rem;
    font-weight: 400;
    margin: 3px 0 0 0;
    opacity: 0.85;
    line-height: 1.2;
}

/* Vertical Thin White Divider Implementation */
.metric-col {
    position: relative;
}

@media (min-width: 992px) {
    .metric-col:not(.last-metric)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.25);
    }
}

/* Responsive Overrides across all device break-points */
@media (max-width: 991px) {
    .brand-metrics-section {
        padding: 40px 0;
    }
    .metric-block {
        justify-content: flex-start;
        padding-left: 10%;
    }
}

@media (max-width: 576px) {
    .metric-block {
        padding-left: 5%;
        gap: 15px;
    }
    .metric-icon-wrap {
        font-size: 1.9rem;
    }
    .metric-text-content h4 {
        font-size: 0.95rem;
    }
    .metric-text-content p {
        font-size: 0.82rem;
    }
}

/* --- OUR SOLUTIONS SECTION ARCHITECTURE --- */
.solutions-section {
    padding: 15px 0;
   /* background-color: #fbfdfc; *//* Clean off-white background to make white cards pop */
    width: 100%;
}

.section-title {
    font-size: 2.8rem;
    color: #1f8e4b;
    letter-spacing: -0.5px;
    margin: 0;
}
.section-title .h5 {
    font-size: 18px;
     color: #1f8e4b!important;
    
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.5;
    margin: 0;
}

/* --- VIEW ALL PRODUCTS CUSTOM BUTTON --- */
.btn-outline-view {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid rgba(3, 49, 68, 0.4);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-outline-view:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* --- 5-COLUMN UTILITY BREAKPOINT FOR LARGE SCREENS --- */
@media (min-width: 1200px) {
    .col-lg-2-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* --- SOLUTION CARDS DESIGN ENGINE --- */
.solution-card {
    background-color: var(--white);
    border: 1px solid rgba(10, 126, 69, 0.06);
    border-radius: 16px;
    padding: 10px 15px;
    box-shadow: 0 4px 20px rgba(11, 60, 38, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 60, 38, 0.08);
    border-color: rgba(26, 139, 73, 0.15);
}

.solution-icon {
    font-size: 3.5rem;
    color: var(--dark-green);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    transform: scale(1.05);
}

.solution-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.3;
    margin-bottom: 15px;
    min-height: 3rem; /* Ensures alignment match when titles break onto lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

/* --- HIGH-FIDELITY RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 991px) {
    .solutions-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .solution-card {
        padding: 30px 15px;
    }
}

@media (max-width: 767px) {
    .text-md-end {
        text-align: left !important;
    }
    .btn-outline-view {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    .solution-card-title {
        min-height: auto;
    }
}
.packaging-icon{
    font-size: 45px;
    color: #2f9e44;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    background: #fff;
    transition: 0.3s;
}

.packaging-icon:hover{
    transform: translateY(-5px);
}
/* --- ABOUT US SECTION ARCHITECTURE --- */
.about-us-section {
    padding: 15px 0;
    background-color: var(--white);
    width: 100%;
}

/* --- TOP BANNER LAYOUT CARD --- */
.about-banner-card {
    background-color: #F3F7F5; /* Very soft light green/gray custom background tint */
    border-radius: 24px;
    overflow: visible; /* Allows the badge element to peek out safely */
    padding: 30px;
}

.about-banner-card .media-col {
    padding-right: 35px;
}

.about-banner-card .content-col {
    padding: 20px 40px;
}

/* Video Thumbnail System */
.video-thumbnail-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail-wrapper:hover .video-img {
    transform: scale(1.03);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(10, 126, 69, 0.2);
    transition: var(--transition);
    padding-left: 4px; /* Realigns visual balance inside circles */
}

.video-thumbnail-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--dark-green);
    color: var(--white);
}

/* Floating Eco Badge Component */
.eco-badge {
    position: absolute;
    bottom: 60px;
    right: 1px;
    z-index: 5;
    background: var(--white);
    border: 1.5px solid var(--dark-green);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.badge-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.badge-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.1;
}

.badge-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.badge-leaf {
    position: absolute;
    bottom: -16px;
    right: -12px;
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 0.65rem;
    padding: 5px;
    border-radius: 50%;
    transform: rotate(-15deg);
}

/* Banner Text Controls */
.about-banner-title {
    font-size: 2.4rem;
    color: var(--primary-green);
}

.about-banner-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-know-more:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* --- BOTTOM DETAILS BLOCK --- */
.details-main-title {
    font-size: 2.2rem;
    color: var(--primary-green);
}

.details-paragraph {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Split Line Layout Divider */
.features-border-left {
    border-left: 2px solid #1f8e4b;
    padding-left: 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkmark-list li {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2b3d34;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkmark-list li:last-child {
    margin-bottom: 0;
}

.checkmark-list li i {
    color: var(--dark-green);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* --- RESPONSIVE MEDIA CONSTRAINTS --- */
@media (max-width: 1200px) {
    .about-banner-card .content-col {
        padding: 15px 10px;
    }
}

@media (max-width: 991px) {
    .about-us-section {
        padding: 60px 0;
    }
    .about-banner-card {
        padding: 24px;
    }
    .about-banner-card .media-col {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .about-banner-title {
        font-size: 2rem;
    }
    .features-border-left {
        border-left: none;
        padding-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .about-banner-card {
        padding: 16px;
    }
    .eco-badge {
        width: 90px;
        height: 90px;
        bottom: 5px;
        right: 0;
    }
    .badge-title {
        font-size: 1rem;
    }
    .badge-sub {
        font-size: 0.65rem;
    }
    .details-main-title {
        font-size: 1.8rem;
    }
    .checkmark-list li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}
/* --- METRICS RIBBON CORE ENGINE --- */
.metrics-ribbon-section {
    background-color: #1a8b49; /* Matching your solid deep green theme backdrop */
    padding: 30px 0;
    width: 100%;
}

.metrics-flex-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

/* Individual Data Blocks */
.metric-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 15px;
}

/* Built-in high-performance layout line dividers */
.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.35); /* Crisp semi-opaque white dividing rules */
}

/* Numerical styling */
.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

/* Text label styling */
.metric-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

/* --- HIGH-FIDELITY RESPONSIVE VIEWPORT BREAKPOINTS --- */

/* Tablets / Medium Displays */
@media (max-width: 991px) {
    .metrics-flex-wrapper {
        flex-wrap: wrap; /* Permits safe row breakdown to prevent crushing labels */
        justify-content: center;
        gap: 20px 0;
    }
    
    .metric-item {
        flex: 0 0 33.333%; /* Creates a balanced 3-column top grid split */
    }
    
    /* Safely realigns divider walls for the 3-column wrap */
    .metric-item:nth-child(3)::after,
    .metric-item:last-child::after {
        display: none;
    }
    
    .metric-number {
        font-size: 2.2rem;
    }
}

/* Small Screens / Mobile Devices */
@media (max-width: 576px) {
    .metrics-ribbon-section {
        padding: 40px 0;
    }
    
    .metric-item {
        flex: 0 0 50%; /* standardizes cleanly to 2 columns wide */
    }
    
    /* Drops old structural rules to support stacked blocks gracefully */
    .metric-item::after {
        display: none !important;
    }
    
    /* Pushes full length scale on odd trailing final column item */
    .metric-item:last-child {
        flex: 0 0 100%;
        margin-top: 10px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
}


/* --- INDUSTRIES WE SERVE ENGINE --- */
.industries-section {
    padding: 15px 0;
    background-color: #ffffff;
    width: 100%;
}

.industries-main-title {
    font-size: 2.2rem;
    color: var(--primary-green, #033144);
    letter-spacing: -0.5px;
}

/* Horizontal Aligning Setup for Desktop Viewports */
@media (min-width: 1200px) {
    .industries-grid {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        max-width: 1400px;
        margin: 0 auto;
    }
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition, all 0.3s ease);
}

.industry-item:hover {
    transform: translateY(-3px);
}

.industry-icon {
    font-size: 2rem;
    color: #1a8b49; /* Matching brand accent green */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #033144; /* Dark corporate contrast blue-teal text */
    line-height: 1.25;
}

.font-uppercase {
    text-transform: uppercase;
}

/* --- RESPONSIVE MEDIA CONSTRAINTS --- */
@media (max-width: 1199px) {
    .industry-item {
        background-color: #f8faf9;
        padding: 15px;
        border-radius: 10px;
        height: 100%;
    }
}

@media (max-width: 575px) {
    .industry-item {
        gap: 10px;
        padding: 12px 10px;
    }
    .industry-icon {
        font-size: 1.6rem;
    }
    .industry-label {
        font-size: 0.85rem;
    }
}
@media (max-width: 575px) {

    .industries-grid{
        display: flex;
        flex-direction: column;
        gap: 12px;

    }

    .industry-item{
        width: 100%;
        padding: 12px;
    }

    .industries-main-title{
        font-size: 1.6rem;
        text-align: center;
    }

}

/* --- LATEST NEWS & CTA ROW SYSTEM --- */
.news-cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    width: 100%;
}

/* Forces equal height across the columns on modern screens */
.feature-card-height {
    height: 100%;
    min-height: 250px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-height:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* --- CARD 1: LATEST NEWS SPECIFICS --- */
.news-card {
    background-color: #F8FAF9; /* Soft ash gray/green tone drop */
    padding: 30px 24px;
}

.card-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #033144; /* Corporate brand primary dark slate blue */
    margin: 0;
}

.news-img-wrapper img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.news-meta {
    font-size: 0.78rem;
    color: #8fa399;
    font-weight: 500;
    margin-bottom: 4px;
}

.news-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #033144;
    line-height: 1.4;
    margin-bottom: 0;
}

.card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a8b49; /* Forest green link */
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border-bottom: 1.5px solid #1a8b49;
    padding-bottom: 2px;
}

.card-link-btn:hover {
    color: #0c5c2d;
    border-color: #0c5c2d;
}

/* --- CARD 2: PRIMARY GREEN CTA CARD --- */
.cta-primary-card {
    background-color: #01382b; /* Rich dark evergreen premium backdrop filled block */
    padding: 35px 30px;
}

.cta-main-heading {
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.cta-sub-paragraph {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    background-color: #1a8b49; /* Solid accent launch control green */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-cta-white:hover {
    background-color: #136b37;
    color: #ffffff;
}

/* --- CARD 3: BRAND SHOWCASE SPECIFICS --- */
.showcase-brand-card {
    background-color: #F8FAF9;
}

/* Reset default card padding behaviors for full column images split */
.showcase-brand-card .p-4 {
    padding: 30px 0 30px 24px !important;
}

.brand-display-logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a8b49;
    letter-spacing: -0.5px;
    margin: 0;
}

.text-accent-leaf {
    color: #4baf73;
}

.brand-tagline {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a8b49;
    margin-top: 2px;
}

.brand-description {
    font-size: 0.9rem;
    color: #5c6e65;
    line-height: 1.45;
}

/* Absolute Positioning Layout Engine for Mockup Bag Image placement */
.showcase-mockup-img {
    position: absolute;
    bottom: -10px;
    right: -10px;
    height: 110%;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

/* --- REVOLUTIONARY DEVICE RESPONSIVITY ADAPTATION --- */
@media (max-width: 991px) {
    .feature-card-height {
        min-height: auto;
    }
    
    .showcase-brand-card .p-4 {
        padding: 24px !important;
    }
    
    .showcase-mockup-img {
        height: 90%;
        bottom: 0;
        right: 0;
    }
}

@media (max-width: 575px) {
    .news-card, .cta-primary-card {
        padding: 24px 20px;
    }
    
    .cta-main-heading {
        font-size: 1.35rem;
    }
    
    /* Splits the inner news image on narrow cellphones gracefully */
    .news-content-box .row {
        flex-direction: column;
    }
    .news-content-box .col-5, 
    .news-content-box .col-7 {
        width: 100%;
    }
    
    .news-img-wrapper img {
        aspect-ratio: 16 / 9;
        margin-bottom: 10px;
    }
}

/*footer*/
/* --- BRAND FOOTER ENGINE --- */
.ips-site-footer {
    background-color: #022c3d; /* Dark corporate teal backdrop matching brand layouts */
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.footer-main-content {
    padding-bottom: 40px;
}

/* Stylized Logo Typography */
.footer-logo-text {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.5px;
}

.footer-logo-text sup {
    font-size: 0.9rem;
    top: -1em;
    font-weight: 500;
}

.footer-company-name {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    line-height: 1.3;
    margin-top: 4px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 260px;
}

/* Nav Headers */
.footer-nav-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

/* Link Lists styling */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav-list li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Contact Block Configuration */
.footer-contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.contact-icon-wrapper {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text-node {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

a.contact-text-node:hover {
    color: #ffffff;
}

/* Social Media Handles */
.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-circle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #022c3d;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.social-circle-icon:hover {
    background-color: #1a8b49; /* Transitions cleanly to brand accent green */
    color: #ffffff;
}

/* --- COPYRIGHT SOCKET BAR SPECIFICS --- */
.footer-bottom-socket {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 10px;
}

.copyright-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.legal-socket-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.legal-socket-links a:hover {
    color: #ffffff;
}

.socket-divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
    font-size: 0.8rem;
}

/* --- RESPONSIVE ADAPTATION ARCHITECTURE --- */
@media (max-width: 991px) {
    .footer-main-content {
        gap: 30px 0;
    }
    
    .brand-profile-column {
        padding-right: 40px;
    }
}

@media (max-width: 575px) {
    .ips-site-footer {
        padding: 45px 0 25px 0;
    }
    
    .footer-nav-title {
        margin-bottom: 12px;
    }
    
    .brand-profile-column,
    .contact-info-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 25px;
    }
    
    .footer-brand-desc {
        max-width: 100%;
    }
}


/*homepageheaderend*/
/* --- ABOUT PAGE HERO BANNER ENGINE --- */
.about-hero-banner {
    background-color: #f7faf8; /* Soft green-tinted neutral background matching brand palette */
    min-height: 340px;
    display: flex;
    align-items: center;
}

/* Structural internal spacing controls */
.about-banner-text-col {
    padding: 60px 40px 60px 8%; /* Creates wide breathing room on wide screens */
    z-index: 5;
}

.banner-badge-text {
    color:#1f8e4b;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.about-banner-title {
    font-size: 2.5rem;
    line-height: 1.25;
    color: #033144; /* Signature primary deep brand corporate blue-teal */
    letter-spacing: -0.5px;
}

.about-banner-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
}

/* Custom Geometric Mask Layer Generation */
.about-banner-graphic-col {
    height: 340px;
    overflow: hidden;
}

.about-banner-img-frame {
    position: relative;
    height: 100%;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* The Left-Facing Curved Wave Mechanism */
.mask-curve-divider {
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 80px; /* Width of the curve transition workspace */
    background-color: transparent;
    z-index: 4;
    border-radius: 100% 0 0 100% / 50% 0 0 50%; /* Generates a smooth organic ellipsis curve arc */
    box-shadow: -40px 0 0 0 #f7faf8; /* Expands the background color outward to mask images */
}

/* --- MOBILE & VIEWPORT SCALE ADAPTATIONS --- */
@media (max-width: 991px) {
    .about-banner-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767px) {
    .about-hero-banner {
        min-height: auto;
        background-color: #ffffff;
    }
    
    .about-banner-text-col {
        padding: 40px 24px !important;
    }
    
    .about-banner-graphic-col {
        height: 220px; /* Constrained image height profile specifically optimized for smartphone screens */
    }
    
    /* Adds subtle rounding directly onto the graphic block on mobile instead of using a sharp cut */
    .about-banner-img-frame {
        border-radius: 0 0 24px 24px;
        overflow: hidden;
    }
}

/* --- BRAND STYLE VARS --- */

/* --- SECTION 1: PURPOSE ENGINE --- */
.purpose-values-section {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background-color: #ffffff;
}

.purpose-statement-col {
    border-right: 2px solid rgba(31, 142, 75, 1);
    padding-right: 30px;
}

.purpose-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--text-muted) !important;
}

/* Pillar Component Configurations */
.pillar-icon-wrapper i {
    font-size: 2rem; /* Matches asset scaling rules safely */
    opacity: 0.9;
}

.pillar-title {
    font-size: 0.82rem;
    line-height: 1.35;
    letter-spacing: -0.1px;
}

/* Row-based Grid Spacers (Mimicking your layout structure) */
.pillar-item-box-bordered {
    position: relative;
}

/* Generates clean architectural line dividers on desktop viewports */
@media (min-width: 768px) {
    .pillar-item-box-bordered::before {
        content: "";
        position: absolute;
        top: 15%;
        left: -10px;
        height: 70%;
        width: 1px;
        background-color: #1f8e4b; /* Dotted / Light clean segment rules */
    }
    
    /* Pushes row 2 items inward to match offset design matrix blueprint */
    .pillar-item-offset {
        margin-left: 12.5%;
    }
}

/* --- SECTION 2: EXECUTIVE LEADERSHIP ENGINE --- */
.leader-avatar-container {
    width: 210px;
    height: 210px;
    padding: 8px;
}

/* Generates your exact signature crescent green outer avatar ring border */
.avatar-decorative-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--brand-green);  /* Left green arc mapping match */
    border-bottom-color: var(--brand-green);
    transform: rotate(15deg);               /* Offsets alignment cleanly */
    z-index: 1;
}

.leader-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.leader-name {
    color:#1f8e4b;
    font-size: 1.45rem;
    letter-spacing: -0.3px;
}

/* Executive Highlights Framework */
.leader-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 14px;
}

/* Small square green accent bullets */
.bullet-point-accent {
    width: 6px;
    height: 6px;
    background-color: var(--brand-green);
    display: inline-block;
    margin-top: 7px;
    flex-shrink: 0;
    border-radius: 1px;
}

/* --- RESPONSIVE DOWN-SCALING OVERRIDES --- */
@media (min-width: 992px) {
    .border-end-lg-separator {
        border-right: 2px solid rgba(0,0,0,0.06);
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .purpose-statement-col {
        border-right: none;
        border-bottom: 2px solid rgba(31, 142, 75, 1);
        padding-right: 12px;
        padding-bottom: 24px;
    }
    
    .pillar-item-box-bordered::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .pillar-item-box, .pillar-item-box-bordered, .pillar-item-offset {
        padding: 15px;
        background: #fbfdfc;
        border-radius: 8px;
        border: 1px solid rgba(20, 121, 64, 0.05);
    }
}
/* --- VECTOR SVG ICON CONTROLS --- */
.svg-pillar-icon {
    width: 34px;                  /* Precision physical dimensions */
    height: 34px;
    color: #147940;               /* Signature vibrant organic leaf green tint */
    stroke-width: 1.75px;          /* Clean line weights preventing pixel blurring */
    transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover effect to give interactive feedback to users */
.pillar-item-box:hover .svg-pillar-icon,
.pillar-item-box-bordered:hover .svg-pillar-icon,
.pillar-item-offset:hover .svg-pillar-icon {
    transform: translateY(-3px);
    color: #033144;               /* Switches to dark blue brand color on interactive state */
}

/* Left-Facing Curved Wave Mechanism */
.mask-curve-divider {
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 100px; 
    background-color: transparent;
    z-index: 4;
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    box-shadow: -50px 0 0 0 #f7faf8;
}

/* --- METRICS STRIP PANEL OVERLAY (image_19de60.png Match) --- */
.banner-metrics-strip-panel {
    position: absolute;
    bottom: 24px; /* Suspends panel overlay cleanly over layout boundaries */
    left: 0;
    z-index: 10;
    padding: 0 4%;
}

.metrics-flex-container {
    background: linear-gradient(90deg, #115d32 0%, #168145 100%); /* Clean dark forest green configuration */
    border-radius: 14px;
    padding: 22px 30px;
    box-shadow: 0 12px 35px rgba(17, 93, 50, 0.15);
}

/* Custom Vector Icon Sizing Inside Bar */
.metric-svg-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke-width: 1.6px;
    opacity: 0.95;
}

.metric-number {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
}

.metric-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px !important;
}

/* High Fidelity Divider Mapping */
.metric-divider-line {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- BREAKPOINT RESPONSIVENESS MATRIX --- */
@media (max-width: 991px) {
    .about-banner-text-col {
        padding-bottom: 180px; /* Expands clearance space for wrapped flex nodes on tablet views */
    }
    .metric-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
   
    /* Convert overlay to a static inline footer structure on mobile views to safeguard text clipping */
    .banner-metrics-strip-panel {
        position: relative;
        bottom: 0;
        padding: 24px 15px;
        background-color: #f7faf8;
    }

    .metrics-flex-container {
        padding: 25px 20px;
    }

    .metric-block-item {
        width: 100%; /* Rows align vertically clean on phone formats */
        justify-content: flex-start;
        padding-left: 15%;
    }
}


/* --- WHY CHOOSE US STYLES --- */
.wcu-card {

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Light border to mimic the card look */
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
     padding:10px;
}

.wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.wcu-icon i {
    font-size: 2.5rem;
    color: #147940; /* Signature green */
}

.wcu-title {
    color:#033a4b;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.wcu-desc {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Custom column width for 5-column layout on desktop */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
.wcu-svg-icon {
    color: #147940; /* Your brand green */
    stroke-width: 1.5px;
    display: block;
    margin: 0 auto;
}

/* --- CTA STRIP STYLES --- */
.cta-section {
    
    width: 100%;
}

.cta-wrapper {
    background-color: #033144; /* Dark blue background from design */
    border-radius: 12px;
}

.cta-leaf-img {
    width: 50px;
    height: auto;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 500;
}

.btn-outline-light {
    background: #147940; /* Brand green button color */
    border-color: #147940;
    color: #ffffff;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: #0f5a2f;
    border-color: #0f5a2f;
}

/* Mobile responsive alignment */
@media (max-width: 767px) {
    .cta-text {
        font-size: 0.95rem;
        text-align: center;
    }
}
/* Style for the Connect Section */
.connect-section .text-green {
    color: #147940; /* Standardized brand green */
}

.connect-section h5 {
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.connect-section .text-muted.small {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 400px; /* Limits width to keep it neat */
}

/*contactpage*/
/* --- CONTACT SECTION STYLES --- */
.contact-form .form-control, .contact-form .form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.btn-brand {
    background-color: #147940;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
}

.icon-bg {
    background-color: #e8f5e9;
    color: #147940;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-details-box {
    padding: 20px;
}

.btn-outline-brand {
    border: 1px solid #147940;
    color: #147940;
    padding: 12px;
    border-radius: 8px;
}

.btn-outline-brand:hover {
    background-color: #147940;
    color: #fff;
}


/* --- FIND US STYLES --- */
.bg-light-neutral {
    background-color: #f8f9fa; /* Matches the light background in your design */
}



.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #033144;
    transition: 0.3s;
}

.social-icon:hover {
    background-color: #147940;
    color: white;
}

.map-container {
    height: 350px; /* Consistent height with your design */
}

.map-placeholder {
    height: 100%;
    width: 100%;
}

@media (max-width: 991px) {
    .map-container {
        height: 250px; /* Reduced height on mobile for better mobile UX */
    }
}


.service-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: 0.3s;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #f4fcf6;
    color: #147940;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}
.process-section .process-circle {
    width: 70px;
    height: 70px;
    background: #e8f5e9;
    color: #147940;
    border: 2px solid #147940;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Connectors */
.process-wrapper {
    position: relative;
}

.process-wrapper::after {
    content: "";
    position: absolute;
    top: 35px;
    left: 60%;
    width: 80%;
    height: 1px;
    background: #cce5d0;
    border-top: 1px dashed #147940;
    z-index: 1;
}
.row > div:last-child .process-wrapper::after {
    display: none;
}
/* Remove connector from the last item */
.col-md-2-4:last-child .process-wrapper::after { display: none; }

@media (max-width: 768px) {
    .process-wrapper::after { display: none; } /* Hide connectors on mobile */
    .col-md-2-4 { flex: 0 0 50%; }
}

.col-md-2-4 { flex: 0 0 20%; max-width: 20%; }

    /* Adds the vertical border divider between items */
    .d-flex.flex-wrap > div:not(:last-child) {
        /*border-right: 1px solid #dee2e6;
        padding-right: 20px;*/
    }
    /* Vertical Dividers for Desktop Only */
    @media (min-width: 768px) {
        .stat-item:not(:last-child) {
            /*border-right: 1px solid #dee2e6*/;
        }
    }

    /* Mobile adjustments: ensure good spacing */
    @media (max-width: 767px) {
        .stat-item { margin-bottom: 20px; }
    }
   /* eventpage*/


    /* EVENT IMAGE */
.event-img{
    min-width:150px;
    width:150px;
    height:150px;
    border-radius:10px;
    overflow:hidden;
    background:#e0e0e0;
}

.event-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* BUTTON */
.event-btn{
    padding:10px!important;
    min-width:160px;
}

/* MOBILE */
@media(max-width:768px){

    .event-card{
        flex-direction:column;
    }

    .event-img{
        width:100%;
        min-width:100%;
        height:220px;
    }

    .event-footer{
        flex-direction:column;
        align-items:flex-start !important;
    }

    .event-meta{
        flex-direction:column;
        gap:5px !important;
    }

    .event-btn{
        width:100%;
    }

}
@media(max-width:768px){
.event-btn{
        padding:10px 24px;
        white-space:nowrap;
    }

}
.custom-date{
    height:50px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:0 15px;
}
  .event-card { transition: 0.3s; }
    .event-card:hover { transform: translateY(-5px); }
   @media (max-width: 991px) { .event-card { flex-direction: column; } }

    .form-label{
    font-size:14px;
    margin-bottom:8px;
    font-weight:600;
}

.custom-select{
    height:50px;
    border-radius:12px;
    border:1px solid #ddd;
    font-size:14px;
    color:#666;
    box-shadow:none;
}

.custom-select:focus{
    border-color:#ddd;
    box-shadow:none;
}


.custom-divider-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    gap:15px;
}

.custom-divider-line{
    width:80px;
    height:2px;
    background:green;
}

.custom-divider-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2e7d32;
    font-size:20px;
}
.newsletter-section {
  background-color: #0a331a;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  font-family: sans-serif;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.newsletter-form {
  background: white;
  padding: 5px;
  border-radius: 50px;
  display: flex;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  outline: none;
}

.newsletter-form button {
  background: #1b6b35;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
}

/* Responsive Tablet/Mobile Layout */
@media (max-width: 768px) {
  .newsletter-section {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-content {
    flex-direction: column;
  }
}

.cert-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    border:1px solid #efefef;
    box-shadow:0 3px 18px rgba(0,0,0,.06);
    transition:.4s;
}

.cert-card:hover{
    transform:translateY(-8px);
}

.cert-image-box{
    padding:10px;
    background:#fafafa;
    height:220px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.cert-image-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.cert-content{
    padding:20px;
}

.cert-content h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:6px;
}

.cert-subtitle{
    font-size:14px;
    color:#666;
    margin-bottom:16px;
}

.cert-content p{
    font-size:14px;
    color:#777;
    line-height:1.8;
    min-height:70px;
}

.cert-content a{
    color:#198754;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

.cert-content a span{
    margin-left:6px;
}

@media(max-width:768px){

.cert-image-box{
height:180px;
}

.cert-content h5{
font-size:18px;
}

}

.eco-values-container{
    background:#F3F7F5;
    padding:28px;
    border-radius:18px;
}

.eco-values-card{
    display:flex;
    align-items:flex-start;
    gap:14px;
    border-right:1px solid #e8e8e8;
    height:100%;
    padding-right:18px;
}

.eco-no-border{
    border-right:none;
}

.eco-values-icon i{
    font-size:32px !important;
    color:#198754 !important;
}

.eco-values-heading{
    font-size:16px !important;
    font-weight:700 !important;
    color:#1d2939 !important;
    margin-bottom:6px;
}

.eco-values-description{
    font-size:13px !important;
    line-height:1.7 !important;
    color:#667085 !important;
}

@media(max-width:991px){

.eco-values-card{
border-right:none;
padding-right:0;
}

}

.eco-partner-section {
  background-color: #0a331a; /* Deep green */
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 250px;
  color: white;
  font-family: sans-serif;
}

/* Background Leaf - Using a pseudo-element */
.eco-partner-section::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 150px;
  height: 150px;
  background-image: url('your-leaf-icon.png');
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
}

.eco-partner-image {
  width: 35%;
  height: 100%;
  /* This creates the curved shape on the right side of the image */
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

.eco-partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco-partner-content {
  padding: 40px;
  flex: 1;
}

.eco-partner-btn {
  display: inline-block;
  background: white;
  color: #0a331a;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .eco-partner-section {
    flex-direction: column;
    text-align: center;
  }
  .eco-partner-image {
    width: 100%;
    height: 200px;
    clip-path: none; /* Removes curve on mobile */
  }
}
/* Container styling */
.eco-newsletter-wrap {
  background-color: #0a331a;
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
  font-family: sans-serif;
}

.eco-newsletter-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Form styling */
.eco-newsletter-form {
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  display: flex;
  width: 100%;
  max-width: 450px;
}

.eco-newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  outline: none;
  color: #333;
}

.eco-newsletter-form button {
  background: #1b6b35;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .eco-newsletter-wrap {
    flex-direction: column;
    text-align: center;
  }
  
  .eco-newsletter-inner {
    flex-direction: column;
    gap: 10px;
  }
}

/* Add this to your CSS to show the background leaf */
.eco-newsletter-wrap {
  /* ... your existing styles ... */
  background-image: url('img/leaf.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
.about-banner-graphic-col{
    min-height:400px;
}

.about-banner-img-frame{
    width:100%;
    height:100%;
}

.about-banner-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:768px){

.about-banner-graphic-col{
    min-height:300px;
}

}
.custom-blog-search{
    display:flex;
    width:100%;
    max-width:550px;
    border:1px solid #d8d8d8;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}

.custom-blog-input{
    flex:1;
    border:none;
    outline:none;
    padding:14px 18px;
    font-size:14px;
    color:#555;
}

.custom-blog-input::placeholder{
    color:#999;
}

.custom-blog-btn{
    width:70px;
    border:none;
    background:#13843a;
    color:#fff;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.custom-blog-btn:hover{
    background:#0f6f31;
}

@media(max-width:768px){

.custom-blog-search{
    max-width:100%;
}

.custom-blog-btn{
    width:60px;
}

}



.blog-filter-tabs{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.blog-tab-btn{
padding:10px 30px;
border-radius:50px;
border:1px solid #d7dfd7;
background:white;
font-size:14px;
}

.blog-tab-btn.active{
background:#198754;
color:#fff;
}

.blog-post-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 3px 18px rgba(0,0,0,.06);
height:100%;
}

.blog-post-image{
width:100%;
height:220px;
object-fit:cover;
}

.blog-post-content{
padding:20px;
}

.blog-post-tag{
font-size:11px;
font-weight:700;
color:#198754;
}

.blog-post-content h5{
    color:#033a4b;
font-size:18px;
font-weight:700;
margin:15px 0;
}

.blog-post-content p{
font-size:14px;
color:#666;
}

.blog-post-footer{
display:flex;
justify-content:space-between;
font-size:13px;
margin-top:15px;
}

.blog-side-box{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 3px 18px rgba(0,0,0,.05);
}

.blog-side-title{
font-weight:700;
margin-bottom:25px;
}

.blog-side-list{
list-style:none;
padding:0;
margin:0;
}

.blog-side-list li{
display:flex;
justify-content:space-between;
padding:12px 0;
border-bottom:1px solid #eee;
}

.popular-blog-item{
display:flex;
gap:15px;
margin-bottom:20px;
}

.popular-blog-item img{
width:85px;
height:70px;
border-radius:10px;
object-fit:cover;
}

@media(max-width:768px){

.blog-post-image{
height:180px;
}

.blog-tab-btn{
width:100%;
}

}

.thumbSlider{
height:500px;
}

.thumbSlider .swiper-slide{
height:90px !important;
opacity:.5;
cursor:pointer;
border:2px solid transparent;
border-radius:12px;
overflow:hidden;
}

.thumbSlider .swiper-slide-thumb-active{
opacity:1;
border-color:#198754;
}

.thumbSlider img{
width:100%;
height:100%;
object-fit:cover;
}

.mainSlider{
height:500px;
}

.main-product-image{
width:100%;
height:100%;
object-fit:cover;
border-radius:25px;
}

@media(max-width:991px){

.thumbSlider{
height:350px;
}

.mainSlider{
height:350px;
}

}

@media(max-width:767px){

.thumbSlider{
height:80px;
}

.mainSlider{
height:250px;
}

}
.product-feature-box{
text-align:center;
padding:15px;
border-right:1px solid #ececec;
height:100%;
}

.product-feature-icon{
font-size:34px !important;
color:#198754 !important;
margin-bottom:15px;
}

.product-feature-box h6{
font-size:14px !important;
font-weight:600 !important;
line-height:1.5;
}

@media(max-width:768px){

.product-feature-box{
border-right:none;
border-bottom:1px solid #ececec;
}

}
/* Custom color for the striped rows */
.table-custom-stripes tbody tr:nth-of-type(odd) {
    background-color: #f7f9f7; /* The light green from your image */
}

/* Ensure the text color remains consistent */
.table-custom-stripes th {
    color: #004d40;
    font-weight: 700;
    width: 30%;
}

.table-custom-stripes td {
    color: #333333;
}


/* Custom Tabs */

.custom-tabs{
    justify-content:center;
    border:none;
    gap:10px;
}

.custom-tabs .nav-link{

padding:12px 25px;
   border: 1px solid #d7dfd7;
    padding: 12px 25px;
    border-radius: 50px;
    
    font-weight: 600;

    transition: 0.3s;
}

.custom-tabs .nav-link:hover{
    background:#242e49 ;
    color:#fff;
}

.custom-tabs .nav-link.active{
    background:#198754 !important;
    color:#fff !important;
}

.tab-content-box{
   
    border-radius:15px;
   
}

/* Mobile */
@media(max-width:576px){

    .custom-tabs{
        flex-wrap:nowrap;
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:10px;
    }

    .custom-tabs .nav-link{
        white-space:nowrap;
        padding:10px 18px;
        font-size:14px;
    }
}


.product-gallery {
  padding: 40px 20px;
  text-align: center;
}

.gallery-container {
  display: grid;
  /* Creates 4 columns on large screens, 2 on tablets, 1 on mobile */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: adds a soft look */
  transition: transform 0.3s ease;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .gallery-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .gallery-container { grid-template-columns: 1fr; }
}

/* Container settings */
.services-wrapper { padding: 40px 0; }
.services-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Row with wrapping */
.services-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px; /* Negative margin to balance column padding */
}
.service-box img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0; /* Rounds only the top corners to match the box */
  display: block; /* Removes extra spacing under the image */
}
/* Columns */
.services-col {
  flex: 0 0 33.333%;
  padding: 15px;
  box-sizing: border-box;
}

/* The actual box styling */
.service-box {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-details { padding: 20px; }

.action-trigger {
  /* Button specific styling */
  background: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.benefits-section {
  background-color: #fcfcfc;
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
}

.benefits-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 180px; /* Ensures they share space but stack on mobile */
  font-family: sans-serif;
  font-weight: 600;
  color: #002e26;
}

.benefit-card i {
  font-size: 28px;
  color: #2d6a4f;
}

/* Responsive adjustment for tablets/mobile */
@media (max-width: 900px) {
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row on smaller screens */
  }
}

@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* 1 per row on phones */
  }
}
.bg-new{
    color:#f4f6f4!important;
}
a{text-decoration: none;
color: none;}
.blog-side-list li span {
  background-color: #2d6a4f; /* Eco-green match */
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px; /* Makes it rounded */
  font-size: 0.85rem;
  font-weight: bold;
}

/* ==================================
CONTACT PAGE MOBILE/TABLET FIX
PUT THIS AT LAST LINE OF CSS
================================== */

/* Tablet + Mobile */
@media only screen and (max-width:991px){

/* Hero section */
.about-hero-banner .row{
    flex-direction:column-reverse !important;
}

.about-banner-text-col{
    padding:30px 20px !important;
    text-align:center !important;
}

.about-banner-text-col .d-flex{
    justify-content:center !important;
}

.about-banner-graphic-col{
    min-height:auto !important;
    height:300px !important;
}

.about-banner-img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

.section-title{
    font-size:32px !important;
}

.about-banner-desc{
    max-width:100% !important;
}


/* Contact section */
.contact-section .row{
    row-gap:30px !important;
}

.contact-details-box{
    margin-top:20px !important;
    padding:20px !important;
}

.contact-form .form-control,
.contact-form .form-select{
    height:auto !important;
    padding:12px !important;
}

.btn-brand{
    width:100% !important;
}


/* Contact details icons */
.icon-bg{
    width:45px !important;
    height:45px !important;
    min-width:45px !important;
}


/* Find us */
.find-us-section .row{
    padding:20px !important;
}

.social-links{
    justify-content:center !important;
}

.map-container{
    height:250px !important;
}


/* CTA */
.cta-wrapper{
    flex-direction:column !important;
    text-align:center !important;
    gap:20px !important;
}

.cta-content{
    flex-direction:column !important;
}

.cta-btn-wrapper{
    width:100% !important;
}

.cta-btn-wrapper .btn{
    width:100% !important;
}

}


/* iPhone */
@media only screen and (max-width:576px){

.section-title{
    font-size:26px !important;
}

.about-banner-desc{
    font-size:14px !important;
}

.connect-section h5{
    font-size:15px !important;
}

.contact-details-box p{
    font-size:13px !important;
}

.map-container{
    height:200px !important;
}

}

/* Tablet */
@media (max-width:991px){

    .newsletter-section{
        padding:30px !important;
    }

    .newsletter-content{
        flex-direction:column !important;
        text-align:center;
        gap:20px;
    }

    .newsletter-form{
        width:100%;
        max-width:100%;
    }

    .newsletter-text h3{
        font-size:26px;
    }
}


/* Mobile */
@media (max-width:576px){

    .newsletter-section{
        padding:20px !important;
        border-radius:18px;
    }

    .newsletter-content{
        gap:15px;
    }

    .newsletter-icon img{
        width:55px;
    }

    .newsletter-text h3{
        font-size:22px;
    }

    .newsletter-text p{
        font-size:14px;
        line-height:1.6;
    }

    .newsletter-form{
        flex-direction:column !important;
        width:100%;
        gap:12px;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100% !important;
    }
}
.sustainability-heading{
    font-size:18px;
    color:#1f8e4b;
    line-height:1.5;
}
@media (max-width:576px){
    .sustainability-heading{
        font-size:16px;
    }
}
/* Example: Applying the background to your container */
.brand-bg-grey {
    background-color: #f8f9fa !important;
}

/* Tablet and Mobile Breakpoints */
@media (max-width: 991px) {
    /* For tablets: center the content and reduce padding */
    .eco-newsletter-wrap {
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* For mobile: stack everything vertically */
    .eco-newsletter-wrap {
        flex-direction: column;
        text-align: center;
    }

    .eco-newsletter-inner {
        flex-direction: column; /* Stacks the icon on top of the text */
        gap: 10px;
    }

    .eco-newsletter-form {
        flex-direction: column; /* Stacks the input on top of the button */
        width: 100%;
    }

    .eco-newsletter-form input {
        width: 100%; /* Ensures input fills the screen width */
    }
}

/* Service Box Styling */
.service-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.service-details {
    padding: 25px;
}

.service-details h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #002e26;
}

.service-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.action-trigger {
    display: inline-block;
    font-size: 1.5rem;
    color: #2d6a4f;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive adjustment for mobiles */
@media (max-width: 576px) {
    .service-box img {
        height: 180px;
    }
}
/*newpdl*/
/* Main slider */
.mainSlider{
    width:100%;
    margin-bottom:15px;
}

.main-product-image{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:10px;
}

/* Thumbnail slider */
.thumbSlider{
    height:400px;
}

.thumb-img img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    border:2px solid transparent;
}

.swiper-slide-thumb-active img{
    border-color:#198754;
}

/* Mobile */
@media(max-width:768px){

    /* Move thumbnails below image */
    .product-gallery{
        display:flex;
        flex-direction:column-reverse;
    }

    .thumbSlider{
        height:auto;
        margin-top:15px;
    }

    .main-product-image{
        height:300px;
        object-fit:contain;
    }

    .thumb-img img{
        height:70px;
    }
}
/* Product detail mobile responsive */
@media (max-width: 768px){

    /* Reduce section spacing */
    .product-detail-wrapper{
        padding:40px 0 !important;
    }

    /* Product title */
    .product-title{
        font-size:28px !important;
        line-height:1.3;
    }

    .product-description{
        font-size:14px;
    }

    /* Slider layout change */
    /*.product-detail-wrapper .row > .col-lg-6:first-child .row{
        flex-direction:column-reverse;
    }
*/
    /* Thumbnail section */
    .thumbSlider{
        width:100%;
        margin-top:15px;
    }

    .thumbSlider .swiper-wrapper{
        display:flex;
        flex-direction:row !important;
        gap:10px;
        justify-content:center;
        overflow-x:auto;
    }

    .thumb-img{
        width:70px !important;
        height:70px !important;
        flex:0 0 auto;
    }

    .thumb-img img{
        width:100%;
        height:100%;
        object-fit:cover;
        border-radius:10px;
    }

    /* Main image */
    .main-product-image{
        width:100%;
        height:300px !important;
        object-fit:contain;
    }

    /* Product features */
    .product-feature-box{
        padding:15px 10px;
    }

    .product-feature-box h6{
        font-size:13px;
        line-height:1.4;
    }

    .product-feature-icon{
        font-size:22px;
    }

    /* Buttons */
    .product-detail-wrapper .btn{
        width:100%;
        text-align:center;
        padding:12px;
    }

    .product-detail-wrapper .d-flex.flex-wrap{
        flex-direction:column;
    }

    /* Breadcrumb */
    .breadcrumb{
        font-size:13px;
        flex-wrap:wrap;
    }
}

/* Hero Sectionhomepage */
.hero-section{
    width:100%;
    overflow:hidden;
    background:#fefefe;
}

/* Swiper */


.heroSwiper .swiper-slide{
    display:flex;
    align-items:center;
}

/* Content */
.hero-title{
    font-size:60px;
    line-height:1.1;
}

.hero-description{
    font-size:16px;
    color:#666;
    max-width:500px;
}

/* Image */
.image-wrapper{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden;
}

.main-img{
    width:100%;
    height:100%;
    object-fit:cover; 
    display:block;
    margin:0;
    padding:0;
}
/* Pagination */
.swiper-pagination-bullet{
    width:10px;
    height:10px;
}

.swiper-pagination-bullet-active{
    background:#198754 !important;
}

/* Mobile Responsive */
@media(max-width:991px){

.heroSwiper{
    min-height:auto;
}

.hero-title{
    font-size:38px;
    text-align:center;
}

.hero-description{
    font-size:14px;
    text-align:center;
}

.hero-cta{
    justify-content:center;
}

.image-wrapper{
    height:auto;
    padding:0;
    justify-content:center !important;
}

.main-img{
    max-width:100%;
}

.hero-content-col{
    text-align:center;
    padding-top:0 !important;
}

.row.min-vh-100{
    min-height:auto !important;
}
}

/* BLOG SECTION */
.blog-details-section{
    background:#f8f9fa;
}

/* BLOG CARD */
.blog-details-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* FEATURED IMAGE */
.blog-featured-img img,
.blog-inner-img img{
    width:100%;
    border-radius:20px;
    display:block;
}

/* META */
.blog-meta span{
    color:#6c757d;
    font-size:14px;
}

/* TITLE */
.blog-title{
    color:#0b3d1d;
    line-height:1.4;
}

/* PARAGRAPH */
.blog-details-card p{
    color:#555;
    line-height:1.9;
}

/* QUOTE */
.blog-quote{
    background:#f1f8f3;
    padding:30px;
    border-left:5px solid #198754;
    border-radius:18px;
}

/* LIST */
.blog-list{
    padding-left:20px;
}

.blog-list li{
    margin-bottom:12px;
    color:#555;
}

/* TAGS */
.blog-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.blog-tags a{
    padding:10px 18px;
    background:#eef8f1;
    border-radius:50px;
    text-decoration:none;
    color:#198754;
    font-size:14px;
    transition:.3s;
}

.blog-tags a:hover{
    background:#198754;
    color:#fff;
}

/* SIDEBAR */
.sidebar-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* SIDEBAR TITLE */
.sidebar-title{
    margin-bottom:25px;
    font-weight:700;
    color:#0b3d1d;
}

/* SEARCH */
.sidebar-search{
    height:55px;
    border-radius:50px;
    padding-left:20px;
    padding-right:60px;
}

.search-btn{
    position:absolute;
    right:8px;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    background:#198754;
    color:#fff;
    border-radius:50%;
}

/* CATEGORY LIST */
.sidebar-list{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-list li{
    margin-bottom:15px;
}

.sidebar-list a{
    text-decoration:none;
    color:#555;
    transition:.3s;
}

.sidebar-list a:hover{
    color:#198754;
    padding-left:5px;
}

/* RECENT POST */
.recent-post-img{
    width:80px;
    height:80px;
    border-radius:12px;
    overflow:hidden;
    flex-shrink:0;
}

.recent-post-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTACT BOX */
.sidebar-contact{
    background:#198754;
    padding:40px 30px;
    border-radius:24px;
}

/* MOBILE */
@media(max-width:768px){

    .blog-details-card{
        padding:25px;
    }

    .blog-title{
        font-size:28px;
    }

    .blog-meta{
        gap:10px;
    }

    .sidebar-card{
        padding:25px;
    }

    .recent-post{
        align-items:center;
    }

}

/* SIDEBAR CATEGORY CARD */
.sidebar-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* SIDEBAR TITLE */
.sidebar-title{
    margin-bottom:25px;
    font-weight:700;
    color:#0b3d1d;
    position:relative;
    padding-bottom:12px;
}

.sidebar-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#198754;
    border-radius:50px;
}

/* CATEGORY LIST */
.sidebar-list{
    list-style:none;
    padding:0;
    margin:0;
}

/* CATEGORY ITEM */
.sidebar-list li{
    margin-bottom:15px;
}

/* CATEGORY LINK */
.sidebar-list a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 18px;
    border:1px solid #e8e8e8;
    border-radius:16px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    background:#fff;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

/* LEFT ICON */
.sidebar-list a::before{
    content:"➜";
    color:#198754;
    font-size:14px;
    margin-right:10px;
    transition:.3s;
}

/* HOVER EFFECT */
.sidebar-list a:hover{
    background:#198754;
    color:#fff;
    border-color:#198754;
    transform:translateX(6px);
    box-shadow:0 10px 25px rgba(25,135,84,.18);
}

/* ICON COLOR HOVER */
.sidebar-list a:hover::before{
    color:#fff;
}

/* ACTIVE CATEGORY */
.sidebar-list .active-category{
    background:#198754;
    color:#fff;
    border-color:#198754;
    box-shadow:0 10px 25px rgba(25,135,84,.18);
}

.sidebar-list .active-category::before{
    color:#fff;
}

/*team*/
.team-section{
    background:#f8f9fa;
}

/* Section Title */
.section-title .sub-title{
    display:inline-block;
    background:#cb9819;
    color:#fff;
    padding:6px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0b5225;
    margin-bottom:15px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
}

/* Team Card */
.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.team-card:hover{
    transform:translateY(-10px);
}

/* Image */
.team-img{
    position:relative;
    overflow:hidden;
}

.team-img img{
    width:100%;
  
 
    transition:0.5s;
}

.team-card:hover .team-img img{
    transform:scale(1.08);
}

/* Overlay */
.team-img::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(11,82,37,0.85),
    rgba(11,82,37,0.1));
    opacity:0;
    transition:0.4s;
    z-index:1;
}

.team-card:hover .team-img::before{
    opacity:1;
}

/* Social Icons */
.team-social{
    position:absolute;
    left:50%;
    bottom:-60px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    transition:0.4s;
    z-index:2;
}

.team-card:hover .team-social{
    bottom:20px;
}

.team-social a{
    width:42px;
    height:42px;
    background:#fff;
    color:#0b5225;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.3s;
    font-size:16px;
}

.team-social a:hover{
    background:#cb9819;
    color:#fff;
}

/* Content */
.team-content{
    padding:25px 20px;
    text-align:center;
}

.team-content h4{
    font-size:18px;
    font-weight:700;
    color:#033a4b;
    margin-bottom:5px;
}

.team-content span{
    color: #0b5225;
    font-weight:600;
    font-size:13px;
}

/* Responsive */
@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .team-img img{
        height:280px;
    }
}

@media(max-width:767px){

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:14px;
    }

    .team-img img{
        height:250px;
    }

    .team-content h4{
        font-size:20px;
    }
}
/*testimonial*/
  .testimonial-section{
 
    position:relative;
    overflow:hidden;
}

/* Title */
.testimonial-title span{
    display:inline-block;
    padding:6px 18px;
    background:#cb9819;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.testimonial-title h2{
    font-size:42px;
    font-weight:700;
    color:#0b5225;
    margin-bottom:15px;
}

.testimonial-title p{
    max-width:650px;
    margin:auto;
    color:#666;
}

/* Card */
.testimonial-card{
    background:#fff;
    padding:35px 30px;
    border-radius:22px;
    position:relative;
    transition:0.4s;
    height:100%;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

/* Top Border Effect */
.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#0b5225,#033a4b);
}

/* Quote Icon */
.quote-icon{
    width:65px;
    height:65px;
    background:#0b5225;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:25px;
    transition:0.3s;
}

.testimonial-card:hover .quote-icon{
    background:#033a4b;
    transform:rotate(12deg);
}

/* Text */
.testimonial-text{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

/* User */
.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #033a4b;
}

.user-info h5{
    font-size:18px;
    font-weight:700;
    color:#033a4b;
    margin-bottom:4px;
}

.user-info span{
    color:#0b5225;
    font-size:14px;
}

/* Responsive */
@media(max-width:991px){

    .testimonial-title h2{
        font-size:34px;
    }

    .testimonial-card{
        padding:30px 25px;
    }
}

@media(max-width:767px){

    .testimonial-title h2{
        font-size:28px;
    }

    .testimonial-title p{
        font-size:14px;
    }

    .testimonial-card{
        padding:25px 20px;
    }

    .testimonial-text{
        font-size:15px;
    }

    .quote-icon{
        width:55px;
        height:55px;
        font-size:20px;
    }
}
.solution-icon img{
    width:100px;
    height:100px;
    object-fit:contain;
}
/*sticky header*/
        .sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .content {
  padding-top: 10px;
}
/* WhatsApp Floating Button */

.whchat-wrap{
    position:fixed;
    left:25px;
    bottom:25px;
    z-index:9999;
}

.whchat-btn{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    color:#fff;

    box-shadow:0 8px 25px rgba(37,211,102,.4);

    animation:whchatPulse 2s infinite;
    transition:.3s;
}

.whchat-btn:hover{
    transform:scale(1.1);
    color:#fff;
}

.whchat-btn i{
    font-size:34px;
}

/* Tooltip */

.whchat-text{
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    
    background:#fff;
    color:#333;

    padding:10px 15px;
    border-radius:30px;

    font-size:14px;
    font-weight:600;

    white-space:nowrap;

    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

/* Pulse Animation */

@keyframes whchatPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}


/* Mobile */

@media(max-width:768px){

.whchat-wrap{
    left:15px;
    bottom:15px;
}

.whchat-btn{
    width:55px;
    height:55px;
}

.whchat-btn i{
    font-size:28px;
}

.whchat-text{
    display:none;
}

}
    .mission-vision-section{
    background:#f8f9fa;
}

.text-gold{
    color:#cb9819;
}

.mv-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mv-card:hover{
    transform:translateY(-10px);
}

.mission-card{
    border-top:5px solid #0b5225;
}

.vision-card{
    border-top:5px solid #033a4b;
}

.mv-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.mission-card .mv-icon{
    background:#0b5225;
    color:#fff;
}

.vision-card .mv-icon{
    background:#033a4b;
    color:#fff;
}

.mv-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#0b5225;
}

.mv-card p{
    margin:0;
    color:#666;
    line-height:1.8;
}

/* Responsive */
@media(max-width:768px){

    .mv-card{
        padding:30px 20px;
        text-align:center;
    }

    .mv-icon{
        margin:0 auto 20px;
    }

    .mv-card h3{
        font-size:24px;
    }
}

/*gallery*/

    .gallery-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.tab-btn{
    border:none;
    background:#f3f3f3;
    padding:12px 28px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.tab-btn.active,
.tab-btn:hover{
    background:#0c8f55;
    color:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.gallery-item img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.3s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    color:#fff;
    font-size:30px;
}

.hide{
    display:none !important;
}

    .gallery-section{
   
}

@media (max-width: 991px){
    .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .gallery-grid{
        grid-template-columns: 1fr;
    }
}
  .values-card{
    background:#f8fdf9;
    border-left:5px solid #0c8f55;}

 .error 
{
    color:red;
}


.coming-soon-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b4cc1c, #6f4112);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.coming-soon-icon i {
    color: #fff;
    font-size: 34px;
}

.cert-card:hover .coming-soon-icon {
    transform: scale(1.08);
    transition: 0.3s ease;
}