/* Hero Section ......................................*/
    .hero{
        background-color: black;
    }
        .hero-content {
            height: 100vh;
            background: url('images/101.webp') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 2rem;
        }
        .hero-text{
            background-color: black;
            opacity: 0.8;
            padding: 30px;
            border-radius: 10px;
            pointer-events: none;
        }
        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-top: 10px;
        }






/* Efficiency Section Styling................... */
/* Efficiency Section Styling */
/* Efficiency Section */
.efficiency-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

/* Section Title */
.efficiency-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 35px;
    color: #2387d1;
}

/* Main Content Layout */
.efficiency-main-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

/* Image Container */
.efficiency-main-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.efficiency-main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.efficiency-main-image img:hover {
    transform: scale(1.05);
}

/* Text Container */
.efficiency-text {
    flex: 1;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Benefits Section */
.efficiency-benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Benefit */
.efficiency-benefit {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Hover effect */
.efficiency-benefit:hover {
    transform: scale(1.05);
}

/* Benefit Image */
.benefit-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Benefit Title */
.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2387d1;
}

/* Benefit List */
.benefit-text ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-text ul li {
    padding: 5px 0;
    position: relative;
}

/* Bullet Icons */
.benefit-text ul li::before {
    /* Removed checkmark icon */
    content: "";
    margin-right: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .efficiency-main-content {
        flex-direction: column;
        text-align: center;
    }

    .efficiency-text {
        text-align: center;
    }

    .efficiency-benefits-container {
        flex-direction: column;
        align-items: center;
    }
}
.card-links{
    text-decoration: none;
    color: white;
}






/* EHR Services Section...................... */
/* EHR Services Section */
.ehr-services {
    text-align: center;
    padding: 80px 20px;
    background-color: #2387d1;
    color: white;
    margin-bottom: 0px;
}

/* Section Title */
.ehr-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

/* Grid for Services */
.ehr-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual Service Card */
.ehr-service {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.ehr-service:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Service Icon */
.ehr-icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Service Title */
.ehr-service h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Service Description */
.ehr-service p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ehr-services-grid {
        grid-template-columns: 1fr;
    }
}


#home{
    margin-bottom: 0px;
}

.support-list li::before,
.benefit-text ul li::before {
    content: none !important;
    margin-right: 0 !important;
}