﻿/* Color Variables */
:root {
    --green-primary: #76A447;
    --green-secondary: #76A549;
    --blue-primary: #38939b;
    --blue-secondary: #3A929C;
    --blue-bg: #62CAD3;
    --grey-light: #eeeeee;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --black: #000;
}

/* Global Styles */
body {
    font-family: 'Poppins';
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.section {
    padding: 1rem 0;
}

h1 {
    font-family: Poppins;
    font-weight: 500;
    color: #fff;
    font-style: Medium;
    font-size: 55px !important;
    line-height: 122%;
    letter-spacing: 0%;


}

h2 {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 60px;
    line-height: 122%;
    letter-spacing: 0%;

}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #38939B;

}

.section-title p {

    font-size: 1.3rem;
    color: #000;
    max-width: 700px;
    margin: 0 auto;

}


.hero-text {
    padding: 20px 20px 0 0;
}

.text-bg-1 {
    background: #76A447;
    color: #fff;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    border: none;
    font-size: 28px !important;
    border-radius: 8px;
}

.text-bg-2 {
    background: #38939B;
    color: #fff;
    border: none;
    display: flex;
    font-size: 28px !important;
    border-radius: 8px;
    float: inline-end;
}

.text-bg-p {
    color: #000;
    padding-top: 60px;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 122%;
    letter-spacing: 0%;

}

/* Gradient Background Sections */
.gradient-bg-1 {
    background: #f9f9f9;
}

.gradient-bg-2 {
    background: rgba(0, 0, 0, 0.05);
}

.gradient-bg-3 {
    background: rgba(255, 255, 255, 0.95);
}

.gradient-bg-4 {
    background: #dcdada;
}

.gradient-bg-5 {
    background: #eeeeee;
}

/* Header Styles */
.header {
    background: #ffffff;
    color: #38939B;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    color: #38939b;
    background: #fff;
    border: 1px solid #76A447;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #38939B !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #38939B !important;

}

/* Hero Section */
.hero-section {
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Video background styling */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 95%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Hero content styling */
.hero-content {
    position: relative;
    padding-top: 50px;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }


}


.impact-numbers {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.process-step {
    background: rgba(52, 152, 219, 0.3);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 5px solid var(--green-primary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border-top: 4px solid var(--blue-primary);
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-form-container {
    background: #39939B;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Video Hero Section */


/* Video with Text Section */
.video-text-section {
    padding: 120px 0;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.side-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Image Carousel Section */
.carousel-section {
    padding: 120px 0;
}

.carousel-image {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

.carousel-caption-custom {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    bottom: 60px;
    backdrop-filter: blur(10px);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--green-primary);
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

/* Button Styles */
.btn-primary {
    background: #76A447;
    border: none;
    color: #fff;
    padding: 14px 22px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-secondary), var(--green-primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-header-light {
    padding: 8px 18px;
    font-family: Poppins;
    font-weight: 400;
    display: inline-flex;
    font-style: Regular;
    font-size: 28px;
    text-align: center;
    line-height: 122%;
    background: #fff;
    color: #76A447;
    border-radius: 36px;
    list-style: none;
    text-decoration: none;
    border: 2px solid #38939B;
    transition: all 0.3s ease;
}

.btn-header-light:hover {
    background: rgba(252, 250, 250, 0.9);

    transform: translateY(-3px);
}

.arrow-icon i {
    color: #38939B;
    font-size: 16px;
}

/* Make blog-card flex-grow to equal heights */
.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* allows flex container to equalize height */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-card h4 {
    font-size: 20px;
    margin: 10px 0;
}

.blog-card p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
    /* ensures the paragraph fills available space */
}

/* HIPAA Badge */
.compliance-badge {
    background: #38939b;
    color: #fff;
    padding:15px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
}
 .badge-icon{
            color: #76a972;
         }

/* Stats counters */
.stats-counter {
    display: flex;
    flex-direction: column;
    width: 110px;
}

.stats-counter .number {
    font-size: 32px;
    font-weight: 700;
    color: #0A66C2;
}

.stats-counter .label {
    font-size: 14px;
    color: #666;
    margin-top: -4px;
}

/* Security Card Container */
.security-card-wrapper {
    position: relative;
    padding-left: 20px;
}

/* Connector Lines */
.connector-line {
    display: block;
    width: 2px;
    height: 50px;
    background: #c9d6ff;
    margin: 0 auto;
    margin-left: 44px;
}

/* Gradient Animated Cards */
.gradient-card {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e9f1ff, #ffffff);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animated gradient overlay */
.gradient-card::before {
    content: "";
    position: absolute;
    left: -150%;
    top: 0;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(10, 102, 194, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    animation: gradientSlide 4s linear infinite;
}

@keyframes gradientSlide {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* Hover lift */
.gradient-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Icon Circle */
.security-icon {
    width: 60px;
    height: 60px;
    background: #e7f1ff;
    color: #0A66C2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 80, 160, 0.15);
}


/* Footer Styles */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 30px 0 10px;
}

.footer h5 {
    color: var(--green-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer .nav-link {
    color: #ccc !important;
    padding: 0.5rem 0 !important;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer .nav-link:hover {
    color: var(--green-primary) !important;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    background: var(--grey-light);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: 550px;
    /* same height on all cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 20px;
    padding: 40px 20px 0px 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 20px;
    color: #000;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author i {
    font-size: 55px;
    color: #0A66C2;
    margin-left: auto;
    /* pushes icon to far right for consistency */
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 140px 0 80px;
    }

    .video-hero-section {
        height: 80vh;
    }

    .side-video {
        height: 300px;
    }

    .carousel-image {
        height: 400px;
    }

    .impact-numbers {
        padding: 25px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .section {
        padding: 50px 0;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Animated Hero Section */
.animated-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.text-animation-container {
    position: relative;
    z-index: 2;
}

.animated-main-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.title-line {
    display: block;
    line-height: 1.2;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.line-1 {
    transition-delay: 0.3s;
}

.line-2 {
    transition-delay: 0.6s;
}

.animated-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
}

.impact-stats-animated {
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s;
}

.stat-item-animated {
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item-animated:nth-child(1) {
    transition-delay: 2.2s;
}

.stat-item-animated:nth-child(2) {
    transition-delay: 2.4s;
}

.stat-item-animated:nth-child(3) {
    transition-delay: 2.6s;
}

.cta-animated {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.8s;
}

.animated-hero-section.active .animated-main-title {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animated-hero-section.active .title-line,
.animated-hero-section.active .animated-subtitle,
.animated-hero-section.active .impact-stats-animated,
.animated-hero-section.active .stat-item-animated,
.animated-hero-section.active .cta-animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .animated-hero-section {
        padding: 80px 0;
    }

    .animated-main-title {
        font-size: 2.8rem;
    }

    .animated-subtitle {
        font-size: 1.3rem;
    }
}

.about-card {
    max-width: 1300px;
    height: 480px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(56, 147, 155, 0.25) 0%,
            rgba(33, 97, 103, 0.75) 60%,
            #1B6970 100%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 36px;
    line-height: 122%;
    letter-spacing: 0%;
}

.about-content p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 122%;
    letter-spacing: 0%;
    text-align: center;

}

/* ================================
   Core Platform Capability Cards
================================ */
.core-capabilities-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Radial Glow */
.core-capabilities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(45, 212, 191, 0.35), transparent 65%);
    z-index: 0;
}

.core-capabilities-section .container {
    position: relative;
    z-index: 1;
}

.solutions-pill {
    display: inline-block;
    background: #fff;
    color: #38939B;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.section-heading {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 36px;
    line-height: 122%;
    letter-spacing: 0%;

}

/* Capability Boxes (NOT cards) */
.capability-box {
    background: #ffffff;
    border: 2px solid #38939b;
    border-radius: 14px;
    padding: 10x;
    text-align: left;
    height: 100%;
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.25);
}

.capability-box h2 {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 101%;
    letter-spacing: 0%;
    color: #000000;
}

.capability-box .subtitle {
    color: #38939B;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 114.99%;
    letter-spacing: 0%;


}

.capability-box ul {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 195%;
    letter-spacing: 0%;


}

.capability-box ul li {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 195%;
    letter-spacing: 0%;

}

.our-approach-section {
    background: #f7fbf8;
}

.approach-wrapper {
    background: #38939B;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Left Content */
.approach-content {
    flex: 1.1;
    color: #fff;
}

.approach-pill {
    display: inline-block;
    background: #ffffff;
    color: #76A447;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.approach-content h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
}

.approach-intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;

}

/* Points */
.approach-point {
    display: flex;
    font-size: 16px;
    gap: 14px;
    margin-bottom: 22px;
}

.point-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: #38939B;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-point h3 {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 122%;
    letter-spacing: 0%;

}

.approach-point p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: 0%;

}

/* Right Visual */
.approach-visual {
    flex: 0.9;
    position: relative;
    top: 80px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .approach-wrapper {
        flex-direction: column;
        padding: 30px;
    }

    .approach-visual {
        height: 260px;
    }
}


.how-it-works-section {
    background: linear-gradient(135deg, #eaf7f4, #ffffff);
}

.how-pill {
    display: inline-block;
    background: #e6f4f1;
    color: #38939B;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.how-it-works-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #38939B;
}

.lead-text {
    color: #76A447;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 30px;
    line-height: 122%;
    letter-spacing: 0%;
    margin-top: 10px;
}

.description {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 122%;
    letter-spacing: 0%;
    margin-top: 14px;
    max-width: 520px;
}

.how-it-works-img {
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 991px) {
    .how-it-works-section {
        text-align: center;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }
}

.box-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0 20px;
}

.box-icon i {
    font-size: 55px;
    color: #38939B;

}

/* ================= healthcare hippa SECTION ================= */

.healthcare-cta-section {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cta-title {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 36px;
    color: #38939B;
    line-height: 122%;
    letter-spacing: 0%;

}

.cta-subtitle {
    color: #191919;
    font-family: Poppins;
    display: flex;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 122%;
    letter-spacing: 0%;

}

.cta-description {
    color: #191919;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 240%;
    letter-spacing: 0%;

}

/* CTA List */
.cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List item text */
.cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    color: #191919;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 240%;
    letter-spacing: 0%;

    margin-bottom: 18px;
}

.cta-list h4 {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    color: #191919;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 240%;
    letter-spacing: 0%;

    margin-bottom: 18px;
}

/* Icon box */
.cta-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;

    background: rgba(118, 164, 71, 0.12);
    /* soft green tint */
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    margin-top: 6px;
}

/* Icon */
.cta-icon-box i {
    font-size: 20px;
    color: #76A447;
}

/* Hover (subtle) */
.cta-list li:hover .cta-icon-box {
    background: rgba(118, 164, 71, 0.18);
    transition: background 0.3s ease;
}


.stats-grid .stat-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.stats-grid .stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-title {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.5rem;
    }

    .stats-grid .stat-card {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }

    .cta-description {
        max-width: 100%;
    }

    .btn-cta {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .stats-grid .row>div {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .healthcare-cta-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* FAQ Card */
.faq-list {
    display: flex;
    flex-direction: row;
}
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.45s ease;
}

/* Hover when closed */
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

/* Question */
.faq-question {
    width: 100%;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: 1px solid #fff;
    box-decoration-break: slice;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


/* Arrow Icon */
.faq-question .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #8fd1c1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #76A447;
    transition: all 0.4s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    display: flex;
    text-align: start;
    font-size: 15px;
    line-height: 1.7;
    transition: max-height 0.45s ease, padding 0.45s ease;
}

/* ===== ACTIVE / OPEN CARD ===== */
.faq-item.active {
    background: linear-gradient(135deg, #38939a, #4db6ac);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(56, 147, 154, 0.45);
}

.faq-item.active .faq-question {
    color: #ffffff;
}

.faq-item.active .icon {
    background: #ffffff;
    color: #38939b;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    display: flex;
    padding: 0 10px 10px;
    color: #ffffff;
}

/* About Page Styles */
 .about-hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .carousel-image {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            filter: brightness(0.6);
        }
        
        .about-hero-content {
            position: relative;
            padding-top: 50px;
            z-index: 1;
        }
        
        .stats-section-about {
            padding: 80px 0;
            color: white;
        }
        
        .stat-item-about {
            padding: 20px;
        }
        
        .stat-number-about {
            font-size: 3.5rem;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }
        
        .stat-label-about {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-shape.shape1 {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .floating-shape.shape2 {
            width: 100px;
            height: 100px;
            bottom: 15%;
            right: 10%;
            animation-delay: 2s;
        }
        
        .floating-shape.shape3 {
            width: 80px;
            height: 80px;
            top: 40%;
            right: 20%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .mission-vision-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .mission-vision-card:hover {
            transform: translateY(-10px);
        }
        
        .mission-vision-icon {
            font-size: 3rem;
            color: #3893a9;
            margin-bottom: 20px;
        }
        
        .team-card {
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #f8f9fa;
        }
        
        .linkedin-icon {
            color: #0077b5;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .linkedin-icon:hover {
            color: #005582;
            transform: scale(1.2);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .value-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: #3A929C;
            margin-bottom: 20px;
        }
        
        .min-vh-100 {
            min-height: 100vh;
        }
        
        .z-index-1 {
            z-index: 1;
        }

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-primary), var(--green-primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-year {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green-primary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--green-primary);
}

/* Team Styles */
.team-photo {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 0;
    /* square shape */
}

.team-card {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.linkedin-icon i {
    font-size: 55px;
    color: #38939B;
    transition: color 0.3s;
}

.linkedin-icon i:hover {
    color: #005983;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 250px !important;
    height: 250px !important;
    border-radius: 5% !important;
}

.linkedin-icon {
    display: inline-block;
    color: #0077b5;
    margin-top: 10px;
    font-size: 18px;
}

.linkedin-icon:hover {
    color: #005582;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--blue-primary);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--blue-primary), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 5px solid var(--blue-primary);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-vision-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--blue-primary), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Section */
.stats-section-about {
    padding: 80px 0;
    color: white;
}

.stat-item-about {
    text-align: center;
    padding: 30px 20px;
}

.stat-number-about {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--green-primary);
    margin-bottom: 1rem;
    display: block;
}

.stat-label-about {
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    backdrop-filter: blur(10px);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 80vh;
        text-align: center;
    }

    .about-hero-carousel .carousel-item {
        height: 80vh;
    }

    .mission-vision-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item::before {
        left: -28px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        min-height: 70vh;
    }

    .about-hero-carousel .carousel-item {
        height: 70vh;
    }

    .stat-number-about {
        font-size: 2.5rem;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }
}






/* Center-align only these 3 solution blocks */
.solution-card-body {
    text-align: center;
    padding: 20px 25px;

}

.highlight-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    color: #000;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 50px;
}

/* Lift and glow on hover */
.highlight-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.35);
}

/* Center icons */
.solution-card-body .feature-icon {
    font-size: 36px;
    color: #76A447;
    margin-bottom: 12px;
    display: inline-flex;
}

/* Make headings centered & cleaner */
.solution-card-body h5 {
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

/* Paragraph spacing fix */
.solution-card-body p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
}

/* Add padding to entire card */
.solution-card {
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eee;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #38939b;
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

/* Add spacing to header */
.solution-card-header {
    background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    margin-bottom: 25px;
}

/* Center number + title */
.solution-number {
    margin-right: 8px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    /* Gradient or solid color */
    font-weight: 700;
    font-size: 1.2rem;
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

/* Platform Features Section */
.feature-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #cce6b0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--success));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

/* Gradient Cards */
.choose-card {
    background: linear-gradient(145deg, #ffffff, #f2f8ff);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Animation */
.choose-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0, 102, 204, 0.18);
    border-color: rgba(0, 102, 204, 0.25);
}

/* Animated Gradient Border */
.choose-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    background: linear-gradient(120deg, #3ecf8e, #0a66c2, #4cc9f0);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: animatedBorder 4s linear infinite;
}

.choose-card:hover::before {
    opacity: 1;
}

@keyframes animatedBorder {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* Icons */
.choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0a66c2, #4cc9f0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Icon hover animation */
.choose-card:hover .choose-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.35);
}

/* Card title */
.choose-card h4 {
    margin-bottom: 12px;
    font-weight: 700;
}

/* Paragraph */
.choose-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Base styling for integration boxes */
.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.integration-logo {
    padding: 10px 22px;
    background: rgba(0, 102, 204, 0.35);
    border: 1px solid #dfe7f5;
    border-radius: 35px;
    font-weight: 600;
    color: #38939B;
    font-size: 14px;
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Hover effects */
.integration-logo:hover {
    background: linear-gradient(135deg, #0a66c2, #4cc9f0);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 102, 204, 0.25);
}




.btn-success {
    background: linear-gradient(135deg, var(--secondary), var(--success));
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.btn-light {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .video-content-box {
        margin-top: 2rem;
    }

    .feature-icon {
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Article Card Styles */
.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 1.5rem;
    position: relative;
}

.feature-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.card-body {
    padding: 1.5rem;
}

.card-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-subsection {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.subsection-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Dashboard Section Styles */
.dashboard-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.content-wrapper {
    padding-right: 2rem;
}

.feature-point {
    margin-bottom: 1.5rem;
}

.feature-point h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-point p {
    color: #666;
    line-height: 1.6;
}

.feature-highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-highlight-card .highlight-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.highlight-number {
    font-size: 28px;
    font-weight: bold;
    color: #38939B;
    /* optional accent color */
    margin-top: 10px;
}

.highlight-title {
    font-size: 22px;
    font-weight: 600;
    margin: 8px 0;
}

.highlight-description {
    font-size: 16px;
    color: #555;
}

/* Management Card Styles */
.management-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.management-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.management-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1.5rem;
}

.management-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.management-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.management-body {
    padding: 1.5rem;
}

.management-subfeature {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #ecf0f1;
}

.management-subfeature h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.management-subfeature p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Integrations Card Styles */
.integrations-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.integrations-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    text-align: center;
}

.integrations-header h4 {
    margin: 0;
    font-weight: 700;
}

.integrations-body {
    padding: 2.5rem;
}

.integrations-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem;
}

.integrations-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.integrations-feature h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.integrations-feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .dashboard-section {
        padding: 1.5rem;
    }

    .feature-highlight-card {
        padding: 2rem 1rem;
    }

    .highlight-number {
        font-size: 3rem;
    }
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.shape1 {
    width: 100px;
    height: 100px;
    background: #ff6b6b;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: #4dabf7;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 80px;
    height: 80px;
    background: #facc15;
    top: 50%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Technology Features Section */
.technology-features-section {
    color: white;
    position: relative;
    overflow: hidden;
}

.technology-features-section .section-title h2 {
    background: linear-gradient(135deg, #ffffff, #76A346);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technology-features-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

/* Tech Feature Cards */
.tech-feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #76A346 0%, #39939B 50%, #76A549 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.tech-feature-card:hover::before {
    transform: scaleX(1);
}

.tech-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 10px 25px rgba(118, 163, 70, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Tech Icon */
.tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #76A346, #39939B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.tech-feature-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.tech-feature-card:hover .tech-icon::before {
    left: 100%;
}

/* Tech Content */
.tech-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    opacity: 1;
    position: relative;
    display: inline-block;
}

.tech-content h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #76A346;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.tech-feature-card:hover .tech-content h3::after {
    width: 100%;
}

.tech-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Background Pattern Overlay */
.technology-features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(118, 163, 70, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(57, 147, 155, 0.15) 0%, transparent 50%), repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.technology-features-section>.container {
    position: relative;
    z-index: 2;
}

/* Animation for Tech Feature Cards */
@keyframes techCardLoad {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-feature-card {
    animation: techCardLoad 0.6s ease-out forwards;
    opacity: 0;
}

.tech-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tech-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tech-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tech-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.tech-feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.tech-feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .technology-features-section {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .tech-feature-card {
        padding: 2rem 1.5rem;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tech-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .technology-features-section {
        padding: 50px 0;
    }

    .tech-feature-card {
        padding: 1.5rem;
    }

    .tech-feature-card:hover {
        transform: translateY(-5px);
    }
}

/* ===== MOBILE RESPONSIVE ADDITIONS ONLY ===== */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Global adjustments */
    body {
        font-size: 14px;
        padding-top: 20px; /* Reduced for mobile header */
    }
    
    .section {
        padding: 40px 0 !important;
    }
    
    h1 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .section-title h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .section-title p {
        font-size: 16px !important;
        padding: 0 10px !important;
    }
    
    /* Header adjustments for mobile */
    .header {
        height: 80px;
        padding: 10px 0;
    }
    
    .header.scrolled {
        height: 70px;
    }
    
    .header__logo img {
        height: 40px !important;
        width: auto !important;
    }
    
    /* Hero section adjustments */
    .hero-section {
        padding: 100px 0 60px !important;
        text-align: center;
    }
    
    .text-bg-1,
    .text-bg-2 {
        font-size: 18px !important;
        padding: 8px 15px !important;
        display: inline-block !important;
        width: auto !important;
        float: none !important;
        margin: 22px auto !important;
    }
    
    .text-bg-p {
        font-size: 16px !important;
        padding-top: 30px !important;
        line-height: 1.6 !important;
        text-align: center;
    }
    
    /* Animated hero section */
    .animated-hero-section {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .animated-main-title {
        font-size: 32px !important;
    }
    
    .animated-subtitle {
        font-size: 18px !important;
    }
    
    /* Impact numbers */
    .impact-numbers {
        padding: 20px !important;
        margin: 20px 0 !important;
    }
    
    /* Cards and boxes */
    .solution-card,
    .process-step,
    .feature-item,
    .value-item,
    .mission-vision-card,
    .team-card,
    .about-card,
    .approach-wrapper,
    .contact-form-container {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
        height: auto !important;
    }
    
    .solution-card-body {
        padding: 15px !important;
        text-align: center;
    }
    
    .solution-card:hover,
    .feature-item:hover,
    .value-item:hover {
        transform: translateY(-3px) !important;
    }
    
    /* About page adjustments */
    .about-content {
        padding: 30px 20px !important;
    }
    
    .about-content h2 {
        font-size: 24px !important;
    }
    
    .about-content p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Capability boxes */
    .capability-box {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .capability-box h4 {
        font-size: 18px !important;
    }
    
    .capability-box .subtitle {
        font-size: 16px !important;
    }
    
    .capability-box ul,
    .capability-box ul li {
        font-size: 14px !important;
    }
    
    /* How it works section */
    .lead-text {
        font-size: 20px !important;
    }
    
    .description {
        font-size: 16px !important;
        margin-top: 10px !important;
    }
    
    /* Healthcare CTA section */
    .cta-title {
        font-size: 24px !important;
    }
    
    .cta-subtitle {
        font-size: 18px !important;
        flex-direction: column;
        text-align: center;
    }
    
    .cta-description,
    .cta-list li {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Stats */
    .stat-number,
    .stat-number-about {
        font-size: 2rem !important;
    }
    
    .stat-label,
    .stat-label-about {
        font-size: 1rem !important;
    }
    
    /* Team cards */
    .team-card {
        height: auto !important;
        padding: 20px 15px !important;
    }
    
    .team-card img {
        width: 150px !important;
        height: 150px !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        height: auto !important;
        margin-bottom: 20px !important;
    }
    
    .testimonial-text {
        font-size: 16px !important;
        padding: 20px 15px 0 !important;
    }
    
    /* FAQ section */
    .faq-list {
        flex-direction: column !important;
    }
    
    .faq-question {
        padding: 15px !important;
        font-size: 14px !important;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-header-light,
    .red-btn {
        padding: 10px 20px !important;
        font-size: 16px !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    
    /* Gradient cards */
    .gradient-card,
    .choose-card,
    .highlight-box {
        padding: 20px 15px !important;
        margin-bottom: 15px !important;
    }
    
    /* Integration logos */
    .integration-logos {
        gap: 8px !important;
    }
    
    .integration-logo {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 30px 0 20px !important;
        text-align: center;
    }
    
    .footer .col-lg-4,
    .footer .col-md-6 {
        margin-bottom: 30px !important;
    }
    
    .footer h5 {
        margin-bottom: 1rem !important;
    }
    
    /* Carousel adjustments */
    .carousel-image {
        height: 300px !important;
    }
    
    .carousel-caption-custom {
        padding: 15px !important;
        bottom: 20px !important;
        left: 10px !important;
        right: 10px !important;
    }
    
    /* Technology features */
    .tech-feature-card {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
    }
    
    .tech-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .tech-content h3 {
        font-size: 1.1rem !important;
    }
    
    .tech-content p {
        font-size: 0.9rem !important;
    }
    
    /* Core platform capabilities */
    .section-heading {
        font-size: 24px !important;
        text-align: center;
    }
    
    .solutions-pill,
    .approach-pill,
    .how-pill {
        padding: 5px 12px !important;
        font-size: 12px !important;
    }
    
    /* Box icons */
    .box-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 10px auto !important;
    }
    
    .box-icon i {
        font-size: 40px !important;
    }
    
    /* Security icon */
    .security-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        margin: 0 auto 10px !important;
    }
    
    /* CTA icon box */
    .cta-icon-box {
        width: 35px !important;
        height: 35px !important;
        margin-top: 3px !important;
    }
    
    /* Floating shapes */
    .floating-shape {
        display: none !important; /* Hide on mobile for performance */
    }
    
    /* Video sections */
    .side-video {
        height: 200px !important;
    }
    
    .video-text-section {
        padding: 60px 0 !important;
    }
    
    /* Stats grid */
    .stats-grid .row > div {
        margin-bottom: 15px !important;
    }
    
    /* Timeline adjustments */
    .timeline {
        padding-left: 20px !important;
    }
    
    .timeline::before {
        left: 10px !important;
    }
    
    .timeline-item::before {
        left: -28px !important;
        width: 12px !important;
        height: 12px !important;
    }
    
    /* Form adjustments */
    .contact-form-container form .row > div {
        margin-bottom: 15px !important;
    }
    
    /* Navigation menu adjustments */
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        text-align: center !important;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0 !important;
    }
    
    /* Grid systems */
    .row {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }
    
    .col-12, .col-md-6, .col-lg-4, .col-lg-3 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Feature grid */
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    /* Approach wrapper */
    .approach-wrapper {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 20px !important;
    }
    
    .approach-content h2 {
        font-size: 24px !important;
    }
    
    .approach-intro {
        font-size: 16px !important;
    }
    
    .approach-point h5 {
        font-size: 16px !important;
    }
    
    .approach-point p {
        font-size: 14px !important;
    }
    
    /* Padding utilities */
    .p-5 { padding: 1.5rem !important; }
    .p-4 { padding: 1rem !important; }
    .p-3 { padding: 0.75rem !important; }
    .px-5 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    .py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        padding-top: 90px;
    }
    
    h1 {
        font-size: 36px !important;
    }
    
    h2 {
        font-size: 32px !important;
    }
    
    .section-title h2 {
        font-size: 32px !important;
    }
    
    .section {
        padding: 50px 0 !important;
    }
    
    .hero-section {
        padding: 120px 0 80px !important;
    }
    
    .solution-card,
    .team-card,
    .value-item {
        height: auto !important;
    }
    
    .testimonial-card {
        height: auto !important;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        padding-top: 95px;
    }
    
    h1 {
        font-size: 42px !important;
    }
    
    h2 {
        font-size: 36px !important;
    }
    
    .section-title h2 {
        font-size: 36px !important;
    }
    
    .text-bg-1,
    .text-bg-2 {
        font-size: 22px !important;
    }
    
    .text-bg-p {
        font-size: 18px !important;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .team-card {
        height: auto !important;
        padding-top: 40px !important;
    }
    
    .team-card img {
        width: 180px !important;
        height: 180px !important;
    }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .team-card {
        height: auto !important;
    }
    
    .testimonial-card {
        height: 600px !important;
    }
}

/* Orientation specific adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section {
        min-height: auto !important;
        padding: 100px 0 !important;
    }
    
    .header {
        height: 70px;
    }
    
    .header__logo img {
        height: 35px !important;
    }
}

/* High DPI screens adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn-primary,
    .btn-header-light {
        border-width: 2px !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-header-light,
    .red-btn,
    .carousel-controls,
    .floating-shape {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .solution-card:hover,
    .feature-item:hover,
    .value-item:hover,
    .team-card:hover,
    .gradient-card:hover,
    .choose-card:hover {
        transform: none !important;
    }
    
    .menu__link:hover {
        color: inherit !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .tech-feature-card,
    .animated-main-title,
    .title-line,
    .animated-subtitle,
    .impact-stats-animated,
    .stat-item-animated,
    .cta-animated {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .solution-card,
    .gradient-card,
    .choose-card,
    .highlight-box,
    .feature-item,
    .value-item,
    .mission-vision-card,
    .team-card {
        background-color: #f8f6f6 !important;
        color: #000 !important;
    }
    
    .solution-card-body p,
    .gradient-card p,
    .choose-card p,
    .feature-item p,
    .value-item p {
        color: rgba(33, 37, 41, 0.75) !important;
    }
}

/* Mobile-only utility classes */
.mobile-only {
    display: block !important;
}

.desktop-only {
    display: none !important;
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* Mobile tap target sizes */
@media (max-width: 767.98px) {
    .btn-primary,
    .btn-header-light,
    .red-btn,
    .nav-link,
    .dropdown-item {
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    input,
    select,
    textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }
}