@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow: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&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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");

*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font: inherit;
  scrollbar-width: 10px;
  scrollbar-color: #002865 #fff;
}

/* For Scrollbar */

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #5c4229;
  border: 2px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

*:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

html {
  font-size: 62.5%;
}

body {
  font-weight: normal;
  line-height: normal;
  font-size: 18px;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input[type="submit"],
input[type="reset"],
a {
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

::-moz-selection {
  color: #fff;
  background: #ff0000c7;
}

::selection {
  color: #fff;
  background: #ff0000c7;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

/***************** FOR BOOTSTRAP ******************/

.container {
  max-width: 1560px;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.nav>li>a:hover,
.nav>li>a:focus {
  background-color: transparent;
}

.navbar,
.nav-link {
  padding: 0;
  margin: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.nav>li>a:hover,
.nav>li>a:focus {
  background-color: transparent;
}

/* cmn_margin & Padding */

.mt-40 {
  margin-top: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.cmn_pdding {
  padding: 90px 0;
}

/*----Common Header and Button----*/

.cmn_hdr h2 {
  font-size: 49px;
  line-height: 1.2;
  font-weight: 600;
  color: #002865;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.cmn_hdr.wht h2 {
  color: #fff;
}

.cmn_hdr h6 {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-bottom: 10px;
}

.cmn_hdr p {
  font-size: 20px;
  color: #3f3f3f;
  line-height: 1.5;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

.cmn_hdr.wht p {
  color: #fff;
}

.cmn_btn {
  font-size: 18px;
  color: #f5f5f5;
  padding: 5px 5px 5px 20px;
  background: #0bac5c;
  border: 2px solid #0bac5c;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  border-radius: 50px;
}

/* .cmn_btn::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #ec715d;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.7s;
} */

.cmn_btn:hover {
  background-color: #fff;
  color: #0BAC5C;
}

.cmn_btn:hover::after {
  width: 100%;
}

/*----Common Header and Button End----*/

/*! button back to top !*/

#backToTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #0BAC5C;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50px;
  position: fixed;
  right: 2.5rem;
  bottom: 105%;
  cursor: pointer;
  z-index: 5555;
  transition: 0.5s all ease;
  border: 1px solid #0BAC5C;
  font-size: 1.8rem;
  transition: 0.8s all;
}

#backToTop.show {
  bottom: 2.5rem;
}

/*! button back to top End!*/

/* Animation Section */

/* Swing */

@-webkit-keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

/* Rotate */

.rotate {
  -webkit-animation: rotation 12s infinite linear;
  animation: rotation 12s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* Floating */

.floating {
  -webkit-animation: floating ease-in-out 3s infinite;
  animation: floating ease-in-out 3s infinite;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

/* Animation Section End */
/* ratul 18-09-25 */
/* header */
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  padding: 3.5rem 0;
  background: transparent;
}

header .cus_nav_innr {
  align-items: center;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.nav_area {
  background: #145265;
  /* width: 69%; */
  padding: 5px 5px 5px 30px;
  border-radius: 55px;
}

.navbar-expand-md .navbar-collapse {
  gap: 50px;
}

header .navbar-nav {
  gap: 10rem;
}

.hdr_logos {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.hdr_logos .logo_frst:first-child {
  margin-left: auto;
  width: 170px;
}

.hdr_logos .logo_frst:first-child img {
  width: 100%;
}

.hdr_logos .logo_frst:last-child {
  width: 245px;
}

.hdr_logos .logo_frst:last-child img {
  width: 100%;
}

.nav-link {
  font-size: 19px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #f5f5f5;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #d9d131;
}

.navbar-nav .nav-link.active {
  color: #d9d131;
}

.cmn_btn span {
  gap: 15px;
  height: 45px;
  width: 45px;
  background: #002765;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmn_btn span img {
  width: 22px;
}

/* banner section */
.banner {
  position: relative;
}

.bnr_img {
  width: 100%;
}

.bnr_img img {
  width: 100%;
}

.bnr_dtls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bnr_logo {
  width: 639px;
  border-bottom: 2px solid #33cd33;
}

.bnr_logo img {
  width: 100%;
}

.bnr_logo span {
  font-size: 63px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 15px;
}

.bnr_txt {
  padding-top: 20px;
}

.bnr_txt h1 {
  font-size: 61px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  line-height: 1.2;
  padding-bottom: 15px;
}

.bnr_txt.cmn_hdr h6 {
    color: #ffffff;
    font-weight: 400;
    /* text-transform: lowercase; */
}

.bnr_btn {
  padding-top: 25px;
}

.shape {
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.shape img {
  width: 100%;
}

/* choose section */
.choose {
  padding-bottom: 215px;
  position: relative;
  background: #fff;
}

.ch_pic {
  width: 50%;
  position: relative;
}

.ch_ot {
    top: -18px;
    width: 120px;
    position: absolute;
    left: auto;
    right: 0;
}

.ch_ot img {
  width: 100%;
}

.ch_flx {
  align-items: center;
  border: 12px solid #f5f5f5;
  display: flex;
  border-radius: 0px 300px 300px 0px;
  justify-content: space-between;
  /* border-top: none; */
  border-left: none;
}

.ch_pic .ch_img:first-child {
  outline: 25px solid #fff;
  top: -11px;
  position: relative;
  height: 573px;
  width: 480px;
  z-index: 1;
}

.ch_img img {
  height: 100%;
  border-radius: 25px 0px 0px 25px;
  width: 100%;
}

.ch_txt {
  padding-top: 35px;
  width: 50%;
}

.ch_txt h2 {
  padding-bottom: 25px;
}

.ch_pic .ch_img:nth-child(2) {
  z-index: 2;
  border-radius: 25px;
  position: absolute;
  width: 332px;
  bottom: -29px;
  left: auto;
  right: 89px;
  border: 8px solid #fff;
}

.ch_pic .ch_img:last-child img {
  border-radius: 25px;
  width: 100%;
}

.ch_txt h2 span {
  color: #28c53f;
}

.ch_list ul li a {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 22px;
  color: #002865;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding-bottom: 22px;
}

.ch_list ul li a span {
  background: #28c53f;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 5px solid #002765;
}

.ch_list ul li a span svg {
  font-size: 14px;
  color: #002765;
}

.ch_btn {
  padding-top: 20px;
}

.ch_lt {
  width: 617px;
  bottom: -60px;
  position: absolute;
  left: auto;
  right: 10px;
}

.ch_ltr {
  position: absolute;
  bottom: -126px;
  left: -86px;
  right: 0;
  margin-inline: auto;
  color: transparent;
  -webkit-text-stroke: 1px #3f5c8b;
  font-size: 148px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

/* yellow section */


.ylo_flx {
  padding: 50px 40px 46px;
  border-radius: 10px;
  background: #f6df49;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ylo_txt h2 {
  text-transform: uppercase;
  font-size: 50px;
  color: #002865;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.ylo_dv {
  height: 125px;
  width: 125px;
  border-radius: 50%;
  border: 16px solid #002765;
  background: #2fcd53;
  outline: 22px solid #fff;
  outline-offset: 50px;
}

.ylo_para {
  width: 30%;
}

.ylo_para p {
  line-height: 1.3;
  color: #3f3f3f;
  font-size: 23px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

/* protect section */
.prt {
  position: relative;
  padding-bottom: 202px;
  background: #fff;
}

.pr_frs {
  position: absolute;
  right: auto;
  left: 0px;
  width: 98px;
  top: 15px;
}

.pr_frs img {
  width: 100%;
}

.prt_flx {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prt_txt {
  padding: 56px 16px 55px 106px;
  border: 10px solid #f5f5f5;
  width: 70%;
  border-radius: 300px 0px 0px 300px;
}

.prt_txt h2 {
  font-size: 50px;
}

.prt_txt h2 span {
  color: #30ce53;
}

.prt_txt p {
  line-height: 1.6;
  padding-bottom: 12px;
  width: 50%;
}

.prt_img {
  width: 627px;
  position: absolute;
  z-index: 1;
  left: auto;
  right: -1px;
}

.prt_img img {
  width: 100%;
  border-radius: 15px;
}

.pr_thrd {
  z-index: 1;
  position: absolute;
  left: auto;
  right: 0px;
  width: 124px;
  bottom: 16px;
}

.pr_thrd img {
  width: 100%;
}

.ch_ltr.otr_txt {
  /* z-index: -1; */
  letter-spacing: 2px;
  bottom: -120px;
  left: 0;
  right: 0;
  margin-inline: auto;
  color: transparent;
  -webkit-text-stroke: 1px #62da83;
}

/* nw section */
.nw {
  position: relative;
  background: #0bac5c;
  background-image: linear-gradient(to right, #25cfd1, #31ce4e);
}

.nw_frst {
  top: -92px;
  z-index: 2;
  overflow: hidden;
  width: 309px;
  height: 309px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 241px;
  border: 10px solid #fff;
}

.nw_frst img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nw_scd {
  height: 190px;
  width: 190px;
  top: -45px;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 145px;
  border: 7px solid #25cfc9;
}

.nw_scd img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.nw_txt {
  text-align: center;
}

.nw_txt h2 {
  font-size: 61px;
}

.nw_btn .cmn_btn {
  background: transparent;
  border: 1px solid #fff;
}

.nw_btn .cmn_btn:hover {
  background: #15b551;
  color: #fff;
  border: 1px solid #15b551;
}

.nw_txt p {
  color: #fff;
  font-size: 18px;
}

/* footer */
.footer {
  background: #002765;

}

/* ==================================about page================================== */
/* Sangita 24.09.25 */
/*--------------- banner------------- */
.ban_cntn {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.shape.bnr_shp {
  bottom: 34px;
}

/* ----------------about_sec-------------- */
.ch_txt.abt_sec_txt {
  width: 40%;
}

.choose.about .ch_flx {
  justify-content: unset;
}

.abt_rnd_dv .bld_txt_abt {
  font-size: 64px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.abt_rnd_dv p {
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.abt_rnd_dv {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(-90deg, #35d69d 0%, #20c0e8 100%);
  outline: 10px solid #fff;
  position: absolute;
  bottom: -43px;
  z-index: 3;
}

.ylo_para.abt_pg_ylo_para {
  width: 80%;
}

.ylo.abt_ylo .ylo_flx {
  padding: 38px;
}

.ylo_para_bld {
  font-weight: 700;
}

.ylo.abt_ylo {
  position: relative;
}

.ylo_dv_otr {
  position: absolute;
  right: 161px;
  background: #f6df49;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 232px;
  height: 232px;
  border-radius: 50%;
  outline: 17px solid #fff;
}

/* ---------------committed---------------- */
.committed {
  position: relative;
  padding-bottom: 20px;
}

.cmtd_lft_img {
  position: absolute;
  left: 0px;
  width: 168px;
  top: -193px;
}

.committed .ch_list ul {
  width: 87%;
}

.cmtd_rgt_img .prt_img {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.committed .prt_txt {
  padding: 75px 16px 75px 124px;
  border: none;
}

.committed .ch_list ul li a {
  align-items: baseline;
}

.committed .prt_flx {
  position: relative;
}

.committed .prt_flx::before {
    position: absolute;
    content: "";
    background: url(../images/rounded_rectangle.webp) no-repeat center / contain;
    inset: 0;
    width: 69%;
    height: 583px;
    top: -54px;
    aspect-ratio: 16 / 9;
    z-index: -1;
}

/* ----------------clinic------------ */
.prt.clinic.cmn_pdding {
  padding-top: 45px;
}

.clnc_flx {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.clnc_nme.cmn_hdr h6 {
  color: #18b750;
  font-weight: 400;
  padding-bottom: 5px;
}

.clinic_txt span {
  color: #18b750;
}

.clnc_img {
  width: 752px;
  position: relative;
  z-index: 2;
}

.clnc_img img {
  width: 100%;
  border-radius: 20px;
}

.clinic_txt {
  width: 37%;
}
.clnc_flx::before {
    content: "";
    position: absolute;
    background-image: url("../images/rgt_round_rctngle.webp");
    background-size: contain;
    background-repeat: no-repeat;
    inset: 0;
    width: 72%;
    height: 624px;
    top: -74px;
    aspect-ratio: 16 / 9;
    z-index: 1;
    right: 0;
    left: auto;
}

.clinic_txt.cmn_hdr p {
  text-transform: none;
  padding-bottom: 25px;
}

.clnc_side_img {
  position: absolute;
  right: 0px;
  width: 195px;
  bottom: 132px;
  z-index: 1;
}

/* Ratul 24.09.25 */
.footer {
  position: relative;
  background: url(../images/ft-bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 581px;
  width: 100%;
}

.ft_img_fr {
  top: -95px;
  width: 290px;
  height: 290px;
  position: absolute;
  left: auto;
  right: 20%;
  border-radius: 50%;
  border: 8px solid #fff;
  overflow: hidden;
}

.ft_img_fr img {
  height: 100%;
  width: 100%;
}

.ft_img_sc {
  z-index: 1;
  top: -5px;
  width: 180px;
  height: 180px;
  position: absolute;
  left: auto;
  right: 14%;
  border-radius: 50%;
  border: 8px solid #31cf4a;
  overflow: hidden;
}

.ft_img_sc img {
  height: 100%;
  width: 100%;
}

.h_dv {
  padding-top: 110px;
  margin-inline: auto;
  width: max-content;
}

.h_dv img {
  width: 100%;
}

.ftr_flx {
  padding: 90px 0px 40px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #314B74;
}

.ftr_para p {
  padding-top: 25px;
  width: 80%;
  font-size: 14px;
  line-height: 1.5;
  color: #F5F5F5;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.pic_fr {
  width: 235px;
}

.pic_fr img {
  width: 100%;
}

.ftr_dv ul li a {
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 1.2;
  color: #F5F5F5;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.ftr_dv ul li a:hover {
  color: #2FCE63;
}

.ftr_dv ul li:hover {
  color: #2FCE63;
}

.ftr_dv ul li {
  font-size: 14px;
  line-height: 1.2;
  color: #F5F5F5;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ftr_dv ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ftr_dv ul li a span {
  height: 35px;
  width: 35px;
  background: transparent;
  border: 1px solid #2FCE63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftr_dv ul li span {
  height: 35px;
  width: 35px;
  background: transparent;
  border: 1px solid #2FCE63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftr_dv ul li a span,
.ftr_dv ul li span svg {
  font-size: 18px;
  color: #fff;
}

.ftr_dv ul li a span,
.ftr_dv ul li span svg:hover {
  color: #0BAC5C;
}

.ftr_dv h6 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.ftr_flx .ftr_dv:first-child {
  width: 20%;
}

.ftr_flx .ftr_dv:nth-child(2) {
  width: 15%;
}

.ftr_flx .ftr_dv:nth-child(3) {
  width: 25%;
}

.ftr_flx .ftr_dv:last-child {
  width: 25%;
}

.ftr_flx .ftr_dv:nth-child(3) ul li:first-child {
  padding-bottom: 15px;
}

.ftr_logo .pic_fr:first-child {
  padding-bottom: 10px;
}

.ftr_txt {
  padding-top: 10px;
  text-align: center;
}

.ftr_txt span {
  font-size: 14px;
  line-height: 1.2;
  color: #F5F5F5;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.ftr_txt span a {
  color: #fff;
}

.ftr_txt span a:hover {
  color: #0BAC5C;
}

.ftr_flx .ftr_dv:last-child {
  width: 15%;
}

/* ratul 25-09-25 */
.ch_lt {
  width: 617px;
  bottom: -60px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 2;
}

.ftr_dv h6 {
  padding-bottom: 20px;
}


/* ===========================faq page========================== */
/* Sangita 26.09.25 */
/* -----------faq_accrdn---------- */
.faq_accrdn_sec.cmn_pdding {
  padding-top: 50px;
}

.faq_accrdn_sec {
  position: relative;
}

.faq_part {
  display: flex;
  padding-bottom: 90px;
}

.faq_hdr.cmn_hdr h2 {
  text-align: center;
  padding-bottom: 44px;
}

.faq_hdr.cmn_hdr h2 span {
  color: #28c53f;
}

.faq_accrdn_sec .accordion-button {
  font-size: 23px;
  line-height: 1.4;
  color: #3f3f3f;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 12px;
  background-color: #f6df49;
}

.faq_accrdn_sec .accordion-body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #3f3f3f;
  font-weight: 400;
  padding-top: 0;
  padding-left: 40px;
  width: 87%;
}

.faq_accrdn_sec .accordion-item {
  border: none;
  margin-bottom: 17px;
  background-color: #f6df49;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.faq_accrdn_sec .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.acrrdn_part {
  width: 60%;
}

.faq_img_otr {
  width: 40%;
  background-color: #bdedff;
  padding-top: 82px;
  border-top-left-radius: 20px;
}

.faq_para {
  padding-left: 27px;
  width: 90%;
}

.faq_accrdn_sec .ch_ltr {
  font-size: 152px;
  font-weight: 700;
}

.faq_accrdn_sec .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url(../images/chevron_up.webp);
  background-repeat: no-repeat;
  background-size: 1.25rem;
}


.faq_accrdn_sec .accordion-button:not(.collapsed)::after {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233ebd50' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 11.354a.5.5 0 0 0 .708 0L8 5.707l5.646 5.647a.5.5 0 0 0 .708-.708l-6-6a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 0 .708z'/%3E%3C/svg%3E"); */
  background-image: url(../images/chevron_up.webp);
}



.faq_accrdn_sec .accordion-item .accordion-button {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;

}

.faq_accrdn_sec .accordion-button:focus {
  border-color: none !important;
  box-shadow: none !important;
}

/* ================================CONTACT PAGE================================== */
/* ----------banner--------- */
.bnc_bnr_img {
    width: 1020px;
    position: relative;
    z-index: 2;
}

.bnc_bnr_img img {
  width: 100%;
}

.bnr_cntn_imgs {
  position: relative;
}

.rdnt_img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}



/* ----------Booking----------- */
.booking .clinic_txt {
  width: 39%;
  position: relative;
  z-index: 5;
}

.booking .ch_ot {
  top: -116px;
}

.left_prt_img {
  width: 141px;
  position: absolute;
  left: 0;
}

.prt.booking {
  padding-bottom: 26px;
}

/* -----------------appointment---------------- */
.frm_btn.cmn_btn input {
  font-family: "Poppins", sans-serif;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.apntmt_map {
  background-image: url(../images/frm_map.webp);
  background-size: 100% 100%;
  width: 762px;
  height: 534px;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apntmt_frm {
  width: 46%;
}

.apntmt_flx {
  display: flex;
  justify-content: space-between;
  padding-bottom: 98px;
}

.form_hdr {
  background: #2cce85;
  padding: 15px;
  text-align: center;
  color: #fff;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  margin-bottom: 20px;
}

.form_hdr h3 {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}

.apntmt_frm form {
  padding: 0 38px;
  padding-bottom: 30px;
}

.apntmt_frm .form_grp {
  display: flex;
  gap: 9px;
  width: 100%;
  padding-bottom: 9px;
}

.apntmt_frm .frm_prt {
  width: 50%;
}

.apntmt_frm .frm_prt input,
.frm_grp textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #99a9c1;
  border-radius: 7px;
  font-size: 17px;
  color: #3f3f3f;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.frm_btn_otr {
  display: flex;
  justify-content: center;
}

.cnt_mp_hdr.cmn_hdr h2 {
  color: #fff;
  padding-bottom: 20px;
}

.cnt_mp_hdr.cmn_hdr h2 span {
  color: #33ce34;
}

.contact_dtls ul li,
.contact_dtls ul li a {
  font-size: 22px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact_dtls ul li:hover,
.contact_dtls ul li:hover a {
  color: #32add2;
}

.contact_dtls ul li:hover .cnt_dtl_otr {
  color: #fff;
  transform: rotate(180deg);
}

.contact_dtls ul li {
  padding-bottom: 38px;
}

.cnt_dtl_otr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  border: 2px solid #32add2;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cnt_dtl_otr:hover {
  transform: rotate(180deg);
}

.cnt_dtl_icn {
  font-size: 18px;
}

.frm_btn.cmn_btn:hover input {
  color: #0bac5c;
}

.frm_btn.cmn_btn input {
  transition: 0.3s ease;
}

.apntmt_frm .frm_prt input:focus {
  outline: none;
  cursor: pointer;
}

.appointment {
  position: relative;
}

/* =============================mouthguard page======================= */
/* Sangita 27.09.25 */
/*----------------- mouthguard---------------- */
.mthgrd_cstm .ch_flx {
  justify-content: normal;
  gap: 98px;
}

.mthgrd_cstm .ch_txt.abt_sec_txt {
  width: 32%;
}

.mthgrd_cstm .ch_txt.abt_sec_txt p {
  text-transform: none;
}

.choose.mthgrd_cstm {
  padding-bottom: 0;
}

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

.mthgrd_card {
  display: flex;
  gap: 12px;
}

.m_crd_dtls {
  width: 60%;
}

.m_crd_dtls.cmn_hdr h6 {
  text-transform: uppercase;
  color: #002865;
  font-weight: 600;
  padding-bottom: 0;
}

.m_crd_dtls.cmn_hdr p {
  text-transform: none;
}

.mthgrd_crd_sec.cmn_pdding {
  padding-bottom: 0;
}

/* ylo_sec */
.ylo.mthgrd_ylo .ylo_flx {
  padding: 50px;
  margin-bottom: 66px;
}

.mthgrd_ylo {
  position: relative;
}

/* types */
.tick_otr span {
  background: #28c53f;
  font-size: 13px;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 5px solid #002765;
}

.type_list ul li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 15px;
}

.type_list ul li .grn_bld {
  font-size: 23px;
  color: #18b750;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.type_list ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #3f3f3f;
  font-weight: 400;
}

.type_list {
  width: 60%;
}

.committed.types .prt_txt {
  padding: 75px 16px 75px 169px;
}

.committed.types .prt_flx::before {
  top: 17px;
}

.types .prt_img {
  width: 751px;
}

/* design */
.dsgn_side_img {
  width: 212px;
  position: absolute;
  left: 0;
  bottom: -117px;
}

.prt.design {
  padding-top: 24px;
  padding-bottom: 50px;
}

/* process */
.prcs_hdr h2 span {
  color: #30ce53;
}

.prcs_hdr {
  text-align: center;
  padding-bottom: 40px;
}

.prcs_layout {
    display: flex;
    justify-content: space-between;
    padding-bottom: 77px;
}
.prcs_dv_otr{
  position: relative;
}
.prcs_dv {
    width: 375px;
    height: 375px;
    display: flex;
    border-radius: 50%;
    border: 5px solid #3dc8e9;
    border-top: 0;
    padding: 1px 22px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #3dc9ea 36%, #2281af 100%);
}

.prcs_dv_cntn::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 65px;
    background: #9dd496;
    z-index: 0;
}

.prcs_dv_cntn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prcs_dv_cntn h6 {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding-bottom: 15px;
    margin-top: 10px;
}

.ylo_crcle {
    background-color: #f5df49;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    outline: 5px solid #fff;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.prcs_num {
  font-size: 110px;
  color: transparent;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-align: center;
  -webkit-text-stroke: 3px #fff;
  line-height: 1;
}

.prcs_dv_cntn p {
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.prcs_rgt {
    width: 191px;
    position: absolute;
    right: 0;
    bottom: 74px;
}
.process {
  position: relative;
}

/* ==============================GALLERY PAGE========================== */
/* Sangita 03.10.25 */
/* --------------banner----------- */
.glry_bnr .rdnt_img{
  top: -114px;
}
/* ------------gallery_sec------------ */
.gallery_sec{
  position: relative;
}
.gallery_sec .ch_ot{
  right: 0;
}
.glry_hdr.cmn_hdr {
    text-align: center;
    padding-bottom: 22px;
}
.glry_hdr.cmn_hdr h2 span{
  color: #17b651;
}
.glry_img {
    width: 500px;
    height: 535px;
    border-radius: 15px;
    border: 3px solid #002765;
    padding: 2px;

}
.glry_swpr .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.glry_img img {
    border-radius: 18px;
    width: 100%;
    height: 100%;
}
.glry_layout{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.glry_swpr .swiper-pagination-bullet {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: #002865;
    opacity: 1;
    background: transparent;
    border: 1px solid #002865;
}

  .glry_swpr .swiper-pagination-bullet-active {
      color: #fff;
      background: #007aff;
    }
    .glry_swpr{
      padding-bottom: 144px;
    }
    .gallery_sec .left_prt_img {
    bottom: 63px;
    }
    .glry_swpr .swiper-pagination{
      display: flex;
      left: 42%;
    }

.swpr_navg .swiper-pagination {
  position: static;
  display: flex;
  /* gap: 10px; */
  align-items: center;
  justify-content: center;
}

/* --- NAVIGATION WRAPPER --- */
.swpr_navg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  position: relative;
  z-index: 10;
}

/* --- SWIPER NAVIGATION BUTTONS --- */
/* .swiper-button-prev, .swiper-button-next {
    width: 42px;
    height: 42px;
    background-color: #002865;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 11 !important;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
} */

/* --- CUSTOM ARROW ICONS --- */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.swiper-button-prev::after {
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  transform: rotate(45deg);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #007aff;
}
.swiper-button-prev {
    left: 35%;
}
.swiper-button-next{
      right:35%;
}
.gallery_sec.cmn_pdding{
  padding-top: 50px;
}
/* ratul 06-10-25 */
 .home_bnr .bnr_mob{
  display: none;
}
.ch_txt h2 br:first-child{
    display:none;
}
/* sangita 07-10-25 */
.curve_dv{
  display: none;
}
/* ratul 08.10.25 */
.faq_accrdn_sec .ch_ltr.otr_txt{
  bottom: -122px;
}
.faq_img_otr {
   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-top: 134px;
}
/* sangita 08.10.25 */
.custom_img img{
      border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

/* sangita 10.10.25 */
.design .clinic_txt {
  position: relative;
  z-index: 2;
}
.design .clnc_nme a{
      font-family: "Poppins", sans-serif;
      font-size: 23px;
color: #18b750;
font-weight: 400;
}

/* sangita 11.10.25 */
/* -------------gallery page------------ */
.glry_flx{
  display: flex;
  flex-wrap: wrap;
      gap: 15px;
      padding-bottom: 50px;
}
.glry_dv .pagination {
  display: flex;
  justify-content: center;
  list-style: none; 
  padding: 0px;
  gap: 6px;
}
.glry_dv .pagination li{
    cursor: pointer;
}
.glry_dv .pagination li a {
      width: 42px;
    height: 42px;
    border: 1px solid #002865;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_link{
  font-size: 25px;
  color: #002865;
  font-weight: 500;
      transition: 0.3s ease;
}
.page_link:hover{
    background-color: #002865;
  color: #fff;
}
.pgnt_arw{
  background-color: #002865;
  color: #fff;
}
.glry_pagination{
  padding-bottom: 62px;
}

/* sangita 11.10.25 */
.type_para{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #3f3f3f;
    font-weight: 400;
}
/* sangita 15.10.25 */
.gallery_sec .page_link.active{
      background-color: #002865;
    color: #fff;
}

/* moumi 18.10.25 */
.frm_btn.cmn_btn {
    position: relative;
    margin-top: 15px;
}
.frm_btn.cmn_btn p{
display: flex;
    gap: 10px;
}
.frm_btn .wpcf7-spinner{
      position: absolute;
    right: -78px;
}
.frm_grp textarea{
      height: 130px;
}