@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*=================== CSS FOR TOPBAR ===================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.header .logo {
  height: 75px;
  width: auto;
  /* margin-left: -100px; */
  transition: 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.03);
}

/* NAV MENU */
.header .navbar ul {
  list-style: none;
}

.header .navbar ul li {
  position: relative;
  float: left;
}

.header .navbar ul li a {
  font-size: 18px;
  padding: 22px 18px;
  color: #222;
  font-weight: 500;
  display: block;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

.header .navbar ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 0;
  height: 3px;
  background: #1567fd;
  border-radius: 10px;
  transition: 0.3s ease;
}

.header .navbar ul li a:hover {
  color: #1567fd;
}

.header .navbar ul li a:hover::after {
  width: 80%;
  left: 10%;
}

/* DROPDOWN */
.header .navbar ul li ul {
  position: absolute;
  left: 0;
  width: 230px;
  background: #ffffff;
  padding: 8px 0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
}

.header .navbar ul li ul li {
  width: 100%;
}

.header .navbar ul li ul li a {
  padding: 12px 18px;
  font-size: 16px;
}

.header .navbar ul li ul li a:hover {
  background: #1567fd;
  color: #fff;
  border-radius: 8px;
}

/* SHOW DROPDOWN */
.header .navbar ul li:hover > ul,
.header .navbar ul li:focus-within ul {
  display: block;
}

/* HAMBURGER */
#menu-bar {
  display: none;
}

.header label {
  font-size: 25px;
  color: #222;
  cursor: pointer;
  display: none;
}
/*=================== END CSS FOR TOPBAR ===================*/

/*=================== CSS OF IMAGE SLIDER ===================*/
.main {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* WHITE CARD TEXT DESIGN */
.image-data {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: #ffffffee;
  padding: 30px 35px;
  border-radius: 12px;
  max-width: 520px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  border-left: 6px solid #2b9bff;
}

.image-data .text {
  color: #0f2d4d;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

.image-data h2 {
  color: #0f2d4d;
  font-size: 42px;
  line-height: 1.1;
  margin: 8px 0 18px;
  font-weight: 800;
}

/* BUTTON */
.image-data .button {
  background: #2bb3ff;
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.image-data .button:hover {
  background: #0f2d4d;
}

/* SWIPER BUTTON */
.nav-btn {
  color: #0f2d4d !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 35px !important;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #2bb3ff;
  color: white !important;
}

/* SWIPER PAGINATION */
.swiper-pagination-bullet {
  background: #9fc9ff;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #2bb3ff;
}

/*=================== END CSS OF IMAGE SLIDER ===================*/

/*=================== CSS FOR WELCOME ICMC ===================*/
.welcome {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.welcome-content {
  width: 85%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.welcome-subtitle {
  color: #2b9bff;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 700;
}

.welcome-title {
  font-size: 32px;
  color: #0f2d4d;
  margin: 5px 0 10px;
}

.welcome-text {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 25px;
}

.choose-title {
  margin-top: 35px;
  color: #0f2d4d;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.choose-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2bb3ff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
}
/*=================== END CSS FOR WELCOME ICMC ===================*/

/*=================== DOCTOR SEARCH BAR CSS ===================*/
.DocList {
  width: 100%;
  padding: 70px 0;
  background: #f6fbff;
}

.DocList .container {
  width: 85%;
  max-width: 1100px;
  margin: auto;
}

.DocList header {
  font-size: 26px;
  color: #0f2d4d;
  margin-bottom: 15px;
  font-weight: 800;
}

.container form {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #2bb3ff;
}

.title {
  font-weight: 700;
  color: #0f2d4d;
}

.fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  margin-top: 20px;
}

.input-field label {
  font-size: 14px;
  color: #555;
}

.input-field input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

.input-field input:focus {
  border-color: #2bb3ff;
  box-shadow: 0 0 5px rgba(43, 179, 255, 0.4);
}

.btn button {
  height: 100%;
  padding: 0 30px;
  background: #2bb3ff;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn button:hover {
  background: #0f2d4d;
}
/*=================== END DOCTOR SEARCH BAR CSS ===================*/

/*=================== DASHBOARD HEALTH SERVICES DESIGNS ===================*/
.health-services {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.services-header {
  text-align: center;
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

.services-header h4 {
  color: #2bb3ff;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 700;
}

.services-header h2 {
  font-size: 34px;
  color: #0f2d4d;
  margin: 8px 0;
}

.services-header p {
  color: #555;
  margin-top: 8px;
}

.services-grid {
  width: 85%;
  max-width: 1250px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border-top: 6px solid #2bb3ff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.icon {
  width: 60px;
  height: 60px;
  background: #e8f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #0f2d4d;
  margin-bottom: 10px;
}

.service-card ul {
  margin: 0 0 12px 18px;
}

.service-card li {
  color: #555;
  margin-bottom: 6px;
  font-size: 14px;
}

.service-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #2bb3ff;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.service-btn:hover {
  background: #0f2d4d;
}
/*=================== END DASHBOARD HEALTH SERVICES DESIGNS ===================*/

/*=================== PAGE HEALTH SERVICES DESIGNS ===================*/
.serviceHero {
  margin-top: 85px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(10,50,120,.85), rgba(20,90,200,.85));
  text-align: center;
}

.serviceHero_content h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.serviceHero_content p {
  color: #e4efff;
  margin-top: 10px;
}

/* Content */

.serviceContent {
  padding: 70px 20px 120px;
  background: #f4f8ff;
  border-bottom: 1px solid #ccc;
  /* height: 100vh ; */
}

.serviceContent_container {
  max-width: 1000px;
  margin: auto;
  
}

.serviceIntro h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0f2d4d;
}

.serviceIntro p {
  margin-top: 10px;
  color: #555;
  max-width: 700px;
}

/* Grid */

.serviceGrid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.serviceItem {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  border-left: 6px solid #1567fd;
  font-weight: 700;
  color: #0f2d4d;
  box-shadow: 0 12px 25px rgba(0,0,0,.12);
}






/* .healthService_body {
  margin-top: 90px;
}

.healthService_container {
  background-color: #d1cdcd;
  background-image: url("../asset/bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.healthService_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 110.5vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.healthService_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-color: #e2e2e2;

  padding: 70px 100px 70px 100px;
  margin-top: -5px;
  width: 100%;
  gap: 20px;
  text-align: center;
  z-index: 2;
}

.healthService_box h2 {
  font-size: 40px;
}

.healthService_con {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.healthService_card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding: 20px;
  width: 50%;
  border-radius: 10px;
  z-index: 2;
}

.healthService_cardBox {
  cursor: pointer;
  height: 250px;
  width: 100%;
  background: linear-gradient(to right, #0d3fcf, #6a5acd);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
  transition: background 0.5s ease-in-out;
}

.healthService_cardBox:hover {
  background: linear-gradient(to right, #ff5733, #ffbd69);
  scale: 1.05;
} */
/*=================== END PAGE HEALTH SERVICES DESIGNS ===================*/

/*=================== FOOTER DESIGNS ===================*/
.icmc-footer {
  background: #0f2d4d;
  color: #fff;
  padding: 60px 0 30px;
  font-family: Arial;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
  margin-left: 150px;
}

.icmc-footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-left: 4px solid #2bb3ff;
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #d3d3d3;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #2bb3ff;
  padding-left: 5px;
}

.footer-desc {
  color: #cfd3da;
  margin-top: 8px;
}

.contact-info li {
  color: #d3d3d3;
}

.footer-bottom {
  text-align: center;
  margin-top: 35px;
  border-top: 1px solid #2b4e73;
  padding-top: 15px;
  color: #c6cfd9;
}
/*=================== END FOOTER DESIGNS ===================*/

/*=================== NEWS AND EVENT PAGE DESIGN ===================*/
.newsEvent_body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  background: linear-gradient(#eceffe, #ced6fb);
  padding: 20px;
}

.newsEvent_container {
  background-color: rgba(255, 255, 255, 0.5);
  width: 90%;
  max-width: 2000px;
  padding: 30px;
  margin-top: 100px;
  border-radius: 20px;
}

.newsEvent-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0;
}

.newsEvent-item {
  width: 100%;
}

.newsEvent-link {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #d6e2ff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
}

.newsEvent-content {
  flex-grow: 1;
  margin-bottom: 50px; /* Space for the button */
}

.newsEvent-content span {
  color: #000;
  max-height: 80px; /* Adjust based on your design */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines before truncation */
  -webkit-box-orient: vertical;
  line-height: 1.5rem; /* Adjust line spacing */

  line-clamp: 3;
}

.newsEvent-link:hover {
  border-color: #2b9bff;
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.newsEvent-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.newsEvent-title {
  font-size: 1.2rem;
  color: #000;
  font-weight: 700;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines before truncation */
  -webkit-box-orient: vertical;
  line-height: 1.5rem; /* Adjust line spacing */
  overflow: hidden;
}

.descrip {
  color: #000;
}

.newsEvent-button {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  color: #1567fd;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  border: 2px solid #1567fd;
  transform: rotate(-45deg);
  transition: 0.3s ease;
}

.newsEvent-button:hover {
  color: #fff;
  background: #1567fd;
}
/*=================== END NEWS AND EVENT PAGE DESIGN ===================*/

/*=================== NEWS AND EVENT TITLE PAGE DESIGN ===================*/
.newsEvent_title {
  width: 100%;
  height: 260px;
  margin-top: 85px;
  background: linear-gradient(rgba(0, 41, 107, 0.85), rgba(13, 82, 194, 0.85)),
    url("/asset/logo.png");
  background-size: cover;
  background-position: center;
  /* padding: 70px 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsEventView_container {
  width: 100%;
  max-width: 1100px;
  margin: 0 20px;
}

.newsEventView_box {
  color: #fff;
}

.backHome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
  color: #dbe4ff;
}

.backHome i {
  color: #fff;
}

.backHome a {
  color: #cfe1ff;
  text-decoration: none;
  font-weight: 600;
}

.backHome a:hover {
  text-decoration: underline;
}

.newsEvent_title h1 {
  /* margin: 0; */
  font-size: 42px;
  letter-spacing: 1px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.newsEvent_title h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50px;
  background: #ffffff;
}
/*=================== END NEWS AND EVENT TITLE PAGE DESIGN ===================*/

/*=================== NEWS AND EVENT VIEW PAGE DESIGN ===================*/

.newsEventView_body {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.viewImage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  max-width: 80%;
}

.viewImage .newsEventView_subTitle {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 70%;
  max-width: 70%;
  min-width: 70%;
  line-height: 1.6;
  margin-top: 20px;
  font-size: 16px;
  text-align: justify;
  padding: 20px;
}

#newsImage {
  max-width: 80%;
  border-radius: 10px;
  margin-top: 20px;
  display: none;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

#newsImage:hover {
  transform: scale(1.05);
}

/*=================== END NEWS AND EVENT VIEW PAGE DESIGN ===================*/

/*=================== PROMO PAGE DESIGN ===================*/
.promo_title {
  width: 100%;
  height: 260px;
  margin-top: 85px;
  background: linear-gradient(rgba(0,41,107,0.85), rgba(13,82,194,0.85)),
    url("../asset/logo.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promoTitle_container {
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}

.promo_backHome i {
  color: #fff;
}

.promo_backHome a {
  color: #fff;
  text-decoration: none;
  transition: .3s ease;
}

.promo_backHome a:hover {
  text-decoration: underline;
}

.promo_box h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo_body {
  padding: 60px 20px 120px;
  background: linear-gradient(#f4f8ff, #e8efff);
}

.promo_container {
  max-width: 1100px;
  margin: auto;
}

.promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.promo-item:hover {
  transform: translateY(-6px);
}

.promo-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.promo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.promo-title {
  padding: 15px 18px 0;
  font-size: 20px;
  font-weight: 800;
  color: #0f2d4d;
}

.promo-content {
  padding: 15px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.promo-button {
  margin: auto 18px 20px;
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 25px;
  background: linear-gradient(135deg, #2bb3ff, #1567fd);
  color: #fff;
  font-weight: 700;
}

/*=================== END PROMO PAGE DESIGN ===================*/

/*=================== VIEW PROMO PAGE DESIGN ===================*/
.promoView_title {
  width: 100%;
  height: 260px;
  margin-top: 85px;
  background: linear-gradient(rgba(0,41,107,0.85), rgba(13,82,194,0.85)),
    url("../asset/logo.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promoView_container {
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}

.promoView_box {
  color: #fff;
}

.promoView_backHome a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: .3s ease;
}

.promoView_backHome a:hover {
  text-decoration: underline;
}

.promoView_box h1 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
}

.promoView_body {
  display: flex;
  justify-content: center;
  padding: 60px 20px 120px;
  background: linear-gradient(#f4f8ff, #e8efff);
}

.promoView_card {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* IMAGE ONLY CLIPPED */
.promoView_imageWrapper {
  overflow: hidden;
}

.promoView_imageWrapper img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promoView_imageWrapper img:hover {
  transform: scale(1.08);
}

/* TEXT SIDE */
.promoView_content {
  padding: 45px;
  display: flex;
  flex-direction: column;
}

.promoView_content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0f2d4d;
}

.promoView_content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #2bb3ff;
  display: block;
  margin-top: 8px;
  border-radius: 50px;
}

.promoView_description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.9;
  color: #444;

  /* VERY IMPORTANT */
  height: auto;
  max-height: none;
  overflow: visible;
  white-space: normal;
}

.promoView_backBtn {
  margin-top: 40px;
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2bb3ff, #1567fd);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.promoView_backBtn:hover {
  background: #0f2d4d;
}

/*=================== END VIEW PROMO PAGE DESIGN ===================*/

/*=================== CAREER PAGE DESIGN ===================*/
.careerDB_title {
  width: 100%;
  height: 260px;
  margin-top: 85px;
  background: linear-gradient(rgba(0, 41, 107, 0.85), rgba(13, 82, 194, 0.85)),
    url("/asset/logo.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careerDB_container {
  width: 100%;
  max-width: 1100px;
  margin: 0 20px;
}

.careerDB_box {
  color: #fff;
}

.careerDB_backhome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
  color: #dbe4ff;
}

.careerDB_backhome i {
  color: #fff;
}

.careerDB_backhome a {
  color: #cfe1ff;
  text-decoration: none;
  font-weight: 600;
}

.careerDB_backhome a:hover {
  text-decoration: underline;
}

.careerDB_title h1 {
  font-size: 42px;
  letter-spacing: 1px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.careerDB_title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50px;
  background: #ffffff;
}

.career_table {
  margin-top: 100px;
  margin-bottom: 200px;
  display: flex;
  justify-content: center;
}

.careerTable_card {
  width: 90%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.careerTable_card h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f2d4d;
  margin-bottom: 25px;
  position: relative;
}

.careerTable_card h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #2bb3ff;
  display: block;
  margin-top: 6px;
  border-radius: 50px;
}

.table-responsive {
  overflow-x: auto;
}

.careerModernTable {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
}

.careerModernTable thead {
  background: #3796fc;
}

.careerModernTable th {
  padding: 16px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.careerModernTable td {
  padding: 16px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #eee;
}

.careerModernTable tbody tr {
  transition: 0.25s;
}

.careerModernTable tbody tr:hover {
  background: #f4f9ff;
}

.careerModernTable td:nth-child(2),
.careerModernTable td:nth-child(3),
.careerModernTable td:nth-child(4) {
  text-align: center;
}

.careerModernTable td:nth-child(3) {
  font-weight: 700;
}

.careerModernTable td:nth-child(3):contains("Active") {
  color: #28a745;
}

.careerModernTable td:nth-child(3):contains("Closed") {
  color: #dc3545;
}

.apply-btn a {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, #2bb3ff, #1567fd);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn a:hover {
  background: #0f2d4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.closed-job {
  background: #ffcccc !important;
}

.closed-text {
  font-weight: 700;
  color: #dc3545;
}
/*=================== END CAREER PAGE DESIGN ===================*/

/*=================== CAREER VIEW JOB POST DESIGN ===================*/
.careerView_wrapper {
  display: flex;
  justify-content: center;
  margin: 90px 0 150px;
}

.careerView_card {
  width: 90%;
  max-width: 1100px;
  background: #fff;
  border-radius: 22px;
  padding: 45px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.careerView_header {
  text-align: center;
  margin-bottom: 35px;
}

.careerView_header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f2d4d;
}

.careerView_subtitle {
  color: #2bb3ff;
  font-weight: 600;
}

.careerView_qualificationCard {
  background: #f4f9ff;
  padding: 30px 40px;
  border-radius: 16px;
  margin-bottom: 50px;
}

.careerView_qualificationCard ul {
  padding-left: 20px;
}

.careerView_qualificationCard li {
  line-height: 1.8;
  margin-bottom: 1px;
  color: #333;
}

.careerView_formCard {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  border-top: 6px solid #2bb3ff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.careerView_formCard h3 {
  margin-bottom: 25px;
  color: #0f2d4d;
  font-size: 22px;
}

.careerView_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.careerView_grid input,
.careerView_file input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.careerView_grid input:focus,
.careerView_file input:focus {
  border-color: #2bb3ff;
  box-shadow: 0 0 6px rgba(14, 179, 255, 0.4);
  outline: none;
}

.careerView_file {
  margin-top: 25px;
}

.careerView_form button {
  margin-top: 35px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #2bb3ff, #1567fd);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.careerView_form button:hover {
  background: #0f2d4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
/*=================== END CAREER VIEW JOB POST DESIGN ===================*/

/*=================== MEDICAL RECORDS PAGE DESIGN ===================*/
.titleBody {
  margin-top: 85px;
  background: linear-gradient(rgba(15, 45, 77, 0.9), rgba(43, 155, 255, 0.9)),
    url("../asset/logo.png");
  background-size: cover;
  background-position: center;
}

.medicalRecord_titleBody {
  padding: 80px 20px;
  text-align: center;
}

.medicalRecord_titleBody h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 2px;
}

.medicalRecord_titleBody h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 50px;
}

.medicalRecord_container {
  width: 90%;
  max-width: 1200px;
  margin-top: 50px;
  background: #ffffff;
  border-radius: 18px;
  border: none;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.medicalRecord_body {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-bottom: 50px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.medicalRecord_body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../asset/bg1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.medicalRecord_DPA {
  background: #f4f9ff;
  border-left: 6px solid #2bb3ff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  color: #3c3d3d;
}

.medicalRecord_DPA p strong {
  font-size: 22px;
  color: #0f2d4d;
}

.medicalRecord_DPA p:nth-child(1) {
  margin-bottom: 20px;
  font-size: 24px;
}

.medicalRecord_DPA p:nth-child(2) {
  font-size: 18px;

  line-height: 2;
}

.medicalRecord_DPA p:nth-child(3) {
  font-size: 14px;
  line-height: 2;
}

.medicalRecord_card {
  /* text-align: center; */
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: uppercase;
}

.medicalRecord_content {
  display: flex;
  gap: 20px;
}

.medicalRecord_formContainer {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  flex: 2;
}

.medicalRecord_formFill {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
}

.medicalRecord_inputGroup {
  margin-bottom: 15px;
}

.medicalRecord_inputGroup label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  display: block;
  margin-bottom: 5px;
}

.medicalRecord_inputGroup input,
.medicalRecord_inputGroup select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: 0.3s;
}

.medicalRecord_inputGroup input:focus,
.medicalRecord_inputGroup select:focus {
  border-color: #2bb3ff;
  box-shadow: 0 0 6px rgba(43, 179, 255, 0.4);
  outline: none;
}

.medicalRecord_info {
  background: #f8fbff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
  flex: 2;
  font-size: 14px;
  color: #3c3d3d;
}

.medicalRecord_info strong {
  color: #0f2d4d;
  font-size: 15px;
}

.medicalRecord_info p,
.medicalRecord_info ol,
.medicalRecord_info ul {
  margin-bottom: 15px;
  text-align: left;
}

.medicalRecord_info ol {
  padding-left: 20px;
}

.medicalRecord_info ol li {
  margin-bottom: 5px;
}

.medicalRecord_btnPrimary {
  grid-column: span 2;
  background: linear-gradient(135deg, #2bb3ff, #1567fd);
  color: #fff;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.medicalRecord_btnPrimary:hover {
  background: #0f2d4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.medicalRecord_btnSecondary {
  width: 100%;
  background: #ffc107;
  padding: 12px;
  font-weight: 700;
  border-radius: 25px;
  color: black;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.medicalRecord_info ul.chargeFee {
  list-style: none;
  padding-left: 0;
}

.medicalRecord_info ul.chargeFee li {
  margin-bottom: 5px;
}
/*=================== END MEDICAL RECORDS PAGE DESIGN ===================*/

/*=================== ABOUT US DESIGN ===================*/
.aboutUs {
  margin-top: 85px;
  background: #f4f8fc;
  padding-bottom: 10px;
}

.aboutUs_title {
  text-align: center;
  padding: 80px 20px 40px;
}

.aboutUs_title span:first-child {
  font-size: 14px;
  letter-spacing: 3px;
  color: #2bb3ff;
  font-weight: 700;
}

.aboutUs_title h1 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 10px;
  color: #0f2d4d;
}

.aboutUs_title h1::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #2bb3ff;
  display: block;
  margin: 12px auto 0;
  border-radius: 20px;
}

.whoWeAre {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.aboutUs_img {
  width: 45%;
  border-radius: 18px;
  object-fit: cover;
}

.icmc_Profile {
  width: 55%;
  text-align: justify;
}

.icmc_Profile h4 {
  font-size: 22px;
  color: #0f2d4d;
  margin-bottom: 15px;
}

.aboutUs_icmcProf {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  text-align: justify;
}

.aboutUs_coreVal {
  margin-top: 80px;
}

.aboutUs_coreValCard {
  width: 90%;
  max-width: 1200;
  margin: auto;
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
}

.misVis {
  display: flex;
  gap: 30px;
}

.aboutUs_card {
  flex: 1;
  background: #f8fbff;
  padding: 30px;
  border-radius: 16px;
  border-left: 6px solid #2bb3ff;
}

.aboutUs_card h2 {
  color: #0f2d4d;
  margin-bottom: 15px;
}

.aboutUs_card p,
.aboutUs_card li {
  font-size: 15px;
  line-height: 1.7;
}

.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #2bb3ff, transparent);
  margin: 50px 0;
}

.coreValues_section {
  padding-bottom: 50px;
}

.coreValues_section h2 {
  text-align: center;
  color: #0f2d4d;
  margin-bottom: 25px;
}

.coreValues ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.coreValues li {
  background: #f4f9ff;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  color: #0f2d4d;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  list-style: none;
  border: 1px solid #ccc;
}

.aboutUs_badge {
  margin-top: 80px;
  background: linear-gradient(135deg, #0f2d4d, #2bb3ff);
  padding: 70px 20px;
}

.aboutUs_bagdeContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.badgeIcon {
  background: rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.badgeIcon:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
}

.badgeIcon i {
  font-size: 40px;
  margin-bottom: 10px;
}

.bagdeNum {
  font-size: 32px;
  font-weight: 900;
  display: block;
}

.bagdeText {
  font-size: 14px;
  letter-spacing: 1px;
}

/* ACCREDITATION */
.aboutUs_accreditation {
  margin-top: 90px;
  background: #f8fbff;
  padding: 70px 20px;
  text-align: center;
}

.aboutUs_accreditation h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0f2d4d;
  margin-bottom: 20px;
}

.accredi_sub {
  margin: 10px 0 40px;
  color: #666;
}

.accreditation_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.accredit_card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.accredit_card:hover {
  transform: translateY(-6px);
}

.accredit_card img {
  max-width: 120px;
  /* margin-bottom: 1px; */
}

.accredit_card p {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  animation: popIn 0.4s ease;
}

.modal-box i {
  font-size: 60px;
  color: #2ecc71;
  margin-bottom: 15px;
}

.modal-box h2 {
  margin-bottom: 10px;
}

.modal-box button {
  margin-top: 20px;
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
  background: #007bff;
  color: #fff;
  cursor: pointer;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/*=================== END OF ABOUT US DESIGN ===================*/

/*=================== CONTACT US PAGE DESIGN ===================*/
.contactUs {
  margin-top: 85px;
  background: #f4f8fc;
  padding-bottom: 80px;
}

.contactUs_container {
  max-width: 100%;
  margin: auto;
}

.contactUs_getTouch {
  text-align: center;
  padding: 80px 20px 40px;

  /* margin-top: 80px;
  background: #e2e2e2;
  width: 100%;*/
}

.contactUs_getTouch h3 {
  letter-spacing: 4px;
  color: #2BB3FF;
  font-size: 14px;
  font-weight: 700;
}

.contactUs_getTouch h2 {
  font-size: 40px;
  font-weight: 900;
  color: #0f2d4d;
}

.blue-text {
  color: #2BB3FF;
}

.red-text {
  color: #e63946;
}

.map {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding-top: 30%;
  margin: auto;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.areaMap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  text-align: center;

  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px; */
}

.areaMap h1 {
  color: #0f2d4d;
  font-size: 28px;
  margin-bottom: 25px;

  /* 
  font-weight: bolder;
  padding: 5px; */
}

.map iframe {
  width: 100%;
  height: 420px;
  border-radius: 16px;
}

.areaMap p {
  font-size: 15px;
  color: #555;
  margin-top: 15px;
}

.inquiry {
  margin-top: 80px;

  /* display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px; */
}

.contactUs_inquiry {
  display: flex;
  justify-content: center;

  /* position: relative;
  padding: 30px;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden; */
}

.contactUs_inquiry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../Client/asset/bg1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
  border-radius: 10px;
}

.contactUs_inquiryFill {
  width: 90%;
  max-width: 800px;
  background: #fff;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

  /* display: flex;
  flex-direction: column; */
}

.contactUs_inquiryFill h1 {
  text-align: center;
  font-size: 32px;
  color: #0f2d4d;
  font-weight: 900;
}

.contactUs_inquiryFill p {
  text-align: center;
  color: #777;
  margin-bottom: 30px;
}

.contactUs_inquiryFill h1,
p {
  text-align: center;
}

.contactUs_inquiryFill label {
  margin-top: 30px;
}

.input-group label,
.contactUs_inquiryFill label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.input-group input,
.contactUs_inquiryFill input,
.contactUs_inquiryFill select,
.contactUs_inquiryFill textarea {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 18px;
  font-size: 14px;
  transition: .3s;

  /* padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px; */
}

.input-group input:focus,
.contactUs_inquiryFill input:focus,
.contactUs_inquiryFill select:focus,
.contactUs_inquiryFill textarea:focus {
  border-color: #2BB3FF;
  box-shadow: 0 0 6px rgba(43, 179, 255, .4);
  outline: none;
}

.contactUs_inquiryFill textarea {
  min-height: 120px;
  resize: vertical;
}

.contactUs_inquiryFill input[type="submit"] {
  width: 100%;
  background: linear-gradient(135deg, #2BB3FF, #1567fd);
  color: #fff;
  padding: 15px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .3s;
}

.contactUs_inquiryFill input[type="submit"]:hover {
  background: #0f2d4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.row-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.input-group {
  flex: 1;
  min-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.input-group input,
.input-group select {
  width: 100%;
  box-sizing: border-box;
}
/*=================== CONTACT US PAGE DESIGN ===================*/

/*=================== RESPONSIVE DESIGN ===================*/

@media (max-width: 1400px) {
  /*=================== RESPONSIVE CSS FOR TOPBAR ===================*/
  .header {
    padding: 0 25px !important;
  }

  .logo img {
    height: 30px !important;
  }

  .navbar ul {
    gap: 18px !important;
    flex-wrap: nowrap !important;
  }

  .navbar a {
    font-size: 15px !important;
    padding: 10px 12px !important;
  }

  .navbar .dropdown ul {
    min-width: 210px !important;
  }
  /*=================== RESPONSIVE CSS FOR TOPBAR ===================*/

  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/
  .footer-container {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 35px;
  }

  .icmc-footer {
    padding: 50px 0 25px;
  }
  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/

  /*=================== RESPONSIVE CSS FOR HEALTH SERVICE DASHBOARD ===================*/
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /*=================== RESPONSIVE CSS FOR HEALTH SERVICE DASHBOARD ===================*/
}

@media (max-width: 1200px) {
  /*=================== RESPONSIVE CSS FOR TOPBAR ===================*/
  .header {
    padding: 0 15px !important;
  }

  .logo img {
    height: 10px !important;
  }

  .navbar ul {
    flex-wrap: nowrap !important;
  }

  .navbar a {
    font-size: 12px !important;
    padding: 10px 12px !important;
  }

  .navbar .dropdown ul {
    min-width: 180px !important;
  }
  /*=================== RESPONSIVE CSS FOR TOPBAR ===================*/

  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
  }

  .footer-logo {
    height: 50px;
    margin-left: 100px;
  }

  .icmc-footer h3 {
    font-size: 17px;
  }
  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/

  /*=================== RESPONSIVE CSS FOR HEALTH SERVICE DASHBOARD ===================*/
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*=================== RESPONSIVE CSS FOR HEALTH SERVICE DASHBOARD ===================*/
}

@media (max-width: 1000px) {
  /*=================== RESPONSIVE CSS FOR TOPBAR ===================*/
  .header {
    padding: 0 20px;
  }

  .header label {
    display: block;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ddd;
    display: none;
  }

  #menu-bar:checked ~ .navbar {
    display: block;
  }

  .header .navbar ul li {
    width: 100%;
    float: none;
  }

  .header .navbar ul li a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  /* dropdown inside mobile */
  .header .navbar ul li ul {
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
  /*=================== RESPONSIVE CSS FOR TOPBAR ===================*/

  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .brand {
    grid-column: span 2;
  }
  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/

  /*=================== RESPONSIVE CSS FOR IMAGE SLIDER ===================*/
  .main {
    height: 60vh;
  }

  .image-data {
    max-width: 70%;
    margin-left: 50px;
  }

  .image-data h2 {
    font-size: 32px;
  }

  .nav-btn {
    margin-right: 50px;
    margin-left: 50px;
  }
  /*=================== RESPONSIVE CSS FOR IMAGE SLIDER ===================*/

  /*=================== RESPONSIVE CSS FOR DOCTORS SEARCH ===================*/
  .fields {
    grid-template-columns: 1fr;
  }
  /*=================== RESPONSIVE CSS FOR DOCTORS SEARCH ===================*/

  /*=================== RESPONSIVE CSS FOR MEDICAL RECORDS ===================*/
  .medicalRecord_content {
    flex-direction: column;
  }

  .medicalRecord_btnPrimary {
    grid-column: span 1;
  }
  /*=================== END RESPONSIVE CSS FOR MEDICAL RECORDS ===================*/
  
  /*=================== RESPONSIVE CSS FOR PROMO VIEW PAGE ===================*/
  .promoView_card {
    grid-template-columns: 1fr;
  }

  .promoView_imageWrapper img {
    min-height: 300px;
  }

  .promoView_content {
    padding: 30px;
  }
  /*=================== END RESPONSIVE CSS FOR PROMO VIEW PAGE ===================*/



}

@media (max-width: 768px) {
  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col {
    text-align: center;
  }

  .icmc-footer h3 {
    border-left: none;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }

  .footer-logo {
    margin-left: 80px !important;
  }
  /*=================== RESPONSIVE CSS FOR FOOTBAR ===================*/

  /*=================== RESPONSIVE CSS FOR IMAGE SLIDER ===================*/
  .main {
    height: 50vh;
  }

  .image-data {
    left: 25%;
    top: 70%;
    transform: translate(-50%, -50%);
    width: 40%;
    padding: 15px 0 0 20px;
    border-left-width: 4px;
  }

  .image-data h2 {
    font-size: 24px;
  }

  .image-data h2 {
    font-size: 14px;
  }

  .nav-btn {
    margin-right: 10px;
    margin-left: 10px;
  }
  /*=================== RESPONSIVE CSS FOR IMAGE SLIDER ===================*/

  /*=================== RESPONSIVE CSS FOR WELCOME MESSAGE ===================*/
  .welcome-title {
    font-size: 24px;
  }

  .welcome-text {
    font-size: 14px;
  }
  /*=================== RESPONSIVE CSS FOR WELCOME MESSAGE ===================*/

  /*=================== RESPONSIVE CSS FOR HEALTH SERVICE DASHBOARD ===================*/
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    text-align: center;
  }

  .icon {
    margin: auto;
  }
  /*=================== RESPONSIVE CSS FOR HEALTH SERVICE DASHBOARD ===================*/

  /*=================== RESPONSIVE CSS FOR NEWS and EVENTS ===================*/
  .newsEvent_title {
    height: auto;
    padding: 60px 0;
    text-align: center;
  }

  .backHome {
    justify-content: center;
  }

  .newsEvent_title h1 {
    font-size: 30px;
  }

  .newsEvent_title h1::after {
    margin: auto;
  }
  /*=================== RESPONSIVE CSS FOR NEWS and EVENTS ===================*/

  /*=================== RESPONSIVE CSS FOR CAREER ===================*/
  .careerTable_card {
    padding: 25px;
  }

  .careerTable_card h2 {
    font-size: 24px;
  }

  .careerModernTable th,
  .careerModernTable td {
    padding: 12px;
    font-size: 14px;
  }
  /*=================== END RESPONSIVE CSS FOR CAREER ===================*/

  /*=================== END RESPONSIVE CSS FOR CAREER VIEW ===================*/
  .careerView_card {
    padding: 30px;
  }

  .careerView_header h2 {
    font-size: 26px;
  }
  /*=================== END RESPONSIVE CSS FOR CAREER VIEW ===================*/

  /*=================== RESPONSIVE CSS FOR ABOUT US ===================*/
  .row-group {
    grid-template-columns: 1fr;
  }

  .contactUs_getTouch h2 {
    font-size: 30px;
  }

  .areaMap {
    padding: 25px;
  }

  .areaMap h1 {
    font-size: 20px;
  }

  .map-wrapper {
    border-radius: 12px;
  }
  /*=================== END RESPONSIVE CSS FOR ABOUT US ===================*/
}

@media (max-width: 640px) {
}
