/********** Template CSS **********/
:root {
    --primary: #00AFEF;
    --secondary: #354F8E;
    --light: #EFF5F9;
    --dark: #1D2A4D;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

/* Highlight effect for dropdown items on hover */
.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Auto dropdown on hover */
.navbar .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Nested dropdown styling */
.nested-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    z-index: 1050;
}

/* Prevent nested dropdown from going out of the window */
.navbar .dropdown .nested-dropdown {
    right: auto; /* Default to opening to the right */
}

@media (max-width: 767px) {
    /* Adjust nested dropdown to open left on smaller screens */
    .navbar .dropdown .nested-dropdown {
        left: auto;
        right: 100%;
    }
}

/* Highlight active menu item */
.navbar-nav .nav-link.active {
    color: #007bff !important;
    font-weight: bold;
}



.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .5s;
    position: inline;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

/* General reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar styles */
.navbar {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* Slider styles */
.hero-header {
    width: 100%; /* Adjust as needed */
    height: 100vh; /* Adjust as needed */
    background: url(../img/hero.jpg) no-repeat center center / cover;
    animation: fadeBackground 3s infinite alternate;
}

@keyframes fadeBackground {
    0% {
        background: url(../img/hero.jpg) no-repeat center center / cover;
    }
    100% {
        background: url(../img/imgx.webp) no-repeat center center / cover;
    }
}


.service-item {
    position: relative;
    height: 350px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.service-item .service-icon i {
    transform: rotate(15deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: -1;
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.team-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}
.hero-header {
    width: 100%; /* Adjust as needed */
    height: 100vh; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url(../img/hero.jpg) no-repeat center center / cover;
    animation: fadeBackground 7s infinite alternate;
  }
  
  .text-container {
    font-size: 3rem; /* h1 equivalent size */
    color: white; /* Adjust text color */
    padding: 10px;
    background-color: #00AFEF;
    text-align: left;
    animation: fadeText 7s infinite alternate;
    position: relative;
    z-index: 2; /* Ensures text is on top of background */
    margin: 0;
  }
  
  /* Background Animation */
  @keyframes fadeBackground {
    0% {
      background: url(../img/hero.jpg) no-repeat center center / cover;
    }
    100% {
      background: url(../img/imgx.webp) no-repeat center center / cover;
    }
  }
  
  /* Text Animation */
  @keyframes fadeText {
    0% {
      opacity: 1;
      content: "Your Partner in Quality Healthcare and Growth.";
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
      content: "Welcome to Ingenious Healthcare Consultants.";
    }
  }
  
  /* For text content changes */
  .text-container::after {
    content: "Welcome to Ingenious Healthcare Consultants.";
    animation: fadeText 7s infinite alternate;
  }
  /* Ensure the container takes full viewport height */
.centered-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}
/* General styles for sections */
.section-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Background image for Vision section */
.vision-section {
    background-image: url('');
}

/* Background image for Mission section */
.mission-section {
    background-image: url('path-to-your-mission-image.jpg');
}

/* Background image for Objectives section */
.objectives-section {
    background-image: url('path-to-your-objectives-image.jpg');
}

/* Add a semi-transparent overlay for better text readability */
.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(77, 75, 177, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}

/* Ensure content appears above the overlay */
.section-bg .container {
    position: relative;
    z-index: 2;
}

/* Adjust margins and padding */
.section-bg {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-bg {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .text-content h5 {
        font-size: 1.2rem;
    }
}
/*footer*/
.link-highlight {
    color: #f8f9fa; /* Light text */
    text-decoration: none;
    padding: 5px 5px;
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth transition */
}

.link-highlight:hover,
.link-highlight:focus {
    background-color: #81adc7; /* Highlight background */
    color: #212529; /* Dark text for contrast */
    text-decoration: none;
}

/*contact*/
.address-link {
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
    padding: 2px 4px; /* Add some padding for highlight effect */
    border-radius: 4px; /* Optional: rounded corners for highlight */
}

.address-link:hover {
    background-color: hsl(199, 61%, 47%); /* Highlight background (e.g., yellow) */
    color: #212529; /* Change text color for better contrast */
    text-decoration: none; /* Ensures no underline on hover */
}

.phone-link {
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
    padding: 2px 4px; /* Adds padding for the highlight effect */
    border-radius: 4px; /* Optional: rounded corners for the highlight effect */
}

.phone-link:hover {
    background-color:hsl(199, 61%, 47%); /* Highlight background color (yellow) */
    color: #212529; /* Change text color to make it stand out */
    text-decoration: none; /* Ensures no underline on hover */
}
.email-link {
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
    padding: 2px 4px; /* Adds padding for the highlight effect */
    border-radius: 4px; /* Optional: rounded corners for the highlight effect */
}

.email-link:hover {
    background-color: hsl(199, 61%, 47%); /* Highlight background color (yellow) */
    color: #212529; /* Change text color to make it stand out */
    text-decoration: none; /* Ensures no underline on hover */
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.hospital-page {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 85%;
    margin: 0 auto;
}

/* Header Section */
.header {
    background-color: #00AFEF;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.2rem;
}

/* Section Styling */
.section {
    padding: 3rem 0;
}

.facility-layout {
    background-color: #e6f3ff;
}

.specialized-units {
    background-color: #f9f9f9;
}

h2 {
    font-size: 2rem;
    color: #00AFEFd;
    text-align: center;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #00AFEF;
    font-size: 1.2rem;
}



/* Card Grid Styling */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-top: 1rem;
    color: #00AFEF;
}

.card p {
    font-size: 0.9rem;
    color: #555;
}
/* Scoped styles for the empanelment and tender page */
body.empanelment-tender-page {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #0c0c0c;
    margin: 0;
    padding: 0;
}

/* Container */
.empanelment-tender-page .container {
    width: 85%;
    margin: 0 auto;
}

/* Header Section */
.empanelment-tender-page .header {
    background-color: #00AFEF;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.empanelment-tender-page .header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.empanelment-tender-page .header p {
    font-size: 1.2rem;
}

/* Section Styling */
.empanelment-tender-page .section {
    padding: 3rem 0;
}

.empanelment-tender-page .empanelment-processes {
    background-color: #e6f3ff;
}

.empanelment-tender-page .psu-partnerships {
    background-color: #f9f9f9;
}

.empanelment-tender-page h2 {
    font-size: 2rem;
    color: #00AFEF;
    text-align: center;
    margin-bottom: 1rem;
}

.empanelment-tender-page p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.empanelment-tender-page ul {
    list-style: none;
    padding-left: 20px;
}

.empanelment-tender-page ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.empanelment-tender-page ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #00AFEF;
    font-size: 1.2rem;
}

.empanelment-tender-page img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
}

/* Card Grid Styling */
.empanelment-tender-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.empanelment-tender-page .card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empanelment-tender-page .card h3 {
    margin-top: 1rem;
    color: #00AFEF;
}

.empanelment-tender-page .card p {
    font-size: 0.9rem;
    color: #555;
}
/* If you have something like this, adjust it */
.empanelment-tender-page .grid 
    word-spacing: 0; /* Remove any extra word spacing */
    letter-spacing: 0; /* Remove any extra letter spacing */
}


