body {
    font-family: 'Inter', sans-serif;
}

/* Navbar */
.navbar {
    padding: 18px 0;
}

.logo {
    height: 40px;
    width: auto;
}

.navbar-brand {
    font-weight: 700;
    font-size: 20px;
}

.navbar .nav-link.active {
    color: #28464B !important;
    font-weight: 600;
    border-bottom: 2px solid #28464B;
}

.brand-icon {
    width: 35px;
    height: 35px;
    background: #45B6C4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 8px;
}

.nav-link {
    color: #6c757d !important;
    font-weight: 500;
}

.btn-demo {
    background: #28464B;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

    .btn-demo:hover {
        color: black;
        border: 1px solid #D3D4D5;
    }


.vertical-slider {
    height: 500px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.slider-column {
    height: 500px;
    overflow: hidden;
}

.slider-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollUp 18s linear infinite;
    will-change: transform;
}

.slider-column.reverse .slider-inner {
    animation: scrollDown 18s linear infinite;
}

.slider-inner img {
    width: 180px;
    height: 130px;
    object-fit: fill;
    border-radius: 12px;
    margin-bottom: 20px;
}



@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #28464B;
}

.badge-custom {
    background: #dff4f6;
    color: #45B6C4;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

    .hero h1 span {
        color: #ffffff;
    }

.hero p {
    color: #D4DADB;
    margin-top: 20px;
    font-size: 18px;
    max-width: 500px;
}

.hero .play-icon {
    width: 18px;
    margin-right: 8px;
}




.btn-primary-custom {
    background: #ffffff;
    color: #28464B;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

    .btn-primary-custom:hover {
        border: 1px solid #ffffff;
        color: white;
    }

.btn-outline-custom {
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-outline-custom:hover {
        border: 1px solid #D3D4D5;
        color: #ffffff;
    }

.hero-image {
    background: #0f172a;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary-cta {
    background: var(--orange);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.feature-list {
    font-size: 13px;
    color: #D4DADB;
}

.feat-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.feature-list span {
    margin-right: 10px;
}

.stats-section {
    background-color: #ffffff;
    /* Dark Blue */
    padding: 60px 0;
}

.stats-number {
    color: #363C3D;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 8px;
}

.stats-text {
    color: #86909C;
    font-size: 14px;
    margin: 0;
}

.white-wrapper {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

    .white-wrapper p {
        color: #86909C !important;
    }

.problem-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.problem-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.features-section {
    background: #f8fafc;
}

.feature-badge {
    display: inline-block;
    background: #DBF2F1;
    color: #28464B;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.feature-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
}

    .feature-heading span {
        color: #45b6c4;
    }

.feature-subtext {
    color: #6b7280;
    font-size: 16px;
    margin-top: 10px;
}

.feature-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
    }

    .feature-card h5 {
        font-weight: 600;
        margin-top: 15px;
        margin-bottom: 10px;
        color: #1f2937;
    }

    .feature-card p {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.6;
    }

.features-section .icon-box {
    width: 45px;
    height: 45px;
    background: #e6f7f9;
    color: #45b6c4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.testimonial-section {
    background: #f8fafc;
}

.testimonial-slider {
    padding-bottom: 20px;
}

.testimonial-badge {
    display: inline-block;
    background: #ffe8d5;
    color: #28464B;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
}

    .testimonial-heading span {
        color: #57B9B9;
    }

.testimonial-subtext {
    color: #6b7280;
    font-size: 16px;
    margin-top: 10px;
}

.testimonial-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    transition: 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
    }


.stars {
    color: #f97316;
    font-size: 16px;
    margin-top: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 10px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    background: #e6f7f9;
    color: #45b6c4;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.company {
    color: #45b6c4;
    font-size: 13px;
}



.problem-badge {
    background: #ffe5e5;
    color: #e54848;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 20px;
}

.solution-badge {
    background: #43b5cb;
    color: #f3fbfc;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 20px;
}

.solution-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.solution-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.problem-list li {
    margin-bottom: 14px;
    font-size: 16px;
    color: #363C3D;
}

.problem-list i {
    color: #ff5a5a;
    margin-right: 10px;
    font-size: 18px;
}

.solution-box {
    background: #f1faf9;
    border-radius: 14px;
}

.solution-list li {
    margin-bottom: 14px;
    font-size: 16px;
    color: #444;
}

.solution-list i {
    color: #28b6c7;
    margin-right: 10px;
    font-size: 18px;
}

.features-link {
    color: #28b6c7;
    font-weight: 600;
    text-decoration: none;
}

    .features-link:hover {
        text-decoration: underline;
    }

.cta-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 30% 20%, rgba(69, 182, 196, 0.25), transparent 40%), radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.15), transparent 40%), #0f172a;
    color: #ffffff;
    overflow: hidden;
}



.cta-heading {
    font-size: 42px;
    font-weight: 700;
    margin-top: 15px;
}

    .cta-heading span {
        color: #45b6c4;
    }

.cta-subtext {
    max-width: 650px;
    margin: 20px auto 0;
    color: #94a3b8;
    font-size: 16px;
}

.btn-cta-primary {
    background: #f97316;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    transition: 0.3s ease;
}

    .btn-cta-primary:hover {
        background: #ea580c;
        transform: translateY(-3px);
        color: #fff;
    }

.btn-cta-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

    .btn-cta-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }

.cta-small-text {
    font-size: 13px;
    color: #64748b;
}

.footer-section {
    background: #28464B;
    color: #D4DADB;
    padding: 80px 0 40px;
}

.footer-logo span {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.brand-icon-footer {
    width: 36px;
    height: 36px;
    background: #45b6c4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
}

.footer-text {
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
    color: #D4DADB;
}

.footer-logo-img {
    height: 42px;
    width: auto;
}

.footer-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #D4DADB;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: #45b6c4;
    }

.footer-contact li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #D4DADB;
}

    .footer-contact li img {
        width: 18px;
        margin-right: 8px;
    }

.footer-bottom {
    border-top: 1px solid #ffffff;
}

.footer-copy {
    font-size: 14px;
    color: #D4DADB;
}


.footer-social a {
    margin-left: 15px;
    display: inline-block;
}

.footer-social img {
    width: 18px;
    opacity: 0.8;
    transition: 0.3s;
}

    .footer-social img:hover {
        opacity: 1;
    }


.social-icons a {
    color: #94a3b8;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: #45b6c4;
    }





.cta-wrapper {
    background: #ffffff;
}

.cta-box {
    background: #28464B;
    border-radius: 20px;
    padding: 135px 40px;
    max-width: 900px;
    margin: auto;
}

.cta-badge {
    display: inline-block;
    background: #3d5b5f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.cta-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

    .cta-title span {
        color: #57B9B9;
    }

.cta-text {
    max-width: 600px;
    margin: auto;
    font-size: 16px;
    color: #D4DADB;
}

.cta-buttons .btn {
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 16px;
    background-color: #FFFFFF;
    color: #28464B;
}

.cta-small {
    font-size: 13px;
    opacity: 0.7;
}




.features-network {
    background: #28464B;
    color: white;
    position: relative;
}

.badge-feature {
    display: inline-block;
    background: #DBF2F1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: #28464B;
}

.feature-title {
    font-size: 40px;
    font-weight: 700;
}

    .feature-title span {
        color: #57B9B9;
    }

.feature-sub {
    opacity: 0.8;
    max-width: 600px;
    margin: auto;
}

.feature-grid {
    position: relative;
}



.feature-item {
    padding: 40px 25px;
    position: relative;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    color: #2f4f4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: auto;
    margin-bottom: 15px;
}

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* grid lines */

.feature-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .feature-item:nth-child(4),
    .feature-item:nth-child(8) {
        border-right: none;
    }

    .feature-item:nth-child(n+5) {
        border-bottom: none;
    }

    /* center dots */

    .feature-item::after {
        content: '';
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        position: absolute;
        right: -4px;
        bottom: -4px;
    }

    /* Remove right dots from last column */
    .feature-item:nth-child(4n)::after {
        display: none;
    }

    /* Remove bottom dots from last row */
    .feature-item:nth-last-child(-n+4)::before {
        display: none;
    }

    /* Right side dots remove (last column) */
    .feature-item:nth-child(4n)::after {
        display: none;
    }

    /* Bottom dots remove (last row) */
    .feature-item:nth-last-child(-n+4)::before {
        display: none;
    }

    .feature-item:nth-last-child(-n+4)::after {
        display: none;
    }


.platform-banner {
    background: #eef3f6;
    padding: 100px 0;
    text-align: center;
}

.platform-badge {
    display: inline-block;
    background: #d7eef3;
    color: #2f7c8b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.platform-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2933;
    line-height: 1.2;
    margin-bottom: 20px;
}

.platform-text {
    font-size: 16px;
    color: #6b7c8f;
    max-width: 600px;
    margin: 0 auto 30px;
}

.demo-btn {
    background: #ff7a1a;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

    .demo-btn:hover {
        background: #e96b12;
    }









.features-section {
    background: #f2f7f9;
}

.features-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: 0.3s;
}

    .features-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.icon-box {
    width: 44px;
    height: 44px;
    background: #e6f7fb;
    color: #34b6c8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

.features-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.features-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        font-size: 13px;
        color: #4b5563;
        margin-bottom: 8px;
        position: relative;
    }


    .features-list i {
        color: #28b6c7;
        margin-right: 10px;
        font-size: 18px;
    }


.demo-cta-section {
    background: #0f1629;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.demo-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.demo-text {
    color: #aab6c5;
    font-size: 16px;
    max-width: 520px;
    margin: auto;
    margin-bottom: 35px;
}










/* Pricing */


.pricing-section {
    background: #F3F8F9;
}

.pricing-badge {
    background: #dff1f1;
    color: #28464B;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.pricing-title {
    font-weight: 700;
    font-size: 44px;
    color: #363C3D;
}

    .pricing-title span {
        color: #57B9B9;
    }

.pricing-sub {
    color: #7a8a8a;
    max-width: 600px;
    margin: auto;
    font-size: 16px;
}

.pricing-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    border: 1px solid #e8ecec;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-section .pricing-card a {
    background: #F5F5F5;
    color: #86909C;
}

.plan-name {
    font-weight: 600;
    color: #363C3D;
    font-size: 24px;
}

.plan-desc {
    font-size: 14px;
    color: #86909C;
}

.pricing-section .price {
    font-size: 50px;
    margin-top: 10px;
    color: #363C3D;
}

.price span {
    font-size: 14px;
    color: #888;
}

.pricing-features {
    flex-grow: 1;
}

.pricing-card .btn {
    margin-top: auto;
}

/* Divider after price */

.pricing-card hr {
    border-color: #e8ecec;
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        margin-bottom: 14px;
        font-size: 16px;
        color: #363C3D;
    }



        .pricing-features li::before {
            display: none;
        }

    .pricing-features.white li {
        color: #d7e6e6;
    }

/* Active middle card (MODIFIED) */

.pricing-card.active {
    background: #ffffff;
    border: 2px solid #4db6ac;
    transform: scale(1.03);
    border: 3px solid #56B7B2;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
}

.popular-top {
    background: #57B9B9;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 35px 25px;
    border-radius: 20px 20px 0 0;
}

    .pricing-inner .pricing-features {
        flex-grow: 1;
    }

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.active .btn {
    background: #28464B;
    border: none;
}

/* Most Popular badge (MODIFIED POSITION) */

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #56b7b2;
    color: #ffffff;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 500;
}


.pricing-features .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/*FAQ Section */

.faq-section {
    background: #F3F8F9;
}

.faq-badge {
    background: #dff1f1;
    color: #2d5c5c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
}

    .faq-title span {
        color: #57B9B9;
    }

.faq-sub {
    color: #8a9a9a;
}

/* accordion */
.faq-accordion {
    max-width: 750px;
    margin: auto;
}


    .faq-accordion .accordion-item {
        border: none;
        margin-bottom: 15px;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    }

    .faq-accordion .accordion-button {
        background: #ffffff;
        font-weight: 500;
        padding: 18px;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .faq-accordion .accordion-button::after {
            margin-left: auto;
        }

.faq-number {
    width: 28px;
    height: 28px;
    background: #2f4f4f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.accordion-body {
    padding: 20px 60px;
    color: #6b7b7b;
}











/* About Page */






.about-badge {
    background: #DBF2F1;
    color: #28464B;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
}

/* heading */

.about-section {
    background: #F3F8F9;
}


.about-title {
    font-size: 44px;
    font-weight: 700;
    color: #363C3D;
}

    .about-title span {
        color: #57B9B9;
    }

.about-subtitle {
    color: #86909C;
    max-width: 600px;
    margin: auto;
    font-size: 16px;
}

/* card */

.about-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* image */

.about-img {
    border-radius: 12px;
}

/* story */

.story-title {
    font-weight: 700;
    font-size: 32px;
    color: #363C3D;
}

.story-text {
    color: #86909C;
    font-size: 16px;
}

/* quote */

.quote-box {
    background: #F1FAF9;
    padding: 20px;
    border-radius: 12px;
}

.quote-text {
    font-style: italic;
    color: #86909C;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #28464B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.values-section {
    background: #28464B;
    padding: 90px 0;
    color: white;
    font-family: "Inter", sans-serif;
}

.about-frame {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .about-frame img {
        max-width: 100%;
        height: auto;
        display: block;
    }

.values-heading h2 {
    font-size: 40px;
    font-weight: 700;
}

.values-heading span {
    color: #79d1c8;
}

.values-heading p {
    color: #ffffff;
    margin-top: 10px;
}

.values-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
}

/* cards */

.value-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.values-section .row.align-items-center {
    align-items: stretch !important;
}

.value-card h6 {
    font-weight: 600;
    margin-top: 15px;
    font-size: 20px;
    color: #363C3D;
}

.value-card p {
    font-size: 16px;
    color: #86909C;
}

/* icon */

.value-iconbox {
    width: 45px;
    height: 45px;
    background: #DBF2F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2b6f6c;
}



.metrics-section {
    background: #F3F8F9;
    padding: 80px 0;
}

.metrics-image img {
    border-radius: 16px;
    margin-bottom: 50px;
}

.metrics-card {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.metrics-icon {
    width: 50px;
    height: 50px;
    background: #d8eceb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .metrics-icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }


.metrics-card h2 {
    font-size: 40px;
    margin-bottom: 5px;
    color: #363C3D;
}

.metrics-card p {
    color: #86909C;
    font-size: 16px;
}















/* Feature Page */

.manage-section {
    padding: 90px 0;
    background: #F3F8F9;
    font-family: "Inter", sans-serif;
}

.manage-badge {
    background: #DBF2F1;
    color: #28464B;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.manage-heading {
    font-size: 44px;
    font-weight: 700;
    color: #363C3D;
    line-height: 1.3;
}

    .manage-heading span {
        color: #57B9B9;
    }

.manage-description {
    color: #86909C;
    margin: auto;
    font-size: 16px;
}

.manage-btn {
    background: #28464B;
    color: #FFFFFF;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

    .manage-btn:hover {
        background: #244040;
        color: white;
    }

.platform-section {
    background: #F3F8F9;
}


.platform-container {
    max-width: 1100px;
}


.platform-row {
    row-gap: 40px;
}

.platform-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}



.platform-title {
    font-size: 24px;
    font-weight: 600;
    color: #363C3D;
    margin-bottom: 6px;
}

.platform-text {
    font-size: 16px;
    color: #86909C;
    line-height: 1.6;
}

.platform-hover {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 25px;
    transition: 0.4s ease;
}

.platform-card:hover .platform-hover {
    bottom: 0;
}

.platform-hover ul {
    padding: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .platform-hover ul li i {
        color: #1fb5ad;
        font-size: 18px;
    }

    .platform-hover ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 40px;
        /* yeh distance create karega */
        font-size: 20px;
        color: #4a4a4a;
    }

.platform-hover li {
    font-size: 14px;
    margin-bottom: 10px;
}

.platform-hover i {
    color: #00d084;
    margin-right: 8px;
}

.platform-card {
    position: relative;
    border-radius: 12px;
    color: #363C3D;
    overflow: hidden;
    min-height: 220px;
    transition: 0.3s;
}

.img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}


.platform-image {
    width: 100%;
    display: block;
}


.overlay {
    position: absolute;
    inset: 0;
    background: #ffffff;
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}


.img-wrap:hover .overlay {
    transform: translateY(0);
}


.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 20px;
}

    .overlay li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 2px;
        width: 20px;
        height: 20px;
        background: url("/images/price-tick.png") no-repeat center;
        background-size: contain;
    }





/* Solution Page */



.role-solutions-sec {
    padding: 100px 0;
    background: #F3F8F9;
}

.role-badge {
    background: #DBF2F1;
    color: #28464B;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.role-heading {
    font-weight: 700;
    font-size: 44px;
    color: #363C3D;
}

    .role-heading span {
        color: #57B9B9;
    }

.role-subtext {
    color: #86909C;
    font-size: 16px;
    margin-top: 10px;
}

.role-solutions-sec {
  position: relative;
}

/* Each card */
.role-card-box {
  position: sticky;
  top: 120px; 
  margin-bottom: 120px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Stack order (IMPORTANT) */
.role-solutions-sec .role-card-box:nth-of-type(1) {
    z-index: 1;
}

.role-solutions-sec .role-card-box:nth-of-type(2) {
    z-index: 2;
}

.role-solutions-sec .role-card-box:nth-of-type(3) {
    z-index: 3;
}

.role-solutions-sec .role-card-box:nth-of-type(4) {
    z-index: 4;
}

.role-solutions-sec .role-card-box:nth-of-type(5) {
    z-index: 5;
}

.role-solutions-sec .role-card-box:nth-of-type(6) {
    z-index: 6;
}

/* Give scroll space */
.role-solutions-sec .container {
  padding-bottom: 30px;
}

.role-card-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* LEFT */
.role-icon-wrap {
    width: 60px;
    height: 60px;
    background: #d9eeee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .role-icon-wrap img {
        width: 26px;
    }

.role-card-title {
    margin-bottom: 10px;
    color: #363C3D;
    font-size: 32px;
}

.role-card-desc {
    color: #86909C;
    font-size: 16px;
}

.role-red-title {
    color: #E52E2E;
    font-size: 16px;
}

.role-green-title {
    color: #57B9B9;
    font-size: 16px;
}

.role-list-green {
    list-style: none;
    padding-left: 0;
}

.role-list-red,
.role-list-green {
    font-size: 13px;
}

.role-list-red {
    padding-left: 22px;
}

    .role-list-red li,
    .role-list-green li {
        margin-bottom: 6px;
        color: #363C3D;
        font-size: 14px;
    }

.role-list-green li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #363C3D;
    font-size: 14px;
}

.role-list-green img {
    width: 18px;
    margin-top: 3px;
}

/* RIGHT */
.role-preview-wrap {
    background: #F1FAF9;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.role-preview-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .role-preview-inner img {
        width: 64px;
        margin-bottom: 10px;
    }

    .role-preview-inner p {
        color: #7a8a8a;
        font-size: 13px;
        margin: 0;
    }

/* Schedule Demo Page */

.schedule-sec {
    padding: 100px 0;
    background: #F3F8F9;
}

.schedule-badge {
    background: #DBF2F1;
    color: #28464B;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.schedule-title {
    font-size: 44px;
    color: #363C3D;
}

    .schedule-title span {
        color: #4aa3a3;
    }

.schedule-sub {
    color: #86909C;
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto 0;
}


.schedule-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .schedule-form-box label {
        font-size: 14px;
        margin-bottom: 5px;
        font-weight: 700;
        color: #363C3D;
    }

    .schedule-form-box .form-control {
        padding: 10px;
        font-size: 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }

.schedule-btn {
    background: #28464B;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
}

    .schedule-btn:hover {
        background: #244040;
        color: #fff;
    }


.schedule-info-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.schedule-info-top {
    background: #F1FAF9;
    padding: 20px;
    border-radius: 12px;
}

    .schedule-info-top h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .schedule-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 10px;
        color: #86909C;
    }

    .schedule-list img {
        width: 16px;
        margin-top: 3px;
    }

/* IMAGE */
.schedule-img-box {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

    .schedule-img-box img {
        width: 100%;
        display: block;
    }

.schedule-form-box,
.schedule-info-box {
    height: 100%;
}

    .schedule-form-box .form-control::placeholder {
        color: #86909C;
        opacity: 1;
    }

.contact-cards-wrap {
    background: #F3F8F9;
}

.contact-card-x {
    background: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: left;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

    .contact-card-x:hover {
        transform: translateY(-5px);
    }

.contact-icon-x {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dff3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .contact-icon-x i {
        font-size: 22px;
        color: #2c6e6f;
    }

.contact-card-x p {
    margin: 0;
    color: #363C3D;
    font-size: 20px;
    line-height: 1.6;
}






/* How it works page */


.tlx-top-tag {
    background: #e6f4f3;
    color: #4aa9a3;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.tlx-title span {
    color: #4aa9a3;
}

.tlx-title {
    font-size: 44px;
}


.tlx-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 80px auto;
}


    .tlx-wrapper::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 2px;
        height: 85%;
        background: #28464B;
        transform: translateX(-50%);
    }


.tlx-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.9s ease;
}

    .tlx-row.active {
        opacity: 1;
        transform: translateY(0);
    }

.tlx-left {
    width: 46%;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 30px;
}

.tlx-left-inner {
    background: #F3F8F9;
    border-radius: 14px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #6c7a7a;
}


.tlx-center {
    width: 8%;
    display: flex;
    justify-content: center;
    position: relative;
}

.tlx-step {
    width: 38px;
    height: 38px;
    background: #28464B;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    font-weight: 600;
    z-index: 2;
}


.tlx-right {
    width: 46%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* important */
}

.tlx-icon {
    width: 50px;
    height: 50px;
    background: #e6f4f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4aa9a3;
    font-size: 20px;
    margin-bottom: 15px;
}

.tlx-right h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 32px;
    color: #363C3D;
}

.tlx-right p {
    color: #86909C;
    font-size: 16px;
    text-align: left;
}

.tlx-list {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

    .tlx-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #363C3D;
    }

.imp-section .container {
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
}

.imp-section {
    background: #28464B;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.imp-title {
    font-size: 48px;
    font-weight: 700;
}

    .imp-title span {
        color: #57B9B9;
    }

.imp-sub {
    color: #ffffff;
    font-size: 18px;
}

.imp-card {
    background: #f1f4f5;
    border-radius: 16px;
    padding: 30px;
    color: #2d3436;
}


.imp-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
}


    .imp-item::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 35px;
        width: 2px;
        height: calc(100% + 10px);
        background: #dbe5e5;
    }

    .imp-item:last-child::before {
        display: none;
    }


.imp-icon {
    width: 48px;
    height: 48px;
    background: #DBF2F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f5557;
    font-size: 14px;
    flex-shrink: 0;
}


    .imp-icon img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }


.imp-item small {
    color: #57B9B9;
    font-weight: 600;
    font-size: 14px;
}

.imp-item h6 {
    font-weight: 700;
    margin: 2px 0;
    font-size: 18px;
}

.imp-item p {
    font-size: 13px;
    color: #86909C;
    margin: 0;
}


.imp-img-grid {
    display: flex;
    gap: 15px;
}

.imp-img-big img {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    object-fit: cover;
}

.imp-img-big {
    flex: 1;
    height: 100%;
}

.imp-img-small {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 45%;
}

    .imp-img-small img {
        width: 80%;
        height: 218px;
        object-fit: cover;
        border-radius: 16px;
    }

/* Responsive */
@media(max-width:768px) {
    .imp-img-grid {
        flex-direction: column;
    }

    .imp-img-small {
        width: 100%;
        flex-direction: row;
    }

        .imp-img-small img {
            height: 120px;
        }
}

/* Responsive */
@media(max-width:768px) {
    .tlx-row {
        flex-direction: column;
        text-align: center;
    }

    .tlx-wrapper::before {
        left: 20px;
    }

    .tlx-center {
        width: 100%;
        margin: 20px 0;
    }

    .tlx-left,
    .tlx-right {
        width: 100%;
    }
}


.sup-section {
    background: #F3F8F9;
    font-family: 'Inter', sans-serif;
}


.sup-title {
    font-size: 44px;
    color: #363C3D;
}

    .sup-title span {
        color: #57B9B9;
    }

.sup-sub {
    color: #86909C;
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}


.sup-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

    .sup-card:hover {
        transform: translateY(-5px);
    }


.sup-icon {
    width: 50px;
    height: 50px;
    background: #DBF2F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}


.sup-card h5 {
    font-weight: 600;
    margin-top: 30px;
    color: #363C3D;
    font-size: 20px;
}

.sup-card p {
    font-size: 13px;
    color: #8a9a9a;
    margin: 0;
}