/* ===========================
   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, #041143 0%, #061a66 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) {
  .responsive-menu {
    display: flex;
  }
}

/* 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) {
  .container {
    max-width: 1370px !important;
  }

}

@media (min-width: 1025px) and (max-width: 1440px) {
  header .header-top,
  header .header-bottom {
    padding: 18px 3% !important;
  }
  .schedule {
        margin-top: -135px !important;
    }
}

@media (max-width: 991px) {
  nav.main-nav {
    display: none;
  }
  .header-bottom {
    align-items: center;
    gap: 12px;
    height: 60px;
  }
  .header-btn {
    display: none;
  }
  .header-language-wrapper {
    display: none;
  }
  .toggle-btn {
    display: flex;
    order: 3;
    margin-left: auto;
    align-self: center;
  }
  .header-top {
    display: none;
  }
  .mobile-quick-menu {
    display: none;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    order: 2;
  }
  .logo {
    order: 1;
  }
}

/* 2️⃣ Tablets (481px - 991px) - Already covered above */

/* 3️⃣ Laptops (992px - 1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
  nav.main-nav {
    display: none;
  }
  .header-btn {
    display: none;
  }
  .toggle-btn {
    display: block;
  }
  .header-top {
    display: none;
  }
  .rm-topbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 8%;
  }
  .rm-topbar .rm-left {
    flex-direction: row;
    gap: 20px;
  }
  .rm-topbar .rm-right {
    margin-top: 0;
  }
  .header-bottom {
  padding: 18px 4%;
  }
}
/* 4️⃣ Desktops (1025px +) */
@media (min-width: 1025px) {

}


/*footer*/
:root {
    --primary: #0a316c;
    --accent: #02c4d9;
    --text-light: #000000;
    --muted: #95a9c5;
}

/* Footer Wrapper */
.medixi-footer {
    background: radial-gradient(circle at top left, rgba(6, 87, 130, 0.4), transparent 50%), #071a3f;
    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 */
@media (max-width: 1200px) { 
    .schedule-inner {
        justify-content: center;
    }
}



@media (max-width: 991px) {
    .schedule-inner {
        flex-direction: column;
        align-items: center;
    }

    .single-schedule {
        width: 100%;
        max-width: 696px;
    }
}
/* Mobile — 1 column list (extra small screens) */
@media (max-width: 320px) {
    .schedule-inner {
        flex-direction: column;
        align-items: center;
    }

    .single-schedule {
        width: 100%;
        max-width: 300px; /* Perfect fit for 320px devices */
        height: auto;
    }
}

/* 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;
}
/* 1️⃣ Phones (0 - 480px) */
@media (max-width: 480px) {
    .schedule {
        margin-top: 20px !important;
    }
    .swiper-pagination-bullets-dynamic {
        margin-bottom: 20px !important;
    }
    .testimonial-card .swiper-button-next::after, .testimonial-card .swiper-button-prev::after {
        font-size: 24px !important;
        margin-bottom: 100px;
    }
    .section-mini-title {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: none !important;
      margin-left: 32px;
    }
.section-tag-nd,
.section-tag-test {
    display: inline-flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
}

    .blog-header h2 {
        margin-left: 7px;
    }

}

/* 2️⃣ Tablets (481px - 991px) */
@media (min-width: 481px) and (max-width: 991px) {
    .schedule {
        margin-top: 20px !important;
    }
}

/* 3️⃣ Laptops (992px - 1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
    .schedule {
        margin-top: -80px !important; /* 👈 adjust if needed */
    }
    .single-schedule {
        width: 300px;
    }
    header-bottom {
     padding: 18px 4%;
    }
}

/* 4️⃣ Desktops (1025px +) */
@media (min-width: 1025px) {
    .schedule {
        margin-top: -180px !important;
    }
    .cus {
    margin-top: 7px;
}
}
/* 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;
}



/* ------------------------
   MOBILE: up to 575px
------------------------ */
@media (max-width: 575px) {
.d-flex.align-items-center.gap-2 {
    display: grid !important;
}
.section-label {
    font-size: 0.75rem;
}
.about-section {
    padding: 0rem 0 0rem;
}
.healthcare-section {
    padding: 0.5rem 0;
}
.about-stats {
     margin-top: 1rem !important; 
}
.services-section {
    padding: 2rem 0;
}
.service-grid {
    margin-top: 2rem;
}
.services-section {
    padding: 5px 0 35px;
}
.custom-nav-btn {
    width: 86px;
}
.section.media-gallery {
    margin-top: 0;
}
.nav-btn {
    width: 85px;
}
.mantra-testimonials-section {
    padding: 0px 0;
}
.mantra-testimonial-nav-btn {
    width: 60px;
}
.contact-section {
    /* padding: 0px 0; */
    margin-top: 0px;
}
.blog-section {
    padding: 40px 0;
}
.custom-nav-btn {
    width: 100px;
}
.contact-section {
    padding: 45px 0 50px;
}
.locations {
    margin-top: 0px; 
}
.appointment-panel {
    margin-top: 40px;
}
.hero-card {
    padding: 40px 26px 42px 30px;
    /* border-radius: 28px; */
}
.slider .button {
    margin-top: -23px;
}
.slider .btn {
    margin-top: 9px;
}
.header-bottom {
padding: 18px 5%;
}
}


/*resposive part*/
/* ------------------------
   TABLET: 576px - 991px
------------------------ */
@media (min-width: 576px) and (max-width: 991px) {
.services-header {
    margin-bottom: 40px;
}
.blog-slider-wrapper {
    padding-bottom: 40px;
}
.services-section {
    padding: 5px 0 40px;
}
.team-section {
    margin-top: 58px;
}
.contact-section {
    margin-top: 20px;
}
.locations {
    margin-top: 0px;
}
.contact-section {
    margin-top: 50px;
    margin-bottom: 55px;
}
.header-bottom {
    padding: 18px 1%;
}
}

/* ------------------------
   LAPTOP: 992px - 1024px
------------------------ */
@media (min-width: 992px) and (max-width: 1024px) {
.services-header {
    margin-bottom: 40px;
}
.services-section {
    padding: 0px 0 40px;
}
section.media-gallery {
    margin-top: -46px;
}
.services-section {
    padding: 0px 0 40px;
}
.signature-programs {
    padding: 15px 0 60px;
}
.medico-programs {
    padding: 0px 0 40px;
}
.team-section {
    margin-top: 75px;
}
section.media-gallery {
    margin-top: 0px;
}

}


/* ------------------------
   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-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;
  }

  .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;
  }

  .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: 320px;
  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);
}

/* Advisory Board */
.mantra-about-advisory {
  padding: 80px 0;
  background: #ffffff;
}

.mantra-about-advisory .text-center {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mantra-about-advisory h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
}

.mantra-advisory-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /*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%;
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.mantra-advisory-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mantra-advisory-card:nth-child(2) {
  animation-delay: 0.3s;
}

.mantra-advisory-card:nth-child(3) {
  animation-delay: 0.4s;
}

.mantra-advisory-card:nth-child(4) {
  animation-delay: 0.5s;
}

.mantra-advisory-card:hover {
  transform: translateY(-6px);
  /*box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);*/
}

.advisory-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.advisory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mantra-advisory-card:hover .advisory-image img {
  transform: scale(1.1);
}

.advisory-content {
  padding: 24px;
  background: aliceblue;
}

.advisory-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 8px;
}

.advisory-role {
  font-size: 1rem;
  color: #f9a243;
  font-weight: 600;
  margin-bottom: 6px;
}

.advisory-specialty {
  font-size: 0.9rem;
  color: #4b5873;
  margin: 0;
}

/* 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;
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
  .about-mukti .container {
    padding: 0 40px;
  }
  
  .about-content {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .about-mukti {
    padding: 60px 0;
  }
  
  .about-mukti .container {
    padding: 0 30px;
  }
  
  .about-header {
    margin-bottom: 50px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-left {
    position: static;
  }
  
  .about-right {
    padding-left: 0;
  }
  
  .about-stats {
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .about-mukti {
    padding: 40px 0;
  }
  
  .about-mukti .container {
    padding: 0 20px;
  }
  
  .about-header {
    margin-bottom: 40px;
  }
  
  .about-main-title {
    font-size: 2rem;
  }
  
  .about-main-subtitle {
    font-size: 1rem;
  }
  
  .about-heading {
    font-size: 2rem;
  }
  
  .about-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-stat-item {
    text-align: center;
  }
  
  .footer-text {
    font-size: 1.1rem;
  }
}

/* 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;
}

/* Responsive Design for Medico Yoga Section */
@media (max-width: 1200px) {
  .medico-yoga .container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .medico-yoga {
    padding: 60px 0;
  }
  
  .medico-yoga .container {
    padding: 0 30px;
  }
  
  .medico-header {
    margin-bottom: 40px;
  }
  
  .medico-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .medico-yoga {
    padding: 40px 0;
  }
  
  .medico-yoga .container {
    padding: 0 20px;
  }
  
  .medico-title {
    font-size: 2rem;
  }
  
  .medico-description {
    font-size: 1rem;
  }
  
  .medico-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .medico-card {
    padding: 30px;
  }
  
  .medico-icon {
    width: 70px;
    height: 70px;
  }
  
  .medico-icon i {
    font-size: 1.8rem;
  }
  
  .medico-card-title {
    font-size: 1.3rem;
  }
}

/* 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;
}

@media (max-width: 992px) {
  .testimonial {
    padding: 60px 0;
  }
  .testimonial .container {
    padding: 0 24px;
  }
  .testimonial-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .testimonial {
    padding: 50px 0;
  }
  .testimonial-title {
    font-size: 2rem;
  }
  .testimonial-card {
    padding: 28px 24px;
  }
  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* 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);
}

.plan-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #29aadf;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(41, 170, 223, 0.35);
}

.plan-header .plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0e1f56;
  margin: 0 0 6px;
}

.plan-header .plan-desc {
  color: #4b5873;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.plan-price .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0e1f56;
}

.plan-price .duration {
  font-size: 0.95rem;
  color: #4b5873;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #4b5873;
  font-size: 0.98rem;
  line-height: 1.6;
}

.plan-features li::before {
  content: "•";
  color: #29aadf;
  font-weight: 800;
  margin-right: 10px;
}

.plan-button {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: #0e1f56;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(14, 31, 86, 0.2);
}

.plan-card.popular .plan-button {
  background: #198754;
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.3);
}

.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 31, 86, 0.25);
}

.plan-card.popular .plan-button:hover {
  box-shadow: 0 12px 28px rgba(25, 135, 84, 0.35);
}

.membership-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: #4b5873;
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .membership .container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .membership {
    padding: 60px 0;
  }
  .membership .container {
    padding: 0 30px;
  }
  .membership-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .membership {
    padding: 50px 0;
  }
  .membership .container {
    padding: 0 20px;
  }
  .membership-title {
    font-size: 2rem;
  }
  .membership-cards {
    grid-template-columns: 1fr;
  }
}

/* Obesity Management Program */
.obesity-program {
  padding: 25px 0;
  background: #ffffff;
}

.obesity-program .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.obesity-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.obesity-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 20px;
}

.obesity-title span {
  color: #0b4dbf;
}

.obesity-subtitle {
  font-size: 1.05rem;
  color: #4b5873;
  line-height: 1.8;
  margin: 0;
}

.obesity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.obesity-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 31, 86, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.obesity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(14, 31, 86, 0.15);
  border-color: #0b4dbf;
}

.obesity-card.popular {
  border: 2px solid #198754;
  box-shadow: 0 28px 75px rgba(25, 135, 84, 0.22);
}

.obesity-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #198754;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.35);
}

.obesity-card-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0e1f56;
  margin: 0 0 6px;
}

.obesity-card-header p {
  color: #4b5873;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.obesity-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.obesity-price .amount {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0e1f56;
}

.obesity-price .duration {
  font-size: 0.95rem;
  color: #4b5873;
}

.obesity-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #4b5873;
  font-size: 0.98rem;
  line-height: 1.6;
}

.obesity-features li::before {
  content: "•";
  color: #198754;
  font-weight: 800;
  margin-right: 10px;
}

.obesity-button {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: #0e1f56;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(14, 31, 86, 0.2);
}

.obesity-button.primary {
  background: #198754;
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.3);
}

.obesity-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 31, 86, 0.25);
}

.obesity-button.primary:hover {
  box-shadow: 0 12px 28px rgba(25, 135, 84, 0.35);
}

.obesity-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: #4b5873;
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .obesity-program .container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .obesity-program {
    padding: 70px 0;
  }
  .obesity-program .container {
    padding: 0 30px;
  }
  .obesity-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .obesity-program {
    padding: 50px 0;
  }
  .obesity-program .container {
    padding: 0 20px;
  }
  .obesity-title {
    font-size: 2.1rem;
  }
  .obesity-cards {
    grid-template-columns: 1fr;
  }
}

/* Success Stories */
.success-stories {
  padding: 25px 0;
  background: #f9fbff;
}

.success-stories .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.success-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.success-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0e1f56;
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 1.05rem;
  color: #4b5873;
  line-height: 1.7;
  margin: 0;
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 31, 86, 0.08);
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0e1f56;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  color: #4b5873;
  font-weight: 600;
}

.success-highlight {
  background: linear-gradient(135deg, #0e3b70, #078f83);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
  position: relative;
}

.highlight-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.highlight-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.highlight-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.highlight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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;
  }
}

/* Newsletter Section */
/*.newsletter {*/
/*  background: #0e1f56;*/
/*  padding: 24px 0;*/
/*}*/

/*.newsletter .container {*/
/*  max-width: 1300px;*/
/*  margin: 0 auto;*/
/*  padding: 0 30px;*/
/*}*/

/*.newsletter-content {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  gap: 18px;*/
/*  color: #fff;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.newsletter-content h3 {*/
/*  margin: 0 0 4px;*/
/*  font-size: 1.4rem;*/
/*  font-weight: 800;*/
/*}*/

/*.newsletter-content p {*/
/*  margin: 0;*/
/*  color: rgba(255, 255, 255, 0.85);*/
/*  font-size: 0.98rem;*/
/*}*/

/*.newsletter-form {*/
/*  display: flex;*/
/*  gap: 10px;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.input-wrap {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  background: rgba(255, 255, 255, 0.08);*/
/*  border: 1px solid rgba(255, 255, 255, 0.3);*/
/*  border-radius: 8px;*/
/*  padding: 10px 12px;*/
/*  min-width: 240px;*/
/*}*/

/*.input-wrap i {*/
/*  color: rgba(255, 255, 255, 0.85);*/
/*}*/

/*.newsletter-form input {*/
/*  background: transparent;*/
/*  border: none;*/
/*  color: #fff;*/
/*  outline: none;*/
/*  min-width: 200px;*/
/*}*/

/*.newsletter-form input::placeholder {*/
/*  color: rgba(255, 255, 255, 0.7);*/
/*}*/

/*.newsletter-form button {*/
/*  border: none;*/
/*  background: #0b4dbf;*/
/*  color: #fff;*/
/*  padding: 12px 16px;*/
/*  border-radius: 8px;*/
/*  font-weight: 800;*/
/*  cursor: pointer;*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  transition: all 0.2s ease;*/
/*  box-shadow: 0 10px 24px rgba(11, 77, 191, 0.35);*/
/*}*/

/*.newsletter-form button:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 12px 26px rgba(11, 77, 191, 0.4);*/
/*}*/

@media (max-width: 768px) {
  .newsletter {
    padding: 20px 0;
  }
  .newsletter .container {
    padding: 0 20px;
  }
  .newsletter-form {
    width: 100%;
  }
  .input-wrap {
    flex: 1;
  }
}

/* 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;
}

/* 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) {
  .location-hero {
    padding: 80px 0;
  }

  .location-info,
  .location-services,
  .location-trainers {
    padding: 60px 0;
  }

  .location-details-card,
  .location-map-card {
    padding: 32px;
    margin-bottom: 24px;
  }

  .location-cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .location-hero {
    padding: 60px 0;
  }

  .location-info,
  .location-services,
  .location-trainers {
    padding: 40px 0;
  }

  .location-details-card,
  .location-map-card {
    padding: 24px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 24px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .trainer-image {
    height: 240px;
  }

  .location-cta {
    padding: 40px 0;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

/* Accessibility */
.detail-content a:focus,
.cta-button:focus {
  outline: 3px solid #f9a243;
  outline-offset: 2px;
}
