.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image:nth-child(1) {
  top: 0;
  left: 2rem;
  transform: rotate(2deg);
  z-index: 10;
}

.hero-image:nth-child(2) {
  top: 10rem;
  right: -2rem;
  transform: rotate(-3deg);
  z-index: 11;
}

.hero-image:nth-child(3) {
  top: 17rem;
  left: 1rem;
  transform: rotate(1deg);
}

.d-none {
  display: none !important;
}

.pt-0 {
  padding-top: 0 !important
}

.pb-0 {
  padding-bottom: 0 !important
}

.newsletter-pdf-embed .df-container,
.df-container .df-bg {
  background-color: transparent !important;
}

/* Header styles start */

ul.primary-menu {
  display:flex;
  gap:28px;
  align-items:center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.primary-menu li.menu-item-has-children {
  position: relative;
}

.primary-menu > li > a {
  font-size: 16px;
  /*text-transform: uppercase;*/
  /*font-weight: 500;*/
}

/* Default arrow for any menu item with children */
.primary-menu li.menu-item-has-children > a,
.primary-menu li.has-mega > a {
    position: relative;
    padding-right: 14px;
}

/* Arrow icon using pseudo-element */
.primary-menu li.menu-item-has-children > a:before,
.primary-menu li.has-mega > a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s ease;
}

/* Rotate arrow when mega is open */
.primary-menu li.menu-item-has-children.active > a:before,
.primary-menu li.has-mega.active > a:before,
.primary-menu li.menu-item-has-children.active_mob a:before {
    transform: translateY(-40%) rotate(-135deg);
}

/* Mega panel */
.primary-menu li.menu-item-has-children > .sub-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background: #fff;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  /*pointer-events: none;*/
  transition:
      opacity .3s ease,
      transform .3s ease,
      visibility 0s .3s;
}

.primary-menu li.menu-item-has-children > .sub-menu {
  width: max-content;
  min-width: 200px;
  padding: 5px 5px;
  top: 50px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  /*gap: 15px;*/
  left: 0;
  /*transform: translate(-50%, 0px);*/
}

/* Show panel */

.primary-menu li.menu-item-has-children > .sub-menu li {
  padding: 5px 12px;
}

.primary-menu li.menu-item-has-children > .sub-menu li a {
  text-decoration: none;
  /*color: #444;*/
  font-size: 15px;
  transition: 0.2s ease;
  /*text-transform: capitalize;*/
}

/* header design with center logo */

/* Header Layout Container */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 15px 20px;
    height: 80px;
    gap: 50px;
    position: relative;
}

.header-container .nav-buttons {
  position: absolute;
  right: 0;
}

/* Navigation Columns */
.header-nav {
    flex: 1;
}

/*.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}*/

.nav-left ul {
    justify-content: flex-end; /* Pushes items toward the logo */
}

.nav-right ul {
    justify-content: flex-start; /* Pushes items toward the logo */
}

/* Center Logo Styling */
.header-logo-center {
  flex: 0 0 auto;
  padding: 25px 30px;
  text-align: center;
  position: relative;
  /*background: white;*/
  /*border-radius: 0px 0px 50% 50%;*/
  margin-top: 35px;
}

.header-logo-center:before {
  content: '';
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0px 0px 50% 50%;
}

/* Scale and Overflow Effect */
.header-logo-center .custom-logo {
    display: block;
    width: auto;
    height: 110px; /* Forces logo larger than the 80px header box */
    transform: translateY(10px); /* Drops logo down over the border */
    transition: transform 0.3s ease;
}

/* Responsive Mobile Fallback */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
    }
    .header-nav {
        display: none; /* Hide desktop split menus for a mobile hamburger menu */
    }
    .header-logo-center .custom-logo {
        height: 60px;
        transform: none;
    }
}

/* header design with center logo */

/* Header styles end */

.exec-team-card {
  position: relative;
}

.exec-team-card .team-avatar {
  margin-bottom: 0px;
  position: relative;
}

.exec-team-card .team-avatar img {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}

.exec-team-card .team-avatar:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.2) 40%,
    transparent
  );
}

.exec-team-name {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
}

.exec-team-role {
  position: absolute;
  top: 15px;
  padding: 2px 14px;
  background: white;
  /* color: white; */
  border-radius: 40px;
  font-size: 13px;
  left: 15px;
  margin-bottom: 0px;
  color: var(--primary-500);
}

/* ---------- Core Team Card ---------- */

.core-team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Avatar wrapper --- */
.avatar-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

/* Soft glowing aura behind the circle */
.aura {
  position: absolute;
  inset: -0.5rem;
  border-radius: 9999px;
  opacity: 0.2;
  filter: blur(6px);
  background: radial-gradient(circle, #0d7a5f, transparent);
  transition: opacity 0.3s ease;
}

.core-team-card:hover .aura {
  opacity: 0.4;
}

/* Gradient ring around the photo */
/*.ring {
  position: absolute;
  inset: -0.25rem;
  border-radius: 9999px;
  opacity: 0.6;
  background: linear-gradient(135deg, #0d7a5f, #14b889);
  transition: opacity 0.5s ease, transform 0.5s ease;
}*/

.core-team-card:hover .ring {
  opacity: 1;
  transform: scale(1.05);
}

/* Rotating dashed ring (appears on hover) */
.dashed-ring {
  position: absolute;
  inset: -0.75rem;
  border-radius: 9999px;
  border: 2px dashed #0d7a5f;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: spin 8s linear infinite;
}

.core-team-card:hover .dashed-ring {
  opacity: 0.3;
}

/* Circular photo */
.photo {
  position: relative;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.core-team-card:hover .photo {
  transform: scale(1.05);
}

/* Role dot indicator at bottom-right of circle */
.role-dot {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d7a5f;
  transition: transform 0.3s ease;
}

.role-dot::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
}

.core-team-card:hover .role-dot {
  transform: scale(1.1);
}

/* --- Name and role text --- */
.info {
  text-align: center;
  width: 100%;
}

.name {
  font-weight: 600;
  /*color: #1e293b;*/
  font-size: 16px;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.core-team-card:hover .name {
  color: #0d7a5f;
}

.role-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
  color: #0d7a5f;
  background-color: #e0f5ee;
  transition: all 0.2s ease;
}

/* --- Keyframes --- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.blog-related .badge,
.blog-dark-subscribe-section .badge {
  margin-bottom: 10px;
}
