        /* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
html{
    scroll-behavior: smooth;
}
        /* Navbar Styles */
.navbar {
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar .logo {
    /* font-size: 24px;
    font-weight: bold; */
    padding-left: 25px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    padding-right: 30px;
    gap: 5px;
}

.navbar .nav-links a {
    color: #0056b3;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #FB9ED4;
}

        /* Section Styles */

.sections {
    padding: 60px 20px;
    min-height: 70vh;
    text-align: center;
}
        
        /* Home Style */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    background-color: #f0f8ff; /* Light blue background */
    min-height: 100vh;
}        
.hero-content {
    max-width: 50%; /* Limits the width of the text content */
}        
.hero-content h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 20px;
}        
.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}        
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff; /* Blue button */
    text-decoration: none;
    border-radius: 35px;
    transition: background-color 0.5s ease;
    font-weight: bold;
}        
.cta-button:hover {
    border: 1px solid #0056b3;
    background-color: white;
    color: #0056b3;
} 
.hero-image {
    max-width: 45%; /* Limits the width of the image */
}        
.hero-image img {
    width: 100%; /* Ensures the image fits within its container */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional: Adds rounded corners */
}

        /* our service Style */

.services {
    padding: 50px 20px;
    text-align: center;
    min-height: 100vh;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.services .divider {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin-bottom: 20px;
    display: inline-block;
    align-items: center;
    justify-content: center;
}
.services p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards Container */
.service-cards {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap to the next row */
    justify-content: space-between; /* Space between cards */
    gap: 20px; /* Space between cards */
    max-width: 1200px; /* Adjust container width */
    margin: 0 auto; /* Center the container */
}

/* Card Styles */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 350px; /* Fixed width */
    height: 354px; /* Fixed height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card:hover {
    transform: translateY(-5px); /* Lift card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.card-icon {
    margin-bottom: 20px; /* Space between icon and title */
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    line-height: 1.5;
}

/* Learn More Button */
.learn-more {
    display: inline-block;
    padding: 15px 45px;
    margin-top: 40px;
    font-size: 1rem;
    color: #007bff;
    text-decoration: none;
    border-radius: 35px;
    border: 2px solid #007bff;
    transition: background-color 0.5s ease;
    position: relative; /* Ensures button is above the overlay */
    z-index: 1;
    font-weight: bold;
}

.learn-more:hover {
    background-color: #0056b3;
    color: white;
}

        /* Healthcare Providers Section */
        
.healthcare-providers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    background-color: #fff;
    min-height: 100vh;
    background-color: #f0f8ff; /* Light blue background */
}

/* Image on the left */
.healthcare-providers .image {
    max-width: 45%;
}

.healthcare-providers .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text content on the right */
.healthcare-providers .content {
    max-width: 50%;
}

.healthcare-providers h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.healthcare-providers .divider {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin-bottom: 20px;
}

.healthcare-providers p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 30px;
}
        /* healthcare-providers Section */
        
.healthcare-providers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    min-height: 100vh;
    background-color: #f0f8ff; /* Light blue background */
}

/* Image on the left */
.healthcare-providers .image {
    max-width: 50%;
}

.healthcare-providers .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text content on the right */
.healthcare-providers .content {
    max-width: 50%;
}

.healthcare-providers h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.healthcare-providers .divider {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin-bottom: 20px;
}

.healthcare-providers p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 30px;
}

        /* Apps Section */
        
.Apps-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    min-height: 100vh;
}

/* Image on the right */
.Apps-section .image {
    max-width: 50%;
}

.Apps-section .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text content on the left */
.Apps-section .content {
    max-width: 50%;
}

.Apps-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.Apps-section .divider {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin-bottom: 20px;
}

.Apps-section p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 30px;
}

        /* Testimonails Section */

.testimonial {
    padding: 50px 10%;
    text-align: center;
    min-height: 100vh;
    background-color: #f0f8ff; /* Light blue background */

}

.testimonial-box{
    border: none solid;
    background-image: linear-gradient( #67C3F3, #5A98F2);
    display: inline-block;
    justify-content: center;
    align-items: center;
    padding: 100px 150px;
    border-radius: 15px;
    margin: 170px;
}

.testimonial h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.testimonial .divider {
    width: 60px;
    height: 3px;
    background-color: white;
    margin: 0 auto 20px;
    margin-bottom: 80px;
}

.testimonial-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.customer-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
}

.customer-details p {
    font-size: 1rem;
    color: white;
}

.customer-quote {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    max-width: 400px;
    text-align: left;
}

        /* latest article Section */

.latest-articles {
    padding: 50px 10%;
    text-align: center;
    background-color: #fff;
    min-height: 100vh;
}

.latest-articles h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.latest-articles .divider {
    width: 60px;
    height: 3px;
    background-color: black;
    margin: 30px auto 80px;
}

.articles-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.article {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 350px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-container {
    width: 100%;
    height: 200px; /* Fixed height for the image container */
    overflow: hidden; /* Ensures the image doesn't overflow */
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    transition: transform 0.3s ease;
}

.article:hover .article-image {
    transform: scale(1.1); /* Zoom effect on hover */
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.article-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    font-size: 1rem;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.view-all {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-all:hover {
    background-color: #0056b3;
}

        /* Footer Styles */
.footer {
    background-image: linear-gradient(#67C3F3,#5A98F2);
    padding: 50px 10%;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    max-width: 300px;
}

.footer-left h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-span{
    color: #67C3F3;
    border: none solid #007bff;
    border-radius: 50%;
    padding: 8px 13px;
    font-size: 1.5rem;
    background-color: white;
}

.footer-left p {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-left .copyright {
    font-size: 0.9rem;
    color: white;
}

.footer-right {
    display: flex;
    gap: 60px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #007bff;
}

        /* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .navbar .nav-links li {
        margin: 10px 0;
    }
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* Stacks content vertically on small screens */
        text-align: center;
        padding: 30px 5%;
    }

    .hero-content {
        max-width: 100%; /* Full width for text on small screens */
    }

    .hero-content h2 {
        font-size: 2rem; /* Smaller heading for mobile */
    }

    .hero-content p {
        font-size: 1rem; /* Smaller paragraph for mobile */
    }

    .hero-image {
        max-width: 100%; /* Full width for image on small screens */
        margin-top: 20px; /* Adds space between text and image */
    }
}