


/* Lab Tests Section */
.lab-tests {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.lab-tests h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.test-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    
}

.test-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.test-card:hover {
    transform: translateY(-10px);
}

.test-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.test-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 15px;
}

.test-card p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* Image Slider Section */
.image-slider {
    position: relative;
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    max-height: 300px;
    display: flex;
    justify-content: center;
}

.slide {
    display: none;
    width: 100%;
}


/* Navigation buttons (Previous and Next) */
.prev, .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Hover effect on navigation buttons */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Full Body Checkup Packages Section */
        /* Full Body Checkup Section */
.full-body-checkup {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.full-body-checkup .section-heading {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.checkup-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.checkup-package {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.checkup-package:hover {
    transform: translateY(-10px);
}

.package-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.package-details {
    list-style-type: none;
    padding-left: 0;
    font-size: 18px;
    margin-bottom: 20px;
}

.package-details li {
    margin-bottom: 10px;
}

.package-price {
    font-size: 22px;
    color: #27ae60;
    font-weight: bold;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 1024px) {
    .checkup-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .checkup-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .checkup-container {
        grid-template-columns: 1fr;
    }
}

.book-now-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: white;
    background-color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #2980b9;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card img.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
}

.customer-name {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

@media (max-width: 768px) {
    .testimonial-cards {
        grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
    }
}

@media (max-width: 480px) {
    .testimonial-cards {
        grid-template-columns: 1fr; /* 1 column for mobile devices */
    }
}


        /* Footer Styling */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin: 10px 0;
    flex: 1 1 200px; /* Allows flexible sizing with a minimum width */
    text-align: center;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap; /* Ensures icons wrap on smaller screens */
}

.social-icon {
    display: inline-block;
    background-color: #444;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #555;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack sections vertically on smaller screens */
        align-items: center;
    }

    .footer-section {
        flex: 1 1 100%; /* Full width for each section on small screens */
        max-width: 300px;
    }

    .social-icons {
        gap: 10px; /* Reduce gap between icons for smaller screens */
    }
}

/* tests.php Design */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

main {
    padding: 20px;
}

.search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-bar input {
    width: 300px;
    padding: 10px;
    font-size: 16px;
}

.search-bar button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #555;
}

.tests-container {
    max-width: 800px;
    margin: 0 auto;
}

.category {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.test-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.test-item h3 {
    margin: 0 0 10px;
}

.test-item p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

button {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

.cart-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.cart-total {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
}

/*Cart */
/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2C86C7;
    color: #333;
}

/* Header styling */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

/* Main content styling */
main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 16px;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #333;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #f1f1f1;
}

table td {
    vertical-align: middle;
}

table td:last-child {
    font-weight: bold;
}

/* Empty cart message */
p {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    color: #555;
}

/* Grand total row styling */
table tr:last-child td {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    table th, table td {
        font-size: 14px;
    }

    main {
        padding: 10px;
    }
}




.right span {
    color: white;
    margin-right: 15px;
    font-weight: bold;
}

.logout-btn {
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: transparent;
}

.logout-btn:hover {
    background-color: white;
    color: black;
}
/*  full body packages  */

/* Overall container for the checkup packages */
.checkup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
}

/* Card style for each checkup package */
.checkup-package {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect to scale the card and add shadow */
.checkup-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Title of the package */
.package-title {
    background-color: #f4f4f4;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    margin: 0;
}

/* List of details of the package */
.package-details {
    list-style-type: none;
    padding: 15px;
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.package-details li {
    margin-bottom: 10px;
}

/* Price of the package */
.package-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #28a745;
    padding: 15px;
    text-align: center;
    margin: 0;
    background-color: #f8f9fa;
}

/* Book Now button */
.book-now-btn {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the button */
.book-now-btn:hover {
    background-color: #0056b3;
}

/* Responsiveness for smaller screens */
@media screen and (max-width: 768px) {
    .checkup-container {
        flex-direction: column;
        align-items: center;
    }

    .checkup-package {
        width: 80%; /* Take up more space on smaller screens */
        margin-bottom: 20px;
    }
}






.cart-container {
    margin: 20px auto;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.book-now-btn {
    background-color: #2C86C7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-now-btn:hover {
    background-color: #225E8F;
}
