:root {
    --primary-color: #00a76f;
    --primary-dark: #007867;
    --text-dark: #212529;
    --text-muted: #637381;
    --section-bg: #f8f9fa;
    --white: #ffffff;
    --ds-body-font-family: 'IBM Plex Sans', sans-serif;
}

body {
    font-family: 'IBM Plex Sans', sans-serif !important;
}

/* Global Styles */
.section-padding {
    padding: 100px 0;
}

.site-navigation .navbar-brand img {
    max-width: 200px;
}

/* Hero Section */
#hero {
    height: 100vh;
    min-height: 700px;
    background: url('../img/lease-abstraction.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* CSS Parallax */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 167, 111, 0.3) 100%);
}

#hero .container-hero {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 5;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: none;
    backdrop-filter: none;
}

.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hero-feature-list li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-feature-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Dashboard Mockup Styling */
.hero-mockup-container {
    position: relative;
    perspective: 2000px;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-card {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.mockup-dots { display: flex; gap: 8px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.mockup-body {
    font-family: 'Courier New', Courier, monospace;
    color: #00d991;
    font-size: 14px;
    position: relative;
}

.mockup-line {
    margin-bottom: 10px;
    border-right: 2px solid transparent;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d991, transparent);
    animation: scan 3s infinite linear;
    box-shadow: 0 0 15px #00d991;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.floating-tag {
    position: absolute;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 167, 111, 0.3);
    z-index: 10;
    animation: float 4s infinite ease-in-out;
}

.tag-accuracy { top: 10%; right: -20px; animation-delay: 0s; }
.tag-speed { bottom: 10%; left: -20px; animation-delay: -2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Stats Section Styling - Light Theme */
#stats {
    position: relative;
    background-color: #fcfcfc;
    /* Premium off-white */
    color: var(--dark);
    overflow: hidden;
    padding: 100px 0 120px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

#stats h3 {
    color: #f46516;
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 40px;
}

#stats h3:after {
    display: none;
}

#statsCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    /* Increased for visibility */
}

#stats .container {
    position: relative;
    z-index: 2;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px 40px;
}

/* Option H: Magnetic Brand Pulse (Final Choice) */
.magnetic-hub-container {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.magnetic-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(0, 167, 111, 0.1);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
}

.magnetic-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.floating-keyword {
    position: absolute;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 167, 111, 0.3);
    z-index: 5;
    animation: floatAround 6s infinite ease-in-out;
}

.k1 {
    top: -20px;
    left: -10px;
    animation-delay: 0s;
}

.k2 {
    top: 0;
    right: -20px;
    animation-delay: -1.5s;
}

.k3 {
    top: 40%;
    left: -60px;
    animation-delay: -3s;
}

.k4 {
    top: 60%;
    right: -50px;
    animation-delay: -4.5s;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-15px) translateX(10px);
    }

    50% {
        transform: translateY(5px) translateX(20px);
    }

    75% {
        transform: translateY(15px) translateX(-5px);
    }
}



.stat-item {
    text-align: left;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle dark divider */
    padding-left: 25px;
}

/* Option F: Trust Pillars Grid */
.trust-grid-wrapper {
    position: relative;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-center {
    position: relative;
    z-index: 5;
}

.trust-logo-box {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.trust-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s linear infinite;
}

.pillar {
    position: absolute;
    width: 250px;
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 4;
    transition: all 0.4s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 167, 111, 0.1);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 167, 111, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.pillar h5 {
    margin-bottom: 10px;
    font-weight: 700;
}

.pillar p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Positioning Pillars */
.pillar-tl {
    top: 0;
    left: 0;
}

.pillar-tr {
    top: 0;
    right: 0;
}

.pillar-bl {
    bottom: 0;
    left: 0;
}

.pillar-br {
    bottom: 0;
    right: 0;
}

/* SVG Lines */
.trust-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.draw-line {
    stroke: var(--primary-color);
    stroke-width: 1;
    stroke-dasharray: 10;
    opacity: 0.2;
    animation: dashMove 5s linear infinite;
}

@keyframes dashMove {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}



.stat-item {
    text-align: left;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle dark divider */
    padding-left: 25px;
}

.stat-item h2 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-color) !important;
    /* Branded color for numbers */
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.stat-item h2 span {
    font-size: 2.5rem;
    margin-left: 2px;
}

.stat-item p {
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0;
}



.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-align: left;
}

.hero-content h1 span {
    display: block;
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: left;
}

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px;
    line-height: 1.6;
    text-align: left;
}





/* Parallax CTA */
.parallax-cta {
    min-height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../img/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    background-color: #1a1a1a;
}

/* Buttons */
.btn-primary-landing {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 167, 111, 0.3);
    display: inline-block;
}

.btn-primary-landing:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00d991 100%);
    color: #fff !important;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 167, 111, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 167, 111, 0.4);
    background: linear-gradient(135deg, #00d991 0%, var(--primary-color) 100%);
    color: #fff !important;
}

.btn-login::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.btn-login:hover::after {
    left: 100%;
}

.btn-outline-landing {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 11px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-landing:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Animation Triggers */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

/* Custom Smoothness for Animate.css */
:root {
    --animate-duration: 1.2s;
}

.animate__animated {
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-fill-mode: both;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Sticky Header Customization */
header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    z-index: 1030;
    padding: 20px 0;
    background-color: transparent;
}

header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 167, 111, 0.1);
}

.contact-info-list .icon-box {
    width: 50px;
    height: 50px;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-main {
    max-height: 60px;
    transition: all 0.4s ease;
    opacity: 0;
}

.logo-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 60px;
    transition: all 0.4s ease;
}

header.sticky .logo-main {
    max-height: 45px;
    opacity: 1;
}

header.sticky .logo-text-overlay {
    opacity: 0;
    /* Hide the white text overlay on white background */
}

.navbar-nav .nav-item:not(:last-child) {
    margin-right: 20px;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 0.5rem 0rem !important;
    position: relative;
    width: max-content;
}

header.sticky .nav-link {
    color: #222 !important;
}


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/*who we serve start*/
#whoweServe {
    padding: 100px 0px 0px;
    background: url('../img/who-we-serve.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

#whoweServe ul {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#whoweServe ul li {
    flex: 0 0 200px;
    padding: 10px;
    list-style: none;
    text-align: center;
    background: #fff;
    border-radius: 4px;
}

/*who we serve end*/

/* Why Clients Choose Us Section */
.why-client-choose-us-wrap {
    background-color: rgba(53, 133, 249, .1);
    position: relative;
    overflow: hidden;
}

.choose-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.choose-us-list>li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.choose-us-list .icon-wrap {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 18px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-us-list .icon-wrap i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.choose-us-list .text-wrap {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.choose-us-list .text-wrap strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Sublist Styling */
.choose-us-sublist {
    list-style: none;
    padding-left: 42px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.choose-us-sublist li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #f46516;
    display: flex;
    align-items: center;
}

.choose-us-sublist li i {
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #3b9750;
}

/* Image Wrapper with catchy effects */
.choose-us-image-container {
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 8px solid white;
}

.image-border-decoration {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px) rotateY(-5deg);
}

.image-wrapper:hover .image-border-decoration {
    transform: translate(10px, 10px);
    opacity: 0.6;
}


/* Standardized Section Titles */
.landing-section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    line-height: 1.2;
}

#how-it-works .landing-section-title {
    color: #fff !important;
}


.landing-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.text-start .landing-section-title::after,
.landing-section-title.text-start::after {
    left: 0;
    transform: none;
}

.landing-section-title:hover::after {
    width: 100px;
}

.text-white.landing-section-title {
    color: #fff !important;
}

.testimonial-card {
    border-top: 4px solid var(--primary-color) !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.testimonial-card .italic {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.star-rating i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.client-avatar img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Service Step UI Redesign */
.service-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #010d0a;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.service-step-card {
    background: #010d0a;
    padding: 60px 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 650px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-step-card {
    background: #010d0a;
    padding: 60px 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 650px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.service-step-card:hover {
    background: #05231c;
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    z-index: 10;
    border-right-color: transparent;
}

.service-step-card.active {
    background: #041c16;
    border-top: 4px solid #00a76f;
    margin-top: -4px;
    z-index: 5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-step-card.active:hover {
    background: #082d23;
}

.service-step-card:last-child {
    border-right: none;
}


.step-number {
    font-family: 'Outfit', sans-serif;
    color: rgba(0, 167, 111, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.service-step-card.active .step-number {
    color: #00a76f;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 167, 111, 0.05);
    border: 1px solid rgba(0, 167, 111, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a76f;
    font-size: 1.4rem;
    margin-bottom: 45px;
    transition: all 0.4s ease;
}

.service-step-card:hover .service-icon-box {
    transform: scale(1.05);
    border-color: rgba(0, 167, 111, 0.3);
    background: rgba(0, 167, 111, 0.1);
}

.service-step-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.service-step-card:hover h3 {
    color: #00a76f;
}


.service-step-card p {
    color: #a0b2ad;
    line-height: 1.8;
    margin-bottom: 45px;
    font-size: 1.05rem;
    font-weight: 300;
}

.feature-list-service {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.feature-list-service li {
    color: #a0b2ad;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.feature-list-service li:hover {
    color: #fff;
    transform: translateX(5px);
}

.feature-list-service li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #00a76f;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    top: -2px;
}

.service-step-card:nth-child(2) .feature-list-service li::before {
    color: #f46516;
}

.service-step-card:nth-child(3) .feature-list-service li::before {
    color: #3b82f6;
}

.service-badge {
    margin-top: auto;
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 167, 111, 0.08);
    border: 1px solid rgba(0, 167, 111, 0.2);
    border-radius: 50px;
    color: #00a76f;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: fit-content;
    transition: all 0.3s ease;
}

.service-step-card:nth-child(2) .service-badge {
    color: #f46516;
    background: rgba(244, 101, 22, 0.08);
    border-color: rgba(244, 101, 22, 0.2);
}

.service-step-card:nth-child(3) .service-badge {
    color: #4da1ff;
    background: rgba(77, 161, 255, 0.08);
    border-color: rgba(77, 161, 255, 0.2);
}

.service-step-card:hover .service-badge {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Pricing Section - Light Theme with Parallax */
#pricing {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 167, 111, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 167, 111, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

#pricing .landing-section-title {
    color: var(--text-dark) !important;
}

#pricing p.reveal {
    color: #637381;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    transition: all 0.7s ease;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.pricing-card:hover::before {
    top: -100%;
    left: 100%;
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: #ffffff;
    border-color: rgba(0, 167, 111, 0.3);
    box-shadow: 0 40px 80px rgba(0, 167, 111, 0.15);
}

.pricing-card:hover .p-icon {
    transform: rotateY(180deg);
    background: #00a76f;
    color: #fff;
}

.pricing-card:hover .amount {
    transform: scale(1.1);
    color: #00a76f;
}

.pricing-card:hover .pricing-features li {
    transform: translateX(8px);
    color: var(--text-dark);
}


.pricing-card.featured {
    background: #ffffff;
    border: 2px solid #00a76f;
    box-shadow: 0 20px 50px rgba(0, 167, 111, 0.15);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00a76f;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 167, 111, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.pricing-header .p-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 167, 111, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a76f;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card.featured .p-icon {
    background: #00a76f;
    color: #fff;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 35px;
}

.price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
    color: #637381;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    transition: all 0.4s ease;
}

.price .period {
    color: #637381;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    text-align: left;
}

.pricing-features li {
    color: #637381;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}


.pricing-features li i {
    color: #00a76f;
    font-size: 0.8rem;
}

.pricing-footer {
    margin-top: auto;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #f8f9fa;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-pricing:hover {
    background: #010d0a;
    color: #fff;
}

.btn-featured {
    background: #00a76f;
    color: #fff;
    border-color: #00a76f;
}

.btn-featured:hover {
    background: #010d0a;
    border-color: #010d0a;
    color: #fff;
}


/* Responsive Pricing */
@media (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Service Steps */
@media (max-width: 1199px) {
    .service-step-grid {
        grid-template-columns: 1fr;
    }

    .service-step-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        min-height: auto;
        padding: 50px 30px;
    }

    .service-step-card.active {
        margin-top: 0;
        border-top: none;
        border-left: 4px solid #00a76f;
        padding-left: 26px;
    }
}


/* How It Works Section */
#how-it-works {
    background: #010d0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#how-it-works .landing-section-title .text-primary-landing {
    color: #00a76f;
}

#how-it-works .landing-section-title a:hover .text-primary-landing {
    color: #fff;
}


/* Vertical Steps */
.vertical-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.v-step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.v-step-item:hover {
    background: rgba(0, 167, 111, 0.05);
    border-color: rgba(0, 167, 111, 0.2);
    transform: translateX(10px);
}

.v-step-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 65px;
}

.v-step-icon {
    width: 65px;
    height: 65px;
    background: rgba(0, 167, 111, 0.1);
    border: 1px solid rgba(0, 167, 111, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a76f;
    font-size: 1.5rem;
    box-shadow: 0 0 25px rgba(0, 167, 111, 0.15);
    transition: all 0.4s ease;
}

.v-step-item:hover .v-step-icon {
    background: #00a76f;
    color: #fff;
    box-shadow: 0 0 35px rgba(0, 167, 111, 0.4);
}

.v-step-num {
    position: absolute;
    right: -45px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #00a76f;
    font-size: 1rem;
    opacity: 0.5;
}

.v-step-text h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.v-step-text p {
    color: #a0b2ad;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Pipeline Visualization */
.pipeline-container {
    background: rgba(4, 28, 22, 0.8);
    border: 1px solid rgba(0, 167, 111, 0.2);
    border-radius: 35px;
    padding: 50px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.pipeline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #00a76f;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 45px;
}

.pipeline-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pipeline-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pipeline-box:hover {
    border-color: rgba(0, 167, 111, 0.4);
    background: rgba(0, 167, 111, 0.08);
    transform: translateY(-5px);
}

.p-box-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a76f;
    font-size: 1.35rem;
}

.p-box-content h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.p-box-content p {
    color: #a0b2ad;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.p-box-tag {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 800;
    color: #00a76f;
    background: rgba(0, 167, 111, 0.12);
    padding: 6px 16px;
    border-radius: 6px;
    letter-spacing: 1.5px;
}

.pipeline-arrow {
    color: rgba(0, 167, 111, 0.25);
    font-size: 1.2rem;
    margin: 8px 0;
    animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Specific Step Styling */
.pipeline-box.ai-engine {
    border-color: rgba(0, 167, 111, 0.3);
    background: rgba(0, 167, 111, 0.05);
}

.pipeline-box.qc-review {
    border-color: rgba(59, 130, 246, 0.15);
}

.pipeline-box.qc-review .p-box-tag {
    color: #4da1ff;
    background: rgba(77, 161, 255, 0.12);
}

.pipeline-box.delivered {
    background: rgba(0, 167, 111, 0.08);
    border-color: rgba(0, 167, 111, 0.4);
}

.pipeline-box.delivered .p-box-tag {
    background: #00a76f;
    color: #fff;
}

.pipeline-footer-info {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.process-status-console {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.console-title {
    font-size: 0.75rem;
    color: #a0b2ad;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.console-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.c-bar .fill {
    height: 100%;
    background: #00a76f;
    animation: barFill 3s ease-out infinite alternate;
}

.c-bar:nth-child(2) .fill {
    animation-delay: 1s;
    background: #f46516;
}

@keyframes barFill {
    from {
        width: 30%;
    }

    to {
        width: 90%;
    }
}

.copilot-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #a0b2ad;
    font-style: italic;
    opacity: 0.7;
}

/* SSLA Notice Box */
.ssla-notice-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.ssla-notice-content {
    background: rgba(0, 167, 111, 0.05);
    border: 1px solid rgba(0, 167, 111, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    color: #a0b2ad;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 4px solid #00a76f;
}

.ssla-notice-content:hover {
    background: rgba(0, 167, 111, 0.1);
    border-color: rgba(0, 167, 111, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 167, 111, 0.2);
}

.ssla-notice-content i {
    color: #00a76f;
    font-size: 1.2rem;
    animation: pulseIcon 2s infinite ease-in-out;
}

.ssla-notice-content strong {
    color: #00a76f;
    font-weight: 700;
}

@keyframes pulseIcon {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@media (max-width: 991px) {
    .ssla-notice-wrapper {
        justify-content: center;
    }

    .ssla-notice-content {
        text-align: center;
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }
}

.how-it-works-title {
    font-size: 2.5rem;
    text-align: center;
}

.v-step-item {
    padding: 20px;
}

.v-step-num {
    display: none;
}

.pipeline-container {
    padding: 30px;
    margin-top: 50px;
}

.pipeline-box {
    padding: 20px;
    gap: 20px;
}

.pipeline-footer-info {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.process-status-console {
    width: 100%;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 40px !important;
}

.testimonial-carousel .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: #e0e0e0 !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
}

.testimonial-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 30px !important;
    border-radius: 10px !important;
}

/* Owl Carousel Custom Nav Arrows */
.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    margin-top: -30px;
}

.testimonial-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
    font-size: 24px !important;
    transition: all 0.3s ease !important;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 167, 111, 0.3) !important;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: -70px;
}

.testimonial-carousel .owl-nav .owl-next {
    right: -70px;
}





.landing-section-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-section-title a:hover {
    color: var(--primary-color);
}

.text-white.landing-section-title a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Styles */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    color: #fff;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info i {
    font-size: 1.1rem;
}

/* Option A: Scroll Progress Circle */
.scroll-progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 100px;
    width: 100px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 167, 111, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.scroll-progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-progress-wrap::after {
    position: absolute;
    content: '\f062';
    /* FontAwesome Up Arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-align: center;
    line-height: 100px;
    font-size: 24px;
    color: var(--primary-color);
    left: 0;
    top: 0;
    height: 100px;
    width: 100px;
    cursor: pointer;
    display: block;
    z-index: 1;
    opacity: 0;
    transition: all 200ms linear;
}

.scroll-progress-wrap:hover::after {
    opacity: 1;
}

.scroll-progress-wrap:hover .progress-logo {
    opacity: 0;
    transform: scale(0.8);
}

.scroll-progress-wrap .progress-logo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 90px;
    height: 90px;
    z-index: 2;
    transition: all 200ms linear;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 5px;
}

.scroll-progress-wrap .progress-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scroll-progress-circle path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.scroll-progress-wrap .progress-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scroll-progress-circle path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}