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

@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../font/Poppins-Medium.ttf);
}
@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../font/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../font/Poppins-Bold.ttf);
}
:root {
  --first-color: #083d6f;
  --second-color: #48a13a;
  --third-color: #4ac344;
  --white: #FFF;
  --black: #000;
  --bg: #f1f1f1;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("../images/menu.gif");
}

.navbar-light .navbar-toggler {
  background-color: var(--white);
}

.sticky-top {
  background-color: var(--bg);
  border-bottom: 1px solid var(--first-color);
}

.topbar-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--second-color);
  padding: 4px 4px 4px 4px;
}
.topbar-section .left-part {
  padding-left: 5px;
}
.topbar-section .left-part p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
}
.topbar-section .right-part {
  padding-right: 5px;
}
.topbar-section .right-part a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
}
.topbar-section .right-part .fas {
  margin: 3px;
}

.navbar .navbar-brand img {
  width: 180px;
}
.navbar ul li a {
  color: var(--black) !important;
  letter-spacing: 1px;
  font-weight: 500;
}
.navbar ul li a:hover {
  background-color: var(--second-color);
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.navbar .dropdown .dropdown-menu {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  margin-bottom: 10px;
}
.navbar .nav-app .btn {
  background-color: var(--second-color);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 25px 10px 25px;
  cursor: pointer;
  border: none;
  border-radius: 13px;
  transition: all 0.5s ease-in-out;	
}

.navbar .nav-app .btn:hover {
  background-color: var(--first-color);
  transition: all 0.5s ease-in-out;
}

.navbar .active {
  background-color: var(--second-color) !important;
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dropdown-menu .active {
  background-color: var(--second-color) !important;
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.choose-section {

  background-color: #ffffff;
  border-bottom: 2px solid #083d6f ;
  box-shadow: 0px 4px 6px rgba(0, 0, 255, 0.3); 
}
.choose-section .choose-part {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0px 10px 0px;
}
.choose-section .choose-part .choose-list {
  text-align: center;
}
.choose-section .choose-part .choose-list h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.choose-section .choose-part .choose-list img {
  height: 80px;
}

.about-section .about-part {
  text-align: center;
}
.about-section .about-part h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-section .about-part h2 span {
  background-color: var(--second-color);
  padding: 5px 25px 5px 25px;
  border-radius: 13px;
  border-bottom: 2px solid var(--first-color);
}
.about-section .about-part h1 {
  font-size: 24px;
  font-weight: 600;
}
.about-section .about-part p {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
}
.about-section .about-part p a {
  color: var(--first-color);
  font-weight: 600;
}
.about-section .about-part .about-btn .btn-link {
  font-size: 30px;
  font-weight: 600;
  color: var(--first-color);
  text-decoration: none;
}
.about-section .about-part .about-btn .btn-link:hover {
  color: var(--second-color);
}

.doctor-section {
  background-color: var(--bg);
}
.doctor-section .round-class {
  background-color: var(--first-color);
  padding: 10px 10px 10px 10px;
  border-start-start-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}
.doctor-section .round-class-2 {
  background-color: var(--second-color);
  padding: 10px 10px 10px 10px;
  border-end-end-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}
.doctor-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 15px;
}
.doctor-section h2 span {
  background-color: var(--second-color);
  padding: 5px 25px 5px 25px;
  border-radius: 13px;
  border-bottom: 2px solid var(--first-color);
}
.doctor-section .doctor-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.doctor-section .doctor-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.doctor-section .doctor-info p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 30px;
  text-transform: capitalize;
  text-align: justify;
}
.doctor-section .doctor-info .btn-link {
  color: var(--white);
  font-size: 14px;
  border-bottom: 2px dotted var(--third-color);
  transition: all 0.4s ease-in-out;
}
.doctor-section .doctor-info .btn-link:hover {
  letter-spacing: 1px;
  transition: all 0.4s ease-in-out;
}
.doctor-section .doctor-card-2 img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.doctor-section .doctor-info-2 h3 {
  font-size: 18px;
  font-weight: 600;
}
.doctor-section .doctor-info-2 p {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}
.doctor-section .doctor-info-2 .btn-link {
  color: var(--white);
  font-size: 14px;
  border-bottom: 2px dotted var(--first-color);
  transition: all 0.4s ease-in-out;
}
.doctor-section .doctor-info-2 .btn-link:hover {
  letter-spacing: 1px;
  transition: all 0.4s ease-in-out;
}

.treatment-section {
  background-color: var(--first-color);
}
.treatment-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 15px;
}
.treatment-section h2 span {
  background-color: var(--second-color);
  padding: 5px 25px 5px 25px;
  border-radius: 13px;
  border-bottom: 2px solid var(--first-color);
}
.treatment-section h3 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
}
.treatment-section .treat-para {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
}
.treatment-section .card {
  cursor: pointer;
  background-color: var(--bg);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.treatment-section .card:hover {
  transform: translateY(-5px);
  transition: all 0.4s ease-in-out;
}
.treatment-section .card img {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 85%, 100% 0%);
          clip-path: polygon(0 0, 0 100%, 100% 85%, 100% 0%);
  padding: 10px;
}
.treatment-section .card .btn {
  background-color: var(--second-color);
  padding: 10px 25px 10px 25px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease-in-out;
}

.treatment-section .card .btn:hover {
  background-color: var(--first-color);
  transition: all 0.4s ease-in-out;
}
.treatment-section .card h5 {
  color: var(--first-color);
  font-weight: 600;
}
.treatment-section .card p {
  font-size: 14px;
  font-weight: 500;
}

.indu-center {
  background: url("../images/bg-img.jpg");
  background-position: center;
  background-size: cover;
}
.indu-center .center-infos {
  text-align: center;
  padding: 15px 15px 15px 15px;
}
.indu-center .center-infos p {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.indu-center .center-infos h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--first-color);
}
.indu-center .center-infos h3 {
  font-size: 24px;
  font-weight: 600;
}
.indu-center .center-infos h3 a {
  color: var(--third-color);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials-section .tet-img {
  text-align: center;
}
.testimonials-section .tet-img img {
  width: 100px;
}
.testimonials-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 15px;
}
.testimonials-section h2 span {
  background-color: var(--second-color);
  padding: 5px 25px 5px 25px;
  border-radius: 13px;
}
.testimonials-section .teti-info h3 {
  font-size: 24px;
  font-weight: 600;
}
.testimonials-section .teti-info p {
  font-size: 14px;
}
.testimonials-section .teti-info .star .fas {
  color: #FFB200;
}
.testimonials-section .swip-btn {
  text-align: center;
}
.testimonials-section .swip-btn .btn {
  background-color: var(--second-color);
  padding: 10px 25px 10px 25px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid var(--first-color);
}

.c-contact-section {
  background-color: var(--second-color);
  padding: 10px 10px 10px 10px;
  border-top: 2px solid var(--first-color);
}
.c-contact-section .con-infos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.c-contact-section .con-infos .con-spe {
  text-align: center;
}
.c-contact-section .con-infos .con-spe p {
  font-size: 14px;
  font-weight: 500;
}
.c-contact-section .con-infos .con-spe h3 {
  font-size: 16px;
  font-weight: 600;
}

.footer-section {
  background: url("../images/ty.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-section .footer-about h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
.footer-section .footer-about p {
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
}
.footer-section .footer-about .footer-social .bg-icon img {
  width: 30px;
  transition: all 0.5s ease-in-out;
}
.footer-section .footer-about .footer-social .bg-icon img:hover {
  transform: translateY(-4px);
  transition: all 0.5s ease-in-out;
}
.footer-section .footer-page h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
.footer-section .footer-page a {
  text-decoration: none;
  color: var(--bg);
}
.footer-section .footer-page p {
  font-size: 14px;
  font-weight: 500;
}
.footer-section .footer-treat h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
.footer-section .footer-treat a {
  text-decoration: none;
  color: var(--bg);
}
.footer-section .footer-treat p {
  font-size: 14px;
  font-weight: 500;
}
.footer-section .footer-contact h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
.footer-section .footer-contact a {
  text-decoration: none;
  color: var(--bg);
}
.footer-section .footer-contact p {
  font-size: 14px;
  font-weight: 500;
}

.copyright {
  background-color: var(--first-color);
  padding: 4px;
}
.copyright .copy-info p {
  text-align: center;
  font-size: 14px;
  margin: 4px;
  color: var(--white);
}
.copyright .copy-info p a {
  color: var(--white);
}

.fix-contact {
  background-color: rgba(8, 61, 111, 0.8);
}
.fix-contact h3 {
  text-align: center;
  font-size: 24px;
  color: var(--white);
}
.fix-contact .fix-info {
  text-align: center;
}
.fix-contact .fix-info .btn-primary {
  background-color: var(--first-color);
  cursor: pointer;
  border: none;
  padding: 10px 35px 10px 35px;
  border-radius: 50px;
  font-size: 14px;
}
.fix-contact .fix-info .btn-outline-primary {
  cursor: pointer;
  padding: 10px 35px 10px 35px;
  border-radius: 50px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 14px;
}
.fix-contact .fix-info .btn-outline-primary:hover {
  background-color: var(--first-color);
}

.whatsapp-chat {
  height: 55px;
  width: 55px;
}

#myBtn {
  position: fixed;
  bottom: 2px;
  right: 0;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn img {
  width: 34px;
  height: 34px;
  transition: all 0.3s ease-in-out;
}

#myBtn img:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}

#myBtnn {
  position: fixed;
  bottom: 42px;
  right: 0px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtnn img {
  width: 35px;
  transition: all 0.3s ease-in-out;
}

#myBtnn img:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}

/*-----breadcrub-section-----*/
.breadcrub-section {
  background-color: var(--first-color);
  height: 120px;
}
.breadcrub-section .bread-info h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}

.breadcrub-section .bread-info h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}

.treatments-section .treatment-img h2 {
  font-size: 24px;
  font-weight: 600;
}
.treatments-section .treatment-img img {
  margin-bottom: 15px;
}
.treatments-section .treatment-img h1 {
  font-size: 24px;
  font-weight: 600;
}
.treatments-section .treatment-img .treat-h2 {
  color: var(--first-color);
}
.treatments-section .treatment-img p {
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  line-height: 30px;
  text-transform: capitalize;
}
.treatments-section .treatment-img p a {
  color: var(--first-color);
  font-weight: 600;
}
.treatments-section .treatment-img p span {
  font-weight: 600;
}
.treatments-section .treatment-img ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
}
.treatments-section .treatment-img ul li span {
  font-weight: 600;
}
.treatments-section .treatment-img h3 {
  font-size: 22px;
  font-weight: 600;
}
.treatments-section .treatment-img .tret-btn .btn {
  background-color: var(--second-color);
  border-radius: 13px;
  padding: 10px 25px 10px 25px;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid var(--first-color);
}
.treatments-section .treatment-infos {
  background-color: var(--first-color);
  padding: 14px 14px 14px 14px;
  border-radius: 13px;
  margin-bottom: 15px;
}
.treatments-section .treatment-infos a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
}
.treatments-section .treatment-social iframe {
  border-radius: 13px;
}
.treatments-section .treatment-social a {
  width: 100%;
  height: 500px;
}

.contact-section .address-info h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--first-color);
}
.contact-section .address-info p {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}
.contact-section .contact-form {
  background-color: var(--first-color);
  padding: 15px;
}
.contact-section .contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.contact-section .contact-form ::-moz-placeholder {
  font-size: 14px;
  font-weight: 500;
}
.contact-section .contact-form :-ms-input-placeholder {
  font-size: 14px;
  font-weight: 500;
}
.contact-section .contact-form ::placeholder {
  font-size: 14px;
  font-weight: 500;
}
.contact-section .contact-form .btn {
  background-color: var(--second-color);
  cursor: pointer;
  border: none;
}
.contact-section .contact-form .btn:focus {
  outline: none;
}

.map-section .map-part iframe {
  width: 100%;
  height: 450px;
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}

.doc-center h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
}

.male-section .male-img img {
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}
.male-section .male-btn .btn {
  background-color: var(--second-color);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  padding: 10px 25px 10px 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 10px;
}
.male-section .male-info h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--first-color);
}
.male-section .male-info p {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-align: justify;
  text-transform: capitalize;
}
.male-section .male-info p a {
  font-weight: 600;
  color: var(--first-color);
}
.male-section .male-info .badge {
  font-size: 15px;
}

.female-section .female-img img {
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}
.female-section .female-btn .btn {
  background-color: var(--second-color);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  padding: 10px 25px 10px 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 10px;
}
.female-section .female-info h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--first-color);
}
.female-section .female-info p {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-align: justify;
  text-transform: capitalize;
}
.female-section .female-info p a {
  font-weight: 600;
  color: var(--first-color);
}
.female-section .female-info .badge {
  font-size: 15px;
}

.thank-you-section {
  text-align: center;
}
.thank-you-section .thankyou-logo img {
  width: 250px;
  margin-bottom: 10px;
}
.thank-you-section .thankyou-text h1 {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
}
.thank-you-section .thankyou-check .fas {
  font-size: 40px;
  color: var(--second-color);
}
.thank-you-section .thank-social h2 {
  font-size: 18px;
  font-weight: 600;
}
.thank-you-section .thank-social .bg-img img {
  width: 20px;
}

@media screen and (max-width: 600px) {
  .topbar-section {
    display: block;
  }
  .topbar-section .left-part {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .topbar-section .left-part p {
    font-size: 14px;
  }
  .topbar-section .right-part {
    display: flex;
    justify-content: center;
  }
  .topbar-section .right-part a {
    font-size: 14px;
  }
  .choose-section .choose-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .indu-center .center-infos h2 {
    font-size: 18px;
  }
  .c-contact-section .con-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .male-section .male-info .badge {
    font-size: 13px;
  }
  .female-section .female-info .badge {
    font-size: 13px;
  }
}
@media screen and (max-width: 500px) {
  .topbar-section {
    display: block;
  }
  .topbar-section .left-part {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .topbar-section .left-part p {
    font-size: 14px;
  }
  .topbar-section .right-part {
    display: flex;
    justify-content: center;
  }
  .topbar-section .right-part a {
    font-size: 14px;
  }
  .choose-section .choose-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .indu-center .center-infos h2 {
    font-size: 18px;
  }
  .c-contact-section .con-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .male-section .male-info .badge {
    font-size: 13px;
  }
  .female-section .female-info .badge {
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .topbar-section {
    display: block;
  }
  .topbar-section .left-part {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .topbar-section .left-part p {
    font-size: 10px;
  }
  .topbar-section .right-part {
    display: flex;
    justify-content: center;
  }
  .topbar-section .right-part a {
    font-size: 12px;
  }
  .choose-section .choose-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .indu-center .center-infos h2 {
    font-size: 18px;
  }
  .c-contact-section .con-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .male-section .male-info .badge {
    font-size: 13px;
  }
  .female-section .female-info .badge {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .topbar-section {
    display: block;
  }
  .topbar-section .left-part {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .topbar-section .left-part p {
    font-size: 10px;
  }
  .topbar-section .right-part {
    display: flex;
    justify-content: center;
  }
  .topbar-section .right-part a {
    font-size: 12px;
  }
  .choose-section .choose-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .indu-center .center-infos h2 {
    font-size: 18px;
  }
  .c-contact-section .con-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .male-section .male-info .badge {
    font-size: 13px;
  }
  .female-section .female-info .badge {
    font-size: 13px;
  }
}
@media screen and (max-width: 320px) {
  .topbar-section {
    display: block;
  }
  .topbar-section .left-part {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .topbar-section .left-part p {
    font-size: 10px;
  }
  .topbar-section .right-part {
    display: flex;
    justify-content: center;
  }
  .topbar-section .right-part a {
    font-size: 12px;
  }
  .choose-section .choose-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .indu-center .center-infos h2 {
    font-size: 18px;
  }
  .c-contact-section .con-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .male-section .male-info .badge {
    font-size: 13px;
  }
  .female-section .female-info .badge {
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */
.faq-section {
  max-width: 100%;
  margin: 10px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  background: #ffffff;
  border: none;
  padding: 15px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question:hover {
  background: #f1f1f1;
}
.faq-answer {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
}
.icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}
.collapsed .icon {
  transform: rotate(0deg);
}
.icon.active {
  transform: rotate(180deg);
}
 /* Custom Styling for Modal Title */
    .modal-header-custom {
            background-color: #007bff; /* Bootstrap primary color */
            color: white;
            padding: 15px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }