/* ===========================
   BASE / RESET CSS
   =========================== */
/* Remove all default margin & padding */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove underline from all links */
a {
    text-decoration: none !important;
}


/* Remove list style from UL/OL */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Image responsive */
img {
    max-width: 100%;
    display: block;
}

/* Smooth font rendering */
body {
    font-family: sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #111;
}

/* Button default remove */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Input focus outline remove */
input,
textarea,
select {
    outline: none;
    border: none;
}

/* Remove default figure spacing */
figure {
    margin: 0;
    padding: 0;
}

    header {
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #fff;
    }

    /* Header Top */
    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 8%;
      background: linear-gradient(135deg, #36AFE1 0%, #0381b5 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ht-left {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap;
    }

    .ht-left p {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
      margin: 0;
    }

    .ht-left p i {
      color: #fff;
      font-size: 0.75rem;
      background: #f9a243;
      padding: 8px;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ht-left p a {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: inline-block;
      will-change: transform, color;
    }

    .ht-left p a:hover {
      color: #02c4d9;
      transform: translate3d(3px, 0, 0);
    }

    .ht-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .social-icon-link {
      width: 36px;
      height: 36px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.15);
      will-change: transform, background, box-shadow;
    }

    .social-icon-link:hover {
      background: #f9a243;
      border-color: transparent;
      transform: translate3d(0, -4px, 0) scale(1.05);
      box-shadow: 0 6px 20px rgba(2, 196, 217, 0.4);
    }

    .social-icon-link i {
      color: #fff;
      font-size: 0.875rem;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .social-icon-link:hover i {
      transform: scale(1.15) rotate(5deg);
    }

    /* Header Bottom */
    .header-bottom {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 18px 8%;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 38px;
      width: auto;
      display: block;
    }

    /* Navigation */
    .main-nav {
      flex: 1;
      display: flex;
      justify-content: center;
      position: relative;
    }

    /* Mobile Close Button */
    .mobile-close-btn {
      display: none;
      position: fixed;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      background: rgba(26, 118, 209, 0.1);
      border: 2px solid #1A76D1;
      border-radius: 8px;
      color: #1A76D1;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10001;
      align-items: center;
      justify-content: center;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      padding: 0;
      margin: 0;
      box-shadow: 0 4px 12px rgba(26, 118, 209, 0.2);
      will-change: transform, background, box-shadow;
    }

    .mobile-close-btn:hover {
      background: #1A76D1;
      color: #fff;
      transform: rotate(90deg) scale(1.1);
      box-shadow: 0 8px 20px rgba(26, 118, 209, 0.4);
    }

    .mobile-close-btn:active {
      transform: rotate(90deg) scale(0.95);
    }

    .mobile-close-btn i {
      display: block;
      font-size: 1.25rem;
    }

    .main-nav .main {
      list-style: none;
      display: flex;
      gap: 8px;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .main-nav .main > li {
      position: relative;
      padding: 0;
    }

    .main-nav .main > li > a {
      color: #0e1f56;
      text-transform: capitalize;
      font-size: 0.9375rem;
      font-weight: 600;
      padding: 12px 16px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: flex;
      align-items: center;
      gap: 6px;
      border-radius: 8px;
      position: relative;
      will-change: color, background, transform;
    }

    .main-nav .main > li > a i {
      font-size: 0.625rem;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .main-nav .main > li:hover > a i {
      transform: rotate(180deg) scale(1.1);
    }

    .main-nav .main > li > a:hover {
      color: #1A76D1;
      background: rgba(26, 118, 209, 0.08);
      transform: translateY(-1px);
    }

    /* Dropdown Menu */
    .sub-menu {
      opacity: 0;
      /*visibility: hidden;*/
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform: translate3d(0, -15px, 0);
      width: 260px;
      top: calc(100% + 8px);
      left: 0;
      position: absolute;
      background: #fff;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      list-style: none;
      padding: 8px 0;
      margin: 0;
      z-index: 1000;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      will-change: opacity, transform;
    }

    .main-nav .main > li:hover > .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translate3d(0, 0, 0);
    }

    .sub-menu li {
      padding: 0;
      list-style: none;
      transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .sub-menu li a {
      font-size: 0.875rem;
      color: #4b5563;
      text-decoration: none;
      padding: 12px 20px;
      display: block;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-left: 3px solid transparent;
      will-change: color, padding, transform;
    }

    .sub-menu li:hover {
      background: rgba(26, 118, 209, 0.05);
    }

    .sub-menu li:hover a {
      color: #1A76D1;
      border-left-color: #1A76D1;
      padding-left: 26px;
      transform: translateX(2px);
    }

    /* Language Selector - Desktop */
    .header-language-wrapper {
      margin-left: 20px;
      position: relative;
    }
    .header-language-wrapper .language-toggle-wrapper {
      position: relative;
    }
    .header-language-wrapper .language-toggle-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 16px;
      background: rgba(26, 118, 209, 0.08);
      border: 2px solid rgba(26, 118, 209, 0.2);
      border-radius: 8px;
      color: #0e1f56;
      font-weight: 600;
      font-size: 0.875rem;
      transition: all 0.3s ease;
      cursor: pointer;
      white-space: nowrap;
    }
    .header-language-wrapper .language-toggle-btn:hover {
      background: rgba(26, 118, 209, 0.15);
      border-color: #1A76D1;
      color: #1A76D1;
    }
    .header-language-wrapper .language-toggle-btn.active {
      background: linear-gradient(135deg, #1A76D1 0%, #02c4d9 100%);
      border-color: #1A76D1;
      color: #fff;
    }
    .header-language-wrapper .language-toggle-btn.active i.fa-chevron-down {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
    }
    .header-language-wrapper .language-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 180px;
      background: #fff;
      border: 2px solid #dee2e6;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
      overflow: hidden;
    }
    .header-language-wrapper .language-toggle-wrapper.active .language-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .header-language-wrapper .lang-option {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      background: transparent;
      border: none;
      border-bottom: 1px solid #f0f0f0;
      color: #0e1f56;
      font-weight: 500;
      font-size: 0.9375rem;
      text-align: left;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .header-language-wrapper .lang-option:last-child {
      border-bottom: none;
    }
    .header-language-wrapper .lang-option:hover {
      background: rgba(26, 118, 209, 0.08);
      color: #1A76D1;
    }
    .header-language-wrapper .lang-option.active {
      background: rgba(26, 118, 209, 0.1);
      color: #1A76D1;
    }
    .header-language-wrapper .lang-flag {
      font-size: 1.25rem;
      width: 24px;
      text-align: center;
    }
    .header-language-wrapper .lang-name {
      flex: 1;
    }
    .header-language-wrapper .lang-check {
      color: #1A76D1;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .header-language-wrapper .lang-option.active .lang-check {
      opacity: 1;
    }

    /* Header Button */
    .header-btn {
      margin-left: 20px;
    }

    .header-btn a {
      background: #f9a243;
      color: #fff;
      font-size: 0.9375rem;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-transform: capitalize;
      text-decoration: none;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: inline-block;
      /*box-shadow: 0 4px 15px rgba(2, 196, 217, 0.3);*/
      border: none;
      will-change: transform, box-shadow, background;
      position: relative;
      overflow: hidden;
    }

    .header-btn a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #f9a243;
      transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .header-btn a:hover::before {
      left: 100%;
    }

    .header-btn a:hover {
      background: #f9a243;
      transform: translate3d(0, -3px, 0) scale(1.02);
      /*box-shadow: 0 8px 25px rgba(2, 196, 217, 0.5);*/
    }

    /* Toggle Button */
    .toggle-btn {
  display: none;
  align-items: center;
  margin-top: 0px;
  justify-content: center;
    }

    .toggle-btn a {
  color: #0e1f56;
  font-size: 1.35rem;
  text-decoration: none;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  min-width: 40px;
  min-height: 40px;
  will-change: transform, background, color;
    }

    .toggle-btn a:hover {
      color: #1A76D1;
      background: rgba(26, 118, 209, 0.08);
      transform: scale(1.05);
    }

    .toggle-btn a i {
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .toggle-btn a:hover i {
      transform: rotate(90deg);
    }
/* Submenu inside submenu */
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-15px, 0, 0);
  position: absolute;
}

/* Show nested submenu on hover */
.sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

/* Mobile quick menu */
.mobile-quick-menu {
  display: none;
  width: 100%;
  gap: 12px;
  margin: 12px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.mobile-quick-menu::-webkit-scrollbar {
  display: none;
}
.mobile-quick-menu a {
  flex: 1 0 calc(33.333% - 8px);
  min-width: calc(33.333% - 8px);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0e1f56;
  font-size: 0.78rem;
  font-weight: 600;
}
/* responsive */
/* === Base Styles === */
.responsive-menu {
  display: none; /* Hidden on desktop by default */
  background: #fff;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow-y: auto;
  max-height: 100vh;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 768px) {
  .responsive-menu {
    max-width: 400px;
  }
}

.responsive-menu.active {
  transform: translateX(0);
  display: flex;
}

/* Overlay for mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Top Info Bar - Custom styling only */
.rm-topbar {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #2eaae0 0%, #061a66 100%);
}
.rm-topbar .rm-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}
.rm-topbar .rm-left p a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.rm-topbar .rm-left p i {
  color: #fff;
  font-size: 0.75rem;
  background: linear-gradient(135deg, #02c4d9, #1A76D1);
  padding: 8px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.rm-topbar .rm-left p a:hover {
  color: #02c4d9;
  transition: color 0.4s ease;
}
.rm-topbar .social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.rm-topbar .social-icon:hover {
  background: linear-gradient(135deg, #02c4d9, #1A76D1);
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(2, 196, 217, 0.4);
}
.rm-topbar .social-icon i {
  color: #fff;
  font-size: 0.875rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rm-topbar .social-icon:hover i {
  transform: scale(1.15) rotate(5deg);
}
.rm-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}
.rm-quick-links .quick-link {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.rm-quick-links .quick-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Language Selector - Custom styling */
.rm-language-selector {
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.language-toggle-wrapper {
  position: relative;
  width: 100%;
}
.language-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 8px;
  color: #0e1f56;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.language-toggle-btn:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  border-color: #1A76D1;
  color: #1A76D1;
}
.language-toggle-btn.active {
  background: linear-gradient(135deg, #1A76D1 0%, #02c4d9 100%);
  border-color: #1A76D1;
  color: #fff;
}
.language-toggle-btn.active i.fa-chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.language-toggle-wrapper.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  color: #0e1f56;
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-option:last-child {
  border-bottom: none;
}
.lang-option:hover {
  background: rgba(26, 118, 209, 0.08);
  color: #1A76D1;
}
.lang-option.active {
  background: rgba(26, 118, 209, 0.1);
  color: #1A76D1;
}
.lang-flag {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}
.lang-name {
  flex: 1;
}
.lang-check {
  color: #1A76D1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lang-option.active .lang-check {
  opacity: 1;
}

/* Quote Button - Custom styling only */
.rm-btn {
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* Main button (UPDATED to match .header-btn a) */
.rm-btn .btn {
  background: #f9a243; /* SAME COLOR AS header-btn */
  color: #fff;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow, background;
}

/* BEFORE animation layer */
.rm-btn .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f9a243;
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover before animation */
.rm-btn .btn:hover::before {
  left: 100%;
}

/* Hover effects same as .header-btn a:hover */
.rm-btn .btn:hover {
  background: #f9a243;
  transform: translate3d(0, -3px, 0) scale(1.02);
}

/* Navigation - Custom styling only */
.rm-nav {
  padding: 20px;
  padding-top: 90px; /* create space so close icon does not overlap first item */
  background: #fff;
}
.rm-main > li {
  border-bottom: 1px solid #eee;
}
.rm-main > li:last-child {
  border-bottom: none;
}
.rm-main > li > a {
  padding: 15px 12px;
  color: #0e1f56;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 6px;
  margin: 5px 0;
}
.rm-main > li > a:hover {
  background: rgba(26, 118, 209, 0.08);
  color: #1A76D1;
  transition: all 0.3s ease;
}
.rm-main > li.active > a {
  background: rgba(26, 118, 209, 0.1);
  color: #1A76D1;
}
.rm-main > li > a i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.rm-main > li.active > a i {
  transform: rotate(180deg);
}

/* Submenu - Custom styling only */
.rm-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f8f9fa;
}
.rm-main > li.active .rm-submenu {
  max-height: 500px;
}
.rm-submenu li {
  border-bottom: 1px solid #eee;
  margin-left: -40px;
}
.rm-submenu li:last-child {
  border-bottom: none;
}
.rm-submenu li a {
  padding: 12px 20px 12px 32px;
  font-size: 0.875rem;
  color: #4b5563;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.rm-submenu li a:hover {
  color: #1A76D1;
  background: rgba(26, 118, 209, 0.05);
  border-left-color: #1A76D1;
  padding-left: 36px;
}

/* Close button - Custom styling only */
.rm-close-btn {
  background: rgba(26, 118, 209, 0.1);
  border: 2px solid #1A76D1;
  border-radius: 8px;
  font-size: 1.25rem;
  color: #1A76D1;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  transition: all 0.3s ease;
  z-index: 10001;
}
button.rm-close-btn.btn.position-absolute.end-0.m-3 {
    border: 1px solid;
}
.rm-close-btn:hover {
  background: #1A76D1;
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}

/* Mobile First: Display */
@media (max-width: 1024px) {

}

/* Optional Scrollbar styling */
.responsive-menu::-webkit-scrollbar {
  width: 6px;
}
.responsive-menu::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}
.responsive-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.3);
}

/* Responsive finish */
@media (min-width: 1025px) and (max-width: 1440px) {

}




/* 3️⃣ Laptops (992px - 1024px) */
/* 4️⃣ Desktops (1025px +) */
@media (min-width: 1025px) {

}


/*footer*/

/* Footer Wrapper */
.medixi-footer {
    background: radial-gradient(circle at top left, rgb(6 87 130), #000000a3 50%), #01C9F5;
    padding-top: 60px;
    padding-bottom: 0;
    color: var(--text-light);
}

/* Logo */
.medixi-footer .footer-logo img {
    max-height: 60px;
}
.footer-logo.mb-4 {
    width: 50%;
}

/* Titles */
.medixi-footer .footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.medixi-footer .title-underline {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 20px;
}

/* Text */
.medixi-footer .about-text {
    color: var(--muted);
    line-height: 1.7;
}

/* Emergency */
.medixi-footer .contact-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00d0b5;
}

/* Doctor Card */
.medixi-footer .doctor-card {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    align-items: center;
}

.medixi-footer .doctor-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Services */
.medixi-footer .services-list {
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 12px 22px;
}

.medixi-footer .services-list li {
    color: var(--muted);
    display: flex;
    gap: 10px;
}

/* Gallery */
.medixi-footer .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 18px;
}

.medixi-footer .gallery-grid img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

/* Visiting Hours */
.medixi-footer .visiting-hours dt {
    width: 90px;
    color: var(--muted);
}
.medixi-footer .visiting-hours dd {
    margin-left: 110px;
    margin-bottom: 12px;
    margin-top: -25px;
}

/* Address */
.medixi-footer .footer-address a {
    color: #dfdfdf;
    text-decoration: none;
}

/* Social Icons */
.medixi-footer .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Back to top */
.medixi-footer .back-to-top {
    width: 46px;
    height: 46px;
    background: #00c8f4;
    border-radius: 10px 10px 0 0;
    margin: 0 40px -40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #083152;
}

/* Footer Bottom */
.medixi-footer .footer-bottom {
    background: #00c8f4;
    color: #083152;
    padding: 15px 0 12px;
    margin-top: 30px;
}

.medixi-footer .footer-nav a {
    color: #083152;
    margin-left: 25px;
    text-decoration: none;
}
:root {
    --primary-color: #2babe1;
}


.schedule-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.single-schedule {
    width: 360px;
    height: 266px;
    padding: 30px;
    background: var(--primary-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    margin-bottom: 25px;
}

.single-schedule:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,.15);
}

/* ICON */
.single-schedule .icon i {
    font-size: 80px;
    opacity: 0.12;
    position: absolute;
    bottom: -20px;
    right: -15px;
}

/* TEXT */
.single-schedule span {
    font-size: 14px;
    opacity: .9;
}

.single-schedule h4 {
    font-size: 20px;
    margin-top: 8px;
    font-weight: 600;
}

.single-schedule p {
    margin-top: 12px;
    opacity: .95;
}

/* TIME LIST */
.time-sidual {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.time-sidual li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

/* LINK */
.single-schedule a {
    margin-top: 18px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    color: #fff;
}

.single-schedule a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width .3s ease;
}

.single-schedule a:hover:before {
    width: 100%;
}

/* CARD BEFORE SHADOW EFFECT */
.single-schedule:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 90%;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(10px);
    opacity: 0;
    z-index: -1;
    transition: opacity .3s ease;
}

.single-schedule:hover:before {
    opacity: .8;
}

/* RESPONSIVE */




/* SLIDER SECTION FIX */
.slider {
    position: relative;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    z-index: 1;
}

/* SCHEDULE SECTION RESET — to avoid negative pull */
.schedule {
    position: relative !important;
    padding-top: 0 !important;
    z-index: 2;


}
/* Only hide arrows inside testimonial slider */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    display: none;
}
/* Underline Animation */
.services-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

/* Hover Effects */
.services-list li:hover {
  color: #ffffff;
  margin-right: 6px;
}

.services-list li:hover i {
  margin-right: 12px;
}

.services-list li:hover::after {
  width: 40px;
}
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #f9a243;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #f9a243;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}
/* Only inside testimonial-card */
.testimonial-card .swiper-button-next,
.testimonial-card .swiper-button-prev {
  background: none !important;
  width: auto !important;
  height: auto !important;
  color: #fff;
  font-size: 32px !important;
  transition: all 0.3s ease;
}

/* Hover effect only here */
.testimonial-card .swiper-button-next:hover,
.testimonial-card .swiper-button-prev:hover {
  color: #00d4ff;
  transform: scale(1.2);
}

/* Remove default arrow shape only here */
.testimonial-card .swiper-button-next::after,
.testimonial-card .swiper-button-prev::after {
  font-size: 20px !important;
}
.header-container {
  max-width: 1610px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.section-tag-nd {
    font-weight: 600;
    text-transform: uppercase;
    color: #f9a243;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.section-tag-nd::before, .section-tag-nd::after
 {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}
.section-tag-test {
    font-weight: 600;
    text-transform: uppercase;
    color: #16c984;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.section-tag-test::before, .section-tag-test::after
 {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}






/* ------------------------
   LAPTOP L: 1025px - 1440px
------------------------ */
@media (min-width: 1025px) and (max-width: 1440px) {

.section-header h2 {
    margin: 1px 0;
}
.team-header {
    margin: 31px 25px;
}
.medico-programs {
    padding: 40px 0;
}
.services-section {
    padding: 5px 0 50px 0px;
}
.contact-section {
    padding: 80px 0 50px;
}
.team-header {
    margin-bottom: 31px;
}
.blog-section {
    padding: 25px 0;
}
.blog-header {
    margin-bottom: 20px;
}
.signature-programs {
    padding: 50px 0 30px;
}
.team-section .container {
    margin-top: 25px;
}
.blog-section {
    padding: 45px 0 0px;
}
.mini-about__media {
  max-width: 580px;
}
.team-section {
    margin-top: 55px;
}
.team-header h2 {
    margin-bottom: 40px;
}
.hero-card-content {
    max-width: 340px;
}
.newsletter-section {
    margin: 50px auto
}


}

/* ------------------------
   DESKTOP / LARGE DESKTOP: 1441px and above
------------------------ */
@media (min-width: 1441px) {

}

/*blog*/

.blogs-hero-two {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4498608/pexels-photo-4498608.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.blogs-hero-overlay-two {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}

/*.blogs-hero-two .container {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  max-width: 1600px;*/
/*}*/

.blogs-hero-content-two {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.blogs-eyebrow-two {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.blogs-eyebrow-two::before,
.blogs-eyebrow-two::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.blogs-hero-content-two h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.blogs-hero-intro-two {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
}

/* Blog Content Section */
.blogs-content-two {
  padding: 80px 0;
  background: #f8f9fa;
}

/*.blogs-content-two .container {*/
/*  max-width: 1600px;*/
/*}*/

/* Search Bar */
.blog-search {
  margin-bottom: 40px;
}

.search-wrapper {
  position: relative;
  max-width: 600px;
}

.search-wrapper i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 1.1rem;
  z-index: 1;
}

.search-input {
  width: 100%;
  padding: 18px 24px 18px 60px;
  border: 2px solid rgba(14, 31, 86, 0.15);
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  outline: none;
  border-color: #f9a243;
  box-shadow: 0 0 0 4px rgba(249, 162, 67, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Featured Blog Post */
.blog-featured {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 31, 86, 0.05);
}

.blog-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(249, 162, 67, 0.2);
}

.featured-image-two {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.featured-image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured:hover .featured-image-two img {
  transform: scale(1.05);
}

.featured-badge-two {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(249, 162, 67, 0.4);
}

.featured-content-two {
  padding: 32px;
}

.blog-meta-two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #4b5873;
}

.blog-category {
  background: rgba(249, 162, 67, 0.15);
  color: #f9a243;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date,
.blog-author {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
}

.blog-date i,
.blog-author i {
  color: #f9a243;
}

.blog-title-two {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-title-two a {
  color: #0e1f56;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title-two a:hover {
  color: #f9a243;
}

.blog-excerpt-two {
  font-size: 1.05rem;
  color: #4b5873;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 31, 86, 0.1);
}

.read-more {
  color: #f9a243;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
  color: #29aadf;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #f8f9fa;
  color: #4b5873;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tag i {
  color: #f9a243;
  font-size: 0.7rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

/* Blog archives: fixed 1200 x 640 visual ratio without cropping image content. */
.mantra-main-blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.mantra-health-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.mantra-main-blog-card,
.mantra-health-blog-card {
  min-width: 0;
  height: 100%;
}

.blog-card-image.mantra-main-blog-card-image,
.blog-card-image.mantra-health-blog-card-image {
  aspect-ratio: 1200 / 640;
  height: auto;
  background: #ffffff;
}

.mantra-main-blog-card-image .mantra-main-blog-image,
.mantra-health-blog-card-image .mantra-health-blog-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.mantra-main-blog-card:hover .mantra-main-blog-image,
.mantra-health-blog-card:hover .mantra-health-blog-image {
  transform: none;
}

.blog-card-two {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 31, 86, 0.05);
}

.blog-card-two:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(249, 162, 67, 0.2);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(249, 162, 67, 0.95);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta-small {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #6b7280;
}

.blog-meta-small .blog-date,
.blog-meta-small .blog-author {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-meta-small i {
  color: #f9a243;
  font-size: 0.75rem;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-title a {
  color: #0e1f56;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #f9a243;
}

.blog-card-excerpt {
  color: #4b5873;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-card-link {
  color: #f9a243;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.blog-card-link:hover {
  gap: 10px;
  color: #29aadf;
}

/* Pagination */
.blog-pagination {
  margin-top: 50px;
}

.pagination {
  gap: 8px;
}

.page-link {
  border: 2px solid rgba(14, 31, 86, 0.15);
  color: #4b5873;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover {
  border-color: #f9a243;
  color: #f9a243;
  background: rgba(249, 162, 67, 0.05);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #f9a243, #29aadf);
  border-color: transparent;
  color: #fff;
}

.page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  /*top: 100px;*/
}

.sidebar-widget {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title i {
  color: #f9a243;
}

/* Categories Widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 14px;
  text-decoration: none;
  color: #4b5873;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-list a:hover {
  background: rgba(249, 162, 67, 0.1);
  color: #f9a243;
  transform: translateX(6px);
  border-color: rgba(249, 162, 67, 0.2);
  box-shadow: 0 2px 8px rgba(249, 162, 67, 0.1);
}

.category-name {
  font-weight: 600;
}

.category-count {
  background: rgba(249, 162, 67, 0.15);
  color: #f9a243;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Popular Posts Widget */
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-post-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.popular-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.popular-post-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.popular-post-content h4 a {
  color: #0e1f56;
  text-decoration: none;
  transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
  color: #f9a243;
}

.popular-post-date {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: #f8f9fa;
  color: #4b5873;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag-item:hover {
  background: rgba(249, 162, 67, 0.15);
  color: #f9a243;
  border-color: #f9a243;
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
  text-align: center;
  border: none;
  box-shadow: 0 12px 40px rgba(249, 162, 67, 0.25);
}

.newsletter-content-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.newsletter-content-two i {
  font-size: 3rem;
  /*margin-bottom: 16px;*/
  opacity: 1;
  color: #fff;
  display: block;
}

.newsletter-widget .widget-title {
  color: #fff;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-align: center;
  width: 100%;
}

.newsletter-widget .widget-title i {
  display: none;
}

.newsletter-content-two p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

.newsletter-form-two {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: stretch;
}

.newsletter-input-two {
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  background: #fff;
  color: #0e1f56;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.newsletter-input-two:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-button-two {
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: #0e1f56;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  box-shadow: 0 4px 12px rgba(14, 31, 86, 0.3);
}

.newsletter-button-two i {
  font-size: 0.9rem;
  position: relative;
  top: 1px; /* 🔥 icon ta perfectly middle e ashbe */
}


.newsletter-button-two:hover {
  background: #1a2d6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 31, 86, 0.4);
}


/* CTA Section */
.blogs-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

/*.blogs-cta .container {*/
/*  max-width: 1600px;*/
/*}*/

.blogs-cta-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.blogs-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}

.blogs-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.blogs-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.blogs-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .blogs-hero-two {
    padding: 80px 0;
  }

  .blogs-content-two {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mantra-main-blog-grid,
  .mantra-health-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }

  .featured-image-two {
    height: 300px;
  }

  .blogs-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .blogs-hero-two {
    padding: 60px 0;
  }

  .blogs-content-two {
    padding: 40px 0;
  }

  .mantra-main-blog-grid,
  .mantra-health-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .featured-content-two {
    padding: 24px;
  }

  .blog-meta-two {
    font-size: 0.85rem;
    gap: 12px;
  }

  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .blogs-cta {
    padding: 40px 0;
  }
}

/* Accessibility */
.blog-card:focus,
.read-more:focus,
.blog-card-link:focus {
  outline: 3px solid #f9a243;
  outline-offset: 4px;
}

.page-link:focus {
  outline: 3px solid #f9a243;
  outline-offset: 2px;
}

/*snilge page blog*/

/* Blog Detail Hero */
.blog-detail-hero {
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0e1f56, #29aadf);
  color: #fff;
}

.blog-detail-hero-overlay {
  display: none;
}

/*.blog-detail-hero .container {*/
/*  max-width: 1600px;*/
/*  padding-left: 60px;*/
/*  padding-right: 60px;*/
/*}*/

.blog-detail-hero-content {
  color: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #f9a243;
}

.blog-category-badge {
  display: inline-block;
  background: rgba(249, 162, 67, 0.2);
  color: #f9a243;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.blog-detail-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 32px;
  color: #fff;
  line-height: 1.2;
}

.blog-meta-header {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.meta-item i {
  font-size: 1.3rem;
  color: #f9a243;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 162, 67, 0.2);
  border-radius: 50%;
}

.meta-content {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* Blog Detail Content */
.blog-detail-content {
  padding: 60px 0;
  background: #fff;
}


.blog-article {
  background: #fff;
}

.blog-featured-image {
  margin-bottom: 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  width: 100%;
  position: relative;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.blog-featured-image:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s ease;
}

.blog-featured-image:hover img {
  transform: scale(1.02);
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4b5873;
}

.article-body .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #0e1f56;
  margin-bottom: 40px;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e1f56;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1f56;
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.article-body strong {
  color: #0e1f56;
  font-weight: 700;
}

.article-conclusion {
  background: linear-gradient(135deg, rgba(249, 162, 67, 0.1), rgba(41, 170, 223, 0.1));
  padding: 32px;
  border-radius: 16px;
  margin-top: 40px;
  border-left: 4px solid #f9a243;
}

.article-conclusion h3 {
  color: #0e1f56;
  margin-top: 0;
}

/* Article Tags */
.article-tags {
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid rgba(14, 31, 86, 0.1);
}

.article-tags h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-tags h4 i {
  color: #f9a243;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-link {
  background: #f8f9fa;
  color: #4b5873;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag-link:hover {
  background: rgba(249, 162, 67, 0.15);
  color: #f9a243;
  border-color: #f9a243;
  transform: translateY(-2px);
}

/* Share Buttons */
.article-share {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(14, 31, 86, 0.1);
}

.article-share h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-share h4 i {
  color: #f9a243;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: #fff;
}

.share-button.facebook {
  background: #1877f2;
}

.share-button.twitter {
  background: #1da1f2;
}

.share-button.whatsapp {
  background: #25d366;
}

.share-button.linkedin {
  background: #0077b5;
}

.share-button.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-button.youtube {
  background: #ff0000;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

/* Author Bio */
.author-bio {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 32px;
  margin-top: 50px;
  display: flex;
  gap: 24px;
  border: 1px solid rgba(14, 31, 86, 0.1);
}

.author-bio-image {
  flex-shrink: 0;
}

.author-bio-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-bio-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
}

.author-bio-content p {
  color: #4b5873;
  line-height: 1.8;
  margin-bottom: 16px;
}

.author-social {
  display: flex;
  gap: 12px;
}

.author-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 162, 67, 0.4);
}

/* Blog Detail Sidebar */
.blog-detail-sidebar {
  position: sticky;
  /*top: 100px;*/
}

.sidebar-widget {
  /*background: #fff;*/
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title i {
  color: #f9a243;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-post-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.related-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-post-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.related-post-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.related-post-content h4 a {
  color: #0e1f56;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
  color: #f9a243;
}

.related-post-date {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Newsletter Widget */
.newsletter-widget-three {
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
  text-align: center;
  border: none;
  box-shadow: 0 12px 40px rgba(249, 162, 67, 0.25);
}

.newsletter-content-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.newsletter-content-three i {
  font-size: 3rem;
  /*margin-bottom: 16px;*/
  opacity: 1;
  color: #fff;
  display: block;
}

.newsletter-widget-three .widget-title {
  color: #fff;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-align: center;
  width: 100%;
}

.newsletter-widget-three .widget-title i {
  display: none;
}

.newsletter-content-three p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

.newsletter-form-three {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: stretch;
}

.newsletter-input-three {
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  background: #fff;
  color: #0e1f56;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.newsletter-input-three:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-button-three {
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background: #0e1f56;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(14, 31, 86, 0.3);
  line-height: 1;
}

.newsletter-button-three:hover {
  background: #1a2d6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 31, 86, 0.4);
}

.newsletter-button-three i {
  font-size: 0.85rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blog Detail CTA */
.blog-detail-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

/*.blog-detail-cta .container {*/
/*  max-width: 1600px;*/
/*  padding-left: 60px;*/
/*  padding-right: 60px;*/
/*}*/

.blog-detail-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}

.blog-detail-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.blog-detail-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.blog-detail-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-detail-hero .container,
  .blog-detail-content .container,
  .blog-detail-cta .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-detail-hero {
    padding: 80px 0 50px;
  }

  .blog-detail-content {
    padding: 50px 0;
  }

  .blog-featured-image {
    border-radius: 20px;
    margin-bottom: 32px;
  }

  .blog-featured-image img {
    aspect-ratio: 16 / 10;
  }

  .blog-meta-header {
    gap: 24px;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .author-bio-image {
    margin: 0 auto;
  }

  .blog-detail-sidebar {
    position: static;
    margin-top: 40px;
  }

  .blog-detail-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .blog-detail-hero .container,
  .blog-detail-content .container,
  .blog-detail-cta .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-detail-hero {
    padding: 60px 0 40px;
  }

  .blog-detail-content {
    padding: 40px 0;
  }

  .blog-featured-image {
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .blog-featured-image:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .blog-featured-image img {
    aspect-ratio: 4 / 3;
  }

  .blog-meta-header {
    flex-direction: column;
    gap: 20px;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-body .lead {
    font-size: 1.15rem;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-button {
    width: 100%;
    justify-content: center;
  }

  .blog-detail-cta {
    padding: 40px 0;
  }
}

/* Accessibility */
.back-link:focus,
.tag-link:focus,
.share-button:focus,
.blog-detail-cta-button:focus {
  outline: 3px solid #f9a243;
  outline-offset: 2px;
}


/*pakages */

.packages-hero .container,
.packages-grid .container,
.packages-cta .container {
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
}


section {
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.packages-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  /*text-transform: uppercase;*/
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.packages-eyebrow::before,
.packages-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.packages-hero {
  position: relative;
  padding: 110px 0;
  background-image: url('https://images.pexels.com/photos/4498608/pexels-photo-4498608.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.packages-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}

.packages-hero .container { position: relative; z-index: 2; }

.packages-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.packages-hero-content h1 {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.packages-hero-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.packages-grid {
  padding: 40px 0;
  background: #fff;
}

.packages-grid .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.package-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(249,162,67,0.15);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s ease-out forwards;
}

.package-card.featured {
  border: 2px solid #f9a243;
  box-shadow: 0 20px 60px rgba(249,162,67,0.25);
}

.package-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #29aadf;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-card h3 {
  font-size: 1.4rem;
  color: #0e1f56;
  margin-bottom: 12px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.package-price .amount {
  font-size: 2.3rem;
  font-weight: 800;
  color: #f9a243;
}

.package-price .duration {
  font-size: 0.95rem;
  color: #4b5873;
}

.package-subtitle {
  color: #4b5873;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features i { color: #29aadf; }

.package-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Base button style */
.package-cta .btn {
  background: #f9a243;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  /*display: inline-flex;*/
  align-items: center;
  gap: 10px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(249, 162, 67, 0.25);
}

/* pseudo shine effect */
.package-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f9a243;
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* hover shine */
.package-cta .btn:hover::before {
  left: 100%;
}

/* hover transform */
.package-cta .btn:hover {
  background: #f9a243;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(249, 162, 67, 0.4);
}

/* icon animation */
.package-cta .btn i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.package-cta .btn:hover i {
  transform: translateX(4px);
}

.link-buy {
  color: #0e1f56;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-buy:hover { color: #f9a243; }

.packages-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.packages-cta-content { animation: fadeInUp 0.8s ease-out forwards; }

.packages-cta-content h2 {
  font-size: clamp(2rem,3vw,2.6rem);
  margin-bottom: 16px;
}

.packages-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.packages-cta-button:hover { transform: translateY(-4px); }

@media (max-width: 992px) {
  .packages-hero { padding: 80px 0; }
  .packages-grid, .packages-cta { padding: 60px 0; }
}

@media (max-width: 768px) {
  .packages-hero { padding: 60px 0; }
  .packages-grid, .packages-cta { padding: 40px 0; }
}

/*team*/
/* Container Max Width */
.mantra-team-hero .container,
.mantra-team-grid-section .container,
.mantra-team-cta .container {
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
}

section {
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Common Eyebrow Style */
.mantra-team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.mantra-team-eyebrow::before,
.mantra-team-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.mantra-team-subtitle {
  color: #4b5873;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.mantra-team-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4164841/pexels-photo-4164841.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.mantra-team-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 31, 86, 0.85) 0%, rgba(14, 31, 86, 0.75) 100%);
  z-index: 1;
}

.mantra-team-hero .container {
  position: relative;
  z-index: 2;
}

.mantra-team-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.mantra-team-hero-content .mantra-team-eyebrow {
  color: #f9a243;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.mantra-team-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.mantra-team-intro {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Team Grid Section */
.mantra-team-grid-section {
  padding: 80px 0;
  background: #ffffff;
}

.mantra-team-grid-section .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-team-grid-section h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

/* Team Category */
.team-category {
  margin-bottom: 60px;
}

.team-category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 3px solid #f9a243;
}

.team-category-title i {
  color: #f9a243;
  font-size: 1.5rem;
}

/* Team Card */
.mantra-team-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-team-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mantra-team-card:nth-child(2) {
  animation-delay: 0.4s;
}

.mantra-team-card:nth-child(3) {
  animation-delay: 0.6s;
}

.mantra-team-card:nth-child(4) {
  animation-delay: 0.8s;
}

.mantra-team-card:nth-child(5) {
  animation-delay: 1s;
}

.mantra-team-card:nth-child(6) {
  animation-delay: 1.2s;
}

.mantra-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-card-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mantra-team-card:hover .team-card-image img {
  transform: scale(1.1);
}

.team-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 162, 67, 0.9), rgba(41, 170, 223, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mantra-team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 16px;
}

.team-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.team-social a:hover {
  background: #fff;
  color: #f9a243;
  transform: translateY(-4px);
  border-color: #fff;
}

.team-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 8px;
}

.team-specialty {
  font-size: 1rem;
  color: #f9a243;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-qualification {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #4b5873;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.team-qualification i {
  color: #29aadf;
  font-size: 0.9rem;
}

.team-bio {
  color: #4b5873;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  font-size: 0.95rem;
}

.team-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #f9a243;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 14px;
}

.team-card-btn:hover {
  background: #29aadf;
  color: #fff;
  transform: translateX(4px);
}

.team-card-btn i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.team-card-btn:hover i {
  transform: translateX(4px);
}

/* CTA Section */
.mantra-team-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.mantra-team-cta-content {
  animation: fadeInUp 1s ease-out forwards;
}

.mantra-team-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mantra-team-cta-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mantra-team-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.mantra-team-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mantra-team-cta-button.primary {
  background: #fff;
  color: #f9a243;
}

.mantra-team-cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

.mantra-team-cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.mantra-team-cta-button.secondary:hover {
  background: #fff;
  color: #f9a243;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mantra-team-cta-button i {
  transition: transform 0.3s ease;
}

.mantra-team-cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (min-width: 992px) and (max-width: 1199px) {
  .mantra-team-hero-content {
    padding-left: 40px;
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .mantra-team-hero {
    padding: 80px 0;
    min-height: 400px;
  }

  .mantra-team-grid-section {
    padding: 60px 0;
  }

  .mantra-team-cta {
    padding: 60px 0;
  }

  .team-category-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mantra-team-hero {
    padding: 60px 0;
    min-height: 350px;
  }

  .mantra-team-hero-content h1 {
    font-size: 2rem;
  }

  .mantra-team-intro {
    font-size: 1rem;
  }

  .mantra-team-grid-section {
    padding: 40px 0;
  }

  .team-card-image {
    height: 280px;
  }

  .team-card-content {
    padding: 24px;
  }

  .team-card-content h4 {
    font-size: 1.25rem;
  }

  .mantra-team-cta {
    padding: 40px 0;
  }

  .mantra-team-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .mantra-team-cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .mantra-team-hero {
    padding: 40px 0;
    min-height: 300px;
  }

  .mantra-team-grid-section {
    padding: 30px 0;
  }

  .team-category-title {
    font-size: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .team-card-content {
    padding: 20px;
  }

  .team-card-content h4 {
    font-size: 1.15rem;
  }

  .team-bio {
    font-size: 0.9rem;
  }

  .mantra-team-cta {
    padding: 30px 0;
  }

  .mantra-team-cta-content p {
    font-size: 1rem;
  }
}


/*about us*/

/* Container Max Width */
.mantra-about-hero .container,
.mantra-about-journey .container,
.mantra-about-founders .container,
.mantra-about-advisory .container,
.mantra-about-awards .container,
.mantra-about-cta .container {
  max-width: 1630px;
}

section {
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Common Eyebrow Style */
.mantra-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.mantra-about-eyebrow::before,
.mantra-about-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.mantra-about-subtitle {
  color: #4b5873;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.mantra-about-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4164841/pexels-photo-4164841.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.mantra-about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 31, 86, 0.85) 0%, rgba(14, 31, 86, 0.75) 100%);
  z-index: 1;
}

.mantra-about-hero .container {
  position: relative;
  z-index: 2;
}

.mantra-about-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.mantra-about-hero-content .mantra-about-eyebrow {
  color: #f9a243;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.mantra-about-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.mantra-about-intro {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.mantra-about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-item {
  text-align: center;
  animation: scaleIn 0.6s ease-out forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.9s;
  opacity: 0;
}

.stat-item:nth-child(2) {
  animation-delay: 1.1s;
  opacity: 0;
}

.stat-item:nth-child(3) {
  animation-delay: 1.3s;
  opacity: 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f9a243;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Journey Timeline */
.mantra-about-journey {
  padding: 80px 0;
  background: #ffffff;
}

.mantra-about-journey .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-about-journey h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.mantra-timeline {
  position: relative;
  padding: 40px 0;
  overflow: visible;
}

.mantra-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f9a243, #29aadf);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.8s;
}

.timeline-item:nth-child(5) {
  animation-delay: 1s;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 0 0 200px;
  text-align: center;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-year-bg {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(249, 162, 67, 0.3);
  border: 4px solid #fff;
  position: relative;
  animation: scaleIn 0.6s ease-out forwards;
}

.timeline-year-bg i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-year-bg span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.timeline-content {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(249, 162, 67, 0.1);
  margin: 0 40px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #4b5873;
  line-height: 1.7;
  margin: 0;
}

/* Founders Section */
.mantra-about-founders {
  padding: 80px 0;
  /*background: #f8f9fa;*/
}

.mantra-about-founders .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-about-founders h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.mantra-bio-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-bio-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mantra-bio-card:nth-child(2) {
  animation-delay: 0.4s;
}

.mantra-bio-card:nth-child(3) {
  animation-delay: 0.6s;
}

.mantra-bio-card:hover {
  transform: translateY(-8px);
  /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);*/
}

.bio-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

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

.mantra-bio-card:hover .bio-image img {
  transform: scale(1.1);
}

.bio-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bio-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 8px;
}

.bio-role {
  font-size: 1rem;
  color: #f9a243;
  font-weight: 600;
  margin-bottom: 16px;
}

.bio-description {
  color: #4b5873;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.bio-credentials span {
  font-size: 0.875rem;
  color: #4b5873;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bio-credentials i {
  color: #29aadf;
}

.bio-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.bio-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #0e1f56;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bio-social a:hover {
  background: #f9a243;
  color: #fff;
  transform: translateY(-2px);
}


/* Awards Section */
.mantra-about-awards {
  padding: 80px 0;
  /*background: #f8f9fa;*/
}

.mantra-about-awards .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-about-awards h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.mantra-award-card {
  background: #e3e3e3;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-top: 4px solid #f9a243;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-award-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mantra-award-card:nth-child(2) {
  animation-delay: 0.4s;
}

.mantra-award-card:nth-child(3) {
  animation-delay: 0.6s;
}

.mantra-award-card:hover {
  transform: translateY(-8px);
  /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);*/
}

.award-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 2rem;
  animation: scaleIn 0.6s ease-out 0.3s both;
}

.mantra-award-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
}

.award-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f9a243;
  margin-bottom: 8px;
}

.award-org {
  font-size: 0.95rem;
  color: #4b5873;
  margin: 0;
}

.mantra-media-logos h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0e1f56;
}

.media-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.media-logo-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.media-logo-item:nth-child(1) {
  animation-delay: 0.2s;
}

.media-logo-item:nth-child(2) {
  animation-delay: 0.3s;
}

.media-logo-item:nth-child(3) {
  animation-delay: 0.4s;
}

.media-logo-item:nth-child(4) {
  animation-delay: 0.5s;
}

.media-logo-item:nth-child(5) {
  animation-delay: 0.6s;
}

.media-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.media-logo-item i {
  font-size: 2.5rem;
  color: #29aadf;
}

.media-logo-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #0e1f56;
}

/* CTA Section */
.mantra-about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.mantra-cta-content {
  animation: fadeInUp 1s ease-out forwards;
}

.mantra-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mantra-cta-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mantra-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s ease-out 0.6s both;
}

.mantra-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

.mantra-cta-button i {
  transition: transform 0.3s ease;
}

.mantra-cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (min-width: 992px) and (max-width: 1199px) {
  .mantra-about-hero-content {
    padding-left: 40px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  .timeline-year {
    flex: 0 0 150px;
  }
  
  .timeline-content {
    margin: 0 30px;
  }
}

@media (max-width: 992px) {
  .mantra-about-hero {
    padding: 60px 0;
  }
  
  .mantra-about-journey,
  .mantra-about-founders,
  .mantra-about-advisory,
  .mantra-about-awards,
  .mantra-about-cta {
    padding: 60px 0;
  }
  
  .mantra-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }
  
  .timeline-year {
    position: absolute;
    left: 0;
    flex: 0 0 auto;
    z-index: 10;
  }
  
  .timeline-year-bg {
    width: 100px;
    height: 100px;
  }
  
  .timeline-year-bg i {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
  
  .timeline-year-bg span {
    font-size: 1.1rem;
  }
  
  .timeline-content {
    margin: 0;
    width: 100%;
  }
  
  .mantra-about-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mantra-about-hero {
    padding: 40px 0;
  }
  
  .mantra-about-journey,
  .mantra-about-founders,
  .mantra-about-advisory,
  .mantra-about-awards,
  .mantra-about-cta {
    padding: 40px 0;
  }
  
  .mantra-about-hero-content h1 {
    font-size: 2rem;
  }
  
  .mantra-about-intro {
    font-size: 1rem;
  }
  
  .mantra-about-stats {
    gap: 20px;
    justify-content: space-around;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .timeline-item {
    padding-left: 60px;
    z-index: 10;
  }
  
  .timeline-year-bg {
    width: 80px;
    height: 80px;
  }
  
  .timeline-year-bg i {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }
  
  .timeline-year-bg span {
    font-size: 0.95rem;
  }
  
  .timeline-content {
    padding: 24px;
    z-index: 1;
  }
  
  .bio-image {
    height: 280px;
  }
  
  .advisory-image {
    height: 240px;
  }
  
  .media-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .mantra-cta-button {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .mantra-about-hero {
    padding: 30px 0;
  }
  
  .mantra-about-journey,
  .mantra-about-founders,
  .mantra-about-advisory,
  .mantra-about-awards,
  .mantra-about-cta {
    padding: 30px 0;
  }
  
  .mantra-about-stats {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .timeline-item {
    padding-left: 50px;
    margin-bottom: 40px;
    z-index: 10;
  }
  
  .timeline-year-bg {
    width: 70px;
    height: 70px;
  }
  
  .timeline-year-bg i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .timeline-year-bg span {
    font-size: 0.85rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-content h3 {
    font-size: 1.25rem;
  }
  
  .bio-content {
    padding: 20px;
  }
  
  .bio-content h3 {
    font-size: 1.25rem;
  }
  
  .advisory-content {
    padding: 20px;
  }
  
  .mantra-award-card {
    padding: 32px 24px;
  }
  
  .award-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .media-logos-grid {
    grid-template-columns: 1fr;
  }
  
  .mantra-cta-content p {
    font-size: 1rem;
  }
}


/* Hero Section */
.contact-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4498608/pexels-photo-4498608.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.contact-eyebrow::before,
.contact-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.contact-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.contact-hero-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
}

/* Intro Section */
.contact-intro {
  padding: 60px 0;
  background: #fff;
}

/*.contact-intro .container {*/
/*  max-width: 1600px;*/
/*}*/

.contact-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 20px;
}

.contact-intro-text {
  font-size: 1.1rem;
  color: #4b5873;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Main Section */
.contact-main {
  padding: 80px 0;
  background: #f8f9fa;
}

/*.contact-main .container {*/
/*  max-width: 1600px;*/
/*}*/

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.05);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-title i {
  color: #f9a243;
  font-size: 1.5rem;
}

.form-subtitle {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0e1f56;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-label i {
  color: #f9a243;
  font-size: 0.9rem;
}

.required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(14, 31, 86, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  color: #0e1f56;
  background: #fff;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #f9a243;
  box-shadow: 0 0 0 4px rgba(249, 162, 67, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234b5873' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(249, 162, 67, 0.3);
  margin-top: 8px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 162, 67, 0.4);
}

.submit-button i {
  font-size: 1rem;
  line-height: 1;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.05);
  height: 100%;
}

.info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-title i {
  color: #f9a243;
  font-size: 1.5rem;
}

/* Quick Contact Buttons */
.quick-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.quick-button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: #f8f9fa;
}

.quick-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.phone-button {
  background: linear-gradient(135deg, rgba(14, 31, 86, 0.05), rgba(41, 170, 223, 0.05));
  border-color: rgba(14, 31, 86, 0.1);
}

.phone-button:hover {
  background: linear-gradient(135deg, rgba(14, 31, 86, 0.1), rgba(41, 170, 223, 0.1));
  border-color: #0e1f56;
}

.whatsapp-button {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
  border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.1));
  border-color: #25d366;
}

.button-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.phone-button .button-icon {
  background: linear-gradient(135deg, #0e1f56, #29aadf);
  color: #fff;
}

.whatsapp-button .button-icon {
  background: #25d366;
  color: #fff;
}

.button-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.button-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.button-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1f56;
}

.whatsapp-button .button-value {
  color: #25d366;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.contact-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249, 162, 67, 0.15), rgba(41, 170, 223, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a243;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 6px;
}

.detail-content p {
  color: #4b5873;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* Map Section */
.contact-map {
  padding: 80px 0;
  background: #fff;
}

/*.contact-map .container {*/
/*  max-width: 1600px;*/
/*}*/

.map-header h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 8px;
}

.map-header p {
  color: #6b7280;
  font-size: 1.05rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(14, 31, 86, 0.1);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* CTA Section */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

/*.contact-cta .container {*/
/*  max-width: 1600px;*/
/*}*/

.contact-cta-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.contact-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}

.contact-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  /*justify-content: center;*/
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
  background: #fff;
  color: #f9a243;
}

.cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button i {
  font-size: 0.9rem;
  line-height: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-hero {
    padding: 80px 0;
  }

  .contact-intro {
    padding: 50px 0;
  }

  .contact-main {
    padding: 60px 0;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 32px;
  }

  .contact-map {
    padding: 60px 0;
  }

  .contact-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0;
  }

  .contact-intro {
    padding: 40px 0;
  }

  .contact-main {
    padding: 40px 0;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 24px;
  }

  .form-title,
  .info-title {
    font-size: 1.5rem;
  }

  .quick-contact-buttons {
    gap: 12px;
  }

  .quick-button {
    padding: 16px 20px;
  }

  .button-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .contact-map {
    padding: 40px 0;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .contact-cta {
    padding: 40px 0;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* Accessibility */
.form-control:focus,
.submit-button:focus,
.quick-button:focus,
.cta-button:focus {
  outline: 3px solid #f9a243;
  outline-offset: 2px;
}

/*gallary*/

.media-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4498608/pexels-photo-4498608.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.media-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}

/* .media-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1600px;
} */

.media-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.media-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.media-eyebrow::before,
.media-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.media-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.media-hero-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 600px;
}

.media-gallery-section {
  padding: 80px 0;
  background: #fff;
}

/* .media-gallery-section .container {
  max-width: 1600px;
} */

/* Tabs Styling */
.nav-pills {
  border-bottom: none;
}

.nav-pills .nav-link {
  border-radius: 999px;
  padding: 12px 28px;
  border: 2px solid rgba(14, 31, 86, 0.15);
  color: #4b5873;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-pills .nav-link:hover {
  border-color: #f9a243;
  color: #f9a243;
  background: rgba(249, 162, 67, 0.05);
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(249, 162, 67, 0.3);
}

.nav-pills .nav-link i {
  font-size: 0.9rem;
}

/* Grid Layout - 3 Columns */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.media-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1;
  height: 100%;
  min-height: 280px;
}

.media-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.media-item:hover img {
  transform: scale(1.1);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.media-content {
  color: #fff;
  width: 100%;
}

.media-category {
  display: inline-block;
  background: rgba(249, 162, 67, 0.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.media-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.media-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* Video Items */
.video-item .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-item:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.play-button i {
  color: #f9a243;
  font-size: 1.5rem;
  margin-left: 4px;
}

/* CTA Section */
.media-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

/* .media-cta .container {
  max-width: 1600px;
} */

.media-cta-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.media-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}

.media-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.media-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.media-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .media-hero {
    padding: 80px 0;
  }

  .media-gallery-section {
    padding: 60px 0;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .media-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .media-hero {
    padding: 60px 0;
  }

  .media-gallery-section {
    padding: 40px 0;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nav-pills .nav-link {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .media-item {
    min-height: 250px;
  }

  .media-content h3 {
    font-size: 1.1rem;
  }

  .media-cta {
    padding: 40px 0;
  }
}

/* Lightbox Customization */
.glightbox-clean .gslide-description {
  background: rgba(14, 31, 86, 0.95);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}

.glightbox-clean .gslide-title {
  color: #f9a243;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Accessibility */
.media-item:focus {
  outline: 3px solid #f9a243;
  outline-offset: 4px;
}

.nav-link:focus {
  outline: 3px solid #f9a243;
  outline-offset: 2px;
}

/*caluclator*/

/* .calc-hero .container,
.calc-grid .container {
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
} */

section {
  overflow-x: hidden;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f9a243;
  margin-bottom: 12px;
}

.calc-eyebrow::before,
.calc-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.calc-hero {
  position: relative;
  padding: 110px 0;
  background-image: url('https://images.pexels.com/photos/4164847/pexels-photo-4164847.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.calc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}

.calc-hero .container { position: relative; z-index: 2; }

.calc-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.calc-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.calc-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
}

.calc-grid {
  padding: 80px 0;
}

.calc-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(15, 31, 62, 0.08);
  border: 1px solid rgba(249, 162, 67, 0.15);
  animation: fadeInUp 0.8s ease-out forwards;
  width: 100%;
}

.calc-card h2 {
  font-size: 1.4rem;
  color: #0e1f56;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.calc-card p { margin-bottom: 20px; }

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.calc-inputs label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0e1f56;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-inputs input,
.calc-inputs select {
  border: 1px solid rgba(14,31,86,0.15);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: border 0.2s ease;
}

.calc-inputs input:focus,
.calc-inputs select:focus {
  outline: none;
  border-color: #29aadf;
  box-shadow: 0 0 0 3px rgba(41,170,223,0.15);
}

.calc-result {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}

.calc-result strong {
  font-size: 1.5rem;
  color: #f9a243;
}


/*academy*/

/* .academy-hero .container,
.academy-courses .container,
.academy-testimonials .container,
.academy-cta .container {
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
} */

section {
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.academy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.academy-eyebrow::before,
.academy-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.academy-hero {
  position: relative;
  padding: 110px 0;
  background-image: url('https://images.pexels.com/photos/3823043/pexels-photo-3823043.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.academy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}

.academy-hero .container { position: relative; z-index: 2; }

.academy-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.academy-hero-content h1 {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.academy-hero-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.academy-courses {
  padding: 80px 0;
  background: #fff;
}

.academy-courses .text-center { animation: fadeInUp 0.8s ease-out forwards; }

.academy-course-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(249,162,67,0.15);
  animation: fadeInUp 0.8s ease-out forwards;
  height: 100%;
}

.course-badge {
  position: absolute;
  margin: 20px;
  background: #29aadf;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.course-head img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.course-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.course-category {
  font-size: 0.95rem;
  color: #f9a243;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.course-body h3 {
  font-size: 1.4rem;
  color: #0e1f56;
  margin-bottom: 14px;
}

.course-body p { margin-bottom: 16px; }

.course-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-body ul i { color: #29aadf; }

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #4b5873;
}

.course-cta {
  /* display: inline-flex; */
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #f9a243;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.course-cta:hover { background: #29aadf; }

.academy-testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

.academy-testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  height: 100%;
  animation: fadeInUp 0.8s ease-out forwards;
}

.academy-testimonial-card .rating { color: #f9a243; margin-bottom: 16px; }

.academy-testimonial-card .person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }

.academy-testimonial-card .person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.academy-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.academy-cta-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.academy-cta-content h2 {
  font-size: clamp(2rem,3vw,2.6rem);
  margin-bottom: 16px;
}

.academy-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.academy-cta-button:hover { transform: translateY(-4px); }

@media (max-width: 992px) {
  .academy-hero { padding: 80px 0; }
  .academy-courses, .academy-testimonials, .academy-cta { padding: 60px 0; }
}

@media (max-width: 768px) {
  .academy-hero { padding: 60px 0; }
  .academy-courses, .academy-testimonials, .academy-cta { padding: 40px 0; }
}



/*medico*/
/* .medico-hero .container,
.medico-intro .container,
.medico-packages .container,
.medico-comparison .container,
.medico-testimonials .container,
.medico-cta .container {
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
} */

section {
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.medico-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.medico-eyebrow::before,
.medico-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.medico-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/3714743/pexels-photo-3714743.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.medico-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(14,31,86,0.75));
}

.medico-hero .container { position: relative; z-index: 2; }

.medico-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.medico-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.medico-hero-intro {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}

.medico-intro {
  padding: 80px 0;
  background: #fff;
}

.medico-intro-content {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.medico-intro-content h2 {
  font-size: clamp(2rem,3vw,2.6rem);
  color: #0e1f56;
  margin-bottom: 20px;
}

.medico-intro-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.medico-intro-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.medico-intro-list i { color: #29aadf; }

.medico-intro-card {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  animation: fadeInUp 0.8s ease-out forwards;
}

.medico-doctor {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.medico-doctor img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
}

.doctor-quote {
  font-style: italic;
  color: #0e1f56;
  line-length: 1.8;
  margin-bottom: 16px;
}

.doctor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: #4b5873;
}

.medico-packages {
  padding: 80px 0;
  background: #f8f9fa;
}

.medico-packages .text-center { animation: fadeInUp 0.8s ease-out forwards; }

.medico-package-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(249,162,67,0.15);
  height: 100%;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out forwards;
}

.package-badge {
  position: absolute;
  top: 24px;
  right: -40px;
  background: #29aadf;
  color: #fff;
  padding: 6px 60px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}

.medico-package-card h3 {
  font-size: 1.4rem;
  color: #0e1f56;
  margin-bottom: 12px;
}

.package-description { margin-bottom: 18px; }

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features i { color: #29aadf; }

.package-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  background: #f9a243;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.package-link:hover {
  background: #29aadf;
}

.medico-comparison {
  padding: 80px 0;
  background: #fff;
}

.medico-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.medico-table th {
  background: #0e1f56;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.medico-table td {
  text-align: center;
  vertical-align: middle;
}

.medico-table td:first-child { text-align: left; font-weight: 600; }

.medico-table i { color: #29aadf; }

.medico-testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

.medico-testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 100%;
  animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-rating { color: #f9a243; margin-bottom: 16px; }

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.medico-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.medico-cta-content h2 {
  font-size: clamp(2rem,3vw,2.6rem);
  margin-bottom: 16px;
}

.medico-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.medico-cta-button:hover { transform: translateY(-4px); }

@media (max-width: 992px) {
  .medico-hero { padding: 80px 0; }
  .medico-packages, .medico-comparison, .medico-testimonials, .medico-cta, .medico-intro { padding: 60px 0; }
}

@media (max-width: 768px) {
  .medico-hero { padding: 60px 0; }
  .medico-packages, .medico-comparison, .medico-testimonials, .medico-cta, .medico-intro { padding: 40px 0; }
  .package-badge { display: none; }
}


/*testimonials page*/


/* .testimonials-hero .container,
.video-testimonials .container,
.written-testimonials .container,
.ratings-summary .container,
.testimonials-cta .container {
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
} */

section {
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.testimonials-eyebrow::before,
.testimonials-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.testimonials-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/3757371/pexels-photo-3757371.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.testimonials-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}

.testimonials-hero .container { position: relative; z-index: 2; }

.testimonials-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.testimonials-hero-content h1 {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.testimonials-hero-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.video-testimonials {
  padding: 80px 0;
  background: #fff;
}

.video-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  animation: fadeInUp 0.8s ease-out forwards;
}

.video-thumb {
  position: relative;
  height: 280px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: rgba(249,162,67,0.9);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-content { padding: 24px; }

.video-content h4 {
  font-size: 1.3rem;
  color: #0e1f56;
  margin-bottom: 10px;
}

.video-meta {
  font-size: 0.9rem;
  color: #4b5873;
}

.written-testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

/*.testimonial-card {*/
/*  background: #fff;*/
/*  border-radius: 24px;*/
/*  padding: 28px;*/
/*  box-shadow: 0 12px 40px rgba(0,0,0,0.08);*/
/*  height: 100%;*/
/*  animation: fadeInUp 0.8s ease-out forwards;*/
/*}*/

/*.testimonial-card .rating { color: #f9a243; margin-bottom: 16px; }*/

/*.testimonial-card .person { margin-top: 20px; }*/

/*.testimonial-card strong { color: #0e1f56; display: block; }*/

.ratings-summary {
  padding: 80px 0;
  background: #fff;
}

.ratings-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.ratings-card h2 {
  font-size: 3rem;
  color: #0e1f56;
  margin-bottom: 8px;
}

.rating-stars { color: #f9a243; margin: 12px 0; }

.ratings-breakdown {
  display: flex;
  flex: 1;
  gap: 24px;
  flex-wrap: wrap;
}

.ratings-breakdown div {
  background: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.testimonials-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.testimonials-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.testimonials-cta-button:hover { transform: translateY(-4px); }

@media (max-width: 992px) {
  .testimonials-hero { padding: 80px 0; }
  .video-testimonials, .written-testimonials, .ratings-summary, .testimonials-cta { padding: 60px 0; }
}

@media (max-width: 768px) {
  .testimonials-hero { padding: 60px 0; }
  .video-testimonials, .written-testimonials, .ratings-summary, .testimonials-cta { padding: 40px 0; }
}



/*service page*/

/* Container Max Width */
/* .mantra-services-hero .container,
.mantra-services-cluster .container,
.mantra-medico-programs .container,
.mantra-services-cta .container {
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
} */

section {
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Common Eyebrow Style */
.mantra-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.mantra-services-eyebrow::before,
.mantra-services-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* Hero Section */
.mantra-services-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4164841/pexels-photo-4164841.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.mantra-services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 31, 86, 0.85) 0%, rgba(14, 31, 86, 0.75) 100%);
  z-index: 1;
}

.mantra-services-hero .container {
  position: relative;
  z-index: 2;
}

.mantra-services-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.mantra-services-hero-content .mantra-services-eyebrow {
  color: #f9a243;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.mantra-services-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.mantra-services-intro {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Services Cluster */
.mantra-services-cluster {
  padding: 40px 0;
  background: #ffffff;
}

.mantra-services-cluster.cluster-alt {
  background: #f8f9fa;
}

.cluster-header {
  animation: fadeInUp 0.8s ease-out forwards;
}

.cluster-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 40px rgba(249, 162, 67, 0.3);
  animation: scaleIn 0.6s ease-out forwards;
}

.cluster-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  color: #0e1f56;
  margin-bottom: 16px;
}

.cluster-intro {
  color: #4b5873;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service Card */
.mantra-service-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(249, 162, 67, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-service-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mantra-service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.mantra-service-card:nth-child(3) {
  animation-delay: 0.6s;
}

.mantra-service-card:nth-child(4) {
  animation-delay: 0.8s;
}

.mantra-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: #f9a243;
}

.service-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.mantra-service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.mantra-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.service-card-description {
  color: #4b5873;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5873;
  font-size: 0.95rem;
}

.service-features li i {
  color: #29aadf;
  font-size: 0.85rem;
}

/* ===========================
   Button Base: Outline + Primary + Service + CTA
=========================== */
.ht-btn-outline,
a.btn-primary,
.service-card-link,
.mantra-cluster-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Outline Button Default */
.ht-btn-outline {
  background: #f9a243;
  color: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 12px 24px;
}

/* Primary Button Default */
a.btn-primary {
  background-color: #f9a243;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 24px;
  font-size: 16px;
}

/* Service Card Link Default */
.service-card-link {
  background: #f9a243;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
}

/* Mantra Cluster CTA Button */
.mantra-cluster-cta {
  background: #f9a243;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  gap: 12px;
  /*box-shadow: 0 10px 30px rgba(249, 162, 67, 0.3);*/
  animation: scaleIn 0.6s ease-out 0.8s both;
}

/* Pseudo for sliding shine effect */
.ht-btn-outline::before,
a.btn-primary::before,
.service-card-link::before,
.mantra-cluster-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f9a243;
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover effect: shine + transform */
.ht-btn-outline:hover::before,
a.btn-primary:hover::before,
.service-card-link:hover::before,
.mantra-cluster-cta:hover::before {
  left: 100%;
}

/* Hover colors & transform */
.ht-btn-outline:hover,
a.btn-primary:hover {
  color: #fff;
}

.service-card-link:hover {
  background: #f9a243;
  color: #fff;
  transform: translateX(4px);
}

.mantra-cluster-cta:hover {
  background: #f9a243;
  color: #fff;
  transform: translateY(-4px);
  /*box-shadow: 0 15px 40px rgba(41, 170, 223, 0.4);*/
}

/* Icon inside buttons */
a.btn-primary i,
.ht-btn-outline i,
.service-card-link i,
.mantra-cluster-cta i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

a.btn-primary:hover i,
.ht-btn-outline:hover i,
.service-card-link:hover i,
.mantra-cluster-cta:hover i {
  transform: translateX(4px);
}

/* Optional animation keyframes for CTA */
@keyframes scaleIn {
  0%   { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Medico Programs */
.mantra-medico-programs {
  padding: 80px 0;
  background: #ffffff;
}

.mantra-medico-programs .cluster-header {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-medico-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
  border-top: 4px solid #f9a243;
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.mantra-medico-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mantra-medico-card:nth-child(2) {
  animation-delay: 0.3s;
}

.mantra-medico-card:nth-child(3) {
  animation-delay: 0.4s;
}

.mantra-medico-card:nth-child(4) {
  animation-delay: 0.5s;
}

.mantra-medico-card:nth-child(5) {
  animation-delay: 0.6s;
}

.mantra-medico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.medico-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.5rem;
}

.mantra-medico-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
}

.mantra-medico-card p {
  color: #4b5873;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.medico-card-link {
  display: inline-block;
  padding: 10px 20px;
  background: #f9a243;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.medico-card-link:hover {
  background: #29aadf;
  color: #fff;
  transform: translateY(-2px);
}

/* CTA Section */
.mantra-services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.mantra-services-cta-content {
  animation: fadeInUp 1s ease-out forwards;
}

.mantra-services-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mantra-services-cta-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mantra-services-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s ease-out 0.6s both;
}

.mantra-services-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

.mantra-services-cta-button i {
  transition: transform 0.3s ease;
}

.mantra-services-cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (min-width: 992px) and (max-width: 1199px) {
  .mantra-services-hero-content {
    padding-left: 40px;
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .mantra-services-hero {
    padding: 80px 0;
    min-height: 400px;
  }

  .mantra-services-cluster,
  .mantra-medico-programs {
    padding: 60px 0;
  }

  .mantra-services-cta {
    padding: 60px 0;
  }

  .cluster-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .mantra-services-hero {
    padding: 60px 0;
    min-height: 350px;
  }

  .mantra-services-hero-content h1 {
    font-size: 2rem;
  }

  .mantra-services-intro {
    font-size: 1rem;
  }

  .mantra-services-cluster,
  .mantra-medico-programs {
    padding: 40px 0;
  }

  .mantra-service-card {
    padding: 24px;
  }

  .mantra-service-card h3 {
    font-size: 1.25rem;
  }

  .mantra-services-cta {
    padding: 40px 0;
  }

  .mantra-cluster-cta {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .mantra-services-hero {
    padding: 40px 0;
    min-height: 300px;
  }

  .mantra-services-cluster,
  .mantra-medico-programs {
    padding: 30px 0;
  }

  .cluster-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .mantra-service-card {
    padding: 20px;
  }

  .service-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .mantra-services-cta {
    padding: 30px 0;
  }

  .mantra-services-cta-content p {
    font-size: 1rem;
  }
}

/* Container Max Width */
/*.mantra-service-hero .container,*/
/*.mantra-service-about .container,*/
/*.mantra-service-who .container,*/
/*.mantra-service-inclusions .container,*/
/*.mantra-service-trainer .container,*/
/*.mantra-service-testimonial .container,*/
/*.mantra-service-cta .container {*/
/*  max-width: 1600px;*/
/*  padding-left: 15px;*/
/*  padding-right: 15px;*/
/*}*/

section {
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Service Hero */
.mantra-service-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4164841/pexels-photo-4164841.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.mantra-service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 31, 86, 0.85) 0%, rgba(14, 31, 86, 0.75) 100%);
  z-index: 1;
}

.mantra-service-hero .container {
  position: relative;
  z-index: 2;
}

.mantra-service-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.mantra-service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.mantra-service-eyebrow::before,
.mantra-service-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.mantra-service-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.mantra-service-hero-intro {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* About Section */
.mantra-service-about {
  padding: 80px 0;
  background: #ffffff;
}

.service-about-content {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.service-about-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 24px;
}

.service-about-text {
  font-size: 1.125rem;
  color: #4b5873;
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-benefits {
  margin-top: 32px;
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4b5873;
  line-height: 1.7;
}

.benefits-list li i {
  color: #29aadf;
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefits-list li strong {
  color: #0e1f56;
  font-weight: 600;
}

.service-about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 0.8s ease-out forwards;
}

.service-about-image img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Who It's For Section */
.mantra-service-who {
  padding: 80px 0;
  background: #f8f9fa;
}

.mantra-service-who .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-service-who h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.service-section-intro {
  color: #4b5873;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.who-for-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.who-for-card:nth-child(1) {
  animation-delay: 0.2s;
}

.who-for-card:nth-child(2) {
  animation-delay: 0.4s;
}

.who-for-card:nth-child(3) {
  animation-delay: 0.6s;
}

.who-for-card:nth-child(4) {
  animation-delay: 0.8s;
}

.who-for-card:nth-child(5) {
  animation-delay: 1s;
}

.who-for-card:nth-child(6) {
  animation-delay: 1.2s;
}

.who-for-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.who-for-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.75rem;
}

.who-for-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
}

.who-for-card p {
  color: #4b5873;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Program Inclusions */
.mantra-service-inclusions {
  padding: 80px 0;
  background: #ffffff;
}

.mantra-service-inclusions .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-service-inclusions h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.inclusion-item {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 162, 67, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.inclusion-item:nth-child(1) {
  animation-delay: 0.2s;
}

.inclusion-item:nth-child(2) {
  animation-delay: 0.4s;
}

.inclusion-item:nth-child(3) {
  animation-delay: 0.6s;
}

.inclusion-item:nth-child(4) {
  animation-delay: 0.8s;
}

.inclusion-item:nth-child(5) {
  animation-delay: 1s;
}

.inclusion-item:nth-child(6) {
  animation-delay: 1.2s;
}

.inclusion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: #f9a243;
}

.inclusion-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.inclusion-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
}

.inclusion-content p {
  color: #4b5873;
  line-height: 1.7;
  margin: 0;
}

/* Trainer Section */
.mantra-service-trainer {
  padding: 80px 0;
  background: #f8f9fa;
}

.mantra-service-trainer .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-service-trainer h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.trainer-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.trainer-card:nth-child(1) {
  animation-delay: 0.2s;
}

.trainer-card:nth-child(2) {
  animation-delay: 0.4s;
}

.trainer-card:nth-child(3) {
  animation-delay: 0.6s;
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.trainer-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trainer-card:hover .trainer-image img {
  transform: scale(1.1);
}

.trainer-info {
  padding: 24px;
}

.trainer-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 8px;
}

.trainer-role {
  font-size: 1rem;
  color: #f9a243;
  font-weight: 600;
  margin-bottom: 8px;
}

.trainer-qualification {
  font-size: 0.9rem;
  color: #4b5873;
  margin-bottom: 12px;
}

.trainer-specialty {
  font-size: 0.9rem;
  color: #4b5873;
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Section */
.mantra-service-testimonial {
  padding: 80px 0;
  background: #ffffff;
}

.service-testimonial-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(249, 162, 67, 0.1);
  animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid #f9a243;
  box-shadow: 0 10px 30px rgba(249, 162, 67, 0.3);
}

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

.testimonial-rating {
  color: #f9a243;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #4b5873;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 1.125rem;
  color: #0e1f56;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.95rem;
  color: #4b5873;
}

/* CTA Section */
.mantra-service-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.mantra-service-cta-content {
  animation: fadeInUp 1s ease-out forwards;
}

.mantra-service-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mantra-service-cta-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mantra-service-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #fff;
  color: #f9a243;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s ease-out 0.6s both;
}

.mantra-service-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

.mantra-service-cta-button i {
  transition: transform 0.3s ease;
}

.mantra-service-cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (min-width: 992px) and (max-width: 1199px) {
  .mantra-service-hero-content {
    padding-left: 40px;
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .mantra-service-hero {
    padding: 80px 0;
    min-height: 400px;
  }

  .mantra-service-about,
  .mantra-service-who,
  .mantra-service-inclusions,
  .mantra-service-trainer,
  .mantra-service-testimonial,
  .mantra-service-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .mantra-service-hero {
    padding: 60px 0;
    min-height: 350px;
  }

  .mantra-service-hero-content h1 {
    font-size: 2rem;
  }

  .mantra-service-hero-intro {
    font-size: 1rem;
  }

  .mantra-service-about,
  .mantra-service-who,
  .mantra-service-inclusions,
  .mantra-service-trainer,
  .mantra-service-testimonial,
  .mantra-service-cta {
    padding: 40px 0;
  }

  .service-about-image {
    margin-top: 32px;
  }

  .inclusion-item {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .inclusion-icon {
    margin: 0 auto;
  }

  .service-testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 576px) {
  .mantra-service-hero {
    padding: 40px 0;
    min-height: 300px;
  }

  .mantra-service-about,
  .mantra-service-who,
  .mantra-service-inclusions,
  .mantra-service-trainer,
  .mantra-service-testimonial,
  .mantra-service-cta {
    padding: 30px 0;
  }

  .who-for-card {
    padding: 24px;
  }

  .inclusion-item {
    padding: 20px;
  }

  .trainer-image {
    height: 240px;
  }

  .testimonial-avatar {
    width: 100px;
    height: 100px;
  }

  .mantra-service-cta-content p {
    font-size: 1rem;
  }
}



/* Package Detail Hero */
.package-detail-hero {
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0e1f56, #29aadf);
  color: #fff;
}

.package-detail-hero-overlay {
  display: none;
}

/*.package-detail-hero .container {*/
/*  max-width: 1600px;*/
/*  padding-left: 60px;*/
/*  padding-right: 60px;*/
/*}*/

.package-detail-hero-content {
  color: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #f9a243;
}

.package-badge {
  display: inline-block;
  background: rgba(249, 162, 67, 0.2);
  color: #f9a243;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.package-detail-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.package-hero-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 800px;
}

.package-hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #f9a243;
}

.price-duration {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Package Overview */
.package-overview {
  padding: 60px 0;
  background: #fff;
}

/*.package-overview .container {*/
/*  max-width: 1600px;*/
/*  padding-left: 60px;*/
/*  padding-right: 60px;*/
/*}*/

/* Package Featured Image */
.package-featured-image {
  margin-bottom: 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.package-featured-image:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.package-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s ease;
}

.package-featured-image:hover img {
  transform: scale(1.02);
}

/* Package Description */
.package-description {
  margin-bottom: 50px;
}

.package-description h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 24px;
}

.package-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4b5873;
  margin-bottom: 20px;
}

/* Package Includes */
.package-includes {
  margin-bottom: 50px;
}

.package-includes h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 32px;
}

.include-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.include-item:hover {
  background: rgba(249, 162, 67, 0.05);
  transform: translateX(4px);
}

.include-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249, 162, 67, 0.15), rgba(41, 170, 223, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a243;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.include-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 8px;
}

.include-content p {
  color: #4b5873;
  line-height: 1.7;
  margin: 0;
}

/* Package Benefits */
.package-benefits {
  margin-bottom: 50px;
}

.package-benefits h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 2px solid rgba(14, 31, 86, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #f9a243;
  box-shadow: 0 8px 20px rgba(249, 162, 67, 0.1);
}

.benefit-item i {
  color: #f9a243;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 6px;
}

.benefit-item p {
  color: #4b5873;
  line-height: 1.7;
  margin: 0;
}

/* FAQ Section */
.package-faq {
  margin-bottom: 50px;
}

.package-faq h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(14, 31, 86, 0.1);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #f9a243;
  box-shadow: 0 4px 15px rgba(249, 162, 67, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(249, 162, 67, 0.05);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1f56;
  margin: 0;
}

.faq-question i {
  color: #f9a243;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: #4b5873;
  line-height: 1.8;
  margin: 0;
}

/* Package Sidebar */
.package-sidebar {
  position: sticky;
  top: 100px;
}

/* Pricing Card */
.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(249, 162, 67, 0.2);
  margin-bottom: 32px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.pricing-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-amount .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f9a243;
}

.pricing-amount .duration {
  font-size: 1rem;
  color: #4b5873;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5873;
  font-size: 0.95rem;
}

.pricing-features i {
  color: #f9a243;
  font-size: 0.9rem;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-cta .btn-primary,
.pricing-cta .btn-secondary {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.pricing-cta .btn-primary {
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 162, 67, 0.3);
}

.pricing-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 162, 67, 0.4);
}

.pricing-cta .btn-secondary {
  background: transparent;
  color: #f9a243;
  border: 2px solid #f9a243;
}

.pricing-cta .btn-secondary:hover {
  background: rgba(249, 162, 67, 0.05);
  transform: translateY(-2px);
}

/* Contact Card */
.contact-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 32px;
  border: 1px solid rgba(14, 31, 86, 0.1);
}

.contact-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h4 i {
  color: #f9a243;
}

.contact-card p {
  color: #4b5873;
  margin-bottom: 20px;
  line-height: 1.7;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #0e1f56;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 31, 86, 0.1);
}

.contact-link:hover {
  background: rgba(249, 162, 67, 0.05);
  border-color: #f9a243;
  color: #f9a243;
  transform: translateX(4px);
}

.contact-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #25d366;
}

.contact-link i {
  font-size: 1.1rem;
}

/* Related Packages */
.related-packages {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.1);
}

.related-packages h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-packages h4 i {
  color: #f9a243;
}

.related-package-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.related-package-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-package-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.related-package-item a:hover {
  transform: translateX(4px);
}

.package-name {
  color: #0e1f56;
  font-weight: 600;
  font-size: 0.95rem;
}

.related-package-item a:hover .package-name {
  color: #f9a243;
}

.package-price {
  color: #f9a243;
  font-weight: 700;
  font-size: 0.9rem;
}

/* CTA Section */
.package-detail-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

/*.package-detail-cta .container {*/
/*  max-width: 1600px;*/
/*  padding-left: 60px;*/
/*  padding-right: 60px;*/
/*}*/

.package-detail-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}

.package-detail-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  /*justify-content: center;*/
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
  background: #fff;
  color: #f9a243;
}

.cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button i {
  font-size: 0.9rem;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .package-detail-hero {
    padding: 80px 0 50px;
  }

  .package-detail-hero .container,
  .package-overview .container,
  .package-detail-cta .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .package-overview {
    padding: 50px 0;
  }

  .package-sidebar {
    position: static;
    margin-top: 40px;
  }

  .package-featured-image img {
    aspect-ratio: 16 / 10;
  }

  .package-detail-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .package-detail-hero {
    padding: 60px 0 40px;
  }

  .package-detail-hero .container,
  .package-overview .container,
  .package-detail-cta .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .package-overview {
    padding: 40px 0;
  }

  .package-hero-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .package-description h2,
  .package-includes h2,
  .package-benefits h2,
  .package-faq h2 {
    font-size: 1.6rem;
  }

  .package-featured-image {
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .package-featured-image img {
    aspect-ratio: 4 / 3;
  }

  .include-item {
    flex-direction: column;
    text-align: center;
  }

  .include-icon {
        margin: 0 auto;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .package-detail-cta {
    padding: 40px 0;
  }
}

/* Accessibility */
.back-link:focus,
.contact-link:focus,
.cta-button:focus {
  outline: 3px solid #f9a243;
  outline-offset: 2px;
}







.hero {
  padding: 80px 0;
  background: #f8f9fa;
  background-image: 
    radial-gradient(circle, rgba(14, 31, 86, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/*.hero .container {*/
/*  max-width: 1600px;*/
/*  margin: 0 auto;*/
/*  padding: 0 60px;*/
/*}*/

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Section */
.hero-left {
  padding-right: 40px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #4b5873;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-description {
  font-size: 1rem;
  color: #4b5873;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Statistics */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0e1f56;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #4b5873;
  margin-top: 4px;
  font-weight: 500;
}

/* Avatars */
.hero-avatars {
  display: flex;
  gap: -10px;
  margin-bottom: 24px;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  object-fit: cover;
  display: block;
}

.avatar-circle:first-child {
  margin-left: 0;
}

/* Reviews */
.hero-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars i {
  color: #f9a243;
  font-size: 1.2rem;
}

.review-text {
  font-size: 0.95rem;
  color: #4b5873;
  font-weight: 600;
}

/* Certifications */
.hero-certifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #4b5873;
}

.cert-item i {
  color: #0e1f56;
  font-size: 1rem;
}

/* Right Section - CTA Card */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 550px;
  width: 100%;
}

.cta-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.cta-content {
  padding: 32px;
}

.cta-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 8px;
}

.cta-subheading {
  font-size: 0.95rem;
  color: #4b5873;
  margin-bottom: 24px;
}

/* Trial Details */
.trial-details {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-size: 0.95rem;
  color: #4b5873;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0e1f56;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  /*flex-direction: column;*/
  gap: 12px;
  margin-bottom: 24px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  font-size: 1rem;
}

.btn-primary {
  background: #0e1f56;
  color: #fff;
}

.btn-primary:hover {
  background: #1a2f6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px;
}

.btn-secondary {
  background: transparent;
  color: #0e1f56;
  border: 2px solid #0e1f56;
}

.btn-secondary:hover {
  background: rgba(14, 31, 86, 0.05);
  transform: translateY(-2px);
}

/* CTA Benefits */
.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #4b5873;
}

.benefit-item i {
  color: #29aadf;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero .container {
    padding: 0 40px;
  }
  
  .hero-content {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero .container {
    padding: 0 30px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-avatars {
    justify-content: center;
  }
  
  .hero-reviews {
    justify-content: center;
  }
  
  .hero-certifications {
    align-items: center;
  }
  
  .cta-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero .container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .cta-content {
    padding: 24px;
  }
  
  .cta-heading {
    font-size: 1.5rem;
  }
}

/* About Mukti Section */
.about-mukti {
  padding: 25px 0;
  background: #fafafa;
}

.about-mukti .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-main-subtitle {
  font-size: 1.2rem;
  color: #4b5873;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Content - Two Column Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column - Image Collage */
.about-left {
  position: sticky;
  top: 100px;
}

.image-collage {
  border: 2px solid #000;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.single-image-container {
  width: 100%;
  overflow: hidden;
}

.single-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Collage Footer */
.collage-footer {
  background: #1a1a1a;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.footer-decoration {
  height: 4px;
  background: linear-gradient(90deg, transparent, #f9a243, #f9a243, #f9a243, transparent);
  margin: 0 auto;
  width: 85%;
  position: relative;
  border-top: 2px solid #f9a243;
  border-bottom: 2px solid #f9a243;
}

.footer-decoration:first-child {
  margin-bottom: 20px;
}

.footer-decoration:last-child {
  margin-top: 20px;
}

.footer-text {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  letter-spacing: 2px;
  font-family: 'Georgia', serif;
}

/* Right Column - About Content */
.about-right {
  padding-left: 20px;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.05rem;
  color: #4b5873;
  line-height: 1.9;
  margin-bottom: 50px;
}

/* About Statistics */
.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 120px;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0e1f56;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 1rem;
  color: #4b5873;
  font-weight: 500;
}



/* Introduce Our Medico Yoga Section */
.medico-yoga {
  padding: 25px 0;
  background: #fff;
}

.medico-yoga .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header Section */
.medico-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.medico-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 24px;
  line-height: 1.2;
}

.medico-description {
  font-size: 1.1rem;
  color: #4b5873;
  line-height: 1.8;
  margin: 0;
}

/* Feature Cards Grid */
.medico-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.medico-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 31, 86, 0.1);
}

.medico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(14, 31, 86, 0.15);
  border-color: #f9a243;
}

.medico-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.medico-card:hover .medico-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(249, 162, 67, 0.3);
}

.medico-icon i {
  font-size: 2rem;
  color: #fff;
}

.medico-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.medico-card:hover .medico-card-title {
  color: #f9a243;
}

.medico-card-text {
  font-size: 1rem;
  color: #4b5873;
  line-height: 1.7;
  margin: 0;
}


/* Testimonial Section */
.testimonial {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.testimonial .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 12px 30px rgba(14, 31, 86, 0.12);
  border: 4px solid #fff;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 32px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.08);
  margin: 0 auto;
  max-width: 1100px;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #4b5873;
  line-height: 1.9;
  margin-bottom: 24px;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.testimonial-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0e1f56;
}

.testimonial-role {
  font-size: 0.95rem;
  color: #4b5873;
}


/* Membership Section */
.membership {
  padding: 100px 0;
  background: #f8fbff;
}

.membership .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.membership-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.membership-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 20px;
}

.membership-subtitle {
  font-size: 1.05rem;
  color: #4b5873;
  line-height: 1.8;
  margin: 0;
}

.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.1);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(14, 31, 86, 0.15);
  border-color: #29aadf;
}

.plan-card.popular {
  border: 2px solid #29aadf;
  box-shadow: 0 22px 70px rgba(41, 170, 223, 0.2);
}

.stars i {
  color: #f9a243;
  margin-right: 2px;
}

.stars.small i {
  font-size: 0.9rem;
}

.tag {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.highlight-quote {
  margin: 0;
  line-height: 1.9;
  font-size: 1.05rem;
}

.highlight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-footer .meta {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.highlight-footer .badge {
  background: #fff;
  color: #0e1f56;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(14, 31, 86, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.story-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(14, 31, 86, 0.08);
}

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

.story-header h4 {
  margin: 0;
  font-size: 1rem;
  color: #0e1f56;
}

.story-role {
  margin: 2px 0 4px;
  color: #4b5873;
  font-size: 0.9rem;
}

.story-text {
  margin: 0;
  color: #4b5873;
  line-height: 1.7;
  font-size: 0.97rem;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: rgba(41, 170, 223, 0.1);
  color: #0e1f56;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}

.time {
  color: #4b5873;
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .success-stories .container {
    padding: 0 30px;
  }
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .success-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .success-stories {
    padding: 60px 0;
  }
  .success-stories .container {
    padding: 0 20px;
  }
  .success-grid {
    grid-template-columns: 1fr;
  }
  .success-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .success-highlight {
    padding: 22px;
  }
}

/* Final CTA Section */
.final-cta {
  padding: 25px 0;
  background: #fff;
}

.final-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.final-cta-header {
  text-align: center;
  margin-bottom: 32px;
}

.final-cta-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 10px;
}

.final-cta-header p {
  font-size: 1.05rem;
  color: #4b5873;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.cta-form,
.cta-offer {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.08);
}

.cta-form {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-form h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0e1f56;
}

.cta-note {
  margin: 0 0 10px;
  color: #4b5873;
  font-size: 0.95rem;
}

.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: #0e1f56;
  font-size: 0.95rem;
}

.cta-form input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(14, 31, 86, 0.2);
  padding: 0 12px;
  font-size: 0.95rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.cta-form input:focus {
  outline: none;
  border-color: #29aadf;
  box-shadow: 0 0 0 3px rgba(41, 170, 223, 0.2);
}

.btn-submit {
  height: 46px;
  border: none;
  border-radius: 10px;
  background: #0e1f56;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 12px 28px rgba(14, 31, 86, 0.2);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(14, 31, 86, 0.25);
}

.secure-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5873;
  font-size: 0.92rem;
  margin-top: -4px;
}

.secure-line i {
  color: #29aadf;
}

.cta-offer {
  padding: 26px;
  background: linear-gradient(135deg, #0e3b70, #078f83);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-header h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 800;
}

.offer-strike {
  margin: 0;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.7);
}

.offer-price {
  margin: 4px 0;
  font-size: 2.6rem;
  font-weight: 800;
}

.offer-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.offer-includes h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
}

.offer-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-includes li {
  position: relative;
  padding-left: 20px;
  color: #e9f7f5;
  font-weight: 600;
}

.offer-includes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #29ffd2;
}

.guarantee-card {
  margin-top: 26px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(14, 31, 86, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 31, 86, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e1f56;
  font-size: 1.4rem;
}

.guarantee-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0e1f56;
}

.guarantee-card p {
  margin: 4px 0 0;
  color: #4b5873;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .final-cta {
    padding: 70px 0;
  }
  .final-cta .container {
    padding: 0 24px;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .final-cta {
    padding: 60px 0;
  }
  .final-cta .container {
    padding: 0 20px;
  }
  .offer-price {
    font-size: 2.2rem;
  }
  .cta-form,
  .cta-offer {
    padding: 20px;
  }
}



/* Step 1: Default hide submenu */
.menu-item-has-children .sub-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity 0.8s ease;
}

/* Step 2: Show submenu ONLY when li (parent) is hovered */
.menu-item-has-children:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Step 3: IMPORTANT FIX — submenu ke hover rakhle menu active thakbe */
.menu-item-has-children .sub-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}





/* Hero Section */
.location-hero {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/4498608/pexels-photo-4498608.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,86,0.85), rgba(41,170,223,0.75));
}



.location-hero-content {
  color: #fff;
  animation: fadeInLeft 1s ease-out forwards;
}

.location-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f9a243;
  margin-bottom: 12px;
}

.location-eyebrow::before,
.location-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.location-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.location-hero-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
}

/* Location Info Section */
.location-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.location-info .container {
  max-width: 1600px;
}

.location-details-card,
.location-map-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.05);
  height: 100%;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i {
  color: #f9a243;
  font-size: 1.5rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(14, 31, 86, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249, 162, 67, 0.15), rgba(41, 170, 223, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a243;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 6px;
}

.detail-content p {
  color: #4b5873;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.detail-content a {
  color: #29aadf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-content a:hover {
  color: #f9a243;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* Services Section */
.location-services {
  padding: 40px 0;
  background: #fff;
}

.location-services .container {
  max-width: 1600px;
}

.section-intro {
  color: #6b7280;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(249, 162, 67, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(249, 162, 67, 0.15), rgba(41, 170, 223, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #f9a243;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 12px;
}

.service-card p {
  color: #4b5873;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Trainers Section */
.location-trainers {
  padding: 80px 0;
  background: #f8f9fa;
}

.location-trainers .container {
  max-width: 1600px;
}

.trainer-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(249, 162, 67, 0.2);
}

.trainer-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-image img {
  transform: scale(1.1);
}

.trainer-content {
  padding: 24px;
}

.trainer-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 6px;
}

.trainer-role {
  color: #f9a243;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: block;
}

.trainer-bio {
  color: #4b5873;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.trainer-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specialty-tag {
  background: rgba(249, 162, 67, 0.15);
  color: #f9a243;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Section */
.location-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9a243, #29aadf);
  color: #fff;
}

.location-cta .container {
  max-width: 1600px;
}

.location-cta-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.location-cta-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}

.location-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
  background: #fff;
  color: #f9a243;
}

.cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #f9a243;
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button i {
  font-size: 0.9rem;
  line-height: 1;
}



/* Accessibility */
.detail-content a:focus,
.cta-button:focus {
  outline: 3px solid #f9a243;
  outline-offset: 2px;
}

/* =========================================================
   Homepage About Section - Square Image + Large Video Support
   Only overrides the existing About media shape/preview area.
   ========================================================= */
.mini-about__media {
  position: relative !important;
  width: 100% !important;
  max-width: 640px !important;
}

.mini-about__media .media-circle,
.mini-about__media .media-circle.media-circle--video {
  width: 100% !important;
  max-width: 640px !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: 560px !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background: #f4f7fb !important;
}

.mini-about__media .media-circle::before,
.mini-about__media .media-circle::after {
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.mini-about__media .media-circle > img,
.mini-about__media .media-circle img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.mini-about__media .media-circle.media-circle--video {
  background: #000000 !important;
}

.mini-about__media .media-circle iframe,
.mini-about__media .media-circle video,
.mini-about__media .media-circle embed,
.mini-about__media .media-circle object,
.mini-about__media .mini-about__video,
.mini-about__media iframe.mini-about__video,
.mini-about__media video.mini-about__video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000000 !important;
}

.mini-about__media video.mini-about__video,
.mini-about__media .media-circle video {
  object-fit: cover !important;
  object-position: center !important;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .mini-about__media {
    max-width: 640px !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 640px !important;
    min-height: 560px !important;
  }
}

@media (max-width: 1199px) {
  .mini-about__media {
    max-width: 580px !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 580px !important;
    min-height: 500px !important;
  }
}

@media (max-width: 991px) {
  .mini-about__media {
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 620px !important;
    min-height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 575px) {
  .mini-about__media {
    max-width: 100% !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 100% !important;
    min-height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
}

/* =========================================================
   Homepage About Section - Final Video Wrapper Fix
   Only fixes square media box + full-size video iframe/video
   ========================================================= */

.mini-about__media {
  position: relative !important;
  width: 100% !important;
  max-width: 640px !important;
}

.mini-about__media .media-circle,
.mini-about__media .media-circle.media-circle--video {
  width: 100% !important;
  max-width: 640px !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: 560px !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background: #f4f7fb !important;
}

.mini-about__media .media-circle::before,
.mini-about__media .media-circle::after {
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.mini-about__media .media-circle > img,
.mini-about__media .media-circle img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.mini-about__media .media-circle.media-circle--video {
  background: #000000 !important;
}

.mini-about__media .media-circle .mini-about__video-wrap,
.mini-about__media .mini-about__video-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  display: block !important;
  overflow: hidden !important;
  background: #000000 !important;
  border-radius: 0 !important;
  z-index: 1 !important;
}

.mini-about__media .media-circle .mini-about__video-frame,
.mini-about__media .mini-about__video-frame,
.mini-about__media .media-circle .mini-about__video-wrap iframe,
.mini-about__media .media-circle .mini-about__video-wrap video,
.mini-about__media .media-circle iframe,
.mini-about__media .media-circle video,
.mini-about__media .media-circle embed,
.mini-about__media .media-circle object,
.mini-about__media iframe.mini-about__video-frame,
.mini-about__media video.mini-about__video-frame {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000000 !important;
}

.mini-about__media video.mini-about__video-frame,
.mini-about__media .media-circle .mini-about__video-wrap video,
.mini-about__media .media-circle video {
  object-fit: cover !important;
  object-position: center !important;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .mini-about__media {
    max-width: 640px !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 640px !important;
    min-height: 560px !important;
  }
}

@media (max-width: 1199px) {
  .mini-about__media {
    max-width: 580px !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 580px !important;
    min-height: 500px !important;
  }
}

@media (max-width: 991px) {
  .mini-about__media {
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 620px !important;
    min-height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 575px) {
  .mini-about__media {
    max-width: 100% !important;
  }

  .mini-about__media .media-circle,
  .mini-about__media .media-circle.media-circle--video {
    max-width: 100% !important;
    min-height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
}

/* =========================================================
   Homepage About Section - Emergency Force Fix
   Forces About image/video to fill the full square media box.
   ========================================================= */

section.mini-about .mini-about__media,
section.mini-about .mini-about__media.col-lg-6,
section.mini-about .mini-about__media.mini-about__media--has-video,
section.mini-about .mini-about__media.mini-about__media--has-image {
  position: relative !important;
  width: 100% !important;
  max-width: 640px !important;
  min-height: 560px !important;
}

section.mini-about .mini-about__media .media-circle,
section.mini-about .mini-about__media .media-circle.media-circle--image,
section.mini-about .mini-about__media .media-circle.media-circle--video,
section.mini-about .mini-about__media .mantra-about-image-box,
section.mini-about .mini-about__media .mantra-about-video-box {
  width: 100% !important;
  max-width: 640px !important;
  height: auto !important;
  min-height: 560px !important;
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background: #f4f7fb !important;
}

section.mini-about .mini-about__media .media-circle::before,
section.mini-about .mini-about__media .media-circle::after,
section.mini-about .mini-about__media .mantra-about-image-box::before,
section.mini-about .mini-about__media .mantra-about-image-box::after,
section.mini-about .mini-about__media .mantra-about-video-box::before,
section.mini-about .mini-about__media .mantra-about-video-box::after {
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

section.mini-about .mini-about__media .media-circle > img,
section.mini-about .mini-about__media .mantra-about-image-box > img {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

section.mini-about .mini-about__media .media-circle.media-circle--video,
section.mini-about .mini-about__media .mantra-about-video-box {
  background: #000000 !important;
}

section.mini-about .mini-about__media .mini-about__video-wrap,
section.mini-about .mini-about__media .mantra-about-video-wrap,
section.mini-about .mini-about__media .media-circle .mini-about__video-wrap,
section.mini-about .mini-about__media .mantra-about-video-box .mantra-about-video-wrap {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  overflow: hidden !important;
  background: #000000 !important;
  border-radius: 0 !important;
  z-index: 1 !important;
}

section.mini-about .mini-about__media .mini-about__video-frame,
section.mini-about .mini-about__media .mantra-about-video-frame,
section.mini-about .mini-about__media .mini-about__video-wrap iframe,
section.mini-about .mini-about__media .mini-about__video-wrap video,
section.mini-about .mini-about__media .mantra-about-video-wrap iframe,
section.mini-about .mini-about__media .mantra-about-video-wrap video,
section.mini-about .mini-about__media iframe,
section.mini-about .mini-about__media video {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000000 !important;
  transform: none !important;
}

section.mini-about .mini-about__media video,
section.mini-about .mini-about__media .mini-about__video-frame:is(video),
section.mini-about .mini-about__media .mantra-about-video-frame:is(video) {
  object-fit: cover !important;
  object-position: center !important;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  section.mini-about .mini-about__media,
  section.mini-about .mini-about__media.col-lg-6,
  section.mini-about .mini-about__media .media-circle,
  section.mini-about .mini-about__media .mantra-about-image-box,
  section.mini-about .mini-about__media .mantra-about-video-box {
    max-width: 640px !important;
    min-height: 560px !important;
  }
}

@media (max-width: 1199px) {
  section.mini-about .mini-about__media,
  section.mini-about .mini-about__media.col-lg-6,
  section.mini-about .mini-about__media .media-circle,
  section.mini-about .mini-about__media .mantra-about-image-box,
  section.mini-about .mini-about__media .mantra-about-video-box {
    max-width: 580px !important;
    min-height: 500px !important;
  }
}

@media (max-width: 991px) {
  section.mini-about .mini-about__media,
  section.mini-about .mini-about__media.col-lg-6 {
    max-width: 620px !important;
    min-height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  section.mini-about .mini-about__media .media-circle,
  section.mini-about .mini-about__media .mantra-about-image-box,
  section.mini-about .mini-about__media .mantra-about-video-box {
    max-width: 620px !important;
    min-height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
}

@media (max-width: 575px) {
  section.mini-about .mini-about__media,
  section.mini-about .mini-about__media.col-lg-6,
  section.mini-about .mini-about__media .media-circle,
  section.mini-about .mini-about__media .mantra-about-image-box,
  section.mini-about .mini-about__media .mantra-about-video-box {
    max-width: 100% !important;
    min-height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
}


/* =========================================================
   Choose Us Controller - Right Media Image/Video Force Fix
   Added for Theme Options image/video support.
   ========================================================= */
.mantra-choose-us-media,
.mantra-choose-us-media--video {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  min-height: 520px !important;
  height: auto !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: #000 !important;
  line-height: 0 !important;
}

.mantra-choose-us-media iframe,
.mantra-choose-us-media video,
.mantra-choose-us-media .mantra-choose-us-video-frame,
.mantra-choose-us-media--video iframe,
.mantra-choose-us-media--video video,
.mantra-choose-us-media--video .mantra-choose-us-video-frame {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: #000 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.mantra-choose-us-media video,
.mantra-choose-us-media--video video {
  object-fit: cover !important;
  object-position: center !important;
}

/* fallback: if iframe is output inside Choose Us right column without wrapper */
section.container .row.align-items-center > .col-lg-6:last-child > iframe,
section.container .row.align-items-center > .col-lg-6:last-child > video {
  width: 100% !important;
  height: 520px !important;
  min-height: 520px !important;
  max-width: none !important;
  display: block !important;
  border: 0 !important;
  border-radius: 16px !important;
}

@media (max-width: 991px) {
  .mantra-choose-us-media,
  .mantra-choose-us-media--video {
    min-height: 420px !important;
    aspect-ratio: 4 / 3 !important;
  }

  section.container .row.align-items-center > .col-lg-6:last-child > iframe,
  section.container .row.align-items-center > .col-lg-6:last-child > video {
    height: 420px !important;
    min-height: 420px !important;
  }
}

@media (max-width: 575px) {
  .mantra-choose-us-media,
  .mantra-choose-us-media--video {
    min-height: 260px !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 12px !important;
  }

  .mantra-choose-us-media iframe,
  .mantra-choose-us-media video,
  .mantra-choose-us-media .mantra-choose-us-video-frame,
  .mantra-choose-us-media--video iframe,
  .mantra-choose-us-media--video video,
  .mantra-choose-us-media--video .mantra-choose-us-video-frame {
    border-radius: 12px !important;
  }

  section.container .row.align-items-center > .col-lg-6:last-child > iframe,
  section.container .row.align-items-center > .col-lg-6:last-child > video {
    height: 260px !important;
    min-height: 260px !important;
    border-radius: 12px !important;
  }
}

/* =========================================================
   Service Controller One - Bottom Video Above CTA
   ========================================================= */
.mantra-services-cluster .mantra-service-bottom-video-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: 980px !important;
  height: auto !important;
  min-height: 360px !important;
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  overflow: hidden !important;
  margin: 0 auto 35px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #000 !important;
  box-shadow: 0 24px 60px rgba(14, 31, 86, 0.18) !important;
  transform: none !important;
  z-index: 1 !important;
}

.mantra-services-cluster .mantra-service-bottom-video-wrap iframe,
.mantra-services-cluster .mantra-service-bottom-video-wrap video,
.mantra-services-cluster .mantra-service-bottom-video-wrap .mantra-service-bottom-video-frame {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #000 !important;
  transform: none !important;
}

.mantra-services-cluster .mantra-service-bottom-video-wrap video,
.mantra-services-cluster .mantra-service-bottom-video-wrap video.mantra-service-bottom-video-frame {
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 991px) {
  .mantra-services-cluster .mantra-service-bottom-video-wrap {
    max-width: 100% !important;
    min-height: 300px !important;
    margin: 0 auto 28px !important;
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 575px) {
  .mantra-services-cluster .mantra-service-bottom-video-wrap {
    min-height: 220px !important;
    margin: 0 auto 24px !important;
    border-radius: 16px !important;
  }

  .mantra-services-cluster .mantra-service-bottom-video-wrap iframe,
  .mantra-services-cluster .mantra-service-bottom-video-wrap video,
  .mantra-services-cluster .mantra-service-bottom-video-wrap .mantra-service-bottom-video-frame {
    border-radius: 16px !important;
  }
}

/* =========================================================
   Single Package Featured Media Video Fix
   ========================================================= */
.package-overview .package-featured-media--video {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #000 !important;
  margin-bottom: 30px !important;
}

.package-overview .package-featured-video-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 430px !important;
  height: auto !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #000 !important;
}

.package-overview .package-featured-video-wrap iframe,
.package-overview .package-featured-video-wrap video,
.package-overview .package-featured-video-wrap .package-featured-video-frame {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #000 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.package-overview .package-featured-video-wrap video,
.package-overview .package-featured-video-wrap video.package-featured-video-frame {
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 991px) {
  .package-overview .package-featured-video-wrap {
    min-height: 320px !important;
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 575px) {
  .package-overview .package-featured-media--video,
  .package-overview .package-featured-video-wrap {
    min-height: 220px !important;
    border-radius: 16px !important;
  }

  .package-overview .package-featured-video-wrap iframe,
  .package-overview .package-featured-video-wrap video,
  .package-overview .package-featured-video-wrap .package-featured-video-frame {
    border-radius: 16px !important;
  }
}

/* =========================================================
   Advisory Board Read More Popup
   Added for /about/advisory-board/ expert description modal
   ========================================================= */
.mantra-about-advisory .advisory-specialty {
    color: #2d3440 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    margin-bottom: 22px !important;
}

.mantra-about-advisory .read-more-btn,
.mantra-about-advisory button.read-more-btn.mantra-advisory-popup-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    min-height: 40px !important;
    padding: 8px 25px !important;
    border: 1.5px solid #F9A243 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #F9A243 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.mantra-about-advisory .read-more-btn:hover,
.mantra-about-advisory .read-more-btn:focus,
.mantra-about-advisory button.read-more-btn.mantra-advisory-popup-trigger:hover,
.mantra-about-advisory button.read-more-btn.mantra-advisory-popup-trigger:focus {
    background: #F9A243 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(249, 162, 67, 0.24) !important;
    outline: none !important;
}

.mantra-advisory-popup {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease !important;
}

.mantra-advisory-popup.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mantra-advisory-popup__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(8, 18, 40, 0.72) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.mantra-advisory-popup__dialog {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 920px !important;
    max-height: 86vh !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border-radius: 22px !important;
    padding: 42px !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28) !important;
    transform: translateY(18px) scale(0.98) !important;
    transition: transform 0.25s ease !important;
}

.mantra-advisory-popup.is-open .mantra-advisory-popup__dialog {
    transform: translateY(0) scale(1) !important;
}

.mantra-advisory-popup__dialog::-webkit-scrollbar {
    width: 8px !important;
}

.mantra-advisory-popup__dialog::-webkit-scrollbar-track {
    background: #f6f6f6 !important;
    border-radius: 999px !important;
}

.mantra-advisory-popup__dialog::-webkit-scrollbar-thumb {
    background: rgba(249, 162, 67, 0.8) !important;
    border-radius: 999px !important;
}

.mantra-advisory-popup__close {
    position: sticky !important;
    top: 0 !important;
    float: right !important;
    z-index: 3 !important;
    width: 40px !important;
    height: 40px !important;
    margin: -18px -18px 10px 18px !important;
    border: 1px solid rgba(249, 162, 67, 0.18) !important;
    border-radius: 50% !important;
    background: #fff6ec !important;
    color: #F9A243 !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    line-height: 36px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.mantra-advisory-popup__close:hover,
.mantra-advisory-popup__close:focus {
    background: #F9A243 !important;
    color: #ffffff !important;
    transform: rotate(90deg) !important;
    outline: none !important;
}

.mantra-advisory-popup__title {
    color: #111111 !important;
    font-size: clamp(24px, 3vw, 32px) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin: 0 48px 6px 0 !important;
}

.mantra-advisory-popup__role {
    display: block !important;
    color: #F9A243 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
    text-transform: uppercase !important;
}

.mantra-advisory-popup__description {
    clear: both !important;
    color: #2f3742 !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
}

.mantra-advisory-popup__description p {
    margin: 0 0 16px !important;
}

body.mantra-popup-open {
    overflow: hidden !important;
}

@media (max-width: 991px) {
    .mantra-advisory-popup {
        padding: 18px !important;
    }

    .mantra-advisory-popup__dialog {
        max-height: 88vh !important;
        padding: 36px 30px 30px !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 575px) {
    .mantra-about-advisory .advisory-specialty {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .mantra-about-advisory .read-more-btn,
    .mantra-about-advisory button.read-more-btn.mantra-advisory-popup-trigger {
        min-height: 38px !important;
        padding: 8px 22px !important;
        font-size: 13px !important;
    }

    .mantra-advisory-popup {
        padding: 12px !important;
    }

    .mantra-advisory-popup__dialog {
        max-height: 90vh !important;
        padding: 32px 22px 24px !important;
        border-radius: 16px !important;
    }

    .mantra-advisory-popup__close {
        width: 36px !important;
        height: 36px !important;
        margin: -12px -10px 8px 14px !important;
        font-size: 26px !important;
        line-height: 32px !important;
    }

    .mantra-advisory-popup__title {
        margin-right: 42px !important;
        font-size: 22px !important;
    }

    .mantra-advisory-popup__description {
        font-size: 15px !important;
        line-height: 1.75 !important;
    }
}




/* Team page template completion */
.mantra-team-card .team-card-image > a {
  display: block;
  width: 100%;
  height: 100%;
}

.mantra-team-card .team-card-content h4 a {
  color: inherit;
  text-decoration: none;
}

.mantra-team-card .team-card-content h4 a:hover {
  color: #f9a243;
}

.team-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f1f3f5;
  color: #b2bac4;
  font-size: 4rem;
}

@media (min-width: 1200px) {
  .mantra-team-grid-section .team-card-image {
    height: 420px;
  }
}

/* Team slider stability fix (scoped) */
.team-section {
  overflow: hidden;
}

.team-section .team-slider-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
  padding: 12px 2px 0;
}

.team-section .team-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
  padding: 0 !important;
}

.team-section .team-slider .swiper-wrapper {
  align-items: stretch;
  overflow: visible !important;
}

.team-section .team-slider .swiper-slide {
  display: flex;
  flex: 0 0 auto !important;
  height: auto;
  min-width: 0;
  overflow: visible !important;
}

.team-section .team-member {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden !important;
  border-radius: 24px;
}

.team-section .team-member > a {
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.team-section .team-member-img {
  overflow: hidden;
}

.team-section .team-member-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}

.team-section .team-member-role {
  flex: 1 1 auto;
}

.team-section .team-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.team-section .team-social a {
  width: 40px;
  height: 40px;
  border: 0;
  background: #f3f4f6;
  color: #0a314f;
  font-size: 1.1rem;
  backdrop-filter: none;
}

.team-section .team-social a:hover {
  background: #F8A342;
  color: #fff;
}

.team-section .team-bottom-controls {
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  margin-top: 32px;
}

.team-section .team-bottom-controls .btn-primary {
  text-align: center;
}

@media (max-width: 575.98px) {
  .team-section .team-slider-wrapper {
    padding-inline: 0;
  }

  .team-section .team-bottom-controls {
    gap: 12px;
  }

  .team-section .team-bottom-controls .btn-primary {
    order: 3;
    width: 100%;
    max-width: 280px;
  }
}

/* =========================================================
   Homepage layout stability + Appointment section rebuild
   ========================================================= */

/* Keep Bootstrap/Swiper internals from forcing homepage sections wider than the viewport. */
body.home main,
body.home section,
body.home .row,
body.home [class*="col-"],
body.home .swiper,
body.home .swiper-wrapper,
body.home .swiper-slide,
body.front-page main,
body.front-page section,
body.front-page .row,
body.front-page [class*="col-"],
body.front-page .swiper,
body.front-page .swiper-wrapper,
body.front-page .swiper-slide {
  min-width: 0;
}

body.home .swiper,
body.home .swiper-wrapper,
body.front-page .swiper,
body.front-page .swiper-wrapper {
  max-width: 100%;
}

/* Requested additional top spacing for the homepage team section. */
.team-section {
  padding-top: 20px;
}

.mantra-appointment-section {
  padding: 55px 0 60px;
  overflow: hidden;
}

.mantra-appointment-section .container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 24px;
}

.mantra-appointment-section .mantra-appointment-grid,
.mantra-appointment-section .mantra-appointment-side-cards {
  min-width: 0;
}

.mantra-appointment-section .mantra-appointment-primary-column,
.mantra-appointment-section .mantra-appointment-secondary-column,
.mantra-appointment-section .mantra-appointment-side-cards > [class*="col-"] {
  display: flex;
  min-width: 0;
}

.mantra-appointment-section .hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 350px);
  align-items: center;
  gap: clamp(26px, 2.3vw, 42px);
  width: 100%;
  min-height: 426px;
  padding: 38px 40px 38px 70px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: linear-gradient(112deg, #208fca 0%, #0fa6cf 48%, #27bfd1 100%);
  box-shadow: none;
}

.mantra-appointment-section .hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--mantra-appointment-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.25;
  filter: saturate(0.75) contrast(0.95);
  mix-blend-mode: soft-light;
}

.mantra-appointment-section .hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 139, 201, 0.94) 0%, rgba(10, 167, 207, 0.86) 57%, rgba(31, 190, 210, 0.82) 100%);
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
}

.mantra-appointment-section .hero-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 475px;
}

.mantra-appointment-section .hero-card h4 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

.mantra-appointment-section .hero-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(27px, 1.72vw, 32px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.45px;
}

.mantra-appointment-section .hero-card-content > p {
  max-width: 455px;
  margin: 0 0 27px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.82;
  opacity: 0.98;
}

.mantra-appointment-section .btn-learn,
.mantra-appointment-section .panel-button,
.mantra-appointment-section .link-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-decoration: none;
}

.mantra-appointment-section .btn-learn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.mantra-appointment-section .btn-learn:hover,
.mantra-appointment-section .btn-learn:focus {
  color: #ffffff;
}

.mantra-appointment-section .btn-learn i,
.mantra-appointment-section .link-button i {
  transition: transform 0.25s ease;
}

.mantra-appointment-section .btn-learn:hover i,
.mantra-appointment-section .link-button:hover i {
  transform: translateX(4px);
}

.mantra-appointment-section .appointment-panel {
  position: relative;
  inset: auto;
  transform: none;
  z-index: 3;
  width: 100%;
  height: auto;
  min-height: 350px;
  margin: 0;
  padding: 40px 40px 36px;
  border: 1px solid #d9e8f8;
  border-radius: 36px;
  overflow: hidden;
  color: #10253e;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(12, 73, 116, 0.08);
}

.mantra-appointment-section .appointment-panel .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
}

.mantra-appointment-section .appointment-panel .panel-head h3 {
  margin: 0;
  color: #10253e;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.25px;
}

.mantra-appointment-section .appointment-panel .panel-head .badge {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid #d7e9ff;
  border-radius: 15px;
  color: #159ed8;
  background: #ffffff;
  font-size: 17px;
}

.mantra-appointment-section .appointment-panel > p {
  margin: 0 0 15px;
  color: #6f8098;
  font-size: 15px;
  line-height: 1.75;
}

.mantra-appointment-section .call-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 25px;
}

.mantra-appointment-section .call-row .icon {
  display: grid;
  flex: 0 0 56px;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #ffffff;
  background: #ffa342;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.28);
  font-size: 18px;
}

.mantra-appointment-section .call-details {
  min-width: 0;
}

.mantra-appointment-section .call-details strong {
  display: block;
  margin: 0 0 6px;
  color: #8b95a7;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
}

.mantra-appointment-section .call-details a {
  display: block;
  color: #081d38;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.mantra-appointment-section .call-details a + a {
  margin-top: 4px;
}

.mantra-appointment-section .panel-button {
  position: relative;
  width: 100%;
  min-height: 50px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  color: #ffffff;
  background: #ffa342;
  box-shadow: 0 12px 24px rgba(249, 162, 67, 0.22);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mantra-appointment-section .panel-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-105%);
  transition: transform 0.45s ease;
}

.mantra-appointment-section .panel-button:hover::before {
  transform: translateX(105%);
}

.mantra-appointment-section .panel-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 28px rgba(249, 162, 67, 0.3);
}

.mantra-appointment-section .panel-button span,
.mantra-appointment-section .panel-button i {
  position: relative;
  z-index: 1;
}

.mantra-appointment-section .info-card {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 0;
  min-height: 426px;
  padding: 45px 36px 42px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(7, 71, 113, 0.16);
}

.mantra-appointment-section .info-card.gradient {
  color: #0f253f;
  background: #dff2fd;
}

.mantra-appointment-section .info-card.teal {
  color: #ffffff;
  background: linear-gradient(145deg, #0bb0d5 0%, #079ed5 100%);
}

.mantra-appointment-section .info-card .card-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: inherit;
  background: rgba(255, 255, 255, 0.38);
  font-size: 16px;
}

.mantra-appointment-section .info-card h6 {
  margin: 0 0 30px;
  color: rgba(16, 37, 62, 0.75);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mantra-appointment-section .info-card h3 {
  max-width: calc(100% - 50px);
  margin: 0 0 28px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.mantra-appointment-section .info-card.gradient h3 {
  margin-bottom: 27px;
  font-size: 22px;
}

.mantra-appointment-section .info-card p {
  margin: 0 0 34px;
  color: #52647c;
  font-size: 15px;
  line-height: 1.8;
}

.mantra-appointment-section .info-card address {
  margin: 0 0 30px;
  color: #0875d6;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.mantra-appointment-section .info-card ul {
  display: flex;
  flex-direction: column;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.mantra-appointment-section .info-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.mantra-appointment-section .info-card li:last-child {
  border-bottom: 0;
}

.mantra-appointment-section .link-button {
  margin-top: auto;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.mantra-appointment-section .link-button:hover,
.mantra-appointment-section .link-button:focus {
  color: inherit;
}

@media (max-width: 1279.98px) {
  .mantra-appointment-section .mantra-appointment-primary-column,
  .mantra-appointment-section .mantra-appointment-secondary-column {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .mantra-appointment-section .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  }

  .mantra-appointment-section .info-card {
    min-height: 390px;
  }
}

@media (max-width: 991.98px) {
  .mantra-appointment-section {
    padding: 45px 0 50px;
  }

  .mantra-appointment-section .hero-card {
    padding: 38px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  }

  .mantra-appointment-section .hero-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .mantra-appointment-section {
    margin-top: 0;
    padding: 36px 0 42px;
  }

  .mantra-appointment-section .container {
    padding-inline: 16px;
  }

  .mantra-appointment-section .hero-card {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 38px 28px 28px;
    border-radius: 28px;
  }

  .mantra-appointment-section .hero-card-content {
    max-width: 100%;
  }

  .mantra-appointment-section .appointment-panel {
    min-height: 0;
    padding: 32px 28px 28px;
    border-radius: 28px;
  }

  .mantra-appointment-section .info-card {
    min-height: 380px;
  }
}

@media (max-width: 575.98px) {
  .mantra-appointment-section .hero-card {
    padding: 32px 22px 22px;
  }

  .mantra-appointment-section .hero-card h4 {
    letter-spacing: 3px;
  }

  .mantra-appointment-section .hero-card h2 {
    font-size: 25px;
  }

  .mantra-appointment-section .appointment-panel {
    padding: 28px 22px 24px;
  }

  .mantra-appointment-section .appointment-panel .panel-head h3 {
    font-size: 21px;
  }

  .mantra-appointment-section .call-row {
    align-items: flex-start;
    gap: 14px;
  }

  .mantra-appointment-section .call-row .icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .mantra-appointment-section .panel-button {
    padding-inline: 20px;
    font-size: 13px;
  }

  .mantra-appointment-section .info-card {
    min-height: 350px;
    padding: 38px 28px 34px;
  }
}


/* =========================================================
   Homepage Swiper isolation fixes
   Hero + blog only; all unrelated section styles stay unchanged.
   ========================================================= */

/* Hero: neutralise legacy global .swiper-slide flex/overflow rules. */
.slider .hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
}

.slider .hero-slider .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.slider .hero-slider .swiper-slide,
.slider .hero-slider .single-slider {
  flex: 0 0 100% !important;
  flex-shrink: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.slider .hero-slider.swiper-fade .swiper-slide {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.slider .hero-slider.swiper-fade .swiper-slide.swiper-slide-active {
  z-index: 2;
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

.slider .hero-slider .swiper-button-next,
.slider .hero-slider .swiper-button-prev {
  display: flex !important;
}

/* Blog: always show complete cards and clip the outgoing loop slide. */
.blog-section {
  overflow: hidden !important;
}

.blog-section .blog-slider-wrapper {
  width: 100%;
  max-width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.blog-section .blog-slider {
  width: 100%;
  max-width: 100%;
  padding: 10px 0 12px !important;
  overflow: hidden !important;
}

.blog-section .blog-slider .swiper-wrapper {
  align-items: stretch;
  overflow: visible !important;
}

.blog-section .blog-slider .swiper-slide {
  display: flex;
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  min-width: 0;
  height: auto;
  overflow: hidden !important;
  box-sizing: border-box;
}

.blog-section .blog-slider .swiper-slide > .blog-card,
.blog-section .blog-card {
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden !important;
  box-sizing: border-box;
}

.blog-section .blog-image-wrapper {
  overflow: hidden !important;
}

.blog-section .team-bottom-controls {
  position: relative;
  z-index: 5;
  margin-top: 28px;
}

@media (max-width: 767.98px) {
  .blog-section .blog-slider {
    padding-top: 8px !important;
  }

  .blog-section .team-bottom-controls {
    margin-top: 22px;
  }
}


/* Compact two-card mobile layout requested for both blog archives. */
@media (max-width: 575px) {
  .mantra-main-blog-grid,
  .mantra-health-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 32px;
  }

  .mantra-main-blog-card,
  .mantra-health-blog-card {
    border-radius: 14px;
  }

  .mantra-main-blog-card .blog-card-content,
  .mantra-health-blog-card .blog-card-content {
    padding: 12px 10px;
  }

  .mantra-main-blog-card .blog-card-category,
  .mantra-health-blog-card .blog-card-category {
    top: 7px;
    left: 7px;
    max-width: calc(100% - 14px);
    padding: 4px 7px;
    overflow: hidden;
    font-size: 0.56rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mantra-main-blog-card .blog-meta-small,
  .mantra-health-blog-card .blog-meta-small {
    display: grid;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 0.63rem;
    line-height: 1.35;
  }

  .mantra-main-blog-card .blog-card-title,
  .mantra-health-blog-card .blog-card-title {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .mantra-main-blog-card .blog-card-excerpt,
  .mantra-health-blog-card .blog-card-excerpt {
    margin-bottom: 10px;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .mantra-main-blog-card .blog-card-link,
  .mantra-health-blog-card .blog-card-link {
    gap: 4px;
    font-size: 0.72rem;
  }
}

/* =========================================================
   ReShape360 Health Assessment Form
   ========================================================= */
.mantra-assessment-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 4% 8%, rgba(249, 162, 67, 0.14), transparent 28%),
        radial-gradient(circle at 96% 92%, rgba(14, 31, 86, 0.08), transparent 30%),
        #f7f9fc;
}

.mantra-assessment-section::before,
.mantra-assessment-section::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.mantra-assessment-section::before {
    top: -180px;
    right: -110px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(14, 31, 86, 0.06);
    border-radius: 50%;
}

.mantra-assessment-section::after {
    bottom: -210px;
    left: -150px;
    width: 430px;
    height: 430px;
    border: 72px solid rgba(249, 162, 67, 0.035);
    border-radius: 50%;
}

.mantra-assessment-section .container {
    position: relative;
    z-index: 1;
}

.mantra-assessment-shell {
    width: min(100%, 1020px);
    margin: 0 auto;
}

.mantra-assessment-header {
    position: relative;
    isolation: isolate;
    max-width: none;
    margin: 0 auto 26px;
    padding: 42px 48px 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 0%, rgba(249, 162, 67, 0.28), transparent 34%),
        radial-gradient(circle at 92% 100%, rgba(255, 255, 255, 0.10), transparent 30%),
        linear-gradient(135deg, #0b1948 0%, #102761 54%, #0e1f56 100%);
    box-shadow: 0 24px 64px rgba(14, 31, 86, 0.22);
}

.mantra-assessment-header::before,
.mantra-assessment-header::after {
    position: absolute;
    z-index: -1;
    content: "";
    pointer-events: none;
}

.mantra-assessment-header::before {
    top: -105px;
    right: -72px;
    width: 260px;
    height: 260px;
    border: 42px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.mantra-assessment-header::after {
    bottom: -68px;
    left: -52px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(249, 162, 67, 0.18);
    border-radius: 50%;
}

.mantra-assessment-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 17px;
    padding: 8px 14px;
    border: 1px solid rgba(249, 162, 67, 0.30);
    border-radius: 999px;
    color: #ffc477;
    background: rgba(249, 162, 67, 0.10);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.mantra-assessment-eyebrow::before,
.mantra-assessment-eyebrow::after {
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
    background: currentColor;
}

.mantra-assessment-header h2 {
    max-width: 780px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(31px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.032em;
    text-wrap: balance;
}

.mantra-assessment-header > p {
    max-width: 680px;
    margin: 17px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
    text-wrap: pretty;
}

.mantra-assessment-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 21px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

.mantra-assessment-meta i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #0e1f56;
    background: #f9a243;
    font-size: 11px;
}

.mantra-assessment-card {
    position: relative;
    padding: 42px 46px 46px;
    overflow: hidden;
    border: 1px solid rgba(14, 31, 86, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(14, 31, 86, 0.12);
}

.mantra-assessment-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, #f9a243 0%, #ffc46f 52%, #0e1f56 100%);
}

.mantra-assessment-stepper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 38px;
    padding: 19px 20px 17px;
    border: 1px solid #e9edf4;
    border-radius: 18px;
    background: #f8fafc;
}

.mantra-assessment-stepper > span {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #8a94aa;
    font-style: normal;
    text-align: center;
}

.mantra-assessment-stepper > span:not(:last-child)::after {
    position: absolute;
    z-index: 0;
    top: 18px;
    left: calc(50% + 27px);
    width: calc(100% - 54px);
    height: 2px;
    content: "";
    background: #dfe5ef;
    transition: background-color 0.25s ease;
}

.mantra-assessment-stepper b {
    position: relative;
    z-index: 1;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid #dce3ee;
    border-radius: 50%;
    color: #7d879b;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(14, 31, 86, 0.05);
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.mantra-assessment-stepper em {
    max-width: 100%;
    overflow: hidden;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.065em;
    line-height: 1.35;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.mantra-assessment-stepper > span.is-active b,
.mantra-assessment-stepper > span.is-complete b {
    border-color: #f9a243;
    color: #ffffff;
    background: #f9a243;
    box-shadow: 0 8px 20px rgba(249, 162, 67, 0.28);
}

.mantra-assessment-stepper > span.is-active,
.mantra-assessment-stepper > span.is-complete {
    color: #0e1f56;
}

.mantra-assessment-stepper > span.is-complete:not(:last-child)::after {
    background: #f9a243;
}

.mantra-assessment-step[hidden],
.mantra-assessment-success[hidden],
.mantra-assessment-alert[hidden],
.mantra-assessment-stepper[hidden],
.mantra-assessment-form[hidden] {
    display: none !important;
}

.mantra-assessment-step {
    animation: mantra-assessment-step-in 0.28s ease both;
}

@keyframes mantra-assessment-step-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mantra-assessment-step-heading {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf0f5;
}

.mantra-assessment-step-heading > span {
    display: block;
    margin-bottom: 7px;
    color: #f9a243;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mantra-assessment-step-heading h3 {
    margin: 0;
    color: #0e1f56;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.mantra-assessment-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
}

.mantra-assessment-field {
    min-width: 0;
    margin: 0;
}

.mantra-assessment-field > label,
.mantra-assessment-fieldset > legend {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    color: #1b2843;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.mantra-assessment-field > label sup {
    top: -0.15em;
    color: #f9a243;
    font-size: 14px;
}

.mantra-assessment-field input,
.mantra-assessment-field select {
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid #dce3ed;
    border-radius: 13px;
    outline: 0;
    color: #0e1f56;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(14, 31, 86, 0.035);
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.mantra-assessment-field select {
    cursor: pointer;
}

.mantra-assessment-field input::placeholder {
    color: #929bad;
    font-weight: 500;
}

.mantra-assessment-field input:hover,
.mantra-assessment-field select:hover {
    border-color: #c9d1de;
}

.mantra-assessment-field input:focus,
.mantra-assessment-field select:focus {
    border-color: #f9a243;
    background: #fffdf9;
    box-shadow: 0 0 0 4px rgba(249, 162, 67, 0.13);
}

.mantra-assessment-field input.is-invalid,
.mantra-assessment-field select.is-invalid {
    border-color: #d83b3b;
    background: #fff9f9;
    box-shadow: 0 0 0 4px rgba(216, 59, 59, 0.09);
}

.mantra-assessment-fieldset {
    min-width: 0;
    margin: 0 0 30px;
    padding: 0;
    border: 0;
}

.mantra-assessment-fieldset:last-of-type {
    margin-bottom: 0;
}

.mantra-assessment-choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mantra-assessment-choice {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 13px 15px;
    border: 1px solid #dfe5ef;
    border-radius: 13px;
    cursor: pointer;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(14, 31, 86, 0.025);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.mantra-assessment-choice:hover {
    border-color: rgba(249, 162, 67, 0.72);
    background: #fffaf4;
    box-shadow: 0 8px 20px rgba(249, 162, 67, 0.08);
    transform: translateY(-1px);
}

.mantra-assessment-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mantra-assessment-choice-control {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 2px solid #cbd3e0;
    border-radius: 50%;
    background: #ffffff;
    transition: 0.2s ease;
}

.mantra-assessment-choices--checkbox .mantra-assessment-choice-control {
    border-radius: 6px;
}

.mantra-assessment-choice input:checked + .mantra-assessment-choice-control {
    border-color: #f9a243;
    background: #f9a243;
}

.mantra-assessment-choice input:checked + .mantra-assessment-choice-control::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.mantra-assessment-choices--checkbox .mantra-assessment-choice input:checked + .mantra-assessment-choice-control::after {
    width: 9px;
    height: 5px;
    border: solid #ffffff;
    border-width: 0 0 2px 2px;
    border-radius: 0;
    background: transparent;
    transform: translate(-50%, -62%) rotate(-45deg);
}

.mantra-assessment-choice:has(input:checked) {
    border-color: #f9a243;
    background: #fff8ef;
    box-shadow: 0 8px 22px rgba(249, 162, 67, 0.11);
}

.mantra-assessment-choice-label {
    min-width: 0;
    color: #313d58;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.mantra-assessment-alert {
    margin: 0 0 22px;
    padding: 13px 15px;
    border: 1px solid #f0b1b1;
    border-radius: 11px;
    color: #9f2626;
    background: #fff4f4;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.mantra-assessment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 34px;
    padding-top: 25px;
    border-top: 1px solid #edf0f5;
}

.mantra-assessment-actions--end {
    justify-content: flex-end;
}

.mantra-assessment-button {
    display: inline-flex;
    min-width: 150px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mantra-assessment-button--primary {
    color: #ffffff;
    background: #f9a243;
    box-shadow: 0 12px 26px rgba(249, 162, 67, 0.25);
}

.mantra-assessment-button--primary:hover,
.mantra-assessment-button--primary:focus {
    color: #ffffff;
    background: #0e1f56;
    box-shadow: 0 14px 30px rgba(14, 31, 86, 0.22);
    transform: translateY(-2px);
}

.mantra-assessment-button--secondary {
    border-color: #dce2ec;
    color: #0e1f56;
    background: #ffffff;
}

.mantra-assessment-button--secondary:hover,
.mantra-assessment-button--secondary:focus {
    border-color: #0e1f56;
    color: #0e1f56;
    background: #f5f7fb;
    transform: translateY(-1px);
}

.mantra-assessment-button:disabled {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

.mantra-assessment-button.is-loading i {
    animation: mantra-assessment-spin 0.8s linear infinite;
}

@keyframes mantra-assessment-spin {
    to { transform: rotate(360deg); }
}

.mantra-assessment-success {
    max-width: 680px;
    margin: 0 auto;
    padding: 34px 16px 24px;
    text-align: center;
    outline: 0;
}

.mantra-assessment-success-icon {
    display: grid;
    width: 74px;
    height: 74px;
    margin: 0 auto 21px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #f9a243;
    box-shadow: 0 16px 34px rgba(249, 162, 67, 0.28);
    font-size: 27px;
}

.mantra-assessment-success h3 {
    margin: 0 0 12px;
    color: #0e1f56;
    font-size: 32px;
    font-weight: 800;
}

.mantra-assessment-success p {
    margin: 0;
    color: #4b5873;
    font-size: 16px;
    line-height: 1.75;
}

.mantra-assessment-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

@media (max-width: 991px) {
    .mantra-assessment-section {
        padding: 78px 0;
    }

    .mantra-assessment-card {
        padding: 38px 34px 40px;
    }
}

@media (max-width: 767px) {
    .mantra-assessment-section {
        padding: 62px 0;
    }

    .mantra-assessment-header {
        margin-bottom: 22px;
        padding: 34px 28px 32px;
        border-radius: 23px;
    }

    .mantra-assessment-header h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .mantra-assessment-header > p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.65;
    }

    .mantra-assessment-meta {
        margin-top: 17px;
    }

    .mantra-assessment-card {
        padding: 28px 22px 26px;
        border-radius: 21px;
        box-shadow: 0 20px 50px rgba(14, 31, 86, 0.11);
    }

    .mantra-assessment-stepper {
        margin-bottom: 29px;
        padding: 16px 10px 14px;
        border-radius: 15px;
    }

    .mantra-assessment-stepper em {
        font-size: 9px;
        letter-spacing: 0.035em;
    }

    .mantra-assessment-step-heading {
        margin-bottom: 24px;
        padding-bottom: 17px;
    }

    .mantra-assessment-step-heading h3 {
        font-size: 22px;
    }

    .mantra-assessment-contact-grid,
    .mantra-assessment-choices {
        grid-template-columns: 1fr;
    }

    .mantra-assessment-contact-grid {
        gap: 19px;
    }

    .mantra-assessment-fieldset {
        margin-bottom: 25px;
    }

    .mantra-assessment-actions {
        align-items: stretch;
        margin-top: 29px;
        padding-top: 22px;
    }

    .mantra-assessment-button {
        min-width: 0;
        min-height: 54px;
        padding: 0 19px;
    }
}

@media (max-width: 480px) {
    .mantra-assessment-section .container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .mantra-assessment-section {
        padding: 52px 0;
    }

    .mantra-assessment-header {
        padding: 29px 18px 27px;
        border-radius: 19px;
    }

    .mantra-assessment-header h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .mantra-assessment-eyebrow {
        max-width: 100%;
        margin-bottom: 14px;
        padding: 7px 11px;
        font-size: 9px;
        letter-spacing: 0.085em;
    }

    .mantra-assessment-header > p {
        font-size: 14px;
        line-height: 1.62;
    }

    .mantra-assessment-meta {
        padding: 9px 13px;
        font-size: 12px;
    }

    .mantra-assessment-card {
        padding: 25px 16px 20px;
        border-radius: 18px;
    }

    .mantra-assessment-stepper {
        padding-right: 6px;
        padding-left: 6px;
    }

    .mantra-assessment-stepper > span:not(:last-child)::after {
        left: calc(50% + 21px);
        width: calc(100% - 42px);
    }

    .mantra-assessment-stepper b {
        width: 34px;
        height: 34px;
    }

    .mantra-assessment-stepper em {
        max-width: 78px;
    }

    .mantra-assessment-field input,
    .mantra-assessment-field select,
    .mantra-assessment-choice {
        min-height: 54px;
    }

    .mantra-assessment-actions {
        flex-wrap: wrap;
        gap: 11px;
    }

    .mantra-assessment-actions .mantra-assessment-button {
        flex: 1 1 calc(50% - 6px);
    }

    .mantra-assessment-actions--end .mantra-assessment-button,
    .mantra-assessment-button[type="submit"] {
        flex-basis: 100%;
    }
}

/* =========================================================
   Get Appointment — configurable field builder additions
   ========================================================= */
.mantra-assessment-fields-grid {
    align-items: start;
}

.mantra-assessment-field-unit {
    min-width: 0;
}

.mantra-assessment-field-unit--full {
    grid-column: 1 / -1;
}

.mantra-assessment-field-unit--half {
    grid-column: span 1;
}

.mantra-assessment-field textarea {
    display: block;
    width: 100%;
    min-height: 132px;
    margin: 0;
    padding: 16px 18px;
    resize: vertical;
    border: 1px solid #dce3ed;
    border-radius: 13px;
    outline: 0;
    color: #0e1f56;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(14, 31, 86, 0.035);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.mantra-assessment-field textarea::placeholder {
    color: #929bad;
    font-weight: 500;
}

.mantra-assessment-field textarea:hover {
    border-color: #c9d1de;
}

.mantra-assessment-field textarea:focus {
    border-color: #f9a243;
    background: #fffdf9;
    box-shadow: 0 0 0 4px rgba(249, 162, 67, 0.13);
}

.mantra-assessment-field textarea.is-invalid {
    border-color: #d83b3b;
    background: #fff9f9;
    box-shadow: 0 0 0 4px rgba(216, 59, 59, 0.09);
}

.mantra-assessment-fieldset.mantra-assessment-field-unit {
    margin: 0;
    padding: 0;
}

.mantra-assessment-fieldset > legend sup {
    top: -0.15em;
    color: #f9a243;
    font-size: 14px;
}

.mantra-assessment-field-unit--half .mantra-assessment-choices {
    grid-template-columns: 1fr;
}

.mantra-assessment-field-help {
    display: block;
    margin-top: 9px;
    color: #6f7a90;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.mantra-assessment-fieldset.is-invalid-group .mantra-assessment-choice {
    border-color: #d83b3b;
    background: #fff9f9;
    box-shadow: 0 0 0 3px rgba(216, 59, 59, 0.07);
}

.mantra-assessment-fieldset.is-invalid-group > legend {
    color: #a42929;
}

@media (max-width: 767px) {
    .mantra-assessment-field-unit--full,
    .mantra-assessment-field-unit--half {
        grid-column: 1 / -1;
    }
}
