@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
:root {
  --bg-clr1: #0e7549;
  ---bg-clr2: #108552;
  --clr1: #fff;
  --clr2: #f8c1d8;
  --clr-dark: #165528;
  --grad-red: linear-gradient(45deg, #ff9800, #f52213);
  --grad-orange: linear-gradient(45deg, #f52213, #ff9800);
  --grad-yellow: linear-gradient(45deg, #ffc107, #ff9800);
  --grad-green: linear-gradient(45deg, #4caf50, #cddc39);
  --grad-blue: linear-gradient(45deg, #3f51b5, #00bcd4);
  --grad-purple: linear-gradient(45deg, #6f42c1, #d63384);
  --bs-body-color: #3d1234;
  --bs-nav-link-color: #fff;
  --primary-color: #2a7fba;
  --primary-dark: #1a5f8b;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-text: #6c757d;
  --white: #fff;
  --transition: all 0.3s ease;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-light: #7f8c8d;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(122, 57, 57, 0.1);
  --box-shadow-hover: 0 8px 24px rgba(122, 57, 57, 0.2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}
p,
h5,
h1,
h2,
h3,
h5,
h4,
h6 {
  font-weight: 600;
  font-family: "roboto", sans-serif;
}
h1,
h2,
h3 {
  font-weight: 600;
  font-family: "roboto", sans-serif;
  color: var(--bg-clr2);
}
/* HEADER */
.physician-header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  /*position: sticky;*/
  top: 0;
  z-index: 1000;
  font-family: "roboto", sans-serif;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
/* Logo Section */
.logo-section {
  flex: 1 0 250px;
  margin-bottom: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}
.logo-img {
  height: 50px;
  width: auto;
  margin-right: 15px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-color);
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 0.9rem;
  color: var(--light-text);
  margin: 0;
  font-weight: 500;
}
/* Contact Section */
.contact-section {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-icon {
  background-color: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
}
.contact-label {
  font-size: 0.8rem;
  color: var(--light-text);
  font-weight: 500;
}
.contact-value {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}
.contact-value:hover {
  color: var(--primary-color);
}
/* CTA Button */
.cta-section {
  flex-shrink: 0;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Mobile Menu Toggle (hidden on desktop) */
.menu-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 4px 0;
  transition: var(--transition);
}
/* Responsive Styles */
@media (max-width: 992px) {
  .contact-section {
    gap: 1.5rem;
    margin-right: 1rem;
  }
}
@media (max-width: 768px) {
  .header-container {
    justify-content: space-between;
  }
  .logo-section {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .contact-section {
    display: none; /* Hide on mobile - can be toggled */
  }
  .cta-section {
    display: none; /* Hide on mobile - can be toggled or moved to menu */
  }
}
@media (max-width: 576px) {
  .logo-title {
    font-size: 1.3rem;
  }
  .logo-subtitle {
    font-size: 0.8rem;
  }
  .logo-img {
    height: 40px;
    margin-right: 10px;
  }
}
/* HEADER END */
/* NAVBAR */
.navbar {
  padding: 1rem 0;
  background: var(--bg-clr1);
  color: var(--clr1);
  position: sticky;
  top: 0;
  z-index: 9999;
}
.btn {
  border-radius: 50px;
}
.btn.btn-theme1 {
  background: var(--bg-clr1);
  color: var(--clr1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.btn-theme2 {
  background: var(--clr-dark);
  color: #fff;
}
.btn.btn-theme-dark {
  background: var(--clr-dark);
  color: #fff;
}
.btn.btn-theme1:hover,
.btn.btn-theme2:hover {
  background: var(--bg-clr2);
  color: #fff;
}
.btn.btn-theme-dark:hover {
  background: var(--bg-clr1);
  color: var(--clr-dark);
}
.btn.btn-theme1::before,
.btn.btn-theme2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--bg-clr2);
  z-index: -1;
  transition: 1s all cubic-bezier(0.28, 0.01, 0, 0.94);
}
.btn.btn-theme1:hover::before,
.btn.btn-theme2:hover::before {
  width: 100%;
}
/* ====Wellcome Message Section Start Code==== */
.welcome-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}
.welcome-title {
  font-family: "roboto", sans-serif;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.welcome-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #692161;
  margin: 15px auto 0;
  border-radius: 2px;
}
.message-carousel {
  position: relative;
  z-index: 1;
}
.message-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}
.message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.message-header {
  background: linear-gradient(to right, #692161, #3d1234);
  color: white;
  padding: 20px;
  text-align: center;
  font-family: "roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.message-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-height: 400px;
  position: relative;
  overflow: hidden;
}
.message-body {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
.message-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  display: none;
}
.message-body.truncated::after {
  display: block;
}
.message-author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #692161;
  margin-right: 20px;
}
.author-info {
  flex-grow: 1;
}
.author-name {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
  font-family: "roboto", sans-serif;
}
.author-title {
  color: #692161;
  font-size: 0.9rem;
  font-weight: 500;
}
.message-text {
  color: #555;
  line-height: 1.7;
  font-family: "roboto", sans-serif;
  margin-bottom: 20px;
}
.read-more-btn {
  color: #692161;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 15px;
}
.read-more-btn:hover {
  color: #3d1234;
}
.read-more-btn i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.read-more-btn:hover i {
  transform: translateX(3px);
}
/* Modal Styles */
.message-modal .modal-dialog {
  max-width: 800px;
}
.message-modal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}
.message-modal .modal-header {
  background: linear-gradient(to right, #692161, #3d1234);
  color: white;
  border-bottom: none;
  padding: 20px;
}
.message-modal .modal-title {
  font-family: "roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.message-modal .modal-body {
  padding: 30px;
}
.message-modal .modal-author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.message-modal .modal-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #692161;
  margin-right: 20px;
}
.message-modal .modal-author-info h4 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
  font-family: "roboto", sans-serif;
}
.message-modal .modal-author-title {
  color: #692161;
  font-size: 1rem;
  font-weight: 500;
}
.message-modal .modal-text {
  color: #555;
  line-height: 1.7;
  font-family: "roboto", sans-serif;
}
.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #692161;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.carousel-controls .carousel-control-prev:hover,
.carousel-controls .carousel-control-next:hover {
  opacity: 1;
  background-color: #3d1234;
}
.carousel-indicators {
  bottom: -40px;
}
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  border: none;
  margin: 0 5px;
}
.carousel-indicators button.active {
  background-color: #692161;
}
@media (max-width: 992px) {
  .message-author {
    flex-direction: column;
    text-align: center;
  }
  .author-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .message-content {
    padding: 20px;
    max-height: 450px;
  }
}
@media (max-width: 768px) {
  .welcome-section {
    padding: 40px 0;
  }
  .welcome-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .message-header {
    padding: 15px;
    font-size: 1rem;
  }
  .message-content {
    max-height: 500px;
  }
}
@media (max-width: 576px) {
  .author-avatar {
    width: 70px;
    height: 70px;
  }
  .message-text {
    font-size: 0.95rem;
  }
  .message-modal .modal-author {
    flex-direction: column;
    text-align: center;
  }
  .message-modal .modal-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* ===== About IPF Section Start Code ====== */
.about-ipf {
  background: linear-gradient(135deg, #f8fcff 0%, #e6f4ff 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: #2a4365;
}
.about-ipf::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%230569ff" fill-opacity="0.05" d="M45,-65.1C57.5,-55.3,66.5,-40.5,72.7,-23.9C78.9,-7.3,82.3,11.1,76.4,26.6C70.5,42.1,55.4,54.7,38.3,63.3C21.2,71.9,2.1,76.5,-16.1,72.5C-34.3,68.5,-51.6,55.9,-62.8,39.6C-74,23.3,-79.1,3.3,-75.7,-15.3C-72.3,-33.9,-60.4,-51.1,-45.1,-60.3C-29.8,-69.5,-11.1,-70.7,5.8,-77.7C22.7,-84.7,45.4,-97.5,45,-65.1Z" transform="translate(100 100)"/></svg>')
    no-repeat;
  background-size: contain;
  z-index: 0;
}
.about-ipf::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%230569ff" fill-opacity="0.05" d="M31.3,-48.4C42.9,-40.3,56.3,-36.1,63.2,-26.6C70.1,-17.1,70.6,-2.3,66.1,10.2C61.6,22.7,52.1,33,40.9,42.4C29.7,51.8,16.9,60.3,1.8,58.1C-13.3,55.9,-26.6,43,-39.1,32.3C-51.6,21.6,-63.3,13.1,-67.5,1.2C-71.7,-10.7,-68.4,-25.9,-58.6,-35.5C-48.8,-45.1,-32.5,-49,-20.1,-56.3C-7.7,-63.6,0.8,-74.3,31.3,-48.4Z" transform="translate(100 100)"/></svg>')
    no-repeat;
  background-size: contain;
  z-index: 0;
}
.about-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ipf-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ipf-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0569ff;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.ipf-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0569ff 0%, #00c6ff 100%);
  border-radius: 2px;
}
.ipf-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.ipf-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.ipf-description {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 105, 255, 0.08);
  border-top: 4px solid #0569ff;
}
.ipf-description-text {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #4a5568;
}
.ipf-objectives {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 105, 255, 0.08);
  border-top: 4px solid #00c6ff;
}
.objectives-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0569ff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.objectives-title svg {
  margin-right: 10px;
}
.objectives-list {
  list-style: none;
  padding: 0;
}
.objective-item {
  padding: 1rem 0;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: flex-start;
}
.objective-item:last-child {
  border-bottom: none;
}
.objective-icon {
  margin-right: 15px;
  color: #00c6ff;
  min-width: 24px;
}
.objective-text {
  line-height: 1.7;
  color: #4a5568;
}
@media (max-width: 768px) {
  .ipf-content {
    flex-direction: column;
  }
  .ipf-title {
    font-size: 2rem;
  }
}
/* ========= Quick Link Section Start Code ========== */
.quick-link-section {
  padding: 50px 0px;
  background: var(--bg-clr1);
  color: var(--clr1);
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(15, 15, 15, 0.63);
  background-image: url("../images/quick-bg.webp");
  background-repeat: repeat-x;
  background-size: cover;
  background-blend-mode: multiply;
  animation: moveBackground 5s ease-in-out infinite alternate;
}
@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -500px 0;
    /* adjust how far it moves */
  }
}
.section-title {
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  color: var(--text-color);
}
.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #a53692, #9c231a);
}
.quick-link-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}
.quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.card-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.card-icon img {
  max-height: 80px;
  object-fit: contain;
}
.card-body {
  padding: 25px;
}
.card-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.card-text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.link-arrow {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}
.link-arrow i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.card-link:hover .link-arrow {
  color: #ff6600;
}
.card-link:hover .link-arrow i {
  transform: translateX(5px);
}
.card-link {
  text-decoration: none;
}
/* ============== Footer section start code ============= */
.footer-section {
  position: relative;
  width: 100%;
  background: var(--bg-clr1);
  padding: 50px 0px;
  overflow: hidden;
  color: var(--clr1);
}
/*------Footer title------------*/
.footer-section h2,
.footer-section h3,
.footer-section h1 {
  font-size: clamp(14pt, 2vw, 18pt);
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bolder;
  padding-bottom: 5pt;
}
.footer-section p,
    /*------Footer Text----------*/
    .footer-section a,
    .footer-section a:hover,
    .footer-section .nav-link,
    .footer-section .nav-link:hover {
  font-size: clamp(11pt, 2vw, 12pt);
  text-wrap: balance;
}
.footer-section p,
.footer-section a,
.footer-section a:hover,
.footer-section .contact .badge i,
.footer-section .d-inline-flex .text,
.footer-section .nav-link,
.footer-section .nav-link:hover {
  color: var(--clr1);
}
.footer-section .nav-link {
  margin-left: 10pt;
}
.footer-section .logo {
  /*-------Footer logo-----------------*/
  width: clamp(50pt, 15vw, 70pt);
  padding-bottom: 10pt;
  object-fit: cover;
}
/*-----------------------------------------------------------
          +++Social media  ( Footer Section)++++
    --------------------------------------------------------------*/
.footer-section .social-links .btn-square {
  /*-----Social Icon  Background-------*/
  border: 2px solid #ffffff;
  /*-----Social Icon border------*/
  transition: all cubic-bezier(0.455, 0.03, 0.515, 0.955);
  /*-------Social button transform on click animation---------*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30pt;
  height: 30pt;
  margin-right: 5pt;
  /* margin-bottom: 10pt; */
}
.footer-section .social-links i {
  /*-----Social Icon -------*/
  font-size: clamp(9pt, 2vw, 11pt);
  /*-------Social Icon font size---------*/
  color: #ffffff;
  /*----Social Icon Color--------*/
}
.footer-section .social-links .btn-square:hover {
  /*-----Social Icon  Background when hover-------*/
  background-color: #ffffff;
  /*-----Social button background color on hover------*/
}
.footer-section .social-links .btn-square:hover i {
  /*------Social icon color on hover------------*/
  color: #0e0e57;
}
/*-----------------------------------------------------------
          +++Wave animation  ( Footer Section)++++
                Create some wave animation
    --------------------------------------------------------------*/
.footer-section .wave {
  /*-------all wave have same behavior-------------*/
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("./assets/images/wave-footer.png");
  background-size: 1000px 100px;
}
.footer-section .waves :nth-child(1) {
  /*-----Wave1-------*/
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: Wave_Water 4s linear infinite;
}
.footer-section .waves :nth-child(2) {
  /*----Wave2-----*/
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: Reverse_Wave_Water 4s linear infinite;
}
.footer-section .waves :nth-child(3) {
  /*-----Wave3---------*/
  z-index: 1000;
  opacity: 0.2;
  bottom: 0;
  animation: Wave_Water 3s linear infinite;
}
.footer-section .waves :nth-child(4) {
  /*------Wave4--------*/
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: Reverse_Wave_Water 3s linear infinite;
}
/*-----------------------------------------------------------
          +++Bubble  ( Footer Section)++++
             create a bubble animation
    --------------------------------------------------------------*/
.footer-section .dots div {
  /*----for all bubble div-----*/
  height: clamp(25pt, 4vw, 30pt);
  width: clamp(25pt, 4vw, 30pt);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  position: absolute;
  top: 10%;
  left: 10%;
}
.footer-section .dot {
  /*-------create buble icon---------*/
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 20%;
  right: 20%;
}
.footer-section .dots div:nth-child(1) {
  top: 20%;
  left: 20%;
  animation: bubble 8s linear infinite;
}
.footer-section .dots div:nth-child(2) {
  top: 60%;
  left: 80%;
  animation: bubble 10s linear infinite;
}
.footer-section .dots div:nth-child(3) {
  top: 40%;
  left: 40%;
  animation: bubble 3s linear infinite;
}
.footer-section .dots div:nth-child(4) {
  top: 66%;
  left: 30%;
  animation: bubble 7s linear infinite;
}
.footer-section .dots div:nth-child(5) {
  top: 90%;
  left: 10%;
  animation: bubble 9s linear infinite;
}
.footer-section .dots div:nth-child(6) {
  top: 30%;
  left: 60%;
  animation: bubble 5s linear infinite;
}
.footer-section .dots div:nth-child(7) {
  top: 70%;
  left: 20%;
  animation: bubble 8s linear infinite;
}
.footer-section .dots div:nth-child(8) {
  top: 75%;
  left: 60%;
  animation: bubble 10s linear infinite;
}
.footer-section .dots div:nth-child(9) {
  top: 50%;
  left: 50%;
  animation: bubble 6s linear infinite;
}
@keyframes bubble {
  0% {
    transform: scale(0) translateY(0) rotate(70deg);
  }
  100% {
    transform: scale(1) translateY(-100px) rotate(360deg);
  }
}
@keyframes Wave_Water {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}
@keyframes Reverse_Wave_Water {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}
.copyright-section {
  padding: 20px 0;
  background: var(--bs-body-color);
  color: var(--clr1);
}
.msg-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  background: radial-gradient(
        35.36% 35.36% at 100% 25%,
        #0000 66%,
        #def3ff 68% 70%,
        #0000 72%
      )
      32px 32px / calc(2 * 32px) calc(2 * 32px),
    radial-gradient(
        35.36% 35.36% at 0 75%,
        #0000 66%,
        #def3ff 68% 70%,
        #0000 72%
      )
      32px 32px / calc(2 * 32px) calc(2 * 32px),
    radial-gradient(
        35.36% 35.36% at 100% 25%,
        #0000 66%,
        #def3ff 68% 70%,
        #0000 72%
      )
      0 0 / calc(2 * 32px) calc(2 * 32px),
    radial-gradient(
        35.36% 35.36% at 0 75%,
        #0000 66%,
        #def3ff 68% 70%,
        #0000 72%
      )
      0 0 / calc(2 * 32px) calc(2 * 32px),
    repeating-conic-gradient(#ffffff 0 25%, #0000 0 50%) 0 0 / calc(2 * 32px)
      calc(2 * 32px),
    radial-gradient(#0000 66%, #def3ff 68% 70%, #0000 72%) 0 calc(32px / 2) /
      32px 32px #ffffff;
}
/* =============past conferencess section code start ============== */
.attraction__thumb img {
  border-radius: 12px;
  object-fit: cover;
  height: 100%;
  max-height: 250px;
}
.attraction__info:hover .attraction__thumb img {
  transform: scale(1.1);
  transition: all 0.5s linear;
}
.attraction__thumb {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.notification-title {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 2px solid #ccc;
  border-radius: 20px solid #ccc;
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.notification-area a {
  text-decoration: none;
  color: inherit;
}
.notification-area a:hover {
  text-decoration: none;
  color: inherit;
}
.notification-title ul {
  padding: 0 10px;
  margin: 0;
  list-style: none;
  position: absolute;
  animation: scrollUp 15s linear infinite;
  background-color: transparent;
}
.notification-title ul li {
  padding: 15px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.notification-title li:nth-child(odd) {
  background-color: #007bff;
  color: white;
}
.notification-title li:nth-child(even) {
  background-color: #28a745;
  color: white;
}
.notification-title ul:hover {
  animation-play-state: paused;
}
@keyframes scrollUp {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}
@media (max-width: 768px) {
  .notification-title {
    height: 200px;
  }
}
/* Office Bearers Section */
.office-bearers-section {
  padding: 3rem 0;
  background-color: #f9f9f9;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}
/* Team Categories */
.team-category {
  margin-bottom: 2rem;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically if needed */
  /* Allow multiple rows if needed */
}
.category-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 0.5rem;
}
.category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}
.team-grid {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically if needed */
  flex-wrap: wrap; /* Allow multiple rows if needed */
  gap: 1rem; /* Space between team members */
}
.leadership-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.special-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
/* Team Member Cards */
.team-member {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  width: 100%;
  max-width: 250px;
  text-align: center;
  padding: 1rem;
}
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.member-role {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}
.member-photo {
  width: 180px;
  height: 180px;
  /*border-radius: 50%;*/
  border-radius: 10%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-color);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.member-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}
.member-country {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}
/* Institution Members */
.institution-grid {
  /* display: grid; */
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  justify-content: center;
  justify-items: center;
  flex-wrap: wrap;
}
.institution-member {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  /* width: 27%; */
  justify-content: center;
}
.institution-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.institution-logo {
  width: 200px;
  height: 100px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.institution-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.institution-name {
  font-weight: 600;
  color: var(--dark-color);
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .leadership-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (max-width: 768px) {
  .institution-member {
    flex-wrap: wrap;
  }
  .section-title {
    font-size: 2rem;
  }
  .category-title {
    font-size: 1.5rem;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .leadership-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .member-photo {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .institution-member {
    flex-wrap: wrap;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .team-member {
    max-width: 100%;
  }
  .institution-grid {
    grid-template-columns: 1fr;
  }
}
/* ======= Honorary Members Section ======= */
/* Custom enhancements */
#honorary-members {
  font-family: "roboto", sans-serif;
}
.table-hover tbody tr:hover {
  background-color: rgba(52, 152, 219, 0.1);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .table-responsive {
    border: 0;
  }
  .table thead {
    display: none;
  }
  .table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
  }
  .table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
  }
  .table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #3498db;
    margin-right: 1rem;
  }
  .table td:last-child {
    border-bottom: 0;
  }
}
/* ======= Honorary Fellows Section ======= */
/* Base Styles */
.honorary-fellows-section {
  font-family: "roboto", sans-serif;
  padding: 40px 20px;
  background-color: #f9f9f9;
}
.fellows-container {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.title-decoration {
  height: 3px;
  width: 80px;
  background: linear-gradient(to right, #3498db, #2c3e50);
  margin: 0 auto;
}
.fellows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}
.fellow-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 280px;
}
.fellow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.fellow-avatar {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
}
.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #3498db;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.founder-avatar {
  background-color: #2c3e50;
}
.fellow-info {
  padding: 20px;
  text-align: center;
}
.fellow-name {
  margin: 0 0 5px;
  color: #2c3e50;
  font-size: 1.2rem;
}
.fellow-title {
  margin: 0;
  color: #7f8c8d;
  font-size: 0.9rem;
}
.no-results {
  text-align: center;
  grid-column: 1 / -1;
  color: #7f8c8d;
  font-style: italic;
}
/* Founders Section Specific Styles */
.founders-section .section-title {
  color: var(--text-color);
}
.founders-section .title-decoration {
  background: linear-gradient(to right, #2c3e50, #3498db);
}
/* Responsive Design */
@media (max-width: 1024px) {
  .fellows-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .fellows-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  .fellow-avatar {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .honorary-fellows-section {
    padding: 30px 15px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .fellows-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .fellow-card {
    max-width: 100%;
  }
}
/* ======= CME Section ======= */
.hover-shadow {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-shadow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.cme-item {
  transition: all 0.3s ease;
}
.list-view .cme-item {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
.list-view .card {
  flex-direction: row !important;
}
.list-view .card-body {
  flex: 1;
}
.list-view .card-footer {
  width: 150px;
  border-left: 1px solid rgba(0, 0, 0, 0.125) !important;
  display: flex;
  align-items: center;
}
.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Contact Section */
/* Contact Info Section */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.contact-card {
  flex: 1 1 300px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.contact-card .contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
  color: white;
  font-size: 30px;
}
.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.contact-card p {
  color: var(--text-light);
  margin-bottom: 10px;
}
.contact-card a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-card a:hover {
  color: var(--accent-color);
}
/* Contact Form Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.contact-form {
  flex: 1 1 600px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "roboto", sans-serif;
  font-size: 16px;
  transition: border 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}
.btn-reset {
  background: var(--light-color);
  color: var(--text-color);
  margin-left: 10px;
}
.btn-reset:hover {
  background: #bdc3c7;
}
/* Social Media Section */
.social-media {
  flex: 1 1 300px;
}
.social-media h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.3s, background 0.3s;
}
.social-icon:hover {
  transform: translateY(-5px);
  background: var(--secondary-color);
}
/* Map Section */
.map-container {
  margin-bottom: 40px;
}
.map-container h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Form Messages */
.form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: none;
}
.success {
  background: #d4edda;
  color: #155724;
  display: block;
}
.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}
/* Responsive Design */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
  .contact-card {
    flex: 1 1 100%;
  }
  .contact-container {
    flex-direction: column;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .map-iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
  .contact-form,
  .social-media {
    padding: 20px;
  }
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .btn-reset {
    margin-left: 0;
  }
}
