/* Floating Chat Button */
.floating-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #008FD5;
  color: #fff;
  border: none;
  /* Rounded corners for a pill shape */
  border-radius: 30px; 
  /* Reduce top/bottom padding, keep left/right wide enough for text */
  padding: 10px 30px;
  /* Larger font size */
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  /* Display inline-flex to align icon and text horizontally */
  display: inline-flex;
  align-items: center;
  /* **Center** icon & text horizontally */
  justify-content: center;
  /* Space between icon and text */
  gap: 12px;

  /* Keep the button from overflowing when we add our "shine" effect */
  overflow: hidden;
  /* Slightly emphasize button with a subtle box-shadow */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Make the icon larger as well */
.floating-chat-btn i {
  font-size: 28px;
  color: #fff;
}

/* SHINE (shimmer) EFFECT:
  Using ::after pseudo-element and keyframes
  to move a white gradient across the button */
.floating-chat-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  /* A gradient that is semi-transparent in the middle to create the shine */
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%,
                                  rgba(255,255,255,0.4) 50%,
                                  rgba(255,255,255,0) 100%);
  /* Shimmering forever with a slight delay added */
  animation: shine 2s infinite 0.5s; 
}

/* Keyframes for the shine effect */
@keyframes shine {
  0% {
      left: -75%;
  }
  50% {
      left: 125%;
  }
  100% {
      left: 125%;
  }
}

/* Background Overlay */
.chat-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 999; /* Just below the popup */
}

/* Chat Popup Container - Centered */
.chat-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the popup */
  width: 400px;
  max-width: 90%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

/* Fade in animation for popup */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Chat Popup Header */
.chat-popup-header {
  background-color: #008FD5;
  color: #fff;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-popup-header span {
  font-size: 18px;
  font-weight: 600;
}

.chat-popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s;
}

.chat-popup-close:hover {
  transform: scale(1.2);
}

/* Chat Popup Body */
.chat-popup-body {
  padding: 20px;
}

/* Form Fields */
.chat-popup-body form select,
.chat-popup-body form input,
.chat-popup-body form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.chat-popup-body form select:focus,
.chat-popup-body form input:focus,
.chat-popup-body form textarea:focus {
  border-color: #008FD5;
  outline: none;
}

/* Submit Button */
.chat-popup-body form button {
  width: 100%;
  padding: 12px;
  background-color: #008FD5;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.chat-popup-body form button:hover {
  background-color: #0077B5;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
  .chat-popup {
      width: 90%;
  }
  .floating-chat-btn {
      /* Slightly smaller button on mobile */
      padding: 8px 20px;
      font-size: 16px;
  }
  .floating-chat-btn i {
      font-size: 22px;
  }
}





/* 1) Container for icons */
.topbar__social,
.mobile-nav__social {
  display: flex;
  align-items: center;
  position: relative;
}

/* 2) No background / padding on all icons */
.topbar__social a,
.mobile-nav__social a {
  margin-left: 16px;
  font-size: 1.2em;
  color: #555;               /* desktop default */
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  text-decoration: none;
  position: relative;
}

/* 3) Remove left margin on first icon */
.topbar__social a:first-child,
.mobile-nav__social a:first-child {
  margin-left: 0;
}

/* 4) Vertical separator */
.topbar__social a + a::before,
.mobile-nav__social a + a::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #ccc;
}

/* 5) Brand colours on desktop (overrides #555) */
.topbar__social a[title*="LinkedIn"] i,
.mobile-nav__social a[title*="LinkedIn"] i {
  color: #0A66C2;
}
.topbar__social a[title*="Facebook"] i,
.mobile-nav__social a[title*="Facebook"] i {
  color: #1877F2;
}
.topbar__social a[title*="WhatsApp"] i,
.mobile-nav__social a[title*="WhatsApp"] i {
  color: #25D366;
}

/* 6) Mobile-only: force white icons & lighter separators */
@media (max-width: 767px) {
  .mobile-nav__social a i {
    color: #fff !important;
  }
  .mobile-nav__social a + a::before {
    background: rgba(255,255,255,0.4) !important;
  }
}

/* 7) Fallback pop-over for desktop share */
.share-fallback {
  display: none;
  position: absolute;
  top: 2.5em;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 0.5em;
  border-radius: 4px;
  flex-direction: column;
  z-index: 10;
}
.share-fallback.show {
  display: flex;
}
.share-fallback a {
  font-size: 0.9em;
  color: #333;
  text-decoration: none;
  padding: 0.25em 0.5em;
}
.share-fallback a + a {
  margin-top: 0.25em;
}

.topbar__social {
padding-top: 5px;
padding-bottom: 5px;

}
/* Desktop topbar icons, twice as large (2.4em) */
.topbar__social a {
  font-size: 1em;   /* ↑ doubled from 1.2em */
}

/* Mobile nav icons remain at 1.2em */
.mobile-nav__social a {
  font-size: 1em;
}



@media (min-width: 768px) {
  .topbar__social a {
    font-size: 1.5em;
  }
}
@media (max-width: 767px) {
  .mobile-nav__social a {
    font-size: 1.5em;
  }
}

/* make download & share icons your signature blue */
.topbar__social .fas.fa-download,
.topbar__social .fas.fa-share-alt,
.mobile-nav__social .fas.fa-download,
.mobile-nav__social .fas.fa-share-alt {
  color: #008FD5 !important;
}

/* optional: hover state */
.topbar__social .fas.fa-download:hover,
.topbar__social .fas.fa-share-alt:hover,
.mobile-nav__social .fas.fa-download:hover,
.mobile-nav__social .fas.fa-share-alt:hover {
  color: #005A9C !important; /* a slightly darker blue on hover */
}
/* unify all social/download/share icons to #008FD5 */
.topbar__social i,
.mobile-nav__social i {
  color: #008FD5 !important;
}

/* optional: slightly darker on hover */
.topbar__social a:hover i,
.mobile-nav__social a:hover i {
  color: #005A9C !important;
}


.introduction-one__image__caption__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* circle */
.cert-circle {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* icon */
.cert-circle i {
  color: #fff;
  font-size: 1.5rem;
}

/* text block */
.cert-text p {
  margin: 0;
  color: #fff;         /* adjust if your background isn't dark */
  line-height: 1.2;
  font-weight: 500;
  font-size: 0.9rem;   /* tweak as desired */
}


/* Section styling */
.offer-section {
  background-color: #f5f7fa;
  padding: 110px 20px 100px; /* added 20px horizontal padding */
  margin-top: -40px;
}
.offer-container {
  max-width: 1128px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Header */
.offer-header {
  text-align: center;
  margin-bottom: 50px;
}
.offer-title {
  font-family: Roboto, sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -1px;
}
.offer-title .highlight {
  font-weight: 500;
}
.offer-underline {
  width: 32px;
  height: 2px;
  background-color: #0075c9;
  margin: 24px auto 0;
}

/* Grid layout */
.offer-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.offer-item {
  flex: 1 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
    margin: 10px 0px;
  background-color: #fff;
  padding: 25px;
  border-radius: 4px;
  transition: background 0.3s;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 992px) {
  .offer-item {
    flex: 1 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  .offer-item {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* Icon + CTA */
.offer-icon {
  position: relative;
  margin-bottom: 12px;
}
.offer-icon img {
  max-width: 40px;
  height: auto;
  transition: opacity 0.3s;
}
.offer-icon .hover-cta {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.25rem 0.75rem;
  background: #fff;
  color: #008FD5;
  font-size: 0.875rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

/* Text */
.offer-name {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px;
  transition: color 0.3s;
}
.offer-desc {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #464e58;
  margin: 0;
  transition: color 0.3s;
}

/* Hover state */
.offer-item:hover {
  background-color: #008FD5;
}
.offer-item:hover .offer-icon img {
  opacity: 0;
}
.offer-item:hover .offer-icon .hover-cta {
  display: inline-block;
  opacity: 1;
}
.offer-item:hover .offer-name,
.offer-item:hover .offer-desc {
  color: #fff;
}

.how-works-two__single__title {
  position: relative;
  transition: color 0.3s;
}

.how-works-two__single__title::after {
  content: "";
  position: absolute;
  bottom: -4px;      /* gap below title */
  left: 0;           /* align left edge */
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s ease;  /* slower animation */
}

/* Hover state: title turns white, underline grows */
.how-works-link:hover .how-works-two__single__title {
  color: #fff;
}
.how-works-link:hover .how-works-two__single__title::after {
  width: 70%;
}

/* 1. Ensure the fade transition */
.floating-chat-btn {
  transition: opacity 0.3s ease;
}

/* 2. Hidden state */
.floating-chat-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
