@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: #ededed;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.header .logo {
  height: 80px;
  width: 160px;
  margin-left: -100px;
}

.header .logo:hover {
  cursor: pointer;
  scale: 1.05;
}

/*=================== CSS FOR LIST TOPBAR ===================*/
.header .navbar ul {
  list-style: none;
}

.header .navbar ul li {
  position: relative;
  float: left;
}

.header .navbar ul li a {
  font-size: 20px;
  padding: 20px;
  color: #333;
  display: block;
  text-decoration: none;
}

.header .navbar ul li a:hover {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.header .navbar ul li ul {
  position: absolute;
  left: 0;
  width: 200px;
  background-color: #f7eded;
  display: none;
}

.header .navbar ul li ul li {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.header .navbar ul li ul li ul {
  left: 200px;
  top: 0;
}

.header .navbar ul li:focus-within ul,
.header .navbar ul li:hover > ul {
  display: inherit;
}

#menu-bar {
  display: none;
}

.header label {
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: none;
}
/*=================== END CSS FOR TOPBAR ===================*/

/*=================== CSS OF IMAGE SLIDER ===================*/

.main {
  height: 100vh;
  width: 100%;
  background-color: rgb(255, 255, 255);
}

.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 40%;
}

.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}

.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}
a.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: #333;
  background-color: #fff;
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}

a.button:hover {
  color: #fff;
  background-color: #c87e4f;
}

/* SWIPER BUTTON CSS */
.nav-btn {
  height: 50px !important;
  width: 50px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) !important;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.5) !important;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 36px !important;
  font-weight: bold;
  color: #fff;
}
/*=================== END CSS OF IMAGE SLIDER ===================*/

/*=================== CSS FOR WELCOME ICMC ===================*/
.tag {
  animation: apper linear;
  animation-timeline: view();
  animation-range: entry 0 cover 40%;
}

.tag .text {
  margin-top: 80px;
  text-align: center;
}

.tag .text h1 {
  font-size: 50px;
  font-weight: 1000;
}

.tag p {
  margin-left: 5%;
  margin-right: 5%;
  text-align: justify;
  padding: 0.5% 2% 2% 2%;
}

.tag .choose {
  margin-left: 5%;
  margin-top: 20px;
  padding: 0.5% 2% 0% 2%;
}

.tag .choose h2 {
  font-size: 32px;
}
/*=================== END CSS FOR WELCOME ICMC ===================*/

/*=================== DOCTOR SEARCH BAR CSS ===================*/
.DocList {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  position: relative;
  max-width: 80%;
  width: 100%;
  border-radius: 6px;
  padding: 30px;
  background-color: #f7eded;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.container header {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: -20px;
}

.container form {
  position: relative;
  margin-top: 16px;
  min-height: 120px;
  background-color: #ecd8d8;
  border-radius: 5px;
}

.container form .details {
  margin: 10px;
}

.container form .title {
  font-size: 16px;
  font-weight: 500;
  margin: 6px 0;
  color: #333;
}

.container form .fields {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.input-field {
  flex: 1;
  min-width: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.input-field input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
}

.input-field input:focus {
  border-color: #6a5acd;
  outline: none;
  box-shadow: 0 0 5px rgba(106, 90, 205, 0.5);
}

.btn button {
  cursor: pointer;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  background-color: rgb(75, 75, 252);
  width: 90%;
  margin: 50px 20px 20px 10px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn button:hover {
  color: black;
  background-color: #6bf16b;
}
/*=================== END DOCTOR SEARCH BAR CSS ===================*/

/*=================== DASHBOARD HEALTH SERVICES DESIGNS ===================*/
.packages {
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  margin-bottom: 5%;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0 cover 40%;
}

.packageContainer {
  position: relative;
  width: 100%;
  padding-bottom: 200px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.imgPackage {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.4;
  left: 0;
  top: 0;
  z-index: 0;
}

.textImage {
  position: relative;
  margin-bottom: 20px;
  z-index: 2;
}

.textPackage {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
}

/* Responsive Card Layout */
.cardPackage {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  gap: 40px;
  bottom: -50px;
  padding: 30px;
  max-width: 90%;
  margin: auto;
  border-radius: 15px;
}

/* Box Styling */
.boxPackage {
  background: rgba(92, 122, 252, 0.9);
  height: 450px;
  width: 300px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
  flex: 1 1 280px; /* Allows it to shrink and grow */
  min-width: 250px;
  z-index: 2;
}

.boxPackage:hover {
  transform: translateY(-5px);
}

.boxPackage h3 {
  font-size: 22px;
  font-weight: 500;
  height: 60px;
}

.boxPackage ul {
  background: rgba(255, 0, 0, 0.5);
  border-radius: 10px;
  margin-top: 20px;
  text-align: left;
  height: 60%;
  max-height: 100%;
  padding: 5px;
  width: 100%;
}

.boxPackage ul li {
  list-style-type: circle;
  list-style-position: inside;
  font-weight: 300;
  font-size: 14px;
}

/* Read More Button */
a.readMore {
  position: relative;
  margin-top: auto;
  text-align: center;
  bottom: 20px;
  height: 50px;
  background-color: #1567fd;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

a.readMore:hover {
  background-color: #0d3fcf;
}
/*=================== END DASHBOARD HEALTH SERVICES DESIGNS ===================*/

/*=================== PAGE HEALTH SERVICES DESIGNS ===================*/
.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;
  /* padding: 50px; */
  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%;
  /* background: rgba(0, 0, 0, 0.5); */
  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 ===================*/
.footer-body {
  width: 100%;
  height: auto;
  animation: apper linear;
  animation-timeline: view();
  animation-range: entry 0;
}

.card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 500px;
  flex-wrap: wrap;
  padding: 20px;
}

.footer-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.card-box i {
  font-size: 50px; /* Adjust icon size */
  color: #1567fd;
}

.card-box h2 {
  font-size: 20px; /* Adjust text size */
  margin: 0; /* Remove default margin */
}

.card-box h3 {
  font-weight: normal;
}

.footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 15vh;
  background-color: #ffffff;
  box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.2); /* Inner shadow */
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.footer-text {
  display: flex;
  flex-direction: column;
}

.footbar .footbar1 {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-around;
  text-align: center;
  background-color: #e0dcdc;
}

.footbar .footbar2 {
  margin-top: 20px;
}

.icmcTag .footLogo {
  height: 150px;
  width: 280px;
}

.icmcTag .textLogo {
  text-align: justify;
}

.icmcTag .textLogo ul {
  list-style: none;
}

.icmcTag .textLogo ul li a {
  text-decoration: none;
}

.footbar2 .icmcTag h3 {
  margin-bottom: 20px;
}

.textLogo ul li a {
  color: #000;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c6c1c1;
}

.copyright .copyrightCard span {
  font-weight: bold;
}
/*=================== 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;
}

/* .headers {
  position: absolute;
  top: 20px;
  font-size: 2.5rem;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
  margin-top: 100px;
  margin-bottom: 40px;
} */

.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: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  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: #1567fd;
  transform: translateY(-5px);
}

.newsEvent-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.newsEvent-title {
  font-size: 1.2rem;
  color: #000;
  height: 60px;
  font-weight: 700;
  margin-top: 10px;
}

.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 VIEW PAGE DESIGN ===================*/
.newsEventView_body {
  margin-bottom: 50px;
}

.newsEventView_container {
  background-color: #e2e2e2;
  margin-top: 80px;
}

.newsEventView_container h2 {
  font-size: 32px;
}

.newsEventView_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 70px 100px 70px 100px;
  margin-left: 100px;
}

.backHome {
  font-size: 14px;
}

.homeText a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  margin: 0 5px;
}

.homeText a:hover {
  color: #1567fd;
}

.newsText {
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  margin: 0 5px;
}

.newsText:hover {
  color: #1567fd;
}

#newsTitleLabel {
  font-size: 32px;
  font-weight: 600;
}

.viewImage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  font-size: 14px;
}

.viewImage .newsEventView_subTitle {
  max-width: 70%;
  text-align: left;
  line-height: 2.5;
  margin-top: 50px;
}

#newsImage {
  max-width: 50%;
  border-radius: 10px;
  margin-top: 20px;
  display: none;
}
/*=================== END NEWS AND EVENT VIEW PAGE DESIGN ===================*/

/*=================== PROMO PAGE DESIGN ===================*/
.promo_body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  background: linear-gradient(#eceffe, #ced6fb);
  padding: 20px;
}

.promo_titleContainer {
  background-color: #e2e2e2;
  margin-top: 80px;
}

.promo_titleCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 70px 100px 70px 100px;
  margin-left: 100px;
}

.promo_titleCard h2 {
  font-size: 32px;
}

.promo_homeText a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  margin: 0 5px;
}

.promo_container {
  background-color: #ccc;
  width: 90%;
  max-width: 2000px;
  padding: 30px;
  margin-top: 100px;
  border-radius: 20px;
}

.promo-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0;
}

.promo-item {
  width: 100%;
}

.promo-link {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.promo-link:hover {
  border-color: #1567fd;
  transform: translateY(-5px);
}

.promo-content {
  flex-grow: 1;
  margin-bottom: 50px;
}

.promo-content span {
  color: #000;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
}

.promo-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.promo-title {
  font-size: 1.2rem;
  color: #000;
  height: 60px;
  font-weight: 700;
  margin-top: 10px;
}

.promo-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;
}

.promo-button:hover {
  color: #fff;
  background: #1567fd;
}

/*=================== END PROMO PAGE DESIGN ===================*/

/*=================== VIEW PROMO PAGE DESIGN ===================*/
.promoView_body {
  margin-bottom: 50px;
}

.promoView_container {
  background-color: #e2e2e2;
  margin-top: 80px;
}

.promoView_container h2 {
  font-size: 32px;
}

.promoView_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 70px 100px 70px 100px;
  margin-left: 100px;
}

.promoView_backHome {
  font-size: 14px;
}

.promoView_homeText a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  margin: 0 5px;
}

.promoView_homeText a:hover {
  color: #1567fd;
}

.promoView_promoText {
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  margin: 0 5px;
}

.promoView_promoText:hover {
  color: #1567fd;
}

#promoTitleLabel {
  font-size: 32px;
  font-weight: 600;
}

.promo_viewImage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  font-size: 14px;
}

.promo_viewImage .promoView_subTitle {
  max-width: 70%;
  text-align: left;
  line-height: 2.5;
  margin-top: 50px;
}

#promoImage {
  max-width: 50%;
  border-radius: 10px;
  margin-top: 20px;
  display: none;
}
/*=================== END VIEW PROMO PAGE DESIGN ===================*/

/*=================== CAREER PAGE DESIGN ===================*/
.career_body {
  background-color: #e2e2e2;
  margin-top: 80px;
  /* height: 90vh; */
}

.career_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 70px 100px 70px 100px;
  margin-left: 100px;
}

.career_box h3 {
  font-weight: normal;
}

.career_table {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 200px;
}

.career_table h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  margin-left: -70%;
}

table {
  border-collapse: collapse;
  width: 90%;
  margin: auto;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

th {
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

td:nth-child(2),
td:nth-child(3) {
  text-align: center;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.apply-btn a {
  display: inline-block;
  background-color: rgb(52, 152, 245);
  color: white;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
  text-decoration: none;
}

.apply-btn a:hover {
  background-color: rgba(52, 152, 245, 0.7);
  color: black;
}

.career_box h2 {
  font-size: 28px;
}

.career_box h3 {
  font-size: 24px;
}
/*=================== END CAREER PAGE DESIGN ===================*/

/*=================== CAREER VIEW JOB POST DESIGN ===================*/
.career_body {
  margin-bottom: 50px;
}

.career_card {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
}

.career_cardbox {
  background-color: rgb(236, 236, 236);
  width: 80%;
  margin: 50px 50px;
  padding: 10px;
  border-radius: 20px;
}

.career_title {
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.career_form {
  text-indent: 100px;
}

.career_list {
  list-style-position: inside;
}

.career_list li {
  text-indent: 120px;
}

.careerform_fill {
  margin-top: 100px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* margin: auto; */
}

.career_application {
  display: flex;
  flex-direction: column;
}

.careerView_rowGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.careerView_inputGroup {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.careerView_inputGroup label {
  margin-bottom: 5px;
}

.careerView_inputGroup input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

input[type="file"] {
  padding: 5px;
}

input[type="submit"] {
  margin-top: 20px;
  padding: 12px;
  background: #5c67f2;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

input[type="submit"]:hover {
  background: #4a54e1;
}
/*=================== END CAREER VIEW JOB POST DESIGN ===================*/

/*=================== MEDICAL RECORDS PAGE DESIGN ===================*/
.titleBody {
  margin-top: 80px;
  background: #e2e2e2;
}

.medicalRecord_titleBody {
  padding: 70px 100px 70px 100px;
  margin-left: 100px;
}

.medicalRecord_body {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-bottom: 50px;
  position: relative; /* Required for absolute positioning */
  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; /* Adjust the opacity (0.1 - 1) */
  z-index: -1; /* Ensures it stays behind the content */
}

.medicalRecord_DPA {
  background: #e8f4ff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  color: #3c3d3d;
}

.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_container {
  width: 90%;
  margin-top: 50px;
  max-width: 1200px;
  /* background: #ffffff; */
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.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: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.medicalRecord_inputGroup {
  margin-bottom: 15px;
}

.medicalRecord_inputGroup label {
  display: block;
  margin-bottom: 5px;
}

.medicalRecord_inputGroup input,
.medicalRecord_inputGroup select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.medicalRecord_info {
  flex: 2;
  background: #e8f4ff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  color: #3c3d3d;
}

.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 {
  width: 100%;
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.medicalRecord_btnSecondary {
  width: 50%;
  background: #ffc107;
  color: black;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.medicalRecord_info ul.chargeFee {
  list-style: none; /* Removes default bullets */
  padding-left: 0; /* Aligns text properly */
}

.medicalRecord_info ul.chargeFee li {
  margin-bottom: 5px; /* Adds spacing between fee items */
}
/*=================== END MEDICAL RECORDS PAGE DESIGN ===================*/

/*=================== ABOUT US DESIGN ===================*/
.aboutUs_title {
  background-color: #e2e2e2;
  border-style: inset;
  width: 100%;
  height: auto;
  margin-top: 80px;
  padding: 70px 100px 70px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.aboutUs_title h1 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
}

.whoWeAre {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 40px 10%;
}

.aboutUs_img {
  max-width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.icmc_Profile {
  flex: 1;
  text-align: justify;
  max-width: 600px;
}

.icmc_Profile h4 {
  font-size: 22px;
  font-weight: bold;
  color: #444;
  margin-bottom: 15px;
}

.aboutUs_icmcProf {
  line-height: 1.7;
  font-size: 16px;
}

.aboutUs_coreVal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 50px;
}

.aboutUs_coreValCard {
  background-color: #fff;
  border: 2px solid #ddd;
  max-width: 80%;
  width: 100%;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.misVis {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 50px;
  flex-wrap: wrap;
}

.aboutUs_card {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.aboutUs_card h2 {
  font-size: 24px;
  font-weight: bold;
  color: #d9534f;
  margin-bottom: 10px;
}

.aboutUs_card p,
.aboutUs_card ol {
  font-size: 16px;
  line-height: 2;
  color: #444;
  width: 80%;
}

.divider {
  width: 100%;
  height: 2px;
  background-color: #000;
  margin: 30px 0;
}

.coreValues_section {
  padding-bottom: 50px;
}

.coreValues_section h2 {
  font-size: 24px;
  font-weight: bold;
  color: #d9534f;
  margin-bottom: 50px;
}

.coreValues ol {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.aboutUs_badge {
  margin-top: 100px;
  margin-bottom: 100px;
}

.aboutUs_bagdeContainer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.badgeIcon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  width: 250px;
  height: 250px;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, rgba(0, 0, 0, 0.1));
  gap: 5px;
  line-height: 1;
}

.badgeIcon i {
  font-size: 100px;
  margin-bottom: 20px;
}

.bagdeNum {
  font-size: 36px;
  font-weight: bold;
}

.bagdeText {
  font-size: 16px;
}
/*=================== END OF ABOUT US DESIGN ===================*/

/*=================== CONTACT US PAGE DESIGN ===================*/
.contactUs {
  margin-bottom: 100px;
}

.contactUs_container {
  max-width: 100%;
  margin: auto;
}

.contactUs_getTouch {
  margin-top: 80px;
  background: #e2e2e2;
  width: 100%;
  padding: 70px 100px 70px 100px;
  text-align: center;
}

.contactUs_getTouch h3 {
  font-size: 28px;
}

.contactUs_getTouch h2 {
  font-size: 50px;
}

.blue-text {
  color: blue;
}

.red-text {
  color: red;
}

.map {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding-top: 30%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.areaMap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

.areaMap h1 {
  font-size: 50px;
  font-weight: bolder;
  padding: 5px;
}

.areaMap p {
  font-size: 18px;
  padding: 5px;
}

.inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.contactUs_inquiry {
  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 {
  display: flex;
  flex-direction: column;
}

.contactUs_inquiryFill h1 {
  font-size: 48px;
  font-weight: 600;
}

.contactUs_inquiryFill p {
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 18px;
}

.contactUs_inquiryFill h1,
p {
  text-align: center;
}

.contactUs_inquiryFill label {
  margin-top: 30px;
}

.contactUs_inquiryFill input,
.contactUs_inquiryFill select,
.contactUs_inquiryFill textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contactUs_inquiryFill textarea {
  height: 150px;
}

.contactUs_inquiryFill input[type="submit"] {
  margin-top: 20px;
  background: #5c67f2;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.contactUs_inquiryFill input[type="submit"]:hover {
  background: #4a54e1;
}

.row-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.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: 1024px) {
  /*=================== TOPBAR RESPONSIVE ===================*/
  .header {
    padding: 10px;
  }

  .header .logo {
    margin-left: 5px;
  }

  .header label {
    display: initial;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #c7c4c4;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
  }

  .header .navbar ul li {
    width: 100%;
  }

  .header .navbar ul li ul {
    position: relative;
    width: 100%;
  }

  .header .navbar ul li ul li {
    background: #eee;
  }

  .header .navbar ul li ul li ul {
    width: 100%;
    left: 0;
  }

  #menu-bar:checked ~ .navbar {
    display: initial;
  }
  /*=================== END TOPBAR RESPONSIVE ===================*/

  /*=================== DOCTOR SEARCH RESPONSIVE ===================*/
  .container {
    max-width: 100%;
    padding: 20px;
  }

  .container form .fields {
    flex-direction: column;
    gap: 15px;
  }

  .input-field {
    min-width: 100%;
  }

  .container .details {
    padding-bottom: 12px;
  }
  /*=================== END DOCTOR SEARCH RESPONSIVE ===================*/

  /*=================== DASHBOARD HEALTH SERVICES RESPONSIVE===================*/
  .headers {
    position: absolute;
    margin-top: 120px;
    margin-bottom: 40px;
    top: 20px;
    font-size: 2.5rem;
    text-align: center;
    transform: translate(-50%, -50%);
    margin-bottom: 20px;
    width: 100%;
  }

  .textPackage {
    font-size: 2.5rem;
  }
  .cardPackage {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .boxPackage {
    height: 400px;
    width: 250px;
  }

  a.readMore {
    margin-top: 30px;
  }
  /*=================== END DASHBOARD HEALTH SERVICES RESPONSIVE===================*/

  /*=================== PAGE HEALTH SERVICES RESPONSIVE===================*/
  .healthService_card {
    grid-template-columns: repeat(2, 1fr);
  }
  /*=================== END PAGE HEALTH SERVICES RESPONSIVE===================*/

  /*=================== NEWS EVENT VIEW RESPONSIVE===================*/
  .newsEventView_box {
    margin-left: 0;
  }
  /*=================== END NEWS EVENT VIEW RESPONSIVE===================*/

  /*=================== CAREER PAGE RESPONSIVE===================*/
  .career_box {
    margin-left: 0;
  }
  /*=================== END CAREER PAGE RESPONSIVE===================*/

  /*=================== ABOUT US PAGE RESPONSIVE===================*/
  .whoWeAre {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .aboutUs_img {
    max-width: 80%;
  }

  .misVis {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .coreValues ol {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .aboutUs_coreValCard {
    max-width: 90%;
  }

  .aboutUs_bagdeContainer {
    flex-wrap: wrap;
    justify-content: center;
  }
  /*=================== END ABOUT US PAGE RESPONSIVE===================*/

  /*=================== CONTACT US PAGE RESPONSIVE===================*/
  .contactUs_getTouch {
    padding: 30px;
  }

  .contactUs_getTouch h2 {
    font-size: 40px;
  }

  .areaMap h1 {
    font-size: 40px;
  }

  .contactUs_inquiry {
    width: 80%;
  }

  .map {
    max-width: 90%;
  }
  /*=================== END CONTACT US PAGE RESPONSIVE===================*/

  /*=================== FOOTBARRESPONSIVE ===================*/
  .footer-body {
    animation: apper linear;
    animation-timeline: view();
    animation-range: entry 30%;
  }

  .card-box {
    gap: 30px;
  }

  .footer-container {
    flex-direction: column;
    padding: 10px;
    height: auto;
  }

  .footer-card {
    flex-direction: column;
    text-align: center;
  }
  .footbar .footbar1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footbar .footbar1 .footbar2 {
    width: 100%; /* Make each section take full width */
    margin-bottom: 20px; /* Add some space between sections */
  }

  .icmcTag .textLogo {
    text-align: center; /* Center text for smaller screens */
  }
  /*=================== END FOOTBAR RESPONSIVE ===================*/
}

@media (max-width: 768px) {
  /*=================== PAGE HEALTH SERVICES RESPONSIVE===================*/
  .healthService_card {
    grid-template-columns: repeat(2, 1fr);
  }
  /*=================== END PAGE HEALTH SERVICES RESPONSIVE===================*/

  /*=================== END PAGE HEALTH SERVICES RESPONSIVE===================*/
  .career_table h2 {
    margin-left: -50%;
  }
  /*=================== END PAGE HEALTH SERVICES RESPONSIVE===================*/

  /*=================== ABOUT US PAGE RESPONSIVE===================*/
  .aboutUs_title h1 {
    font-size: 22px;
  }

  .aboutUs_img {
    max-width: 100%;
  }

  .aboutUs_card h2 {
    font-size: 20px;
  }

  .aboutUs_card p,
  .aboutUs_card ol {
    font-size: 14px;
  }

  .badgeIcon {
    width: 180px;
    height: 180px;
  }

  .badgeIcon i {
    font-size: 60px;
  }

  .bagdeNum {
    font-size: 24px;
  }

  .bagdeText {
    font-size: 14px;
  }

  .aboutUs_badge {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  /*=================== ENDABOUT US PAGE RESPONSIVE===================*/

  /*=================== CONTACT US PAGE RESPONSIVE===================*/
  .map {
    max-width: 90%;
  }

  .areaMap h1 {
    font-size: 28px;
  }
  /*=================== END CONTACT US PAGE RESPONSIVE===================*/
}

/* Extra Small Screens */
@media screen and (max-width: 480px) {
  /*=================== ABOUT US PAGE RESPONSIVE===================*/
  .aboutUs_title {
    padding: 30px;
  }

  .aboutUs_title h1 {
    font-size: 18px;
  }

  .aboutUs_coreValCard {
    padding: 20px;
  }

  .aboutUs_card h2 {
    font-size: 18px;
  }

  .badgeIcon {
    width: 150px;
    height: 150px;
  }

  .badgeIcon i {
    font-size: 50px;
  }

  .bagdeNum {
    font-size: 20px;
  }

  .bagdeText {
    font-size: 12px;
  }
  /*=================== xENDABOUT US PAGE RESPONSIVE===================*/
  /*=================== CONTACT US PAGE RESPONSIVE===================*/
  .map {
    max-width: 100%;
  }

  .areaMap h1 {
    font-size: 22px;
  }
  /*=================== END CONTACT US PAGE RESPONSIVE===================*/
}

/* @keyframes apper{
    from{
        opacity: 0;
        clip-path: inset(100% 100% 0 0);
    }
    to{
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
} */
