a:focus,
a:hover {
  color: #f58136 !important;
  text-decoration: underline;
}
.governing-council {
  position: relative;
  background: linear-gradient(90deg, rgb(0 96 175) 0%, rgb(219 137 84) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0px;
}
/* Background circles pattern exactly like the image */
.governing-council::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.08) 25%, transparent 25%), radial-gradient(circle at 85% 30%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.05) 30%, transparent 30%), radial-gradient(circle at 45% 60%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.06) 20%, transparent 20%), radial-gradient(circle at 75% 80%, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.04) 35%, transparent 35%), radial-gradient(circle at 25% 75%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.07) 15%, transparent 15%);*/
  z-index: 0;
  background: url("../../content/governing-council-bg.png");
}
.governing-council-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: url("../../content/governing-council-bg.png");
  border-radius: 20px !important;
}
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 1400px;
  width: 100%;
}
.description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  font-weight: 300;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
.honorary-members {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-bottom: 100px;
  align-items: center;
}
.member-card {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
}
.member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
    border: 3px solid;
    border-color: rgb(245 129 54);
  margin-bottom: 0;
  margin-right: 0;
  overflow: hidden;
  /*position: relative;*/
  flex-shrink: 0;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Placeholder for person image */
.member-photo.male::before,
.member-photo.female::before {
  content: "";
  position: absolute;
  left: 41%;
  top: 81%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Male flag */
.member-photo.male::before {
  background-image: url(../../content/india-flag.png);
}

/* Female flag */
/* .member-photo.female::before {
  background-image: url(../../content/greece-flag.png);
} */

/* Hide flags on small screens */
@media (max-width: 1200px) {
  .member-photo.male::before,
  .member-photo.female::before {
    display: none;
  }
}

.flag-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 22px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid white;
}
.flag-india {
  background: linear-gradient(
    to bottom,
    #ff9933 33.33%,
    white 33.33%,
    white 66.66%,
    #138808 66.66%
  );
  position: relative;
}
.flag-india::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="%23000080" stroke-width="1"/><path d="M12 2 L14 8 L22 8 L16 12 L18 20 L12 16 L6 20 L8 12 L2 8 L10 8 Z" fill="%23000080" stroke="%23000080" stroke-width="0.5"/></svg>')
    center/contain;
}
.flag-greece {
  background: linear-gradient(
    to bottom,
    #0d5eaf 0%,
    #0d5eaf 11.11%,
    white 11.11%,
    white 22.22%,
    #0d5eaf 22.22%,
    #0d5eaf 33.33%,
    white 33.33%,
    white 44.44%,
    #0d5eaf 44.44%,
    #0d5eaf 55.55%,
    white 55.55%,
    white 66.66%,
    #0d5eaf 66.66%,
    #0d5eaf 77.77%,
    white 77.77%,
    white 88.88%,
    #0d5eaf 88.88%,
    #0d5eaf 100%
  );
  position: relative;
}
.flag-greece::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 55.55%;
  background: #0d5eaf;
}
.flag-greece::after {
  content: "+";
  position: absolute;
  top: 27.5%;
  left: 20%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 8px;
  font-weight: bold;
}
.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.member-info {
  display: flex;
  flex-direction: column;
}
.member-title {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .honorary-members {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  .description {
    font-size: 1rem;
    margin-bottom: 60px;
  }
  .honorary-members {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
  }
  .member-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .member-photo {
    width: 160px;
    height: 160px;
  }
}
/*---carousel-container---*/
.carousel-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  overflow: hidden;
}
.title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}
.title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #e74c3c, #f39c12);
  margin: 15px auto;
  border-radius: 2px;
}
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 30px;
}
.speaker-card {
  flex: 0 0 220px;
  text-align: center;
  /*padding: 20px;*/
  border-radius: 15px;
  transition: all 0.3s ease;
  /*background: linear-gradient(145deg, #ffffff, #f8f9fa);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);*/
}
.speaker-card:hover {
  /*transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);*/
}
.speaker-card.highlighted {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
  background: linear-gradient(145deg, #f8f9fa, #e3f2fd);
}
.speaker-card.highlighted .speaker-image {
  border-color: #2196f3;
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
}
.speaker-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid #e3f2fd;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.speaker-card:hover .speaker-image {
  border-color: #2196f3;
  transform: scale(1.05);
}
.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.speaker-card:hover .speaker-image img {
  transform: scale(1.1);
}
.speaker-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.speaker-title {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 5px;
}
.speaker-org {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #3498db, #2980b9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  z-index: 10;
}
.nav-button:hover {
  background: linear-gradient(45deg, #2980b9, #3498db);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}
.nav-button:active {
  transform: translateY(-50%) scale(0.95);
}
.prev {
  left: -25px;
}
.next {
  right: -25px;
}
.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: #e74c3c;
  transform: scale(1.2);
}
.dot:hover {
  background: #34495e;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .carousel-container {
    padding: 40px 20px;
  }
  .title {
    font-size: 2rem;
  }
  .speaker-card {
    flex: 0 0 180px;
  }
  .speaker-image {
    width: 100px;
    height: 100px;
  }
  .speaker-name {
    font-size: 1.1rem;
  }
  .speaker-title {
    font-size: 0.85rem;
  }
  .nav-button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .speaker-card {
    flex: 0 0 160px;
  }
}
.subscription-container {
  border-radius: 8px;
}
.subscription-form {
  display: flex;
  max-width: 500px;
  border-radius: 6px;
  overflow: hidden;
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);*/
}
.email-input {
  flex: 1;
  padding: 18px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #7f8c8d;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 6px 0px 0px 6px;
}
.email-input::placeholder {
  color: #bdc3c7;
  font-weight: normal;
}
.subscribe-button {
  padding: 18px 30px;
  background-color: #f58136;
  color: #ffffff;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: Arial, sans-serif;
}
.subscribe-button:hover {
  background-color: #f58136;
}
.subscribe-button:active {
  background-color: #a93226;
}
/* Responsive design */
/*@media (max-width: 600px) {
  .subscription-form {
    flex-direction: column;
    max-width: 300px;
  }
  .email-input {
    border-radius: 6px 6px 0 0;
  }
  .subscribe-button {
    border-radius: 0 0 6px 6px;
  }
}*/

.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.ftpScheduleList li {
  position: relative;
  margin-bottom: 7px;
}
.ftpScheduleList li a {
  color: #c0d2de;
}
@media (min-width: 576px) {
  .ftpScheduleList li {
    padding-left: 27px;
  }
}
@media (min-width: 576px) {
  .ftpScheduleList .icn {
    left: 0;
    top: 5px;
    position: absolute;
  }
}
.ftpScheduleList .icn {
  font-size: 15px;
}
.foot {
  width: 100%;
  margin: 0;
  padding: 0;
}
.foot ul {
  margin: 0;
  padding: 0;
  justify-content: center !important;
  display: flex !important;
}
.foot ul li {
  margin: 0;
  padding: 0 9px;
  list-style: none;
  display: flex !important;
}
.foot ul li a {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .foot ul {
    margin: 0;
    padding: 0;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}
.top_languages:hover {
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5);
  color: #4935c5 !important;
}

.join-the-council {
  background: url(../../content/bg01.png);
  background-color: #f4f3f6;
  position: relative;
  overflow: hidden;
  border: 2px solid #f58136;
  border-radius: 20px;
  text-align: center;
  padding: 50px 0;
  background-position: center;
  parallax-opacity: 1;
}
.join-the-council::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 244, 246, 0.8);
  z-index: 1;
}
@keyframes moveBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.heading-animation {
  position: relative;
  line-height: 56px;
  margin-top: 0px;
  background-image: url(../../content/text-img.jpg);
  background-size: 250%;
  background-position: center;
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
  /*font-size: 2.85em;*/
  font-weight: 500;
  text-transform: uppercase;
  /*animation: moveBackground 30s linear infinite;*/
}

/* vishal */
.carousel-title {
  text-align: center;
  font-weight: bold;
  margin: 40px 0 20px;
  font-size: 24px;
}

.owl-carousel .item {
  text-align: center;
  padding: 15px;
}

.member-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid;
  border-color: rgba(253, 129, 55, 0.2);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

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

.owl-nav {
  position: absolute;
  top: 15%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: none;
  border: none;
  font-size: 28px;
  color: orange;
  outline: none;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #f58136;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: #ffa500;
  border: none;
  padding: 0px !important;
  font: inherit;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 0px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.container-chat {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 40px);
}

.demo-content {
  flex: 1;
  max-width: 600px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-right: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.demo-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e293b;
  line-height: 1.3;
}

.demo-content .highlight {
  color: #2563eb;
}

.demo-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #475569;
}

/* Compact Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  position: relative;
}

.chat-toggle:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.pulse-ring {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 3px solid #3da7ff;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  opacity: 0.5;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.chat-window {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 320px;
  height: 450px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease;
  border: 1px solid #e2e8f0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 35px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.header-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}

.header-text .status {
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0cffaf;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #fafbfc;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.welcome-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.welcome-card h4 {
  color: #1e293b;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.welcome-card p {
  color: #64748b;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.message {
  margin-bottom: 12px;
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.user {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.message.bot .message-bubble {
  background: white;
  color: #374151;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.message.user .message-bubble {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-bottom-right-radius: 4px;
}

.message-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 4px;
  text-align: right;
}

.message.bot .message-time {
  text-align: left;
}

.typing {
  display: none;
  padding: 10px 14px;
  background: white;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  max-width: 75%;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ca3af;
  animation: bounce 1.4s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.quick-btn {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-btn:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.input-area {
  padding: 16px;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #f8fafc;
  border-radius: 20px;
  padding: 4px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.input-wrapper:focus-within {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.chat-input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  outline: none;
  color: #374151;
}

.chat-input::placeholder {
  color: #9ca3af;
}

.send-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s;
}

.send-button:hover:not(:disabled) {
  transform: scale(1.05);
}

.send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Perfect Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .container-chat {
    flex-direction: column;
    padding: 10px;
  }

  .demo-content {
    margin-right: 0;
    margin-bottom: 80px;
    padding: 30px;
  }

  .demo-content h1 {
    font-size: 1.75rem;
  }

  .chat-window {
    width: calc(100vw - 20px);
    height: calc(100vh - 100px);
    right: 10px;
    left: 10px;
    bottom: 75px;
  }
}

@media screen and (max-width: 480px) {
  body {
    /* padding: 10px; */
  }

  .demo-content {
    padding: 20px;
  }

  .demo-content h1 {
    font-size: 1.5rem;
  }

  .demo-content p {
    font-size: 0.9rem;
  }

  .chatbot-container {
    right: 15px;
    bottom: 15px;
  }

  .chat-toggle {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .pulse-ring {
    width: 50px;
    height: 50px;
  }

  .chat-window {
    width: calc(100vw - 20px);
    height: calc(100vh - 85px);
    right: 10px;
    left: 10px;
    bottom: 70px;
  }
}

@media screen and (max-width: 360px) {
  .chat-window {
    width: calc(100vw - 16px);
    height: calc(100vh - 80px);
    right: 8px;
    left: 8px;
    bottom: 65px;
  }

  .quick-options {
    gap: 4px;
  }

  .quick-btn {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .chat-window {
    height: calc(100vh - 60px);
    bottom: 50px;
  }
}
.about-scrollbar {
  height: 320px;
  overflow-y: auto;
  padding: 0px 20px 0px 0px;
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 132, 52, 0.7) transparent;
}
.mb-top-margin {
  margin-top: 0px;
}
@media screen and (max-width: 500px) {
  .mb-top-margin {
    margin-top: 20px;
  }
  .about-scrollbar {
    height: auto;
    overflow-y: auto;
    padding: 0px 10px 0px 0px;
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 132, 52, 0.7) transparent;
  }
}
.npbBgPattern {
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.2;
  background-image: url(images/bgPattern2.jpg);
  background-size: cover;
  background-position: 50% 50%;
  height: 100% !important;
  width: 100% !important;
  position: absolute !important;
}
@media screen and (max-width: 500px) {
  .lsvr_person-post-archive--grid .post__thumbnail-link--cropped {
    display: block;
    width: 58%;
    height: 50%;
    padding-bottom: 54%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
  }
  .mt-top {
    margin-top: 30px;
  }
}
.text-uppercase {
  text-transform: uppercase !important;
}
.fw-normal {
  font-weight: 500 !important;
}


.logo-carousel{
    background: linear-gradient(90deg, rgb(0 96 175) 0%, rgb(219 137 84) 100%);
}

.logo-carousel {
  position: relative;
  padding: 50px 0;
  z-index: 1;
}

.logo-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../content/governing-council-bg.png');
  background-size: cover;
  z-index: -1; /* keeps it behind the content */
}


  .custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: none;
  }

  /* Popup Box */
  .custom-popup {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 950px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    padding: 30px;
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
    animation: fadeIn 0.3s ease-in-out;
  }

  /* Popup Header (Static - not scrolling) */
  .popup-header {
    margin-bottom: 15px;
    padding-right: 10px;
  }

  /* Scrollable Content */
  .popup-content {
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 10px;
    border-radius: 12px;
    scroll-behavior: smooth;
  }

  /* Custom Scrollbar (Modern Look) */
  .popup-content::-webkit-scrollbar {
    width: 8px;
  }

  .popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .popup-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff7f50, #ff6333);
    border-radius: 10px;
  }

  .popup-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6333, #ff4d1a);
  }

  /* Firefox scrollbar */
  .popup-content {
    scrollbar-width: thin;
    scrollbar-color: #ff7f50 #f1f1f1;
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #444;
    transition: 0.2s;
  }

  .close-btn:hover {
    color: #ff6333;
    transform: rotate(90deg);
  }

  /* Button */
  .read-more-btn {
    background-color: #ff7f50;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
  }

  .read-more-btn:hover {
    background-color: #ff6333;
    transform: translateY(-2px);
  }

  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -55%);
    }

    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  .join-section {
  background-color: #fff;
}

.join-box {
  border: 2px solid #f58220;
  border-radius: 20px;
  /*background:
  linear-gradient(rgba(244, 244, 246, 0.8), rgba(244, 244, 246, 0.8));*/
  background: url(../../content/patron-member-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}


.join-img {
  width: 80%;
  max-width: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.join-title {
  color: #222;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.join-text {
  font-weight: 600;
  font-size: 1.05em;
  color: #6f6e74;
  margin-bottom: 20px;
}

.join-btn {
  display: inline-block;
  background-color: #f58220;
  color: #fff;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background-color: #e96f00;
  color: #fff;
}

