﻿/*=========================================================
    FIFTH PILLAR CRM
    Enterprise Corporate Theme
==========================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
      Root Variables
=========================*/

:root {
    --primary: #0E8F2A;
    --primary-dark: #05661C;
    --primary-light: #27AE60;
    --secondary: #111827;
    --text: #374151;
    --white: #ffffff;
    --light: #F5FFF7;
    --border: #E2F7E8;
    --shadow: 0 15px 40px rgba(14,143,42,.12);
    --radius: 18px;
}

/*=========================
        Reset
=========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    color: var(--text);
    background: #FAFFFB;
    overflow-x: hidden;
    line-height: 1.7;
}

/*=========================
    Common
=========================*/

section {
    padding: 90px 0;
}

.container {
    max-width: 1280px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}
/*=========================
      Loader
=========================*/

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.loader-box {
    text-align: center;
}

.loader-logo {
    width: 90px;
    animation: logoFloat 2s infinite;
}

@keyframes logoFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}
.top-bar {
    background: #05661C;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

    .top-bar i {
        margin-right: 8px;
        color: #A7F3D0;
    }
/*=========================
        Navbar
=========================*/

.navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 5px 25px rgba(0,0,0,.05);
    padding: 18px 0;
    transition: .35s;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary) !important;
}

    .navbar-brand img {
        margin-right: 12px;
        height: 60px;
    }

.nav-link {
    font-weight: 500;
    margin-left: 18px;
    color: #333 !important;
    transition: .3s;
    position: relative;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--primary);
        transition: .3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }
/*=========================
        Buttons
=========================*/

.btn-success {
    background: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .btn-success:hover {
        background: var(--primary-dark);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(14,143,42,.35);
    }

.btn-outline-success {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

    .btn-outline-success:hover {
        background: var(--primary);
        color: #fff;
    }
/*=========================
      Hero
=========================*/

.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: linear-gradient(135deg,#ffffff,#F4FFF7,#ECFFF1);
    position: relative;
    overflow: hidden;
}

    .hero h1 {
        font-size: 62px;
        font-weight: 800;
        line-height: 1.2;
        color: #111827;
    }

        .hero h1 span {
            color: var(--primary);
        }

    .hero p {
        font-size: 20px;
        margin-top: 25px;
        color: #6B7280;
    }

.hero-image {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}
.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #D1FAE5;
    border-radius: 50%;
    top: -180px;
    right: -180px;
    opacity: .45;
}

.hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: #BBF7D0;
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    opacity: .45;
}
/*=========================================
            FEATURE CARDS
==========================================*/

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .35s;
    border: 1px solid #e9f7ed;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#0E8F2A,#27AE60);
    }

    .feature-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 45px rgba(14,143,42,.18);
    }

    .feature-card i {
        font-size: 60px;
        color: var(--primary);
        margin-bottom: 25px;
    }

    .feature-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .feature-card p {
        color: #6b7280;
    }
.crm-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    border: 1px solid #edf5ef;
    height: 100%;
}

    .crm-card:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-10px);
    }

        .crm-card:hover i {
            color: #fff;
        }

    .crm-card i {
        font-size: 55px;
        color: var(--primary);
        margin-bottom: 20px;
    }
.dashboard-box {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

    .dashboard-header h4 {
        font-weight: 700;
    }

.dashboard-card {
    background: #F5FFF7;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
}

    .dashboard-card h2 {
        color: var(--primary);
        font-weight: 700;
    }
.counter-section {
    background: #05661C;
    color: #fff;
}

.counter-box {
    text-align: center;
    padding: 30px;
}

    .counter-box h2 {
        font-size: 55px;
        font-weight: 800;
    }

    .counter-box p {
        margin-top: 10px;
        font-size: 18px;
    }
.price-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0,0,0,.07);
    height: 100%;
    position: relative;
}

    .price-card:hover {
        transform: translateY(-12px);
    }

    .price-card.active {
        border: 3px solid var(--primary);
    }

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 40px;
}
.testimonial {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.07);
    transition: .35s;
    height: 100%;
}

    .testimonial:hover {
        transform: translateY(-10px);
    }

    .testimonial img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        margin-bottom: 20px;
    }
.footer {
    background: #071C0D;
    color: #fff;
    padding: 80px 0 30px;
}

    .footer h5 {
        margin-bottom: 25px;
        font-weight: 700;
    }

.footer-menu {
    list-style: none;
    padding: 0;
}

    .footer-menu li {
        margin-bottom: 12px;
    }

    .footer-menu a {
        color: #c8d5cc;
        transition: .3s;
    }

        .footer-menu a:hover {
            color: #fff;
            padding-left: 8px;
        }

.social-icons a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: #0E8F2A;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: .3s;
}

    .social-icons a:hover {
        background: #27AE60;
        transform: translateY(-5px);
    }
.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 95px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}
#topBtn {
    position: fixed;
    right: 25px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: none;
    z-index: 999;
    cursor: pointer;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        color: var(--primary);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 42px;
        font-weight: 800;
        margin-top: 15px;
    }

    .section-title p {
        max-width: 700px;
        margin: 20px auto 0;
        color: #6b7280;
    }
/*=========================================
            GLASSMORPHISM
==========================================*/

.glass-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(14,143,42,.10);
}

.glass-dark {
    background: rgba(14,143,42,.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(14,143,42,.18);
}

.kpi-card {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    min-width: 180px;
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    animation: floatCard 5s ease-in-out infinite;
}

    .kpi-card h5 {
        color: var(--primary);
        margin-bottom: 5px;
        font-weight: 700;
    }

    .kpi-card small {
        color: #6b7280;
    }

.card-sales {
    top: 30px;
    right: -50px;
}

.card-users {
    bottom: 60px;
    left: -50px;
}

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}
.hover-up {
    transition: .35s;
}

    .hover-up:hover {
        transform: translateY(-10px);
    }

.shadow-green {
    transition: .35s;
}

    .shadow-green:hover {
        box-shadow: 0 20px 45px rgba(14,143,42,.18);
    }
.bg-gradient-green {
    background: linear-gradient(135deg,#0E8F2A,#05661C);
    color: #fff;
}

.bg-light-green {
    background: #F5FFF7;
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

    .fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: 1s;
}

    .fade-left.active {
        opacity: 1;
        transform: translateX(0);
    }

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: 1s;
}

    .fade-right.active {
        opacity: 1;
        transform: translateX(0);
    }
.img-shadow {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.img-round {
    border-radius: 25px;
}
.text-primary-green {
    color: var(--primary);
}

.bg-primary-green {
    background: var(--primary);
}

.rounded-xl {
    border-radius: 25px;
}

.rounded-xxl {
    border-radius: 40px;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.footer hr {
    border-color: rgba(255,255,255,.10);
}

.footer p {
    color: #c7d4cb;
}

.footer .copyright {
    color: #8fa39a;
    font-size: 14px;
}
@media(max-width:991px) {

    .hero {
        text-align: center;
    }

        .hero h1 {
            font-size: 42px;
        }

    .kpi-card {
        display: none;
    }

    .section-title h2 {
        font-size: 34px;
    }
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }

    section {
        padding: 70px 0;
    }

    .navbar-brand span {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .footer {
        text-align: center;
    }

    .social-icons {
        margin-top: 20px;
    }
}
::selection {
    background: #0E8F2A;
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #0E8F2A;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #eef8f0;
}
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.45);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple .6s linear;
}

@keyframes ripple {

    to {
        transform: scale(35);
        opacity: 0;
    }
}
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg,#0B5D1E 0%,#0E8F2A 55%,#16A34A 100%);
}
    .cta-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,.06);
        border-radius: 50%;
        top: -180px;
        right: -120px;
    }

    .cta-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        bottom: -120px;
        left: -80px;
    }
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text h5 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #0E8F2A;
    line-height: 1.1;
}

.brand-tagline {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
    font-weight: 500;
    margin-top: 2px;
    text-transform: uppercase;
}
.product-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    transition: .35s;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    border: 1px solid #edf2ed;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(14,143,42,.18);
        border-color: #0E8F2A;
    }

.product-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: #EAF9EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0E8F2A;
    margin-bottom: 25px;
}

.product-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card ul {
    padding-left: 18px;
    margin: 20px 0;
}

    .product-card ul li {
        margin-bottom: 8px;
        color: #666;
    }
/*=========================================
      SOLUTIONS PAGE
=========================================*/

.solution-hero {
    padding: 100px 0;
    background: linear-gradient(135deg,#046c1e,#0b8f2b,#1cc252);
    overflow: hidden;
    position: relative;
}

    .solution-hero::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        top: -300px;
        right: -250px;
    }

    .solution-hero::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,.04);
        border-radius: 50%;
        bottom: -220px;
        left: -120px;
    }

    .solution-hero .container {
        position: relative;
        z-index: 2;
    }

    .solution-hero h1 {
        font-size: 58px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

        .solution-hero h1 span {
            color: #FFE082;
        }

    .solution-hero p {
        color: #fff;
        font-size: 18px;
        margin-top: 25px;
        line-height: 32px;
    }

.hero-badge {
    background: #fff;
    color: #0b8f2b;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-image {
    animation: floating 5s infinite ease-in-out;
}

@keyframes floating {

    50% {
        transform: translateY(-12px);
    }
}
.industry-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
}

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,.15);
    }

    .industry-card i {
        font-size: 60px;
        color: #0E8F2A;
        margin-bottom: 20px;
    }

    .industry-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
    }
.solution-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .4s;
    padding: 35px;
    text-align: center;
}

    .solution-card:hover {
        transform: translateY(-12px);
    }

    .solution-card img {
        width: 100px;
        margin-bottom: 25px;
    }

    .solution-card h3 {
        font-weight: 700;
        margin-bottom: 20px;
        color: #0E8F2A;
    }

    .solution-card ul {
        padding: 0;
        list-style: none;
    }

    .solution-card li {
        padding: 8px;
        color: #555;
    }
.why-section {
    background: #F6FFF8;
    padding: 90px 0;
}

    .why-section h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 35px;
    }

.feature-box {
    background: #fff;
    border-left: 5px solid #0E8F2A;
    padding: 18px 25px;
    border-radius: 15px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

    .feature-box i {
        color: #0E8F2A;
        margin-right: 10px;
    }
.stats-section {
    background: #0E8F2A;
    padding: 80px 0;
}

.stat-box {
    color: #fff;
    text-align: center;
}

    .stat-box h2 {
        font-size: 52px;
        font-weight: 700;
    }

    .stat-box p {
        font-size: 18px;
    }
.solution-cta {
    background: linear-gradient(135deg,#0E8F2A,#18B94B);
    padding: 80px;
    border-radius: 30px;
    color: #fff;
    text-align: center;
}

    .solution-cta h2 {
        font-size: 44px;
        font-weight: 700;
    }

    .solution-cta p {
        font-size: 18px;
        margin: 20px auto;
        max-width: 700px;
    }
@media(max-width:991px) {

    .solution-hero {
        padding: 70px 0;
        text-align: center;
    }

        .solution-hero h1 {
            font-size: 40px;
        }

    .hero-image {
        margin-top: 40px;
    }

    .solution-card {
        margin-bottom: 25px;
    }

    .why-section {
        text-align: center;
    }
}

@media(max-width:576px) {

    .solution-hero h1 {
        font-size: 30px;
    }

    .solution-cta {
        padding: 40px 25px;
    }

        .solution-cta h2 {
            font-size: 28px;
        }
}