﻿:root {
    --brand-lime: #78BE20;
    --brand-lime-hover: #72A642;
    --charcoal-black: #262626;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #383838;
    --pure-white: #FFFFFF;
    --amber-highlight: #FFC107;
    --text-gray: #383838;
    --text-light: #6c757d;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: #f9fafc;
    color: var(--text-gray);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header and Navbar */
.navbar {
    background: var(--charcoal-black);
    border-bottom: 3px solid var(--brand-lime);
}

.navbar-brand {
    font-size: 1.6rem;
    color: var(--brand-lime);
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(120, 190, 32, 0.6), 0 0 2px rgba(120, 190, 32, 0.4);
    transition: text-shadow 0.3s, color 0.3s;
}

    .navbar-brand:hover {
        color: var(--brand-lime-hover);
        text-shadow: 0 0 16px rgba(120, 190, 32, 0.9), 0 0 4px rgba(120, 190, 32, 0.6);
    }

.company-logo {
    height: 42px;
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: var(--pure-white) !important;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background-color: var(--brand-lime);
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active {
        background-color: var(--brand-lime);
        color: var(--charcoal-black) !important;
        font-weight: 600;
    }

/* Dropdown */
.dropdown-menu {
    background: var(--charcoal-black);
    border: 1px solid var(--charcoal-light);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

.dropdown.show .dropdown-menu,
.service-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.service-dropdown .dropdown-menu {
    min-width: 260px;
}

.service-item {
    padding: 10px 16px;
    border-left: 4px solid transparent;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .service-item:hover {
        border-left-color: var(--brand-lime);
        background-color: var(--charcoal-light);
        transform: translateX(5px);
    }

    .service-item.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        color: var(--text-light);
        pointer-events: none;
    }


.btn-gradient {
    background: linear-gradient(135deg, #78BE20, #5da917);
    color: white !important;
    padding: 12px 28px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

    .btn-gradient:hover {
        background: linear-gradient(135deg, #6fb31d, #4d9514);
        transform: translateY(-2px);
    }

.service-icon {
    width: 32px;
    margin-right: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.coming-soon-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-left: auto;
    background-color: var(--amber-highlight);
    color: var(--charcoal-black);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--charcoal-black);
    color: var(--pure-white);
    padding: 30px 20px 20px;
    margin-top: 50px;
    border-top: 3px solid var(--brand-lime);
    text-align:left;
}

.footer-brand {
    color: var(--brand-lime);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--brand-lime);
        }

/* Main Content Sections */
.main-container {
    background-color: #1a1a1a;
    color:#ffff;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 20px;
    margin-top:20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.left-container, .right-container {
    flex: 1 1 48%;
    padding: 20px;
}
.right-container{
    text-align:right;
    position:relative;
    padding:20px;
}

    .right-container img {
        opacity: 0.6;
        width: 50%;

    }
.left-container p {
    max-width: 550px; /* keeps the text in a neat column */
    line-height: 1.6; /* cleaner spacing */
    margin-bottom: 20px; /* spacing before button */
    text-align: justify; /* optional: makes it look more professional */
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

    .image-section img {
        width: 80%;
        max-width: 700px;
    }

/* Two-column boxes */
.main-container2 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 60px 20px;
    flex-wrap: wrap;
}

.box {
    flex: 1 1 48%;
    background-color: White;
    border-radius: 20px;
    padding: 20px;
    line-height: 1.6;
    box-shadow: 0 4px 8px #78BE20;
}

    .box h2 {
        text-align: center;
        color: #78BE20;
        margin-bottom: 20px;
    }
.main-container2 .box ul {
    padding-left: 20px;
}

.box p, .box li {
    font-size: 15px;
    line-height: 1.6;
    color: black;
    max-width: 520px; /* keeps text in a neat column */
    text-align: justify;
}

/* User Perspective */
.user-perspective {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 4px 8px #78BE20;
}

    .user-perspective h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .user-perspective .divider {
        width: 150px;
        height: 2px;
        color: black;
        border: 2px solid black;
        margin: 0 auto 20px;
        position: relative;
    }

        .user-perspective .divider::before,
        .user-perspective .divider::after {
            content: "";
            position: absolute;
            top: -6px;
            width: 10px;
            height: 10px;
            border: 2px solid black;
            border-radius: 50%;
            background: black;
        }

        .user-perspective .divider::before {
            left: -15px;
        }

        .user-perspective .divider::after {
            right: -15px;
        }

    .user-perspective p {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

/* Process Section */
.process-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

/* === PRODUCT PROCESS CARDS (PROFESSIONAL DESIGN) === */

.process-card-container {
    display: grid;
    justify-content: center;
    gap: 30px;
    margin-block: 40px;
}

.process-card {
    background-color: white;
    color: black; /* softer modern green tone */
    width: 100%;
    padding:10px 20px;
    border-radius: 22px;
    text-align: left;
    box-shadow: 0 4px 12px #78BE20;
    border-top: 4px solid #78BE20;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}


.process-card h6 {
    font-weight:bold;
    color: black; 
    /*margin-bottom: 12px;*/
    line-height: 1.2;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: black;
    text-align:start;
}

/* Optional subtle hover (professional, not flashy) */
    /*.process-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px #78BE20;
    }*/

    /* Animation class added via JS */
    .process-card.show {
        animation: fadeSlideUp 0.6s ease forwards;
        opacity: 1;
        transform: translateY(0);
    }

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Slideshow */
.slideshow-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    text-align: center;
}

    .slide img {
        max-width: 90%;
        height: auto;
    }

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active {
    background-color: #007a3f;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.4rem;
    }

    .left-container, .right-container {
        flex: 1 1 100%;
        text-align: center;
    }

    .box, .process-right, .process-left {
        flex: 1 1 100%;
    }

    .user-perspective {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        display: block;
        margin: 5px 0;
    }

    .main-container, .process-section {
        padding: 30px 15px;
    }

    .image-section img {
        width: 100%;
    }

    .user-perspective h2 {
        font-size: 22px;
    }

    .box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .process-section {
        padding: 20px;
    }

    .user-perspective p {
        font-size: 14px;
    }

    footer {
        padding: 20px 10px;
    }
}
.final-demo-section {
    padding: 60px 20px;
    text-align: center;
}

.demo-container {
    text-align: center;
    padding: 40px 20px;
    background-color: black;
    color: white;
    border-radius: 20px;
    box-shadow: 0 4px 8px #78BE20;
}


.demo-text {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.demo-btn {
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
}

/* Typing Animation Title */
.animated-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pure-white);
    position: relative;
    display: inline-block;
    min-height:50px;
}

.green-underline {
    width: 0;
    height: 4px;
    background-color: var(--brand-lime);
    margin-top: 5px;
    border-radius: 4px;
    transition: width 0.5s ease-in-out;
}
/* === Smooth Typewriter WITHOUT Cursor === */
.bp-type {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: 0;
    animation: typing 1.5s steps(var(--chars)) forwards;
}
/* Typing animation — expands only to the text width */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: var(--content-width);
    }
}
.productprocess {
    text-align: center;
    padding: 20px 20px;
    background-color: White;
    color: #78BE20;
    border-radius: 20px;
    box-shadow: 0 4px 8px #78BE20;
}

    .productprocess h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #78BE20;
    }

    .productprocess .divider {
        width: 150px;
        height: 2px;
        color: black;
        border: 2px solid #78BE20;
        margin: 0 auto 20px;
        position: relative;
    }

        .productprocess .divider::before,
        .productprocess .divider::after {
            content: "";
            position: absolute;
            top: -6px;
            width: 10px;
            height: 10px;
            border: 2px solid #78BE20;
            border-radius: 50%;
            background: #78BE20;
        }

        .productprocess .divider::before {
            left: -15px;
        }

        .productprocess .divider::after {
            right: -15px;
        }

    .productprocess p {
        font-size: 16px;
        line-height: 1.8;
        text-align:justify;
        margin: 0px;
    }


/* Center underline ONLY on tablet + mobile */
@media (max-width: 992px) {
    .green-underline {
        margin: 8px auto 0 !important; /* centers the line */
    }

    .left-container,
    .animated-title {
        text-align: center !important; /* only on responsive */
    }
}
@media (min-width: 1400px) {
    .process-card {
        width: 1200px;
    }
    
}

