@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
    padding-top: 0.1px;
}

html{
	scroll-behavior: smooth;
    scroll-padding: 12rem;   
}

a{
	text-decoration: none;
}

.container {
  display: flex; 
  flex-direction: row;
}

.border{
  border: 2px solid black;
}

section{
  margin-bottom: 8px;
  border-radius: 20px;
}

.left-panel {
  margin-top: 83px;
  position: fixed;
  top: 0;
  left: 0;
  width: 45%;
  height: 88vh;
}

.right-panel {
  margin-top: 83px;
  margin-left: 45%;
  flex: 1; 
  overflow-y: auto; 
}

@media (max-width:850px) {
  .container {
      flex-direction: column;
  }

  .left-panel {
      width: 100%;
      height: auto;
      position: relative; /* Remove fixed positioning on larger screens */
    }
  
  .right-panel {
    margin-left: 0;
    flex: none; /* Disable flex grow for right content on larger screens */
  }
}


/*************************NAV-HEADER******************************/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.23);
  padding: 4px 0;
  font-weight: 550;
}

.nav-container{
  max-width: 1280px;
  margin: auto;
  padding: 0 15px;
}

.header .nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img{
  vertical-align: middle;
  width: 150px;
}

.header .menu .head{
  display: none;
}

.header .menu ul{
  list-style: none;
}

.header .menu > ul > li{
  display: inline-block;
}

.header .menu > ul > li:not(:last-child){
  margin-right: 40px;
}

.header .menu .dropdown{
  position: relative;
}

.header .menu a{
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  color: black;
  line-height: 1.5;
  display: block;
}

.header .menu a:hover{
  color: #5767B0;
}

.header .menu > ul > li > a{
  padding: 18px 0;
}
.marginright{
  margin-right: 1rem;
}

.header .menu > ul > .dropdown > a{
  padding-right: 15px;
}

.header .menu i{
  font-size: 30px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  color: black;
  top: calc(50% - 15px);
}

.header .menu > ul > li > i{
  right: 0;
}

.header .menu .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  padding: 15px 0;
  border: 3px solid #5767B0;
  border-radius: 12px;
  background-color:white;
  /*box-shadow: 0 0 5px hsla(0,0%,0%,0.5);*/
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}

.header .menu li:hover > .sub-menu{
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.2s ease;
}

.header .menu .sub-menu a{
  padding: 6px 24px;
}

.header .menu .sub-menu span{
  background-image: linear-gradient(hsl(0, 0%, 5%), hsl(0, 0%, 5%));
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition:  background-size 0.5s ease;
}

.header .menu .sub-menu li:hover > a > span{
  background-size: 100% 1px;
}

.header-right{
  display: flex;
}

.header-right > *{
  margin-left: 11px;
}

.header-right .icon-btn{
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 2rem;
}

.header-right .icon-btn:hover{
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.ri-facebook-circle-fill {
  color: #1877f2;
}
.ri-instagram-fill {
  color: #c32aa3;
}
.ri-linkedin-box-fill {
  color: #0a66c2;
}
.ri-whatsapp-fill {
  color: #25d366;
}
.ri-phone-fill {
  color: #5767B0;
}

.header-right .open-menu-btn{
  display: none;
}

@media (max-width:991px) {
  .header{
    padding: 12px 0;
  }

  .header .logo img{
    width: 82px;
  }

  .header .menu{
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    border-radius: 20px;
    border: 2px solid #5767B0;
    background-color: #EEEEEE;
    padding: 15px 30px 30px;
    overflow-y: auto;
    z-index: 1;
    transform: translateX(100%);
  }

  .header .menu.open{
    transform: none;
  }

  .header .menu .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }

  .header .menu .close-menu-btn{
    height: 35px;
    width: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }

  .header .menu .close-menu-btn::before,
  .header .menu .close-menu-btn::after{
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: black;
  }

  .header .menu .close-menu-btn::before{
    transform: rotate(45deg);
  }

  .header .menu .close-menu-btn::after{
    transform: rotate(-45deg);
  }

  .header .menu > ul > li{
    display: block;
  }

  .header .menu > ul > li:not(:last-child){
    margin-right: 0;
  }

  .header .menu li{
    border-bottom: 1px solid gray;
  }

  .header .menu li:first-child{
    border-top: 1px solid gray;
  }

  .header .menu > ul > li > a{
    padding: 12px 0;
  }

  .header .menu > ul > .dropdown > a{
    padding-right: 34px;
  }

  .header .menu i{
    height: 34px;
    width: 34px;
    border: 1px solid grey;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
    border-radius: 50px;
  }

  .header .menu .dropdown.active > i{
    background-color: gray;
    transform: rotate(180deg);
  }

  .header .menu .sub-menu{
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding: 0;
    transition: none;
    box-shadow: none;
    width: 100%;
    display: none;
    border: none;
  }

  .header .menu .dropdown.active > .sub-menu{
    display: block;
  }

  .header .menu .sub-menu li:last-child{
    border: none;
  }

  .header .menu .sub-menu a{
    padding:  12px 0 12px 15px;
  }

  .header .menu .sub-menu span{
    background-image: none;
  }

  
  .header-right .open-menu-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }

  .header-right .open-menu-btn .line{
    height: 2px;
    width: 30px;
    background-color: #000000;
    position: absolute;
  }

  .header-right .open-menu-btn .line-1{
    transform: translateY(-8px);
  }

  .header-right .open-menu-btn .line-3{
    transform: translateY(8px);
  }
}

/*************************leftpanel******************************/
.left-panel{
  padding: 5px 10px;
  font-size: 16px;
}

.info-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8em;
}

.info-card{
  min-width: 215px;
  height: 85px;
  background-color: #5767B0;
  display: flex;
  justify-content: space-between;
  border-radius: 55px 20px 20px 55px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.info-img{
  margin: 0 0 0 -15px; 
  top: -100px;
  min-width: 115px;
  left: 15px;
  height: 100%;
  background-color: #e65449;
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 39% 59% 55% 43% / 47% 52% 48% 53%;
}

.info-card #nurse{background-image: url("../images/nurse.png");}

.info-card #manager{background-image: url("../images/manager1.png");}


.info-content{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  font-size: 0.6em;
  padding: 5px 5px 5px 0;
  text-align: center;
  /*background-color: yellow;*/
  text-transform: capitalize;
}

.info-content h4{
  font-weight: 400;
  color: #fff;
}

.info-btn{
  text-decoration: none;
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 25px;
  border: 1px solid #5767B0;
  font-weight: 700;
  color: #5767B0;
}


@media (max-width:1030px){
    .info-container{
      gap: 0.8em;
    }
  
    .info-card{
      min-width: 150px;
      height: 70px;
      position: relative;
    }
    
    .info-img{
      margin: 0 0 0 -8px; 
      min-width: 90px;
      left: 15px;
      height: 100%;
    }
    
    .info-btn{
      padding: 2px 12px;
      font-size: 0.9em;
    }
}
@media (max-width:486px) {
  .info-container{
    gap: 0.8em;
  }

  .info-card{
    min-width: 150px;
    height: 70px;
    position: relative;
  }
  
  .info-img{
    margin: 0 0 0 -8px; 
    min-width: 90px;
    left: 15px;
    height: 100%;
  }
  
  .info-btn{
    padding: 2px 12px;
    font-size: 0.9em;
  }
}

@media (max-width:380px) {
  .info-container{
    justify-content: flex-end;
  }
}

/**************leftvideo********************/
.left-video-container{
  margin: 10px auto 0 auto;
  max-width: 620px;
  padding: 8px;
  border: 3px solid #E65449;
  border-radius: 20px;
}

.left-panel-video{
  border-radius: 15px;
}

/*****************LOGOSLIDER*************************/
#logoslider{
	position: relative;
	margin: 15px auto;
	width: 95%;
	height: 25%;
	/*background-color: black;*/
	overflow: hidden;
	scrollbar-color: transparent transparent; /* thumb and track color */
	scrollbar-width: 0px;
}


.slide img {
  width: 100px;
  height: 100px;
  animation: scroll 60s linear infinite;
}

.slide-track {
  width: 100%;
  display: flex;
  gap: 5em;
  overflow: hidden;
}

.slider {
  background-color: transparent;
}

@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-1000%)}
}

/********************JOBCARDS********************/
#section1-jobcards{
  background-color: #5767B0;
  border-radius: 20px;
}

#jobheading{
	text-align: center;
	margin-bottom: 2rem;
	line-height: 2.3rem;
	color: white;
}

#jobheading h3{
	font-size: 1.3rem;
}

#jobcards{
	width: 100%;
	height: 100%;
	border-radius: 15px;
	padding: 2rem 1rem;
}

.job-card-slider .card{
  margin: 20px 10px;
  border-radius: 15px;
  transition: all 0.4s ease;
}


.companyimg{
	display: none;
	width: 4rem;
  	min-width: 2rem;
	border-radius: 10%;
}


.companyinfo h3{
	text-align: center;	
	font-size: 0.85rem;
	margin-bottom: 0.3rem;
}

.companyinfo h4{
	text-align: center;
	font-size: 0.7rem;
}

.cardrow1{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	justify-content: center;
	padding-top: 1rem;
	margin-bottom: 0.8rem;
}


.cardrow2 .btn{
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0.5rem;
}

.btninfo{
	padding: 0.1rem 0.5rem;
	font-size: 0.6rem;
	border-radius: 20px;
}


.cardrow2 .jobtext{
	font-size: 0.8rem;
	padding: 0 0.9rem;
	padding-bottom: 2.3rem;
}

.cardrow3{
	background-color: white;
	padding: 0.7rem 0.5rem;
	width: 100%;
	border-radius: 15px;
	display: flex;
	justify-content: space-around;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	border: 2px solid red;
}

.cardrow3 h4{
	font-size: 0.6rem;
}

.jobtext{
	font-weight: 600;
}

#jobbottom-btn{
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
	gap: 2rem;
	align-items: center;
	
}

.bottom-btn {
	text-transform: capitalize;
	font-size: 1.1rem;
	padding: 0.8rem 1.2rem;
	border-radius: 45px;
	border: 3px solid #5767B0;
	color: #5767B0;
	font-weight: 600;
	cursor: pointer;
	background-color: white;
	transition: all 0.3s ease-in;
}

.bottom-btn i {
	font-size: 1rem;
}

.job-card-slider .jobcard1, .job-card-slider .jobcard4{
	background-color: #90CDFF;
}

.jobcard1 .cardrow3, .jobcard4 .cardrow3{
	border: 3px solid #90CDFF;
}

.job-card-slider .jobcard2, .job-card-slider .jobcard5{
	background-color: #E65449;
}

.jobcard2 .cardrow3, .jobcard5 .cardrow3{
	border: 2px solid #E65449;
}

.job-card-slider .jobcard3{
	background-color: #6AB76A;
}

.jobcard3 .cardrow3{
	border: 2px solid #6AB76A;
}

/*****************WORK*********************/

#how-we-work{
	padding: 2.8rem 1rem;
	border: 3.5px solid #5767B0;
	background-color: transparent;
	border-radius: 20px;
}

#work h2{
	text-align: center;
	margin-bottom: 2.3rem;
	color: #5767B0;
	font-size: 2rem;
}

.work-wrapper{
	max-width: 38rem;
    margin: 0 auto;
	display: flex;
	justify-content: space-around;
	gap: 0.3rem;
	color: white;
}

.w-col1, .w-col2{
    padding: 1rem;
	width: 50%;
}

.w-col2{
	padding-top: 4rem;
}


.workbox{
	background-color: #6AB76A;
	border: 3px solid #6AB76A;
	padding: 2rem 1rem;
	margin-bottom: 1rem;
	text-align: center;
	border-radius: 15px;
	transition: all 0.2s ease-in-out;
}

.workimg{
	background-image: url('../images/Icon.png');
	width: 4rem;
	height: 4rem;
	border: 2px solid #6AB76A;
    border-radius: 50%;
	background-size: cover;
	margin: 0 auto;
	margin-bottom: 1.5rem;
	transition: all 0.2s ease-in-out;
}


.worktext{
	font-size: 0.9rem;
	margin: 0.75rem;
}

.work-leftarrow{
	width: 70%;
	height: 8rem;
	height: 8rem;
	background-image: url("../images/leftarrow.png");
	background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-right: 0;
	margin-bottom: 1rem;
}

.work-rightarrow{
	width: 70%;
	height: 8rem;
	height: 8rem;
	background-image: url("../images/rightarrow.png");
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	margin: auto;
	margin-left: 0;
	margin-bottom: 1rem;
}

.two{
	background-color: #90CDFF;
	border: 3px solid #90CDFF;

	.workimg{
		background-image: url("../images/Icon\ \(2\).png");
		border: 2px solid #90CDFF;
	}
}

.three{
	background-color: #E65449;
	border: 3px solid #E65449;

	.workimg{
		background-image: url("../images/Icon\ \(1\).png");
		border: 2px solid #E65449
	}
}

.four{
	background-color: #5767B0;
	border: 3px solid #5767B0;

	.workimg{
		background-image: url("../images/Icon\ \(3\).png");
		border: 2px solid #5767B0
	}
}


/*********************STATS***************************/

#stats{
	padding: 2rem; 
	background-color: #E65449;
	border-radius: 20px;
}

.stats-grid > div {
	border: 2px solid #ffa94d;
	border-radius: 15px;
	background-color: #fff;
	padding: 0.8rem 2rem;
}
  

.stats-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 5.3rem;
	column-gap: 0.6rem;
	row-gap: 1rem;
}


.grid-item{
	display: flex;
  justify-self: center;
  width: 260px;
}

.gridicon{
	width: 4rem;
	background-image: url("../images/gridicon1.png");
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 1rem;
}

.gridtext h2{
	font-size: 1.8rem;
}

.gridtext p{
	font-weight: 500;
	color: gray;
}

.gridicon2{
	background-image: url("../images/gridicon2.png");
}

.gridicon3{
	background-image: url("../images/gridicon3.png");
}

.gridicon4{
	background-image: url("../images/gridicon4.png");
}

@media (max-width:768px) {
  .stats-grid{
    display: grid;
    grid-template-columns: 1fr;
  }
}

/********************ABOUT*************************/

#about{
	width: 100%;
	padding: 2.8rem 2.2rem; 
	border-radius: 20px;
	border: 4px solid #6AB76A;
	background-color: transparent;
	color: #6AB76A;
}

#about h2{
	font-size: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 800;
	text-align: center;
}

#about h4{
	font-size: 1.05rem;
	font-weight: 600;
}

#about h4 span{
	font-weight: 800;
}


#about h3{
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 1rem;
	font-weight: 700;
}

.about-logo{
	display: flex;
	align-items: center;
	padding: 0.2rem 3rem;
	margin: auto;
	justify-content: space-around;
}

.starlogo{
	width: 8rem;
}

.star{
	width: 2rem;
}


/*********************CATEGORIES****************************/

#categories{
	/*height: 26vh;*/
	padding: 2.6rem 5rem; 
	background-color: #5767B0;
	color: white;
	text-align: center;
}

.seebelow{
	font-size: 1rem;
	font-weight: 700;
	padding: 1rem 4rem;
	border-radius: 35px;
	background-color: white;
	border: none;
	outline: none;
	color: #5767B0;
	cursor: pointer;
    position: relative;
    z-index: 0;
}

#categories h1{
	font-size: 1.5rem;
}

#categories h2{
	margin-bottom: 1.6rem;
	font-weight: 450;
}


/************************CATEGORYITEMS***********************************/

#categoryitems{
	padding: 2.6rem 1.5rem;
	/*background-color: #ffa94d;*/
	background-color: #E65449;
	display: flex;
	justify-content: center;
}

.categorybox{
	padding: 1.6rem;
	background-color: #6AB76A;
	border-radius: 20px;
	margin: 1rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.categorybox h2{
	font-size: 1rem;
	margin-bottom: 1rem;
	color: white;
}

.categorybox p{
	font-size: 0.6rem;
	margin-bottom: 1rem;
	color: white;
}

.categorybox button{
	font-size: 0.8rem;
	padding: 0.3rem 2.3rem;
	border-radius: 45px;
	border: 2px solid #E65449;
	color: #E65449;
	font-weight: 600;
	cursor: pointer;
	background-color: white;
	
}

.violetbg{
	background-color:#5767B0;
}

.redbg{
	background-color: #E65449;
}

.bluebg{
	background-color: #90CDFF;
}


/***********************HIRING SERVICES*****************************************/
#hiring-services{
	padding: 1.7rem 0; 
	border-radius: 20px;
	border: 3px solid #E65449;
	background-color: transparent;
	text-align: center;
}

#hiring-services h2{
	margin-bottom: 2rem;
}


#hiring-services-box{
	/*background-color: #ffa94d;*/
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}


#hiring-services-box h3{
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

#hiring-services-box p{
	font-size: 0.75rem;
	margin-bottom: 1rem;
}

#hiring-services .categorybox{
	width: 11rem;
}

.hiringbox{
	width: 10rem;
	padding: 0 0.7rem;
	padding-bottom: 1rem;
	background-color: #6AB76A;
	border-radius: 20px;
	margin: 1rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.circlenum{
	margin: 0 auto;
	width: fit-content;
	padding: 1rem;
	border-radius: 50%;
	transform: translateY(-1.4rem);
	color: black;
	font-size: 1.3rem;
	font-weight: bolder;
	letter-spacing: 3px;
	border: 2px solid black;
	background-color: white;
}


.violetbg{
	background-color:#5767B0;
}

.redbg{
	background-color: #E65449;
}

.bluebg{
	background-color: #90CDFF;
}

#hiring-services-box .violetbg:hover{
	border: 3px solid #5767B0;
	background-color:#fff;
}

#hiring-services-box .redbg:hover{
	border: 3px solid #E65449;
	background-color: #fff;
}

#hiring-services-box .bluebg:hover{
	border: 3px solid #90CDFF;
	background-color: #fff;
}

#hiring-services-box .greenbg:hover{
	border: 3px solid #25d366;
	background-color: #fff;
}


/******************************EXTRAADDED********************************/

#missionvision{
	padding: 2.5rem 1rem; 
	border-radius: 20px;
	border: 3px solid #5767B0;
	background-color: transparent;
	color: #5767B0;
	text-align: center;
	width: 100%;
}


#missionvision .box{
	background-color: #5767B0;
	padding: 1.6rem 0.5rem;
	border-radius: 15px;
	width: 10rem;
}

.missionvision-container{
	width: 95%;
	display: flex;
	gap: 0.3rem;
	align-items: center;
	justify-content: space-around;
	color: #fff;
	margin: auto;
}

.ri-focus-2-fill{
	font-size: 3rem;
	margin-bottom: 0.8rem;
}

#missionvision h2{
	margin-bottom: 1.8rem;
}

.missionvision-container h3{
	margin-bottom: 0.8rem;
}

.missionimg, .visionimg, .valueimg{
	margin: auto;
	width: 4rem;
	height: 4rem;
	background-image: url("../images/mission.png");
	background-position: center;
	background-size: contain;
	margin-bottom: 0.5rem;
}

.visionimg{
	background-image: url("../images/vision.png");
}

.valueimg{
	background-image: url("../images/values.png");
}


/*******************THIRD PARTY PAYROLL***************************/
#third-party-payroll{
	padding: 2.8rem 3.8rem; 
	border-radius: 20px;
	border: 3px solid #E65449;
	background-color: transparent;
	color: #E65449;
	overflow: hidden;
	position: relative;
}

#third-party-payroll h2{
	margin-bottom: 2rem;
	text-align: center;
}

#third-party-payroll h4{
	font-weight: 550;
}

#third-party-payroll h4 span{
	font-weight: 800;
}

#third-party-payroll .box-container{
	margin-top: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 0.6fr;
	column-gap: 1.5rem;
}

.box-container .box{
	border: 2px solid;
	border-radius: 10px;
	padding: 1rem;
}

.box-container .box ul{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	margin-left: 22px;
}

/************************VIDEO-NAPS***************************/
#video-naps,
#video-nats{
	padding: 2.8rem; 
	border-radius: 20px;
	border: 3px solid #5767B0;
	background-color: transparent;
	color: #5767B0;
	overflow: hidden;
}

#video-naps h2,
#video-nats h2{
	font-size: 1.1rem;
	text-align: center;
	line-height: 40px;
	font-weight: 600;
}


#video-naps h4,
#video-nats h4{	
	font-size: 1rem;
	font-weight: 580;
}

#video-naps .video,
#video-nats .video{
	margin: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#video-naps iframe,
#video-nats iframe,
#video-naps video{

  	border-radius: 15px;
	height: 300px;
}

@media (max-width:500px) {
	#video-naps iframe,
	#video-nats iframe{
		height: 180px;
  	}

 	.right-panel {
		margin-top: 30px;
	}
}




/*********************TESTIMONIAL********************************/

#testimonial{
	padding: 3rem 2rem; 
	background-color: transparent;
	border: 3px solid #6AB76A;
	color: white;
	overflow: hidden;
	border-radius: 20px;
}

#testimonial h2{
	text-align: center;
	margin-bottom: 1rem;
	color: #6AB76A;
	font-size: 2rem;
	font-weight: 800;
}

.testimonial-container{
    position: relative;
    height: 92%;
    /*background: #eee;*/
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    filter: blur(2.5px);
    border-radius: 15px;
}

.swiper-slide-active{
    filter: blur(0px);
    background-color: #fff;
}

  
.rating img{
	width: 10rem;
	margin-bottom: 0.5rem;
	object-fit: cover;
}


.test-violet{
    border:2px solid #3b5998;
}

.test-blue{
    border: 2px solid #33a5ff;

}

.testimonialBox{
  position: relative;
  padding: 1.8rem 1.5rem;
  color: #999;
  border-radius: 15px;
}

.quoteimg{
  /*position: absolute;*/
  bottom: 20px;
  right: 30px;
  width: 5rem;
}

.testimo-profile{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonialBox .details{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}



.testimonialBox .details h3{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2196f3;
  line-height: 1.2rem;
}

.testimonialBox .details h3 span{
  font-size: 0.9rem;
  color: #666;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right{
  background-image: none;
}


/***********************GALLERY************************************/
#gallery{
	/*height: 85vh;*/
	padding: 3.5rem 5rem; 
	background-color: #E65449;
	color: #5767B0;
	text-align: center;	
	overflow: hidden;
}

#gallery h2{
	color: white;
	margin-bottom: 2rem;
}


.gallery-wrapper {
display: flex;
align-items: center;
justify-content: center;
  max-width: 1100px;
  width: 100%;
  position: relative;
}

.gallery-wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.gallery-wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}

.gallery-wrapper i:first-child{
  left: -22px;
  z-index: 1000;
}

.gallery-wrapper i:last-child{
  right: -22px;
}

.gallery-wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card{
	cursor: pointer;
}
.carousel .card {
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  border-radius: 8px;
}
.carousel .card .img {
  background: #8B53FF;
  height: 100%;
  width: 100%;
}
.card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .card{
	position: relative;
}

.carousel .card .imginfo{
	position: absolute;
	bottom: 15px;
	background-color: rgba(0, 0, 0, 0.602);
	width: 80%;
	border-radius: 15px;
	padding: 1rem;
	padding-bottom: 0;
}

.carousel .card .imginfo h2{
	font-size: 0.8rem;
	font-weight: 600;
}

.gallery-btn{
	margin-top: 2rem;
	font-size: 1.2rem;
	padding: 0.8rem 3rem;
	border-radius: 45px;
	border: 3px solid #E65449;
	color: #E65449;
	font-weight: 700;
	cursor: pointer;
	background-color: white;
}

@media screen and (max-width: 900px) {
  .gallery-wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .gallery-wrapper .carousel {
    grid-auto-columns: 100%;
  }

	.swiper-slide {
		width: 220px;
	}
}




/*********************TEAM********************************/

#team{
  width: 100%;
  overflow-x: hidden;
	padding: 3.5rem 1.5rem; 
	border: 3px solid #5767B0;
	color: #5767B0;
	text-align: center;
  font-size: 16px;
}

#team span{
	font-weight: 450;
}

#team h2{
	margin-bottom: 0.6em;
}

#team-flex{
	position: relative;
	margin-top: 2em;
	display: flex;
	gap: 2em;
	justify-content: center;
}

.team-heads{
	margin-top: 5em;
	width: 10.8em;
	height: 14em;
	position: relative;
	color: black;
	transition: all 0.4s ease-in-out;
}

.team-head-img{
	width: 20em;
	height: 16.5em;
	background-size: contain;
	transform: translateY(-80px);
	background-repeat: no-repeat;
	transition: all 0.3s ease-in-out;
}

.team-bottom{
	padding: 0.6em;
	width: 100%;
	height: 20%;
	position: absolute;
	bottom: 0;
	line-height: 1.2em;
}

.team-bottom h3{
	font-size: 1em;
}

.team-bottom h4{
	font-size: 0.7em;
}



.teamperson1{
	border: 14px solid #6AB76A;

	.team-head-img{
		/* background-image: url("../images/events/sudhirtathe.png"); */
		background-image: url("../images/events/sudhirTathe.png");
		background-position-x: left;
	}

	.team-bottom{
		background-color: #6AB76A;
	}
}

.teamperson2{
	border: 14px solid #E65449;

	.team-head-img{
		background-image: url("../images/events/deepa.png");
		background-position-x: left;
	}

	.team-bottom{
		background-color: #E65449;
	}
}

@media (max-width:800px) {
  #team-flex{
    gap: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


/* --------------------------------------------------------------contact us-------------------------------- */

.hospitalstaff-contact {
	padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
	border: #E65449 solid 3px;
}

.form-container {
    width: 100%;
    max-width: 1000px; /* This will allow the container to stretch to full width up to a maximum of 1000px */
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}


h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    font-size: 16px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #555;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: black;
    outline: none;
}

.btn-submit {
    background-color: #5767B0;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #384890;
}

#response-message {
    margin-top: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hospitalstaff-contact {
        padding: 30px 10px;
    }

    .form-container {
        padding: 20px;
    }
}





/*********************FOOTER********************************/

#sectionfooter{
	margin-bottom: 0;
}

footer{
	width: 100%;
	padding: 3rem 4rem; 
	background-color: #5767B0;
	color: white;
	text-align: center;
  	border-radius: 20px;
}

#footer{
	width: 100%;
	height: 100%;
}

#footer  li{
	list-style: none;

}

.footerlogo{
	/*background-image: url("../images/Hospital_Staff_Logo-removebg-preview.png");*/
	background-color: white;
	margin: auto;
	width: 16rem;
	height: 8rem;
	margin-bottom: 2rem;
	border-radius: 15px;
	padding-top: 12px ;
}

#footer p{
	text-align: left;
	line-height: 1.5rem;
	font-size: 1.05rem;
	font-weight: 280;
}

.footercontent{
	margin-top: 1.5rem;
	text-align: left;
	display: flex;
	justify-content: space-between;
	line-height: 2rem;
}

.footercontent a{
	color: white;
	text-decoration: none;
}

.footeritem{
	 width: 33.33%;
}

.footer-contact-item .ri-phone-fill{
	color: white;
}


.footercontent h3{
	font-weight: 550;
	font-size: 1rem;
}

.footer-about ul li, .footer-resource ul li{
	font-weight: 300;
}

.footer-contact i{
	font-size: 1.2rem;
	float: left;
	margin-right: 15px;
}

.footer-contact{
	font-weight: 300;
}

.footer-address address{
	line-height: 22px;
	text-transform: capitalize;
}

.footer-contact-item{
	font-size: 1rem;
	display: flex;
}


.footer-copyright{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.1rem;
	margin-top: 2rem;
	text-transform: capitalize;
}

.footer-copyright-tathe{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.1rem;
	margin-top: 0.1rem;
	text-transform: capitalize;
}

@media (max-width:538px) {
	.footercontent{
		flex-direction: column;
		justify-content: center;
		gap: 5px;
	}

	.footeritem{
		align-self: center;
		width: 90%;
   }
}



















