body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}


a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

a:focus,
a:active {
  outline: 0;
  color: #666;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.center-align {
  display: flex;
  -webkit-flex-align: center;
  -ms-flex-aligan: center;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.splashFigure {
  display: block;
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.splashFigure img {
  width: 100%;
}

/* Accessibility Panel */
.accessible-font {
  font-family: "Helvetica", Arial, sans-serif;
}

.fontsize-1 {
  font-size: 18px;
}

.fontsize-2 {
  font-size: 24px;
}

.fontsize-3 {
  font-size: 30px;
}

.fontsize-4 {
  font-size: 36px;
}

a,
a:hover,
a:focus,
a:visited {
  color: inherit;
}
a.highlight,
a:hover.highlight,
a:focus.highlight,
a:visited.highlight {
  background: #ffff00;
  padding: 0.5em;
  line-height: 1.5;
}

.accessibility-panel {
  width: 400px;
  height: 100%;
  background: #f9f9f9;
  border-color: #ddd;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 1em;
  font-size: 24px;
  color: #555555;
  position: fixed;
  font-family: "Helvetica", Arial, sans-serif;
  top: 0;
  right: -400px;
  transition: all 0.3s ease;
  z-index: 9999;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.accessibility-panel.visible {
  right: 0;
  overflow-y: scroll;
}
.accessibility-panel #toggleAccessPanel {
  position: absolute;
  right: 410px;
  top: 50%;
  width: 48px;
  max-height: 48px;
  padding: 0;
  background: #090091;
  color: #fff;
  font-size: 13px;
  line-height: 0.75;
  text-align: left;
  overflow: hidden;
  border: none;
  border-radius: 3em;
  padding: 12px 5px 6px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25); /* Safari */
  transition: width 0.75s ease-in-out, box-shadow 0.75s ease-in-out;
}
.accessibility-panel #toggleAccessPanel .ada-icon {
  padding: 2px 6px;
  line-height: 1;
  float: left;
  position: static;
  display: block;
}
.accessibility-panel #toggleAccessPanel .ada-icon svg {
  width: 26px;
}
.accessibility-panel #toggleAccessPanel .ada-icon path {
  fill: #ffffff;
}
.accessibility-panel #toggleAccessPanel:focus, .accessibility-panel #toggleAccessPanel:hover {
  width: 250px !important;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.25) !important;
}
.accessibility-panel #toggleAccessPanel:focus .toggleAccessPanelLabelInstruct, .accessibility-panel #toggleAccessPanel:hover .toggleAccessPanelLabelInstruct {
  height: auto;
  width: auto;
  position: static;
  margin: auto;
  animation: 1.25s ease 0s normal forwards 1 fadein;
}
.accessibility-panel #toggleAccessPanel .toggleAccessPanelLabelInstruct {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  top: auto;
  opacity: 0;
  pointer-events: none;
}
.accessibility-panel #toggleAccessPanel .toggleAccessPanelLabelInstruct .toggleAccessPanelLabel {
  font-weight: 800;
}
.accessibility-panel #toggleAccessPanel .toggleAccessPanelLabelInstruct .toggleAccessPanelInstructions {
  line-height: 2;
}

.button-group {
  font-size: 16px;
  margin-bottom: 1em;
}

.button-group button {
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 1.25em;
  border: 1px solid #555555;
  background: #555555;
  color: #ffffff; /* Safari */
  transition: width 0.75s ease-in-out, box-shadow 0.75s ease-in-out;
}
.button-group button:focus, .button-group button:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25) !important;
}

.rangeSliders p {
  float: left;
  display: inline-block;
  width: 75px;
  margin: 2px 0 0;
  font-size: 16px;
}

.button {
  display: inline-block;
  padding: 10px 15px;
  color: #000;
  border: 2px solid #000;
  transition: 0.3s all ease;
  font-weight: 700;
  background: transparent;
  text-decoration: none;
}
.button:hover {
  color: #fff;
  background-color: #000;
  border-color: #fff;
}
.button.highlight {
  background: #ffff00;
  padding: 0.5em;
  line-height: 1.5;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  display: inline;
  font-size: 0;
}

[type=range] {
  -webkit-appearance: none;
  margin: 12px 0;
  width: 80%;
}
[type=range]:focus::-webkit-slider-runnable-track {
  background: white;
}
[type=range]:focus::-ms-fill-lower {
  background: #fff;
}
[type=range]:focus::-ms-fill-upper {
  background: white;
}
[type=range]::-webkit-slider-runnable-track {
  cursor: pointer;
  height: 8px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 80%;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
  background: #fff;
  border: 2px solid #555555;
  border-radius: 5px;
}
[type=range]::-webkit-slider-thumb {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(13, 13, 13, 0.2);
  background: #000000;
  border: 2px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
  -webkit-appearance: none;
  margin-top: -10px;
}
[type=range]::-moz-range-track {
  cursor: pointer;
  height: 8px;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 80%;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
  background: #fff;
  border: 2px solid #555555;
  border-radius: 5px;
}
[type=range]::-moz-range-thumb {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(13, 13, 13, 0.2);
  background: #000000;
  border: 2px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
[type=range]::-ms-track {
  cursor: pointer;
  height: 8px;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 80%;
  background: transparent;
  border-color: transparent;
  border-width: 12px 0;
  color: transparent;
}
[type=range]::-ms-fill-lower {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
  background: #f2f2f2;
  border: 2px solid #555555;
  border-radius: 10px;
}
[type=range]::-ms-fill-upper {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(13, 13, 13, 0.2);
  background: #fff;
  border: 2px solid #555555;
  border-radius: 10px;
}
[type=range]::-ms-thumb {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(13, 13, 13, 0.2);
  background: #000000;
  border: 2px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  height: 24px;
  width: 24px;
  margin-top: 0;
}

div#navbarNavDropdown {
  justify-content: center;
}

nav.navbar.navbar-expand-lg.navbar-dark.bg-dark {
  background-color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #000000;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #000000;
}
.navbar-dark .navbar-nav .nav-link:focus {
  color: #7f3dff;
}

img.login_banner {
  width: 70%;
  margin: auto;
  display: block;
}

ul.dropdown-menu {
  border-radius: 0 0 1rem 1rem;
  border-top: 0.5rem solid #7f3dff;
}

ul.dropdown-menu li {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

a.dropdown-item {
  white-space: normal;
  width: 100%;
}

.login_btn {
  display: inline-block;
  margin-left: auto;
  border-radius: 5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #7f3dff;
  border: 1px solid #7f3dff;
}

ul.navbar-nav {
  margin-left: auto;
}

.hero_area {
  padding: 50px 0;
  background-color: #eff2f6;
}

.hero_area h1 {
  margin-bottom: 1.5rem;
}

.video-player-container iframe {
  border-radius: 2.5rem;
}

.section_space {
  padding-top: 5rem;
}



.sub_heading p {
  margin-top: 1rem;
}

.team_box {
  margin-top: 3rem;
  border: 1px solid #eaecf0;
}

.about_us .col-lg-3 {
  display: flex;
  align-items: stretch;
}

.team_img {
  background: #7f3dff;
  padding: 0.7rem 0 0 0.7rem;
  border-radius: 1rem 0 0 0;
}

.team_img img {
  width: 100%;
  border-radius: 1rem 0 0 0;
}

.team_text {
  padding: 1rem;
}

.team_text h4 {
  margin-bottom: 0.5rem;
}

.team_box.a .team_img img {
  display: block;
  margin: auto;
}

.team_box.c .team_img img {
  display: block;
  margin-left: auto;
}

.team_box.d .team_img img {
  display: block;
  margin-left: auto;
}

.team_box.e .team_img img {
  display: block;
  margin: auto;
}

.about_us {
  margin-bottom: 5rem;
}

footer {
  background: #7f3dff;
  padding: 3rem 0;
  color: #fff;
}

.footer_logo_area img {
  margin-bottom: 2rem;
}

.footer_logo_area p {
  display: inline-flex;
  align-items: baseline;
}

.footer_logo_area p i {
  margin-right: 0.5rem;
}

.footer_links ul li {
  margin-bottom: 1rem;
}

.footer_links h5 {
  margin-bottom: 2rem;
}

.footer_bottom {
  margin-top: 3rem;
  border-top: 1px solid;
  padding-top: 3rem;
}

.footer_bottom p {
  display: flex;
  justify-content: space-between;
}

/*-----------------Oral page css start-------------------------*/
.banner_area {
  padding: 5rem 0;
  background: #7f3dff;
  color: #fff;
}

.banner_area h1 {
  margin-bottom: 2rem;
}

.banner_area p {
  /* width: 70%; */
    /* margin: auto; */
}

.flip-box {
  background-color: transparent;
  width: 100%;
  height: 15rem;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  perspective: 1000px;
  margin-top: 3rem;
}
.flip-box:hover .flip-box-front, .flip-box .flip-box-back {
  background-color: #7f3dff;
  color: #fff;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flip-box-front {
  background-color: #fff;
  color: black;
  border-radius: 10px;
}

.flip-box-front img {
  height: 50px;
  width: 50px;
  margin-bottom: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.flip-box-back {
  background-color: #ffffff;
  color: #000;
  transform: rotateY(180deg);
  border-radius: 10px;
  padding: 16px;
}

.experience_box {
  padding: 1rem;
  border: 1px solid #ddd;
  margin-top: 3rem;
}

.experience_box h3 {
  margin: 1rem 0 1.5rem 0;
}

.experience_area .col-lg-4 {
  align-items: stretch;
  display: flex;
}

.situations_area {
  padding: 5rem 0;
  margin-top: 5rem;
  background-color: #EFE6FF;
}

.situations_box {
  margin-top: 3rem;
}

.situations_box h5 {
  margin-bottom: 1rem;
}

.situations_box .flex-shrink-0 {
  margin-right: 1rem;
}

.risk_box {
  margin-top: 3rem;
}

.risk_box ul li {
  list-style: disc;
  margin-bottom: 1rem;
}

.less_box {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

.image_arae {
  background: #EFE6FF;
  width: 20%;
  margin: auto;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 1rem;
}

.citation {
  background-color: #E7E7E7;
  padding: 3rem;
  margin-top: 5rem;
}

/*----------------EYE page css start-----------------------------*/
section.situations_area.eye {
  margin-top: 0;
  border-top: 10px solid #7f3dff;
}

.note_area .flex-shrink-0 {
  width: 150px;
}

.note_area {
  color: #fff;
}

.note_area .container {
  background-color: #7f3dff;
  padding: 2rem;
  border-radius: 1rem;
}

/*--------------------------Reproductive css start---------------------------*/
.fertility_area {
  margin-top: 5rem;
}

.fertility_area ul {
  margin-top: 1.5rem;
  padding-left: 1rem;
}

.fertility_area ul li {
  margin-bottom: 1rem;
  list-style: disc;
}

.notice_rep .container {
  background-color: #7f3dff;
  padding: 1.5rem;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  text-align: center;
}

section.citation.reproductive {
  margin-top: 0;
}

.situations_area.reproductive {
  margin-top: 0;
}

.situations_box ul {
  padding-left: 1rem;
}

.situations_box ul li {
  margin-top: 1rem;
  list-style: disc;
}

section.common_oral.section_space.reproductive {
  padding-bottom: 5rem;
}

/*----------------------Oral Symptom Management Strategies page css start-------------------------*/
.sugar_img_area {
  margin-top: 3rem;
  text-align: center;
}

.sugar_img_area h3 {
  margin-top: 1rem;
}

.message_area .video-player-container {
  margin-top: 3rem;
}

/*-------------------------Eye   Symptom Management page css start ----------------------------------------------------------------*/
.product_box {
  border: 1px solid #000;
  text-align: center;
  margin-top: 3rem;
}

.product_box h5 {
  padding: 0.5rem;
  background-color: #7f3dff;
  color: #fff;
}

.producrt_notice {
  margin-top: 3rem;
  padding: 1rem;
  background: #E1D1FF;
  text-align: center;
  border-radius: 0.5rem;
}

.producrt_notice p {
  margin: 0;
}

.combat_box {
  padding: 2rem;
  border: 1px solid #000;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.combat_box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.combat_area .col-lg-6.col-12 {
  display: flex;
  align-items: stretch;
}

.might_area.section_space.lacrimal .sub_heading ul {
  margin-top: 2rem;
}

.might_area.section_space.lacrimal .sub_heading ul li {
  margin-bottom: 1rem;
}

/*------------How to Communicate with your Support System page start ----------------------------------*/
.accordion {
  margin-top: 3rem;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #E1D1FF;
  font-weight: bold;
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

section.might_area.section_space.lacrimal.deal {
  padding-bottom: 5rem;
  background-color: #E1D1FF;
  margin-top: 5rem;
}

/*-----------Picture Book Recommendations to Help Your Children css start--------------------------*/
.item {
  position: relative;
  padding: 1.5rem;
  min-height: 250px;
}

.item::before {
  position: absolute;
  background-color: #FFEFB5;
  width: 100%;
  height: 100%;
  content: "";
  background-size: cover;
  z-index: -1;
  top: 0;
  left: 0;
}

.item h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.item p {
  font-size: 0.8rem;
}

.crousel_area {
  margin-top: 3rem;
}

/*---------------------------------------Resource page css start---------------------------------------------------*/
.download_btn {
  width: auto;
  display: inline-block;
  background: #7f3dff;
  color: #fff;
  margin: auto;
  margin-top: 3rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
}

.download_area {
  padding-bottom: 5rem;
}

/*--------------------------Login page css start--------------------------------*/
.login {
  background-color: #33CBCC;
  padding: 5rem;
  height: 100vh;
  display: flex;
  align-items: center;
}

.login_form {
  background-color: #fff;
  padding: 3rem;
  height: 100%;
}

.login_form img {
  display: block;
  margin: auto;
  margin-bottom: 2rem;
}

.login_form h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.login_form span {
  color: #090091;
  font-weight: bold;
}

.login_form .form-group {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

button.login_form_btn {
  padding: 1rem;
  width: 100%;
  margin-top: 2rem;
  border: 0;
  background-color: #3E01B4;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0.5rem;
}

.form-control {
  box-shadow: none !important;
  border-color: #000 !important;
  width: 100%;
}

form {
  width: 100%;
  display: block;
}

.forget_area a {
  color: #090091;
}

.form-floating {
  position: relative;
}

.form-floating input {
  padding-left: 3.5rem !important;
}

.form-floating label {
  padding-left: 4rem !important;
}

.form-floating i {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  font-size: 1.3rem;
}

.form-floating i#togglePassword {
  right: 1.3rem;
  left: inherit;
}

.accordion-body {
  font-weight: 500;
}

.navbar-dark .navbar-toggler {
  color: #fff;
  border-color: #fff;
  background: #7f3dff;
}

.experience_box img {
  width: 30%;
  margin: auto;
  display: block;
}

.situations_box img {
  width: 100px;
}

.note_area ul li {
  list-style: disc;
  margin-bottom: 15px;
}

.note_area ul {
  padding-left: 15px;
}

section.less_area.section_space.oral .image_arae {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
}

section.situations_area.eye_new .situations_box img {
  width: 200px;
  box-shadow: 10px 10px 70px -24px rgba(0, 0, 0, 0.29);
  border-radius: 15px;
}

section.might_area.section_space.eye_new .might_img img {
  box-shadow: 10px 10px 70px -24px rgba(0, 0, 0, 0.29);
  border-radius: 15px;
}

section.situations_area.eye.nasal_new ul {
  text-align: left;
  padding-left: 15px;
}

section.situations_area.eye.nasal_new ul li {
  list-style: disc;
}

section.situations_area.nasal_new img {
  width: 150px;
}

section.less_area.section_space.nasal_new .image_arae {
  width: 30%;
}

.situations_area.reproductive .situations_box {
  margin-top: 0;
}

.situations_area.reproductive img {
  box-shadow: 10px 10px 70px -24px rgba(0, 0, 0, 0.29);
  border-radius: 15px;
}

section.common_oral.section_space.reproductive .flip-box-front img {
  height: 90px;
  width: 90px;
}

section.situations_area.eye.nasal_new.reproductive ul {
  margin-top: 2rem;
}

.might_area.section_space.lacrimal ul {
  padding-left: 15px;
}

.might_area.section_space.lacrimal ul li {
  list-style: disc;
}

.might_area.section_space.lacrimal.nasal_managment ul li {
  list-style: decimal;
}

.item .flex-shrink-0 {
  width: 150px;
}

@media (max-width: 1367px) {
  html {
    font-size: 83%;
  }
  html .sub_heading h2 {
    font-size: 2rem;
  }
}
@media (max-width: 540px) {
  .about_us .col-lg-3 {
    display: block;
    align-items: stretch;
  }
}/*# sourceMappingURL=style.css.map */

.wishlist-box {
		position: sticky;
		top: 20px;
		background: #ffffff;
		border: 1px solid #ddd;
		border-radius: 10px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
		padding: 20px;
	}

	.wishlist-box h4 {
		font-size: 1.2rem;
		font-weight: 600;
		margin-bottom: 15px;
		color: #333;
		border-bottom: 1px solid #eee;
		padding-bottom: 8px;
	}

	#wishlist {
		padding-left: 0;
		margin: 0;
	}

	#wishlist li {
		margin-bottom: 10px;
	}

	#wishlist li a {
		display: block;
		padding: 8px 12px;
		background-color: #f9f9f9;
		border-radius: 5px;
		color: #007bff;
		text-decoration: none;
		transition: all 0.2s ease-in-out;
		font-size: 14px;
		word-break: break-word;
	}

	#wishlist li a:hover {
		background-color: #007bff;
		color: #fff;
		text-decoration: none;
	}
  .sidebar {
    position: sticky;
		top: 20px;
		background: #f8f8f8;
		padding: 15px;
		border: 1px solid #ddd;
		border-radius: 5px;
    }
    .content {
        padding-left: 20px;
    }
    h1{
        cursor: pointer;
    }

  .toc-box {
 background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-top: 20px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  
}

.toc-header {
  background-color: #7a33ff;
  color: white;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}
li.toc-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toc-stepper {
  padding: 0;
  margin: 0;
  position: relative;
}

.toc-stepper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10px;
  height: calc(100% - 130px);
  width: 2px;
  background-color: #ccc;
  z-index: 0;
}

.toc-step {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.toc-step:nth-child(even) {
  animation-delay: 0.1s;
}
.toc-step:nth-child(odd) {
  animation-delay: 0.2s;
}

.toc-step::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #e0e0e0;
  border: 3px solid #7a33ff;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.toc-step:hover::before {
  background-color: #7a33ff;
}

.toc-step a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.toc-step a:hover {
  color: #7a33ff;
}

.wishlist-icon {
  margin-left: 10px;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s, transform 0.2s;
}

.wishlist-icon.filled {
  color: #ffc107;
}

.wishlist-icon:hover {
  transform: scale(1.2);
}

 li.nav-item{
list-style: none ;
}
.footer_links li{
  list-style: none;
}





/*--new home page ----------*/



.banner {
   background-color: #7f3dff;
    padding: 40px 0px;
    color: #ffffff;
}

.raisupprt h3{
    font-weight: 400;
    margin-bottom: 20px; 
}


/* third section */


.card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s;
    position: relative;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    background-color: #864df9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 19%;
    left: 32%;
}
  .icon-circle i {
    font-size: 24px;
    color: white;
  }
  .card-title {
    font-weight: 600;
    font-size: 1.1rem;
  }
  .card-text {
    font-size: 0.95rem;
    color: #555;
  }
  .card-body {
    padding: 4rem 1rem !important;
}

.icon-circle svg{
    color: #ffffff;
    font-size: 25px;
}

.Supportive .icon-circle img {
    width: 42px;
}



.Supportive{
    background-color: #EFF2F6;
}




.info-section {
    padding: 4rem 2rem;
  }

  .main-img {
    width: 100%;
    border-radius: 1rem;
  }

  .stacked-img {
    width: 60%;
    border-radius: 1rem;
    position: absolute;
    bottom: -80px;
    left: -80px;
    z-index: 2;
  }

  .image-block {
    position: relative;
    width: fit-content;
  }

  .play-button {
    position: absolute;
    left: -70px;
    bottom: -20px;
    transform: translate(-50%, -50%);
    background-color: #864df9;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 3;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    border: 8px solid#ffffff;
}


.custom-audio-player {
    width: 100% !important;
    margin: 10px 0 !important;
}



  @media (max-width: 768px) {
    .stacked-img {
      width: 80%;
      left: 10px;
    }
    .play-button {
      left: 10px;
    }
  }

  .linecontent {
    background-color: #E1D1FF;
    margin-top: 50px;
}

.linecontent p {
    margin: 0px;;
}


.link p{
    margin: 0px;;
}





@keyframes fadeInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.item .flex-shrink-0 {
    width: 150px;
}

ul.dropdown-menu.show {
    right: 0;
    left: inherit;
}

.team-member p img {
    height: 50vh;
    object-fit: cover;
}

.page-wrapper ul li {
    font-weight: 400;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 2rem;
    font-weight: 400;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 20px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.healthcare-diagram {
    position: relative;
    width: 700px;
    height: 700px;
}

.patient-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.patient-img img {
    width: 210px;
    height: 210px;
    object-fit: cover;
}

.role-circle {
    width: 240px;
    height: 240px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.8em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 5px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.role-circle img {
    width: 168px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 5px;
}

.role-name {
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    width: 80%;
}

.hover-tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 20;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.role-circle:hover .hover-tooltip {
    opacity: 1;
    visibility: visible;
}

.hover-tooltip::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #333;
}

.modal-header {
    background-color: #7f3dff;
    color: #fff;
}

button.btn.btn-secondary {
    background: #7f3dff;
}

.team-member img{
border-radius: 8px;
}



@media (max-width: 1400px) {
    .healthcare-diagram {
        width: 500px;
        height: 500px;
    }

    .role-circle {
    width: 170px;
    height: 170px;
}
.role-circle img {
    width: 100px;
    height: 70px;
}

    .patient-img img {
        width: 90px;
        height: 90px;
    }
.assistance_list {
    width: 640px;
}
}

@media (max-width: 768px) {
    .healthcare-diagram {
        width: 100%;
        height: 400px;
    }

    .role-circle {
    width: 100px;
    height: 100px;
}
.role-circle p {
    font-weight: 700 !important;
    font-size: 9px !important;
    width: auto !important;
}
    .role-circle img {
        width: 25px;
        height: 25px;
    }

    .patient-img img {
        width: 90px;
        height: 90px;
    }

    .responsive-tooltip {
        white-space: pre-wrap !important;
    }
}

.role-circle p {
      font-weight: 800;
    font-size: 12px;
    width: 80%;
}


 .custom_tabel_data .row {
   background: #e1d1ff;
   margin-top: 3rem;
 }
 .custom_tabel_data ul {
   padding-left: 40px;
   margin-top: 15px;
 }
 .custom_tabel_data ul li{
   margin-bottom: 15px;
 }
 .custom_tabel_data h2 {
   background: #7f3dff;
   text-align: center;
   color: #fff;
   padding: 10px;
 }
 .custom_tabel_data .col-lg-6{
   padding: 0;
 }