/* KES Custom Styles for Homepage */

/* Custom Video Modal - Replacing Magnific Popup */
.custom-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.custom-video-modal.show {
  display: flex;
}

.custom-video-container {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 90vw;
  max-height: 90vh;
}

.custom-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.custom-video-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Quick Links Section */
.quicklinks-area {
  background-color: #f8f9fa !important;
}

.quicklink-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.quicklink-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218, 41, 28, 0.15);
}

.quicklink-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--theme-color), #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.quicklink-icon i {
  font-size: 24px;
  color: white;
}

.quicklink-card:hover .quicklink-icon {
  transform: scale(1.1);
}

.quicklink-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  font-family: var(--title-font);
}

.quicklink-title a {
  color: var(--title-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.quicklink-title a:hover {
  color: var(--theme-color);
}

.quicklink-text {
  color: var(--body-color);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* External Links Cards */
.external-link-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-left: 4px solid var(--theme-color);
}

.external-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
  font-family: var(--title-font);
}

.external-text {
  color: var(--body-color);
  margin-bottom: 20px;
  font-size: 14px;
}

/* Event Banner Cards */
.event-banner-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.event-banner-card:hover {
  transform: translateY(-5px);
}

.event-banner-thumb {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.event-banner-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-banner-card:hover .event-banner-thumb img {
  transform: scale(1.05);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(218, 41, 28, 0.9), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-banner-card:hover .event-overlay {
  opacity: 1;
}

.event-content {
  text-align: center;
  padding: 30px;
}

.event-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--title-font);
}

.event-text {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Video Section Enhancements */
.video-thumb {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(218, 41, 28, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-play-btn:hover {
  background: var(--theme-color);
  transform: translate(-50%, -50%) scale(1.1);
  color: white;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(218, 41, 28, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  70% {
    transform: scale(1.2);
    opacity: 0;
  }

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

/* Newsletter Section */
.newsletter-area {
  background-color: #ffffff;
}

.newsletter-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.newsletter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218, 41, 28, 0.15);
}

.newsletter-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.newsletter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.newsletter-card:hover .newsletter-thumb img {
  transform: scale(1.05);
}

.newsletter-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--theme-color);
  color: white;
  border-radius: 10px;
  padding: 10px 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(218, 41, 28, 0.3);
}

.newsletter-date .month {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.newsletter-date .day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.newsletter-content {
  padding: 25px;
}

.newsletter-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px;
  font-family: var(--title-font);
}

.newsletter-title a {
  color: var(--title-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  line-height: 1.3;
}

.newsletter-title a:hover {
  color: var(--theme-color);
}

.newsletter-text {
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.download-link {
  color: var(--theme-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: var(--title-color);
}

.download-link i {
  margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .quicklink-card {
    padding: 20px 15px;
  }

  .quicklink-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .quicklink-icon i {
    font-size: 20px;
  }

  .quicklink-title {
    font-size: 16px;
  }

  .event-banner-thumb {
    height: 250px;
  }

  .event-title {
    font-size: 20px;
  }

  .external-link-card {
    margin-bottom: 20px;
  }

  .newsletter-card {
    margin-bottom: 30px;
  }

  .newsletter-thumb {
    height: 180px;
  }

  .newsletter-content {
    padding: 20px;
  }

  .newsletter-title {
    font-size: 16px;
  }

  .newsletter-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .download-link {
    font-size: 13px;
  }
}


.header-logo {
  width: 150px;
  height: auto;
}

/* Header Social Media Icons */
.social-links-header {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  color: white !important;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icon-header:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icon-header i {
  color: white !important;
  transition: color 0.3s ease;
}

.social-icon-header:hover i {
  color: white !important;
}

/* Ensure social icons are visible on dark backgrounds */
.header-top .social-links-header .social-icon-header {
  color: white !important;
}

.header-top .social-links-header .social-icon-header i {
  color: white !important;
}

/* KES Menu Styling */
.kes-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.kes-menu li {
  margin: 0 !important;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* Override existing header-links margin specifically for KES menu */
.header-links .kes-menu li:not(:last-child) {
  margin: 0 0px 0 0 !important;
}

.kes-menu li:not(:last-child)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.4);
  margin: 0 6px;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.kes-menu li a {
  display: block;
  padding: 6px 4px;
  color: white !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 0;
  line-height: 1.2;
}

.kes-menu li a:hover {
  color: #f8f9fa !important;
  text-decoration: underline;
}

.kes-menu li:first-child a {
  padding-left: 0;
}

.kes-menu li:last-child a {
  padding-right: 0;
}

/* Responsive design for KES menu */
@media (max-width: 1200px) {
  .kes-menu li a {
    font-size: 12px;
    padding: 5px 3px;
  }

  .kes-menu li:first-child a {
    padding-left: 0;
  }

  .kes-menu li:last-child a {
    padding-right: 0;
  }

  .kes-menu li:not(:last-child)::after {
    margin: 0 5px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .kes-menu {
    display: none;
  }
}

/* Fix dropdown menu positioning and display issues */
.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.main-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .sub-menu li a {
  color: var(--title-color) !important;
  padding: 8px 20px;
  display: block;
  font-size: 14px;
  transition: all 0.3s ease;
}

.main-menu .sub-menu li a:hover {
  background: var(--theme-color);
  color: white !important;
}

/* Ensure proper stacking order */
.sticky-wrapper {
  position: relative;
  z-index: 999;
}

.menu-area {
  position: relative;
  z-index: 999;
}

/* Fix mobile menu positioning */
.th-menu-wrapper {
  z-index: 9999;
}

/* Fix footer menu icons - replace square boxes with proper icons */
.footer-widget .widget_nav_menu .menu li {
  position: relative;
  padding-left: 0;
}

/* Stronger override to remove all square box content */
.footer-widget .widget_nav_menu .menu li::before,
.footer-widget .widget_nav_menu .menu li::after,
.footer-widget .menu li::before,
.footer-widget .menu li::after,
.widget_nav_menu .menu li::before,
.widget_nav_menu .menu li::after {
  content: '' !important;
  display: none !important;
}

/* Remove any existing content from anchor elements */
.footer-widget .widget_nav_menu .menu li a::before,
.footer-widget .menu li a::before {
  content: none !important;
  display: none !important;
}

/* Add proper FontAwesome chevron icons */
.footer-widget .widget_nav_menu .menu li a,
.footer-widget .menu li a {
  position: relative;
  padding-left: 20px;
}

.footer-widget .widget_nav_menu .menu li a::before,
.footer-widget .menu li a::before {
  content: '▶' !important;
  /* Simple arrow as fallback */
  font-family: Arial, sans-serif !important;
  font-weight: normal !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--theme-color) !important;
  font-size: 10px !important;
  display: inline-block !important;
  opacity: 0.8;
}

.footer-widget .widget_nav_menu .menu li a:hover::before,
.footer-widget .menu li a:hover::before {
  opacity: 1 !important;
}

/* Fix chat icon display - Replace broken SVG with FontAwesome icon */
.client-group-wrap .title a img[src*="chat2.svg"] {
  display: none !important;
}

.client-group-wrap .title a::before {
  content: '\f4ad' !important;
  /* FontAwesome comments icon */
  font-family: 'Font Awesome 5 Free', 'FontAwesome' !important;
  font-weight: 900 !important;
  color: white !important;
  font-size: 16px !important;
  margin-right: 8px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Fix scroll-to-top button - add arrow up icon */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(218, 41, 28, 0.3);
}

.scroll-top:hover {
  background: #c8251a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 41, 28, 0.4);
}

.scroll-top::before {
  content: '\f077' !important;
  /* FontAwesome arrow-up */
  font-family: 'Font Awesome 5 Free', 'FontAwesome' !important;
  font-weight: 900 !important;
  color: white !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hide the SVG circle if it's causing issues */
.scroll-top .progress-circle {
  display: none;
}

/* Alternative simple arrow if FontAwesome doesn't work */
.scroll-top::after {
  content: '↑' !important;
  font-family: Arial, sans-serif !important;
  color: white !important;
  font-size: 20px !important;
  font-weight: bold !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/* Instagram Section Styling */
.th-widget-instagram .instagram-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 5px 0 15px 0;
  font-weight: 500;
}

.th-widget-instagram .instagram-follow-btn {
  margin-top: 15px;
  text-align: center;
}

.th-widget-instagram .instagram-follow-btn .th-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.th-widget-instagram .instagram-follow-btn .th-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
  color: white;
}

.th-widget-instagram .instagram-feeds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 15px;
}

.th-widget-instagram .insta-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.th-widget-instagram .insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.th-widget-instagram .insta-thumb:hover img {
  transform: scale(1.1);
}

.th-widget-instagram .insta-thumb .insta-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.th-widget-instagram .insta-thumb:hover .insta-btn {
  opacity: 1;
}

.th-widget-instagram .insta-btn i {
  color: white;
  font-size: 16px;
}



.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.footer-logo img {
  width: 110px;
  height: auto;
  flex-shrink: 0;
}

.footer-logo h4 {
  color: #FFFFFF;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-logo:hover h4 {
  color: var(--theme-color);
  transition: color 0.3s ease;
}

.discount-wrapp .logo {
  height: 104px
}

/* Sidebar Menu Fixes */
/* White social media icons in sidebar */
.sidemenu-wrap .social-menu li a {
  color: white !important;
}

.sidemenu-wrap .social-menu li a i {
  color: white !important;
  font-size: 16px;
}

.sidemenu-wrap .social-menu li a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.sidemenu-wrap .social-menu li a:hover i {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Fix search close button icon */
.searchClose {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  transition: opacity 0.3s ease;
}

.searchClose:hover {
  opacity: 0.7;
}

.searchClose i {
  color: white;
  font-size: 18px;
}

/* About Us Image Collage Enhancement */
.img-box4 .img3,
.img-box4 .img4,
.img-box4 .img5,
.img-box4 .img6,
.img-box4 .img7,
.img-box4 .img8 {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid white;
}

.img-box4 .img3:hover,
.img-box4 .img4:hover,
.img-box4 .img5:hover,
.img-box4 .img6:hover,
.img-box4 .img7:hover,
.img-box4 .img8:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Floating animation for the additional images */
@keyframes float {

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

  50% {
    transform: translateY(-10px);
  }
}

.img-box4 .img3 {
  animation: float 6s ease-in-out infinite;
}

.img-box4 .img4 {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.img-box4 .img5 {
  animation: float 5s ease-in-out infinite;
  animation-delay: 2s;
}

.img-box4 .img6 {
  animation: float 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.img-box4 .img7 {
  animation: float 5.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.img-box4 .img8 {
  animation: float 6.5s ease-in-out infinite;
  animation-delay: 3s;
}

/* Quick Links Section Styling */
.quick-links-section {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.quick-links-section .quick-links-card {
  pointer-events: all;
}

.quick-links-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  width: 480px;
  max-width: 480px;
}

.quick-links-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  text-align: left;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  min-height: 36px;
}

.quick-link-item:hover {
  background-color: #f9fafb;
  color: #d42c27;
  text-decoration: underline;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-link-item i {
  color: #d42c27;
  font-size: 14px;
  min-width: 16px;
  text-align: center;
}

.quick-link-item .external-icon {
  color: #9ca3af;
  font-size: 10px;
  margin-left: auto;
}

.quick-link-item:hover .external-icon {
  color: #d42c27;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .quick-links-section {
    position: static;
    transform: none;
    margin-top: -100px;
    margin-bottom: 50px;
  }

  .quick-links-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .quick-links-section {
    margin-top: -80px;
    padding: 0 15px;
  }

  .quick-links-card {
    min-width: auto;
    padding: 25px 20px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-link-item {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* Old tooltip CSS - replaced with Bootstrap tooltips */
/* img[title] {
  transition: none !important;
}

img[title]:hover {
  position: relative;
}

* {
  -webkit-tooltip-delay: 0ms !important;
  -moz-tooltip-delay: 0ms !important;
  tooltip-delay: 0ms !important;
} */

/* Footer darker green background */
.footer-wrapper,
.th-footer,
footer {
  background-color: #0A1F0A !important;
  background-image: none !important;
}

/* Bootstrap Tooltip Styling */
.tooltip {
  font-family: var(--body-font, Arial, sans-serif);
  font-size: 12px;
  z-index: 10000;
}

.tooltip .tooltip-inner {
  background-color: #042A1A;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  max-width: 200px;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #042A1A;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #042A1A;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #042A1A;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #042A1A;
}

/* Ensure footer content has proper contrast */
.footer-wrapper *,
.th-footer *,
footer * {
  color: inherit;
}

.footer-widget .widget_title {
  color: #ffffff !important;
}

/* Enhanced footer about text for better readability */
.footer-wrapper .about-text,
.th-footer .about-text,
footer .about-text {
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced about text in main content areas for better readability */
.about-text {
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Sidebar menu text enhancements */
.sidemenu-wrap .about-text,
.sidemenu-content .about-text {
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}