﻿: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 */
/* ============================
   BASE STYLES
============================ */
.main-container {
    background: linear-gradient(to right, var(--charcoal-black) 80%, transparent 40%);
    color: white;
    margin-bottom: 40px;
    border-radius: 20px;
    margin-top: 20px;
    
}

/* Layout wrapper */
.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;
}

    .right-container img {
        opacity: 0.6;
        width: 50%;
        max-width: 350px;
    }

.left-container p {
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* IMAGE-SECTION */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

    .image-section img {
        width: 80%;
        max-width: 700px;
    }


/* =====================================================
    RESPONSIVE BREAKPOINTS
===================================================== */

/* Laptops ≤1200px */
@media (max-width: 1200px) {
    .right-container img {
        width: 60%;
    }
}

/* Tablets ≤992px */
@media (max-width: 992px) {
    .main-container {
        background: var(--charcoal-black);
        text-align: center;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-container,
    .right-container {
        flex: 1 1 100%;
        padding: 15px;
    }

        .right-container img {
            width: 70%;
            max-width: 300px;
            margin: auto;
        }

        .left-container p {
            max-width: 100%;
            text-align: center;
        }

    .image-section img {
        width: 90%;
    }
}

/* Large Mobiles ≤768px */
@media (max-width: 768px) {

    .main-container {
        margin-top: 10px;
        padding: 20px;
    }

    .right-container img {
        width: 80%;
        max-width: 270px;
    }

    .image-section {
        margin: 40px 0;
    }

        .image-section img {
            width: 95%;
        }
}

/* iPhone Pro Max / Large Android ≤430px */
@media (max-width: 430px) {

    .left-container p {
        font-size: 15px;
        padding: 0 12px;
    }

    .right-container img {
        width: 90%;
        max-width: 240px;
    }

    .main-container {
        padding: 15px;
    }
}

/* Normal iPhones ≤390px */
@media (max-width: 390px) {
    .left-container p {
        font-size: 14px;
    }

    .right-container img {
        width: 95%;
        max-width: 220px;
    }
}

/* Small Android Phones ≤360px */
@media (max-width: 360px) {
    .left-container p {
        font-size: 13px;
        line-height: 1.5;
    }

    .right-container img {
        width: 100%;
        max-width: 200px;
    }
}
*/


/* 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) === */
/* Timeline Wrapper */
.timeline {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

    /* Center Vertical Line */
    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 4px;
        height: 100%;
        background: #333;
        transform: translateX(-50%);
    }

/* Timeline Items */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
    .timeline-item.show {
        opacity: 1;
        transform: translateY(0);
    }
    /* Stagger Delay for Items */
.timeline-item:nth-child(1) { transition-delay: 0.2s; }
.timeline-item:nth-child(2) { transition-delay: 0.4s; }
.timeline-item:nth-child(3) { transition-delay: 0.6s; }
.timeline-item:nth-child(4) { transition-delay: 0.8s; }

/* Content Card */
.timeline-content {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    border: 2px solid #78BE20;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* ---- POSITIONING ---- */

/* Left Items */
.timeline-item.left {
    left: 0;
    text-align: center;
}

/* Right Items */
.timeline-item.right {
    left: 50%;
    text-align: center;
}

    /* Horizontal Connector Lines */
    .timeline-item.left::before,
    .timeline-item.right::before {
        content: "";
        position: absolute;
        top: 30px;
        width: 30px;
        height: 2px;
        background: #333;
    }

.timeline-item.left::before {
    right: -2px; /* Connect to main center line */
}

.timeline-item.right::before {
    left: -2px;
}

/* Circle Marker */
/*.timeline-item::after {
    content: "";
    position: absolute;
    top: 24px;
    width: 14px;
    height: 14px;
    background: #78BE20;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #333;
}

.timeline-item.left::after {
    right: -46px; 
}

.timeline-item.right::after {
    left: -46px;
}*/

/* Square Step Marker */
.timeline-item::after {
    content: attr(data-step);
    position: absolute;
    top: 16px;
    width: 32px;
    height: 32px;
    background: #78BE20; /* Green */
    color: #fff; /* White text */

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px; /* Slight rounded square */
    box-shadow: 0 0 0 3px #333;
}

/* Position near center line */
.timeline-item.left::after {
    right: -62px;
}

.timeline-item.right::after {
    left: -62px;
}


/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {

    .timeline::before {
        left: 20px; /* shift vertical line to left */
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding-left: 60px;
        margin-bottom: 30px;
    }

        .timeline-item::before {
            left: 20px !important;
            width: 25px;
        }

        .timeline-item::after {
            left: 12px !important;
        }
}

.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: 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 {
    color: #78BE20;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}
/* Typing animation — expands only to the text width */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: var(--content-width);
    }
}

.productprocess {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

   /* .productprocess h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #78BE20;
    }*/

    .productprocess .divider {
        width: 50px;
        height: 3px;
        background-color: #38c172; /* Use your preferred color */
        margin-bottom: 50px;
    }

        .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;
    }
}
.plate-container {
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: white;
   padding:20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .plate-container img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: contain;
    }
 
.business-problem-section {
    text-align: center;
   
}
.bp-underline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

    .bp-underline .line {
        height: 4px;
        background: #78BE20;
        border-radius: 4px;
    }

  
    
    .bp-underline .big {
        width: 120px;
    }

    .bp-underline .dot {
        width: 10px;
        height: 10px;
        background: #78BE20;
        border-radius: 50%;
    }

/* List styling */
.bp-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 horizontal cards */
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}
/* Cards */
.bp-card {
    display: flex;
    flex-direction: column; /* FIX: stack items vertically */
    align-items: center; /* center image and text */
    gap: 12px;
    background: #ffffff;
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-bottom: 4px solid #78BE20;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    text-align: center;
}
    /* Image on top */
    .bp-card .bp-top {
        display: flex;
        justify-content: center;
        margin-bottom: 12px;
    }
    /* Icon */
    .bp-card .bp-icon-img {
        width: 60px; /* Adjust size */
        height: 60px; /* Keep square shape */
        object-fit: contain;
        margin-bottom: 12px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    /* Reveal animation */
    .bp-card.show {
        opacity: 1;
        transform: translateY(0);
    }
    /* Text block */
    .bp-card .bp-text strong {
        display: block;
        font-size: 18px;
        margin-bottom: 6px;
    }

    .bp-card .bp-text p {
        font-size: 14px;
        opacity: 0.8;
    }


.productivity-container {
    display: flex;
    align-items: flex-start;
    gap: 25px;
   
}

.productivity-image img {
    width: 600px; /* adjust as needed */
    height: auto;
    border-radius: 12px;
}

.productivity-right {
    flex: 1; /* Take remaining space */
}

.productivity-box {
    flex: 1;
    padding: 25px;
    background: #fff;
    /*border: 2px solid #78BE20;*/ /* Updated Green border */
    /*border-radius: 16px;*/ /* Rounded corners */
    /* Light green inner shadow using #78BE20 */
    /*box-shadow: inset 0 0 18px rgba(120, 190, 32, 0.22);*/
    margin-top: 100px;
}

/*user prespective*/
.productivity-container1 {
    display: flex;
    flex-direction: row; /* Ensures content left, image right */
    align-items: flex-start;
    gap: 25px;
    margin-top: 20px;
}

.productivity1-left {
    flex: 1; /* Content takes available width */
}

.productivity1-box {
    padding: 25px;
    background: #fff;
    /* Updated Green border */
    
    
    margin-top: 20px;
}

.productivity1-image {
    flex-shrink: 0;
}

    .productivity1-image img {
        width: 600px; /* adjust as needed */
        height: auto;
        border-radius: 12px;
    }

/* Responsive for tablet & mobile */
@media (max-width: 900px) {
    .productivity-container1 {
        flex-direction: column-reverse; /* Image below, content above on small screens */
        align-items: center;
        text-align: center;
    }

    .productivity1-image img {
        width: 100%;
        max-width: 420px;
    }

    .productivity1-box {
        margin-top: 20px;
    }
}
/* Responsive for tablet & mobile */
@media (max-width: 900px) {
    .productivity-container1 {
        flex-direction: column-reverse; /* Image below, content above */
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .productivity1-image img {
        width: 100%;
        max-width: 500px; /* Prevents oversized images */
        height: auto;
    }

    .productivity1-box {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .productivity1-image img {
        max-width: 100%; /* Full width on mobile */
    }

    .productivity1-box {
        padding: 15px;
    }
}

/*Responsive*/

/* Global Mobile Fixes */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-container,
    .right-container {
        flex: 1 1 100%;
        padding: 15px;
    }

        .right-container img {
            width: 70% !important;
            opacity: 0.8;
            margin: auto;
        }
}

@media (max-width: 768px) {
    .right-container img {
        width: 90% !important;
    }
}
/* BP Cards Responsive */
@media (max-width: 1200px) {
    .bp-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .bp-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bp-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.plate-container {
    max-width: 500px;
    width: 90%;
    height: auto;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
}

    .plate-container img {
        width: 100%;
        height: 100%;
    }
@media (max-width: 992px) {
    .productivity-container,
    .productivity-container1 {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .productivity-image img,
    .productivity1-image img {
        width: 100% !important;
        max-width: 450px;
    }

    .productivity-box,
    .productivity1-box {
        margin-top: 20px !important;
        width: 100%;
    }
}
@media (max-width: 900px) {
    .timeline::before {
        left: 18px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        left: 0 !important;
        margin-bottom: 30px;
    }

        .timeline-item::before {
            left: 18px !important;
            width: 30px;
        }

        .timeline-item::after {
            left: 10px !important;
        }
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 600px) {
    .animated-title {
        font-size: 1.8rem;
    }

    .bp-type {
        font-size: 28px;
    }

    footer {
        text-align: center;
    }

    .demo-container {
        padding: 25px 15px;
    }
}
@media (min-width: 1400px) {
    .process-card {
        width: 1200px;
    }
  
}

@media (min-width: 1024px) and (min-height: 1366px) {

    .content-wrapper {
        flex-wrap: nowrap;
    }
    .plate-container {
        max-width: 400px
    }
}
@media (min-width: 1028px) and (min-height: 800px) {

    .plate-container {
        max-width: 450px
    }
}

