/* SWAMINI LIFE WEBSITE STYLESHEET */

/* CSS Reset & Variable Definitions */
:root {
  --primary-blue: #0b3b95;
  --secondary-blue: #002b80;
  --accent-red: #d32f2f;
  --dark-red: #b71c1c;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --gold-primary: #d4af37;

  --font-main: 'Outfit', sans-serif;
  --container-width: 1200px;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button,
select,
a,
p,
span,
li,
td,
th {
  font-family: var(--font-main);
}

body {
  background-color: #ffffff;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Helper Container */
.container-full {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER — double row layout on desktop */
.main-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  padding: 8px 0;
  transition: all 0.3s ease;
}

.header-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 992px) {
  .header-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "logo action"
      "nav nav";
    row-gap: 12px;
    align-items: center;
  }

  .logo-link {
    grid-area: logo;
    justify-self: start;
  }

  .header-right {
    grid-area: action;
    justify-self: end;
  }

  .nav-bar {
    grid-area: nav;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    padding-bottom: 4px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img-footer {
  height: 64px;
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 10px;
}

/* NAVIGATION */
.nav-bar {
  display: flex;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.nav-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}


/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  list-style: none;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary-blue);
}

.dropdown-submenu {
  position: relative;
}

.submenu-list {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  list-style: none;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.dropdown-submenu:hover .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Header Login Button */
.header-action {
  display: flex;
  align-items: center;
}

.btn-login {
  background-color: #0b3b95;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-login:hover {
  background-color: #082d70;
}

.btn-login:active {
  transform: scale(0.98);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* HERO SECTION WITH CAROUSEL */
.hero-section {
  position: relative;
  background: linear-gradient(105deg, #062a75 0%, #0a46c4 45%, #1a6ae8 100%);
  color: #ffffff;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 43, 128, 0.85) 0%, rgba(0, 43, 128, 0.5) 50%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 3;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-img-family {
  object-position: center 38%;
}

.hero-img-business {
  object-position: center 25%;
}

.hero-img-products {
  object-position: center 65%;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 4;
}

.hero-content {
  flex: 1;
  max-width: 650px;
  z-index: 4;
}

.hero-title {
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-tagline {
  font-size: 29px;
  font-weight: 400;
  opacity: 0.95;
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-brand {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-explore {
  background-color: var(--accent-red);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 17.5px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  transition: all 0.2s ease;
}

.btn-explore:hover {
  background-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.32);
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.2s ease;
}

.slider-dots .dot.active {
  background-color: #ffffff;
  width: 18px;
  border-radius: 4px;
}

/* Wave Wrapper at Bottom of Hero */
.hero-wave-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 8;
}

.hero-wave-svg {
  position: relative;
  display: block;
  width: 100%;
  height: 110px;
}

/* FEATURES FLOATING CARD BAR */
.features-section {
  position: relative;
  z-index: 12;
  margin-top: -48px;
  padding-bottom: 32px;
}

.features-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.features-card-bar {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
  display: flex;
  padding: 38px 20px;
  justify-content: space-between;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}

.feature-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.feature-icon-wrapper {
  background-color: #e8f0fe;
  color: var(--primary-blue);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.feature-item:hover .feature-icon-wrapper {
  transform: scale(1.08);
}

.feature-icon {
  width: 26px;
  height: 26px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 19.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ACHIEVERS SECTION */
.achievers-section {
  padding: 10px 0 36px 0;
  background: #ffffff;
}

.achievers-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.section-header-spacer {
  width: 1px;
}

.title-with-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-column: 2;
}

.section-header .btn-view-all {
  justify-self: end;
  grid-column: 3;
}

.section-title {
  font-size: 31px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

.stars-decor {
  display: flex;
  align-items: center;
}

.btn-view-all {
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-view-all:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

/* Achievers Grid */
.achievers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.achiever-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -2px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.achiever-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px -5px rgba(15, 23, 42, 0.08);
  border-color: #e2e8f0;
}

.portrait-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px auto;
}

.wreath-svg {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 116px;
  height: 116px;
  z-index: 1;
}

.photo-frame {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}

.achiever-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medal-overlay {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
}

.medal-overlay svg {
  width: 100%;
  height: 100%;
  display: block;
}

.achiever-name {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.achiever-title {
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.achiever-card--full {
  padding: 0;
  overflow: hidden;
  height: 480px;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.achiever-card--full:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.achiever-photo-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OUR PRODUCTS SECTION */
.products-section {
  position: relative;
  background-color: #ffffff;
  padding: 20px 0 40px 0;
}

.products-wave-top {
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.products-wave-svg {
  width: 100%;
  height: 50px;
  display: block;
}

.products-main-intro {
  padding: 40px 0 20px 0;
  position: relative;
  z-index: 2;
}

.products-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.products-intro-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.products-intro-text {
  flex: 1;
  max-width: 450px;
}

.products-section-title {
  font-size: 35px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.products-section-desc {
  font-size: 17.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.products-intro-img-col {
  flex: 1.3;
  display: flex;
  justify-content: flex-end;
}

.products-main-img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.products-main-img:hover {
  transform: scale(1.02);
}

.products-categories-wrap {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
  border-color: #dbe5f0;
}

.cat-img-box {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #e8f1fb 0%, #f5f9fd 100%);
  padding: 20px;
}

.cat-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.03));
}

.cat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  padding: 0 24px;
}

.cat-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.cat-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 240px;
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.btn-explore-cat {
  background-color: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: 100%;
  max-width: 140px;
  display: inline-block;
  margin-top: auto;
}

.btn-explore-cat:hover {
  background-color: var(--secondary-blue);
}

.btn-explore-cat:active {
  transform: scale(0.98);
}

/* TRANSFORMING LIVES SECTION */
.transforming-section {
  padding: 60px 0 50px 0;
  background-color: #ffffff;
}

.transforming-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.transforming-text-col {
  flex: 1;
  max-width: 420px;
}

.transforming-title {
  font-size: 37px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-blue);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.transforming-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-know-more {
  background-color: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-know-more:hover {
  background-color: var(--secondary-blue);
}

.btn-know-more:active {
  transform: scale(0.98);
}

/* Image Grid Column */
.transforming-grid-col {
  flex: 1.2;
}

.custom-image-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.1fr;
  grid-template-rows: 140px 140px;
  gap: 12px;
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  background-color: var(--bg-light);
}

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

.grid-item:hover .grid-img {
  transform: scale(1.05);
}

.grid-family {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.grid-teamwork {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.grid-seminar {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.grid-victory {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

/* STATS BAR SECTION — floating pill on white, clear gap above footer */
.stats-section {
  padding: 8px 0 24px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  margin: 0;
}

.stats-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.stats-floating-bar {
  background: #0b3b95;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(11, 59, 149, 0.16);
  display: flex;
  padding: 26px 32px;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.stats-floating-bar .stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 16px;
}

.stats-floating-bar .stat-item:not(:last-child) {
  border-right: none;
}

.stats-floating-bar .stat-icon-wrapper {
  color: #ffffff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  flex-shrink: 0;
}

.stats-floating-bar .stat-icon {
  width: 32px;
  height: 32px;
}

.stats-floating-bar .stat-text {
  display: flex;
  flex-direction: column;
}

.stats-floating-bar .stat-number {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.stats-floating-bar .stat-label {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 400;
}

/* FOOTER */
.main-footer {
  background-color: #062a75;
  color: #ffffff;
  padding: 60px 0 25px 0;
  border-top: none;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-flex;
  width: fit-content;
}

.footer-desc-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffffff;
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: var(--accent-red);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14.5px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.4;
  color: #ffffff;
}

.contact-icon {
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
}

.heart-icon {
  color: var(--accent-red);
  font-weight: bold;
}

/* RESPONSIVE MEDIA QUERIES */

/* Screen <= 1100px — tighten nav before mobile */
@media (max-width: 1100px) {
  .nav-link {
    font-size: 13px;
    padding: 8px 6px;
  }

  .logo-img {
    height: 62px;
  }
}

/* Screen <= 1366px (Tablets / Laptops) */
@media (max-width: 1366px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99;
    display: block;
    flex: none;
  }

  .nav-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .nav-link {
    display: flex;
    padding: 10px 16px;
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--bg-light);
    margin-top: 5px;
    padding-left: 15px;
  }

  .submenu-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.02);
    margin-top: 5px;
    padding-left: 15px;
    min-width: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .dropdown:hover .dropdown-arrow {
    transform: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    height: 100%;
  }

  .hero-slides-wrapper {
    height: 500px;
  }

  .hero-slide {
    align-items: center;
    padding-top: 0;
  }

  .hero-slide::after {
    background: rgba(0, 43, 128, 0.75);
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-brand {
    font-size: 45px;
  }

  .hero-tagline {
    font-size: 21px;
  }

  .slider-dots {
    bottom: 90px;
  }

  .features-card-bar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .feature-item {
    border-right: none !important;
    padding: 10px 0;
  }

  .feature-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }

  .section-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .section-header-spacer {
    display: none;
  }

  .title-with-decor {
    grid-column: 1;
    justify-content: flex-start;
  }

  .section-header .btn-view-all {
    grid-column: 2;
  }

  .achievers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-intro-layout {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .products-intro-text {
    max-width: 100%;
  }

  .products-intro-img-col {
    justify-content: center;
    width: 100%;
  }

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

  .transforming-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .transforming-text-col {
    max-width: 100%;
  }

  .transforming-grid-col {
    width: 100%;
  }

  .stats-floating-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 24px;
    border-radius: 28px;
  }

  .stats-floating-bar .stat-item {
    flex: 1 1 40%;
    border-right: none !important;
    padding: 10px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-about,
  .footer-contact {
    grid-column: span 3;
  }
}

/* Screen <= 768px (Mobile & Small Tablets) */
@media (max-width: 768px) {
  .hero-brand {
    font-size: 41px;
  }

  .hero-tagline {
    font-size: 21px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .achievers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .custom-image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .grid-victory {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 180px;
  }

  .grid-family,
  .grid-teamwork {
    height: 120px;
  }

  .grid-seminar {
    height: 140px;
  }

  .stats-floating-bar .stat-item {
    flex: 1 1 100%;
    justify-content: flex-start;
    padding-left: 10%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about,
  .footer-contact {
    grid-column: span 2;
  }
}

/* Screen <= 480px (Phones) */
@media (max-width: 480px) {
  .logo-img {
    height: 60px;
  }

  .hero-slides-wrapper {
    height: 450px;
  }

  .hero-brand {
    font-size: 33px;
  }

  .achievers-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 25px;
  }

  .stars-decor {
    width: 24px;
    height: 24px;
  }

  .transforming-title {
    font-size: 29px;
  }

  .custom-image-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .grid-family,
  .grid-teamwork,
  .grid-seminar,
  .grid-victory {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    height: 150px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-contact {
    grid-column: span 1;
  }

  .footer-copyright-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* =========================================================
   INNER PAGES
   ========================================================= */

/* Compact page hero / banner */
.page-hero {
  position: relative;
  background: linear-gradient(105deg, #062a75 0%, #0a46c4 45%, #1a6ae8 100%);
  color: #ffffff;
  padding: 56px 20px 72px;
  text-align: center;
  overflow: hidden;
}

.page-hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 41px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.page-hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

.page-hero-desc {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  max-width: 800px;
  margin: 14px auto 0;
  line-height: 1.6;
}

.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.page-hero-wave svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* Generic inner content shell */
.page-section {
  padding: 40px 0;
  background: #ffffff;
}

.page-section--alt {
  background: var(--bg-light);
}

.page-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  /* margin-bottom: 0px; */
}

.page-section-title {
  font-size: 35px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-section-desc {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 640px;
}

.page-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.page-section-header .page-section-desc {
  margin: 0 auto;
}

/* About page */
.about-achievers-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-intro-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-intro-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.mission-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f0fe;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.mission-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-red);
  margin-top: 7px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services / Business Opportunity */
.opportunity-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.opportunity-layout img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.1));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.benefit-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  text-align: center;
  padding: 20px 12px;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f0fe;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-banner {
  background: linear-gradient(105deg, #062a75 0%, #0a46c4 45%, #1a6ae8 100%);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}

.cta-banner h2 {
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.cta-banner p {
  font-size: 15.5px;
  opacity: 0.92;
  max-width: 480px;
}

/* Products page extras */
.product-detail-block {
  scroll-margin-top: 90px;
  padding: 48px 0;
}

.product-detail-block:nth-child(even) {
  background: var(--bg-light);
}

.product-detail-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.product-detail-block:nth-child(even) .product-detail-inner {
  direction: rtl;
}

.product-detail-block:nth-child(even) .product-detail-inner>* {
  direction: ltr;
}

.product-detail-img {
  background: linear-gradient(180deg, #e8f1fb 0%, #f5f9fd 100%);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.product-detail-img img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.product-detail-text h2 {
  font-size: 29px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.product-detail-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}

.product-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 24px;
}

.product-feature-list li {
  font-size: 15px;
  color: var(--text-body);
  padding-left: 22px;
  position: relative;
}

.product-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
}

/* Support page */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.support-card .support-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f0fe;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.support-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.support-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 21px;
  font-weight: 400;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  color: var(--primary-blue);
}

.faq-body {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.gallery-item--tall {
  aspect-ratio: 3 / 4;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(10, 31, 61, 0.75));
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Downloads */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.download-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.download-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #e8f0fe;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-info {
  flex: 1;
  min-width: 0;
}

.download-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.download-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.download-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.btn-download {
  background-color: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.btn-download:hover {
  background-color: var(--secondary-blue);
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  background: linear-gradient(160deg, #062a75 0%, #0b3b95 55%, #0a46c4 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 36px 30px;
}

.contact-info-panel h2 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-info-panel>p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
}

.contact-detail-list .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  opacity: 1;
}

.contact-detail-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  opacity: 0.85;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.contact-form-card h2 {
  font-size: 23px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.contact-form-card>p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-dark);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11, 59, 149, 0.12);
}

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

.btn-submit {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background-color: var(--dark-red);
  transform: translateY(-2px);
}

/* Compliance page */
.policy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.policy-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  scroll-margin-top: 90px;
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.policy-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.policy-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.policy-card a {
  color: var(--accent-red);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
}

.policy-section {
  scroll-margin-top: 90px;
  max-width: 800px;
  margin: 0 auto 36px;
}

.policy-section h2 {
  font-size: 23px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.policy-section p,
.policy-section li {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.7;
}

.policy-section ul {
  margin: 12px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Product detail page */
.product-single {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.product-single-img {
  background: linear-gradient(180deg, #e8f1fb 0%, #f5f9fd 100%);
  border-radius: 14px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.product-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.product-single-text .product-badge {
  display: inline-block;
  background: #e8f0fe;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.product-single-text h2 {
  font-size: 31px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.product-single-text>p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.product-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Videos page */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-light);
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 42, 117, 0.28);
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.95);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.video-play-btn svg {
  margin-left: 3px;
}

.video-info {
  padding: 16px 18px 18px;
}

.video-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.video-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Partners page */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.partner-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: #e8f0fe;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 23px;
  font-weight: 800;
}

.partner-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.partner-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.trust-item {
  text-align: center;
  padding: 18px 12px;
}

.trust-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Leadership page */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.leader-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid #e8f0fe;
}

.leader-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.leader-card>p:last-child {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  min-height: 72px;
}

/* Contacts directory */
.dept-group {
  margin-bottom: 36px;
}

.dept-group h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8eef5;
}

.contacts-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.contacts-table th,
.contacts-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #eef2f7;
}

.contacts-table th {
  background: #f4f8fd;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 14px;
}

.contacts-table tr:last-child td {
  border-bottom: none;
}

.contacts-table a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.contacts-table a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

.dept-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dept-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.dept-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.dept-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.dept-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dept-meta li {
  font-size: 14.5px;
  color: var(--text-body);
}

.dept-meta a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.dept-meta a:hover {
  color: var(--accent-red);
}

/* Achievers full page */
.achievers-page-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Inner pages responsive */
@media (max-width: 1024px) {

  .about-achievers-grid,
  .achievers-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro,
  .opportunity-layout,
  .product-detail-inner,
  .product-single,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-block:nth-child(even) .product-detail-inner {
    direction: ltr;
  }

  .mission-grid,
  .benefit-grid,
  .support-cards,
  .policy-cards,
  .videos-grid,
  .leadership-grid,
  .dept-cards {
    grid-template-columns: 1fr 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .page-hero-title {
    font-size: 31px;
  }

  .page-section-title {
    font-size: 25px;
  }

  .about-achievers-grid,
  .achievers-page-grid,
  .mission-grid,
  .benefit-grid,
  .support-cards,
  .downloads-grid,
  .values-list,
  .form-row,
  .gallery-grid,
  .steps-grid,
  .policy-cards,
  .videos-grid,
  .partners-grid,
  .leadership-grid,
  .trust-strip,
  .dept-cards {
    grid-template-columns: 1fr;
  }

  .download-card {
    flex-wrap: wrap;
  }

  .btn-download {
    width: 100%;
    text-align: center;
  }

  .contacts-table th,
  .contacts-table td {
    padding: 12px 12px;
    font-size: 14px;
  }
}

/* Product image fitting class */
.product-img-fit {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #ffffff;
  border-radius: 12px;
}

/* Advantage Section Styles */
.advantage-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.advantage-description {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
}

.advantage-grid-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.adv-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border-color: var(--primary-blue);
}

.adv-icon {
  margin-bottom: 18px;
  color: var(--accent-red);
  display: flex;
  justify-content: center;
}

.adv-icon svg {
  width: 32px;
  height: 32px;
}

.adv-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
}

/* How Swamini Works Step Flow */
.steps-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.flow-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 36px 20px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.3s ease;
}

.flow-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  border-color: var(--primary-blue);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
}

.flow-step-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.flow-step-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.55;
  min-height: 66px;
}

/* Responsive Media Queries for new sections */
@media (max-width: 991px) {
  .advantage-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-flow-grid {
    grid-template-columns: 1fr;
  }
}

/* Video Section Embed Container */
.video-container-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-color);
}

.video-ratio-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-ratio-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Core Pillars Slider Layout */
.pillars-section {
  background: #ffffff;
  padding: 48px 0;
}

.pillars-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.pillars-slider-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 0 30px;
  width: 100%;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.pillars-slider-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.pillar-card {
  flex: 0 0 380px;
  height: 480px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  scroll-snap-align: start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.pillar-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-card-bg {
  transform: scale(1.08);
}

.pillar-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 42, 117, 0.95) 0%, rgba(6, 42, 117, 0.6) 50%, rgba(6, 42, 117, 0.1) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-card-overlay {
  background: linear-gradient(to top, rgba(11, 59, 149, 0.98) 0%, rgba(11, 59, 149, 0.7) 60%, rgba(11, 59, 149, 0.2) 100%);
}

.pillar-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 3;
  color: #ffffff;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card-title {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pillar-card-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  min-height: 90px;
}

/* Slider Nav Buttons */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.slider-nav-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(11, 59, 149, 0.3);
}

.slider-nav-btn.prev-btn {
  left: -24px;
}

.slider-nav-btn.next-btn {
  right: -24px;
}

@media (max-width: 1200px) {
  .slider-nav-btn.prev-btn {
    left: 10px;
  }

  .slider-nav-btn.next-btn {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .pillar-card {
    flex: 0 0 300px;
    height: 420px;
  }

  .pillar-card-title {
    font-size: 22px;
  }

  .pillar-card-desc {
    font-size: 15px;
  }

  .slider-nav-btn {
    display: none;
  }
}

/* SUCCESS STORIES STYLES */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.success-card {
  height: 380px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  background: var(--bg-light);
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.16);
}

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

.success-card:hover .success-card-img {
  transform: scale(1.06);
}

.success-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 42, 117, 0.9) 0%, rgba(6, 42, 117, 0.4) 50%, rgba(6, 42, 117, 0) 100%);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.success-card:hover .success-card-overlay {
  background: linear-gradient(to top, rgba(11, 59, 149, 0.95) 0%, rgba(11, 59, 149, 0.5) 60%, rgba(11, 59, 149, 0.1) 100%);
}

.success-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-card-name {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.success-card-title {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-read-more {
  background-color: var(--accent-red);
  color: #ffffff;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.25);
  border: none;
  cursor: pointer;
}

.btn-read-more:hover {
  background-color: var(--dark-red);
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.35);
}

.btn-read-more:active {
  transform: scale(0.98);
}

@media (max-width: 991px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .success-card {
    height: 340px;
  }
}

/* HORIZONTAL PRODUCT IMAGE OVERRIDES */
.product-image-container {
  position: relative !important;
  top: auto !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.product-image-placeholder {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  padding: 0 !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.product-img-fit {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
  border-radius: 16px !important;
}

.product-image-placeholder::before {
  z-index: 2 !important;
}

/* Single product detail card overrides */
.product-single-img {
  background: #ffffff !important;
  padding: 0 !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  width: 100% !important;
  max-width: 100% !important;
}

.product-single-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Category Filter Tabs Sizing & Colors */
.filter-tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #f1f5f9;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
}

.filter-tab-btn:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.filter-tab-btn.active {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(11, 59, 149, 0.2);
}

@media (max-width: 768px) {
  .achiever-card--full {
    height: 420px;
    max-width: 300px;
  }
}