:root {
  --primary-purple: #702f8a;
  --accent-orange: #1891a4;
  --accent-orange-light: #69b8c4;
  --dark-navy: #0b132b;
  --text-gray: #4a5568;
  --dark-text: #1a2e2a;
  --light-bg: #f8fafc;
  --border-divider: #e4eeec;
}

/* =========================================
   BASE & TYPOGRAPHY
   ========================================= */
body {
  font-family: sans-serif;
  color: var(--text-gray);
  background: var(--light-bg);
  overflow-x: hidden;
}

h1 {
  font-family: sans-serif;
}

h2,
h3,
h4,
h5,
h6,
.navbar,
.btn {
  font-family: sans-serif;
}

.logo-img {
  max-width: 180px;
  height: auto;
  transition: 0.3s;
}

/* =========================================
   HERO SECTION
   ========================================= */
.page-hero {
  background: var(--light-bg);
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #e2edf8 100%);
  position: relative;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(112, 47, 138, 0.1);
  color: var(--primary-purple);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: sans-serif;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* Animated hero shared across service/about/team/contact pages */
.about-hero,
.team-hero-section,
.contact-hero {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-hero::before,
.team-hero-section::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 340px at 18% 30%,
      rgba(112, 47, 138, 0.1),
      rgba(112, 47, 138, 0) 62%
    ),
    radial-gradient(
      760px 320px at 82% 18%,
      rgba(112, 47, 138, 0.08),
      rgba(112, 47, 138, 0) 58%
    ),
    linear-gradient(
      120deg,
      rgba(112, 47, 138, 0.04),
      rgba(112, 47, 138, 0.08),
      rgba(112, 47, 138, 0.04)
    );
  background-size: 120% 120%;
  animation: heroGradientShift 14s ease-in-out infinite;
  z-index: 0;
}

.about-hero::after,
.team-hero-section::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(rgba(112, 47, 138, 0.14) 1px, transparent 1px),
    radial-gradient(rgba(112, 47, 138, 0.1) 1px, transparent 1px);
  background-size:
    28px 28px,
    44px 44px;
  background-position:
    0 0,
    12px 18px;
  opacity: 0.45;
  animation: heroParticlesFloat 18s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.about-hero .container,
.team-hero-section .container,
.contact-hero .container {
  position: relative;
  z-index: 1;
}

@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroParticlesFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.about-hero h1,
.team-hero-section h1,
.contact-hero h1 {
  color: var(--primary-purple);
  font-family: sans-serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.about-hero h1::before,
.team-hero-section h1::before,
.contact-hero h1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(
    closest-side,
    rgba(112, 47, 138, 0.14),
    rgba(112, 47, 138, 0) 70%
  );
  box-shadow:
    0 0 0 0 rgba(112, 47, 138, 0.2),
    0 0 0 0 rgba(112, 47, 138, 0.12);
  z-index: -1;
  animation: heroPulseRing 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.55;
    box-shadow:
      0 0 0 0 rgba(112, 47, 138, 0.2),
      0 0 0 0 rgba(112, 47, 138, 0.12);
  }
  70% {
    opacity: 0.18;
    box-shadow:
      0 0 0 24px rgba(112, 47, 138, 0),
      0 0 0 54px rgba(112, 47, 138, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0;
    box-shadow:
      0 0 0 34px rgba(112, 47, 138, 0),
      0 0 0 74px rgba(112, 47, 138, 0);
  }
}

.about-hero p,
.team-hero-section p,
.contact-hero p {
  color: #4a5568;
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .about-hero,
  .team-hero-section,
  .contact-hero {
    padding: 60px 0;
    background: linear-gradient(
      135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-light) 100%
    );
  }
  .about-hero h1,
  .team-hero-section h1,
  .contact-hero h1 {
    font-size: 36px;
  }
  .about-hero h1::before,
  .team-hero-section h1::before,
  .contact-hero h1::before {
    width: 220px;
    height: 220px;
  }
  .about-hero p,
  .team-hero-section p,
  .contact-hero p {
    font-size: 16px;
  }
}

.trust-badges {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-pill {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-purple {
  background: var(--primary-purple);
  color: white;
}
.btn-purple:hover {
  background: #5a256e;
  color: white;
  transform: translateY(-2px);
}

.btn-primary-pill {
  background: var(--accent-orange);
  color: #ffffff;
  border: 2px solid var(--accent-orange);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.btn-primary-pill:hover,
.btn-primary-pill:focus {
  color: #ffffff;
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: scale(1.02);
}

.btn-outline-pill {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  background: transparent;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
.btn-outline-pill:hover,
.btn-outline-pill:focus {
  color: #ffffff;
  background: var(--primary-purple);
  transform: scale(1.02);
}

/* =========================================
   TOP INFO BAR & NAVIGATION
   ========================================= */
.top-info-bar {
  background: var(--primary-purple);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 0;
}

.top-info-bar a {
  color: white;
  text-decoration: none;
}

.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(26, 46, 42, 0.06);
}

.navbar-brand img {
  display: block;
  height: 50px;
  width: auto;
}

.navbar .nav-link {
  color: var(--dark-text);
  font-weight: 600;
  transition: color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--primary-purple);
}

.navbar .btn-refill {
  background: var(--accent-orange);
  color: #ffffff;
  border: 1px solid var(--accent-orange);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(24, 145, 164, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.navbar .btn-refill:hover,
.navbar .btn-refill:focus {
  color: #ffffff;
  background: var(--accent-orange);
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(24, 145, 164, 0.24);
}

.navbar-toggler {
  border-color: rgba(26, 46, 42, 0.12);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================
   DROPDOWN MENUS
   ========================================= */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: all 0.3s ease;
    animation: fadeInDown 0.3s ease forwards;
  }
}

.navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.1);
  padding: 15px 0;
}

.navbar .dropdown-item {
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.2s;
}

.navbar .dropdown-item:hover {
  background: rgba(24, 145, 164, 0.08);
  color: var(--accent-orange);
  transform: translateX(4px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   NEW HERO SECTIONS FOR SERVICES & ABOUT US
   ========================================= */

/* Hero Section for Services Page */
.service-hero-section {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #5a256e 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 25px 25px;
  pointer-events: none;
  animation: gentlePulse 4s ease-in-out infinite;
}

.service-hero-section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(24, 145, 164, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: floatHero 6s ease-in-out infinite;
}

.service-hero-section h1 {
  font-family: sans-serif;
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out;
}

.service-hero-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out 0.15s both;
}

/* Hero Section for About Us Page */
.about-hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e2edf8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 340px at 18% 30%,
    rgba(112, 47, 138, 0.08),
    rgba(112, 47, 138, 0) 62%
  );
  z-index: 0;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: radial-gradient(
    rgba(112, 47, 138, 0.1) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

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

.about-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 18px;
  font-family: sans-serif;
  font-size: 14px;
  background: transparent;
}

.about-hero .breadcrumb-item a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
}

.about-hero .breadcrumb-item.active {
  color: var(--dark-text);
}

.about-hero h1 {
  color: var(--primary-purple);
  font-family: sans-serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.about-hero h1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(
    closest-side,
    rgba(112, 47, 138, 0.12),
    rgba(112, 47, 138, 0) 70%
  );
  z-index: -1;
  animation: heroPulseRing 2.8s ease-in-out infinite;
  pointer-events: none;
}

.about-hero p {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   SERVICES GRID SECTION
   ========================================= */
.services-grid-section {
  padding: 80px 0;
  background: var(--light-bg);
}

/* Premium Card Design */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  border-radius: 28px;
  padding: 32px 24px !important;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(112, 47, 138, 0.12);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
  cursor: pointer;
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
  opacity: 0;
  animation: cardGlowIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

/* Staggered delays */
.services-grid-section .col-12:nth-child(1) .service-card {
  animation-delay: 0.03s;
}
.services-grid-section .col-12:nth-child(2) .service-card {
  animation-delay: 0.06s;
}
.services-grid-section .col-12:nth-child(3) .service-card {
  animation-delay: 0.09s;
}
.services-grid-section .col-12:nth-child(4) .service-card {
  animation-delay: 0.12s;
}
.services-grid-section .col-12:nth-child(5) .service-card {
  animation-delay: 0.15s;
}
.services-grid-section .col-12:nth-child(6) .service-card {
  animation-delay: 0.18s;
}
.services-grid-section .col-12:nth-child(7) .service-card {
  animation-delay: 0.21s;
}
.services-grid-section .col-12:nth-child(8) .service-card {
  animation-delay: 0.24s;
}
.services-grid-section .col-12:nth-child(9) .service-card {
  animation-delay: 0.27s;
}
.services-grid-section .col-12:nth-child(10) .service-card {
  animation-delay: 0.3s;
}
.services-grid-section .col-12:nth-child(11) .service-card {
  animation-delay: 0.33s;
}
.services-grid-section .col-12:nth-child(12) .service-card {
  animation-delay: 0.36s;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-purple) 0%, #9b4dba 100%);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 10px 24px rgba(112, 47, 138, 0.2);
}

.service-icon i {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  box-shadow: 0 15px 30px rgba(24, 145, 164, 0.3);
}

.service-card h3 {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  letter-spacing: -0.3px;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-orange),
    transparent
  );
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-purple);
}

.service-card:hover h3::after {
  width: 55px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-purple),
    transparent
  );
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6e6a;
  margin-bottom: 20px;
  font-weight: 500;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(24, 145, 164, 0.08);
}

.link-arrow:hover {
  color: #ffffff;
  background: var(--accent-orange);
  gap: 14px;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(24, 145, 164, 0.25);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(112, 47, 138, 0.15);
  border-color: rgba(112, 47, 138, 0.25);
  background: #ffffff;
}

.service-card:hover p {
  color: #4a5e5a;
}

/* =========================================
   ABOUT PAGE STORY SECTION
   ========================================= */
.about-story-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-story-section h2 {
  color: var(--dark-text);
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-story-section p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.7;
}

.about-main-img {
  width: 80%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.about-sub-img {
  width: 55%;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 8px solid #ffffff;
}

/* =========================================
   VALUES SECTION
   ========================================= */
.values-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(26, 46, 42, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 46, 42, 0.1);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3e8f5;
  color: var(--primary-purple);
  font-size: 20px;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-gray);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   COMMUNITY CTA SECTION
   ========================================= */
.community-cta-section {
  padding: 100px 0;
  background: #ffffff;
}

.community-cta-section h2 {
  color: var(--dark-text);
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.community-cta-section p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.7;
}

.community-cta-section .btn-pill {
  background: var(--primary-purple);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 123, 108, 0.16);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.community-cta-section .btn-pill:hover {
  color: #ffffff;
  background: #5a256e;
  transform: scale(1.02);
}

.community-cta-section .btn-outline-pill {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  background: transparent;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.community-cta-section .btn-outline-pill:hover {
  color: #ffffff;
  background: var(--primary-purple);
  transform: scale(1.02);
}

/* =========================================
   KEYFRAME ANIMATIONS
   ========================================= */
@keyframes gentlePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

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

@keyframes cardGlowIn {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroPulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.55;
  }
  70% {
    opacity: 0.18;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0;
  }
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 767.98px) {
  .service-hero-section {
    padding: 60px 0;
  }

  .service-hero-section h1 {
    font-size: 34px;
  }

  .service-hero-section p {
    font-size: 16px;
  }

  .about-hero {
    padding: 60px 0;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-hero h1::before {
    width: 220px;
    height: 220px;
  }

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

  .service-card {
    padding: 24px 20px !important;
    border-radius: 24px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .link-arrow {
    font-size: 13px;
    padding: 6px 14px;
  }

  .about-story-section,
  .values-section,
  .community-cta-section {
    padding: 60px 0;
  }

  .about-sub-img {
    width: 58%;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-brand {
  color: var(--primary-purple);
}
.text-accent {
  color: var(--accent-orange);
}

.section-tag {
  display: inline-block;
  background: #f3e8f5;
  color: var(--primary-purple);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

/* =========================================
   PHARMACIST TEAM SECTION
   ========================================= */
.pharmacist-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pharmacist-section .row {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.08);
}

.pharmacist-section img {
  border-radius: 22px;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  object-fit: cover;
}

.pharmacist-section h2 {
  color: var(--dark-navy);
  font-family: sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.pharmacist-section p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 560px;
}

.pharmacist-section .btn-pill {
  margin-top: 1.75rem;
}

/* =========================================
   CARDS (Shared Base)
   ========================================= */
.service-card,
.pharmacist-card,
.review-card,
.blog-card {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover,
.pharmacist-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================
   PREMIUM CARD ENHANCEMENTS
   ========================================= */
.service-card,
.review-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 2rem;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.08);
}

/* Services-List Page Card Variation (left accent) */
.service-card {
  border-top: 4px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--dark-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.review-card {
  animation: bubbleFloat 4s ease-in-out infinite;
  transform-origin: center;
  position: relative;
  overflow: hidden;
}

.reviews-section .row > div:nth-child(1) .review-card {
  animation-delay: 0s;
}

.reviews-section .row > div:nth-child(1) .review-card:hover {
  animation-play-state: paused;
  transform: scale(1.06) !important;
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.08) !important;
}

.reviews-section .row > div:nth-child(2) .review-card {
  animation-delay: 0.3s;
}

.reviews-section .row > div:nth-child(2) .review-card:hover {
  animation-play-state: paused;
  transform: scale(1.06) !important;
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.08) !important;
}

.reviews-section .row > div:nth-child(3) .review-card {
  animation-delay: 0.6s;
}

.reviews-section .row > div:nth-child(3) .review-card:hover {
  animation-play-state: paused;
  transform: scale(1.06) !important;
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.08) !important;
}

.reviews-section .row > div:nth-child(4) .review-card {
  animation-delay: 0.9s;
}

.reviews-section .row > div:nth-child(4) .review-card:hover {
  animation-play-state: paused;
  transform: scale(1.06) !important;
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.08) !important;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: scale(1) translateY(0);
    box-shadow: inset 0 0 0 0 rgba(112, 47, 138, 0.1);
  }
  25% {
    transform: scale(1.02) translateY(-4px);
    box-shadow: inset 0 0 12px 2px rgba(112, 47, 138, 0.15);
  }
  50% {
    transform: scale(0.99) translateY(-1px);
    box-shadow: inset 0 0 6px 1px rgba(112, 47, 138, 0.12);
  }
  75% {
    transform: scale(1.03) translateY(-3px);
    box-shadow: inset 0 0 15px 3px rgba(112, 47, 138, 0.16);
  }
}

@keyframes reviewFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(-0.25deg);
  }
  50% {
    transform: translateY(-2px) rotate(0.25deg);
  }
  75% {
    transform: translateY(-8px) rotate(-0.15deg);
  }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  padding: 80px 0;
  background: white;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f3e8f5;
  color: var(--primary-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex: 0 0 auto;
}

.service-card h3 {
  color: var(--dark-text);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* =========================================
   SERVICES HERO & GRID (services.html)
   ========================================= */
.service-hero-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.service-hero-section h1 {
  font-family: sans-serif;
  color: var(--primary-purple);
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.service-hero-section p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}

.services-grid-section {
  padding: 30px 0 90px;
}
/* ===== SERVICES PAGE - CARD DESIGN (SAME AS 1,2,3 STEPS) ===== */
/* Premium card design with 3-step style animations - unified color */
/* No conflicts, no HTML changes, no content changes */

/* Hero section enhancement */
.service-hero-section {
  background: var(--primary-purple);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 25px 25px;
  pointer-events: none;
  animation: gentlePulse 4s ease-in-out infinite;
}

.service-hero-section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(24, 145, 164, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: floatHero 6s ease-in-out infinite;
}

.service-hero-section h1 {
  font-family: sans-serif;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out;
}

.service-hero-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out 0.15s both;
}

/* Services grid section */
.services-grid-section {
  padding: 80px 0;
  background: var(--light-bg);
}

/* ===== PREMIUM CARD DESIGN (SAME AS 1,2,3 STEPS) ===== */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  border-radius: 28px;
  padding: 32px 24px !important;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(112, 47, 138, 0.12);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
  cursor: pointer;
}

/* Individual card background gradients (unified color theme) */
.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

/* Icon styling - like circle from 1,2,3 but square with rounded corners */
.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-purple) 0%, #9b4dba 100%);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 10px 24px rgba(112, 47, 138, 0.2);
}

.service-icon i {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* Icon hover effect - like circle from 1,2,3 */
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  box-shadow: 0 15px 30px rgba(24, 145, 164, 0.3);
}

.service-card:hover .service-icon i {
  transform: scale(1.02);
  color: #ffffff;
}

/* Heading styling with underline animation (like 1,2,3) */
.service-card h3 {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  letter-spacing: -0.3px;
}

/* Animated underline like 1,2,3 cards */
.service-card h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-orange),
    transparent
  );
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-purple);
}

.service-card:hover h3::after {
  width: 55px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-purple),
    transparent
  );
}

/* Paragraph styling */
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6e6a;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Link arrow styling */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(24, 145, 164, 0.08);
}

.link-arrow:hover {
  color: #ffffff;
  background: var(--accent-orange);
  gap: 14px;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(24, 145, 164, 0.25);
}

/* Entry animations - staggered like 1,2,3 cards */
.service-card {
  opacity: 0;
  animation: cardGlowIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

/* Staggered delay for each card */
.services-grid-section .col-12:nth-child(1) .service-card {
  animation-delay: 0.03s;
}
.services-grid-section .col-12:nth-child(2) .service-card {
  animation-delay: 0.06s;
}
.services-grid-section .col-12:nth-child(3) .service-card {
  animation-delay: 0.09s;
}
.services-grid-section .col-12:nth-child(4) .service-card {
  animation-delay: 0.12s;
}
.services-grid-section .col-12:nth-child(5) .service-card {
  animation-delay: 0.15s;
}
.services-grid-section .col-12:nth-child(6) .service-card {
  animation-delay: 0.18s;
}
.services-grid-section .col-12:nth-child(7) .service-card {
  animation-delay: 0.21s;
}
.services-grid-section .col-12:nth-child(8) .service-card {
  animation-delay: 0.24s;
}
.services-grid-section .col-12:nth-child(9) .service-card {
  animation-delay: 0.27s;
}
.services-grid-section .col-12:nth-child(10) .service-card {
  animation-delay: 0.3s;
}
.services-grid-section .col-12:nth-child(11) .service-card {
  animation-delay: 0.33s;
}
.services-grid-section .col-12:nth-child(12) .service-card {
  animation-delay: 0.36s;
}
.services-grid-section .col-12:nth-child(13) .service-card {
  animation-delay: 0.39s;
}
.services-grid-section .col-12:nth-child(14) .service-card {
  animation-delay: 0.42s;
}

/* Keyframe animations */
@keyframes gentlePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

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

@keyframes cardGlowIn {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ===== EXTRA ANIMATIONS ON HOVER ===== */

@keyframes cardPulse {
  0% {
    transform: translateY(-10px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(0.98);
  }
  100% {
    transform: translateY(-10px) scale(1);
  }
}

/* ===== SERVICES PAGE - ONLY HOVER ANIMATIONS ===== */
/* Default design remains EXACTLY the same - only hover effects add thay */
/* No conflicts, no default changes */

/* Hover effect 1: Smooth lift with scale */
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Hover effect 2: Icon bounce and color change */
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(3deg);
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 15px 30px rgba(24, 145, 164, 0.35);
}

.service-card:hover .service-icon i {
  transform: scale(1.05);
  color: #ffffff;
  transition: all 0.3s ease;
}

/* Hover effect 3: Heading color change with smooth transition */
.service-card:hover h3 {
  color: var(--primary-purple);
  transition: color 0.3s ease;
}

/* Hover effect 4: Underline expands from center */
.service-card:hover h3::after {
  width: 55px;
  transition: width 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Hover effect 5: Link button slides and changes color */
.service-card:hover .link-arrow {
  background: var(--accent-orange);
  color: #ffffff;
  gap: 12px;
  padding-left: 20px;
  padding-right: 20px;
  transform: translateX(4px);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 12px rgba(24, 145, 164, 0.3);
}

/* Hover effect 6: Card shadow intensifies */
.service-card:hover {
  box-shadow: 0 20px 40px rgba(112, 47, 138, 0.15);
  border-color: rgba(112, 47, 138, 0.25);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Hover effect 8: Paragraph text subtle color change */
.service-card:hover p {
  color: #4a5e5a;
  transition: color 0.25s ease;
}

/* Hover effect 9: Card background becomes slightly brighter */
.service-card:hover {
  background: #ffffff;
  transition: background 0.3s ease;
}

/* Hover effect 10: Subtle pulse effect on whole card */
@keyframes hoverPulse {
  0% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    transform: translateY(-8px) scale(1.02);
  }
}

/* Optional: Ripple effect on click (not hover) */
.service-card:active {
  transform: translateY(-5px) scale(0.99);
  transition: all 0.05s ease;
}

/* Make sure default styles are NOT overwritten */
/* The following properties remain EXACTLY as they were in default: */
/* - Card background (rgba(255,255,255,0.85) with blur) */
/* - Icon default (purple gradient) */
/* - Heading default color (dark-text) */
/* - Underline default width (35px) */
/* - Link default styling (orange text, transparent background) */
/* - Corner decoration default sizes (60px) */
/* - Card border default (1px solid rgba(112,47,138,0.12)) */
/* - Card shadow default (none or subtle) */
/* - All text sizes, padding, margins remain same */
/* Responsive adjustments */
@media (max-width: 767.98px) {
  .service-hero-section {
    padding: 60px 0;
  }

  .service-hero-section h1 {
    font-size: 34px;
  }

  .service-hero-section p {
    font-size: 16px;
  }

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

  .service-card {
    padding: 24px 20px !important;
    border-radius: 24px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .link-arrow {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* Touch feedback for mobile */
@media (max-width: 767.98px) {
  .service-card:active {
    transform: scale(0.98);
  }
}

/* Reduced motion preference support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .service-card:hover {
    transform: translateY(-5px);
  }
  .service-card:hover .service-icon {
    transform: scale(1.05);
  }
}
/* =========================================
   ABOUT PREVIEW
   ========================================= */
.about-preview-section {
  padding: 80px 0;
  background: var(--light-bg);
}

/* =========================================
   LICENCE INFORMATION
   ========================================= */
.licence-section {
  padding: 90px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(112, 47, 138, 0.08),
      transparent 36%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  position: relative;
  overflow: hidden;
}

.licence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(24, 145, 164, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(112, 47, 138, 0.08) 1px, transparent 1px);
  background-size:
    32px 32px,
    44px 44px;
  background-position:
    0 0,
    18px 18px;
  opacity: 0.35;
  pointer-events: none;
}

.licence-section .container {
  position: relative;
  z-index: 1;
}

.licence-image-card {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #eef7f6);
  box-shadow: 0 26px 60px rgba(26, 46, 42, 0.12);
  border: 1px solid rgba(112, 47, 138, 0.08);
  overflow: hidden;
  animation: licenceCardFloat 7s ease-in-out infinite;
}

.licence-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 48%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: licenceShine 6.5s ease-in-out infinite;
  pointer-events: none;
}

.licence-image-shell {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(11, 19, 43, 0.14);
  background: #eaf2f2;
}

.licence-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.licence-floating-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(26, 46, 42, 0.14);
}

.licence-floating-card i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--accent-orange)
  );
  color: #ffffff;
  flex: 0 0 42px;
  box-shadow: 0 10px 18px rgba(112, 47, 138, 0.2);
}

.licence-floating-card strong {
  display: block;
  color: var(--dark-navy);
  font-family: sans-serif;
  font-size: 15px;
}

.licence-floating-card span {
  display: block;
  color: var(--text-gray);
  font-size: 13px;
}

.licence-section .section-tag {
  margin-bottom: 14px;
}

.licence-section h2 {
  color: var(--dark-navy);
  font-family: sans-serif;
  font-size: 42px;
  margin-bottom: 18px;
}

.licence-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.licence-meta-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(112, 47, 138, 0.08);
  box-shadow: 0 14px 34px rgba(26, 46, 42, 0.06);
}

.licence-meta-item span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.licence-meta-item strong {
  color: var(--primary-purple);
  font-size: 18px;
}

.licence-description {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.licence-note-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(112, 47, 138, 0.08);
  color: var(--dark-text);
  font-weight: 600;
}

.licence-note-box i {
  color: var(--primary-purple);
  font-size: 18px;
}

@keyframes licenceCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes licenceShine {
  0% {
    transform: translateX(-120%);
  }
  45% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 991.98px) {
  .licence-section {
    padding: 70px 0;
  }

  .licence-section h2 {
    font-size: 34px;
  }

  .licence-meta-grid {
    grid-template-columns: 1fr;
  }

  .licence-floating-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 575.98px) {
  .licence-image-card {
    padding: 12px;
    border-radius: 24px;
  }

  .licence-image-shell {
    border-radius: 18px;
  }

  .licence-floating-card {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }

  .licence-description {
    font-size: 16px;
  }
}

/* =========================================
   ABOUT PAGE SPECIFIC
   ========================================= */
.about-hero {
  background: var(--light-bg);
  padding: 80px 0;
  text-align: center;
}

.about-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 18px;
  font-family: sans-serif;
  font-size: 14px;
}

.about-hero .breadcrumb-item a {
  color: var(--primary-purple);
  text-decoration: none;
}

.about-hero .breadcrumb-item.active {
  color: var(--dark-text);
}

.about-hero h1 {
  color: var(--primary-purple);
  font-family: sans-serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.about-hero p {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 0;
}

.about-story-section,
.community-cta-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-story-section h2,
.values-section h2,
.community-cta-section h2 {
  color: var(--dark-text);
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-story-section p,
.community-cta-section p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.7;
}
/* 
.about-images-wrapper {
  position: relative;
  height: 450px;
} */

.about-main-img {
  width: 80%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.about-sub-img {
  width: 55%;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 8px solid #ffffff;
}

/* =========================================
   VALUES SECTION
   ========================================= */
.values-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(26, 46, 42, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 46, 42, 0.1);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3e8f5;
  color: var(--primary-purple);
  font-size: 20px;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-gray);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   STATS
   ========================================= */
.stats-section {
  padding: 60px 0;
  background: var(--primary-purple);
  color: white;
}

.stats-section h2 {
  font-family: sans-serif;
  font-weight: 700;
}

.stats-section p {
  color: #e4eeec;
}

.stat-number {
  font-family: sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-orange);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--dark-navy);
  margin: 0;
}

.reviews-slider {
  padding-bottom: 40px;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* =========================================
   BLOG
   ========================================= */
.blog-preview-section,
.blog-grid {
  padding: 80px 0;
}

.blog-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blog-card-content {
  padding: 25px;
}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(112, 47, 138, 0.1);
  color: var(--primary-purple);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-date {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 10px;
}

/* =========================================
   PREMIUM LINK STYLING
   ========================================= */
.premium-link {
  color: var(--accent-orange) !important;
  text-decoration: none !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.premium-link:hover {
  color: var(--primary-purple) !important;
  transform: translateX(4px);
}

/* =========================================
   COMMUNITY CTA
   ========================================= */
.community-cta-section .btn-pill {
  background: var(--primary-purple);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 123, 108, 0.16);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.community-cta-section .btn-pill:hover,
.community-cta-section .btn-pill:focus {
  color: #ffffff;
  background: #702f8a;
  transform: scale(1.02);
}

.community-cta-section .btn-outline-pill {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  background: transparent;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.community-cta-section .btn-outline-pill:hover,
.community-cta-section .btn-outline-pill:focus {
  color: #ffffff;
  background: var(--primary-purple);
  transform: scale(1.02);
}

/* =========================================
   FOOTER — PREMIUM ROUNDED
   ========================================= */
.advanced-footer {
  background: var(--dark-navy);
  color: #ffffff;
  border-radius: 30px;
  margin: 0 20px 20px 20px;
  padding: 80px 40px 30px 40px;
  position: relative;
}

.footer-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  font-family: sans-serif;
}

.footer-link {
  color: #a0aabf;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-link::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-orange);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--accent-orange);
  transform: translateX(5px);
}

.social-circle {
  width: 40px;
  height: 40px;
  background: #1a2442;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-circle:hover,
.social-circle:focus {
  background: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-divider-container {
  position: relative;
  margin: 50px 0 30px 0;
}

.footer-divider-container hr {
  border-color: #2a3454;
  opacity: 1;
  margin: 0;
}

.footer-divider-socials {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark-navy);
  padding: 0 18px;
}

.contact-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #1a2442;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 14px;
}

.footer-contact-item {
  color: #a0aabf;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 767.98px) {
  .advanced-footer {
    margin: 0 12px 12px 12px;
    padding: 60px 22px 24px 22px;
    border-radius: 24px;
  }

  .footer-divider-socials {
    padding: 0 12px;
  }

  .about-hero {
    padding: 60px 0;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-story-section,
  .values-section,
  .community-cta-section {
    padding: 60px 0;
  }

  /* .about-images-wrapper {
    height: 320px;
  } */

  .about-sub-img {
    width: 58%;
  }

  .service-hero-section {
    padding: 60px 0;
  }

  .service-hero-section h1 {
    font-size: 38px;
  }

  .service-hero-section p {
    font-size: 16px;
  }

  .pharmacist-section {
    padding: 60px 0;
  }

  .pharmacist-section .row {
    padding: 18px;
    border-radius: 22px;
  }

  .pharmacist-section img {
    max-height: 280px;
  }

  .pharmacist-section h2 {
    font-size: 32px;
  }
}
