/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Loading Screen Styles */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it stays on top */
}

    #loading .loader p {
        font-size: 1.2rem;
        font-weight: bold;
        color: #007bff;
        margin-top: 10px;
    }

.spinner-border {
    width: 3rem;
    height: 3rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating Home Icon Styles */
.floating-home {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the page */
    right: 20px; /* Distance from the right side of the page */
    z-index: 1000; /* Ensure it appears above all other elements */
    background-color: #e6fff3; /* Light blue background */
    border: 2px solid #007bff; /* Optional border for design consistency */
    border-radius: 50%; /* Make it circular */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    padding: 10px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

    .floating-home img {
        width: 30px; /* Icon size */
        height: 30px;
    }

    .floating-home:hover {
        background-color: #007bff; /* Change background on hover */
        transform: scale(1.1); /* Slight enlargement on hover */
        cursor: pointer;
    }
/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover {
    background-color: #e6f7ff; /* Light blue background */
    color: #007bff; /* Blue text color */
    border-radius: 5px; /* Optional: rounded corners */
    padding: 0.3rem 0.8rem; /* Slight padding on hover */
}
.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        background-color: #e6f7ff;
        color: #007bff;
    }


.navbar-nav .nav-link.active {
    color: #007bff;
    font-weight: bold;
}

.dropdown-toggle-icon {
    margin-left: 5px; /* Add space between text and arrow */
    display: inline-block; /* Ensure the arrow is inline with text */
    color: inherit; /* Match color with the text */
    text-decoration: none; /* Remove underline */
}

    .dropdown-toggle-icon:hover {
        text-decoration: none; /* Prevent underline on hover */
    }

.nav-item .caret {
    font-size: 0.8rem; /* Adjust arrow size */
    vertical-align: middle; /* Align arrow vertically with text */
}
/* Carousel */
.carousel-inner img {
    height: 600px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #37c7a1, #36a3e0);
    color: white;
    overflow: hidden;
}

/* Fixed Left Text */
.left-text {
    position: sticky;
    top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 1rem;
}

/* Right Text */
.right-text {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 2rem;
}

    .right-text h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
        font-weight: bold;
    }


/* Portfolio Section */
.portfolio-section {
    background-color: #e6fff3; /* Light green background */
    color: #000;
    padding: 2rem 0;
}

    .portfolio-section h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

.portfolio-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

    .portfolio-card:hover {
        transform: scale(1.05);
    }

    .portfolio-card img {
        max-width: 100%;
        border-bottom: 1px solid #ddd;
    }

.portfolio-card-body {
    padding: 1rem;
    text-align: center;
}

.partner-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.pagination {
    text-align: center;
    margin: 2rem 0; /* Increased space between items and pagination */
    font-size: 0.9rem; /* Smaller text size */
}

.pagination-btn {
    background: none;
    border: none;
    color: #007bff;
    font-weight: bold;
    cursor: pointer;
    margin: 0 10px; /* Space between buttons */
}

    .pagination-btn:hover {
        text-decoration: underline;
    }

#currentPage {
    font-weight: normal;
    color: #333; /* Neutral color for current page text */
}


/* Footer Section */

.footer-section {
    background-color: #2c2c34; /* Dark background */
    color: #fff;
    padding: 3rem 0 1rem; /* Increased padding for better spacing */
}

    .footer-section a {
        color: #ddd; /* Light gray links */
        font-size: 1rem;
        transition: color 0.3s ease;
    }

        .footer-section a:hover {
            color: #28a745; /* Green hover color */
        }

    .footer-section hr {
        width: 80%;
        margin: 1.5rem auto;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .footer-section p {
        font-size: 0.9rem;
        margin: 0.5rem 0;
        color: #ccc; /* Light text for better readability */
    }

    .footer-section .designed-by {
        font-size: 1rem;
        font-weight: 400;
        color: #bbb; /* Subtle gray color */
    }

        .footer-section .designed-by strong {
            color: #fff; /* White for emphasis */
        }

/* Gradient Background Block */
.gradient-bg {
    background: linear-gradient(135deg, #37c7a1, #36a3e0);
    color: white;
    overflow: hidden;
}

/* Fixed Left Text in Block */
.left-text {
    position: sticky;
    top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Right Text Scrolling */
.right-text {
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

    .right-text h3 {
        font-size: 1.75rem;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 2rem;
    }

/* Full-Width Image with Overlay */
.image-overlay-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

    .image-overlay-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(40%);
    }

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 1rem;
    color: #fff;
}

    .overlay-content h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .overlay-content h3 {
        font-size: 1.75rem;
        font-weight: bold;
        margin-top: 1rem;
    }

    .overlay-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-top: 0.5rem;
    }



/* About Us - General Section */
.about-header {
    background-color: #29ABE2; /* Light blue background */
    padding: 4rem 0;
    color: white;
}

    .about-header .about-text h1 {
        font-size: 2.8rem;
        font-weight: bold;
    }

    .about-header p {
        font-size: 1.2rem;
        line-height: 1.8;
    }

.about-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.mission-vision-values h3.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.mission-vision-values p.section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.mission-vision-values hr {
    border-color: #ddd;
    margin: 2rem 0;
}

.mission-vision-values ul.core-values {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mission-vision-values ul.core-values li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

/* Balanced Scorecard */
.balanced-scorecard h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
}

.balanced-scorecard .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

    .balanced-scorecard .icon-circle i {
        font-size: 2rem;
        color: #28a745;
    }

.balanced-scorecard p {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

/* Business Scope */
/* Business Scope Section */
.business-scope h2 {
    font-weight: bold;
    color: #333;
}

.business-scope p {
    color: #555;
    margin-bottom: 2rem;
}

.business-icon {
    width: 180px; /* Set consistent width */
    height: 60px; /* Set consistent height */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

    .business-icon.bg-dark {
        background-color: #333;
    }
    /* Cardiologist */
    .business-icon.bg-success {
        background-color: #28a745;
    }
    /* Vascular */
    .business-icon.bg-primary {
        background-color: #007bff;
    }
    /* Vascular Surgeon */
    .business-icon.bg-warning {
        background-color: #ffc107;
    }
    /* Infection Control */
    .business-icon.bg-danger {
        background-color: #dc3545;
    }
/* Plastic Surgeon */



/* Board Members Message Section */
.board-message {
    background-color: #1d1d1f; /* Dark background */
    color: #ffffff; /* White text */
}

    .board-message .lead {
        font-size: 1.25rem;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto;
    }

    .board-message h4 {
        font-weight: bold;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

.carousel-indicators button {
    background-color: #6c757d; /* Gray indicators */
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.carousel-indicators .active {
    background-color: #007bff; /* Blue for active dot */
}


/* General Partner Section Styling */
.partners-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.partner-logo {
    max-height: 120px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .partner-logo:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

/* Dropdown Menu Customization */
.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
    font-size: 1rem;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .navbar-nav .dropdown-item:hover {
        background-color: #007bff;
        color: #fff;
    }


/* Partner Page Styles */
.partner-page h1, h4 {
    color: #007bff;
    margin-bottom: 1rem;
}

.partner-page p {
    line-height: 1.8;
    color: #555;
}

.partner-page .btn-primary {
    background-color: #007bff;
    border: none;
}

.partner-page h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.partner-page h5 {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.partner-page a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

    .partner-page a:hover img {
        transform: scale(1.05);
    }

.partner-page img {
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer {
    background-color: #1e1e26;
    color: #b0b0b0;
    font-size: 0.9rem;
}
/* Partner Show Products Button */
.show-products-btn {
    position: absolute; /* Positions the button in its parent container */
    right: 30px; /* Align to the right with some spacing */
    bottom: 30px; /* Align to the bottom */
    background-color: #007bff; /* Blue background for consistency */
    color: #fff; /* White text */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .show-products-btn:hover {
        background-color: #0056b3; /* Slightly darker blue on hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-3px); /* Adds a lifting effect */
    }


/* Careers Page General Styles */
/* Careers Section - Blue Background */
.careers-section {
    background-color: #29ABE2; /* Blue background */
    color: #ffffff; /* White text */
    padding: 2rem; /* Padding for the text */
    position: relative; /* Relative positioning for the section */
    overflow: visible; /* Allows child elements (images) to overflow */
    border-radius: 8px; /* Optional rounded corners */
}

    /* Text Container */
    .careers-section .content {
        position: relative; /* Keeps the text inside the section */
        z-index: 2; /* Ensure text stays above the background */
    }

    /* Image Styling - Extend Outside the Blue Frame */
    .careers-section .image-container {
        position: absolute; /* Position the image relative to the section */
        top: 50%; /* Center vertically */
        right: -100px; /* Push the image outside the right side */
        transform: translateY(-50%); /* Align center vertically */
        z-index: 1; /* Ensures it stays behind the text */
    }

        .careers-section .image-container img {
            width: 250px; /* Adjust image size */
            border-radius: 10px; /* Rounded corners for the image */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
        }

/* Responsive Fix for Small Screens */
@media (max-width: 768px) {
    .careers-section {
        padding: 2rem 1rem;
    }

        .careers-section .image-container {
            position: static; /* Reset positioning */
            transform: none;
            margin: 1rem auto; /* Center image */
            display: block;
        }

            .careers-section .image-container img {
                width: 100%; /* Full width on small screens */
                max-width: 300px;
            }
}


/* Footer */
.footer {
    background-color: #222;
    padding: 1.5rem 0;
    color: #ddd;
    font-size: 0.9rem;
}

    .footer p {
        margin: 0;
        font-weight: 400;
        color: #bbb;
    }
