/* ==========================================================================
   MEDIWELL REMEDIES HEALTHCARE - CORPORATE DESIGN SYSTEM (v5.1)
   ========================================================================== */

:root {
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Primary Corporate Colors */
  --color-navy-dark: #0a192f;
  --color-navy: #0f2744;
  --color-navy-light: #1e3a5f;
  --color-slate: #475569;
  --color-slate-light: #f8fafc;
  --color-border: #e2e8f0;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-white: #ffffff;

  /* Ayurvedic Theme Accent Palette */
  --color-ayurvedic-primary: #1b4332;
  --color-ayurvedic-accent: #2d6a4f;
  --color-ayurvedic-light: #e8f5e9;
  --color-ayurvedic-glow: rgba(45, 106, 79, 0.15);

  /* Allopathic Theme Accent Palette */
  --color-allopathic-primary: #00509d;
  --color-allopathic-accent: #0077b6;
  --color-allopathic-light: #e0f2fe;
  --color-allopathic-glow: rgba(0, 119, 182, 0.15);

  /* Gold & Alert Accents */
  --color-gold: #d4af37;
  --color-amber: #f59e0b;
  --color-green: #10b981;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 4px rgba(15, 39, 68, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 39, 68, 0.08);
  --shadow-lg: 0 10px 25px rgba(15, 39, 68, 0.12);
  --shadow-xl: 0 20px 40px rgba(15, 39, 68, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background: #091729 url('assets/combined_bg_master.png') no-repeat center top fixed;
  background-size: cover;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.text-center {
  text-align: center;
}

/* Top Utility Bar */
.top-bar {
  background: var(--color-navy-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-weight: 500;
}

.contact-item:hover {
  color: var(--color-gold);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.highlight-wa {
  color: #25d366;
  font-weight: 600;
}

.highlight-wa:hover {
  color: #4ade80;
}

.motto-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

/* Header & Navigation Bar */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  height: 78px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  transition: var(--transition-fast);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  letter-spacing: -0.3px;
}

.brand-tagline {
  font-size: 0.85rem;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-slate);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-navy-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-allopathic-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(15, 39, 68, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 39, 68, 0.35);
}

.btn-secondary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.btn-secondary:hover {
  background: #c5a028;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-navy-dark);
}

.btn-outline:hover {
  background: var(--color-slate-light);
  border-color: var(--color-navy-light);
}

.btn-ayurvedic {
  background: linear-gradient(135deg, var(--color-ayurvedic-primary) 0%, var(--color-ayurvedic-accent) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.25);
}

.btn-ayurvedic:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.35);
}

.btn-allopathic {
  background: linear-gradient(135deg, var(--color-allopathic-primary) 0%, var(--color-allopathic-accent) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 80, 157, 0.25);
}

.btn-allopathic:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 80, 157, 0.35);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url('assets/combined_bg_master.png') no-repeat center top / cover;
  color: var(--color-white);
  padding: 110px 0 130px 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.82) 0%, rgba(10, 25, 47, 0.88) 100%);
  backdrop-filter: blur(2px);
}

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

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.18;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-cta-group .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.hero-cta-group .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 16px 36px;
  border-radius: var(--radius-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* Section Header */
.section-header {
  max-width: 760px;
  margin: 0 auto 54px auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-allopathic-accent);
  background: var(--color-allopathic-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* PROMINENT DUAL DIVISION PORTAL CARDS */
.divisions-section {
  background: transparent;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 36px;
}

.division-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.ayurvedic-card .card-top-accent {
  background: linear-gradient(90deg, var(--color-ayurvedic-primary), var(--color-ayurvedic-accent));
}

.allopathic-card .card-top-accent {
  background: linear-gradient(90deg, var(--color-allopathic-primary), var(--color-allopathic-accent));
}

.division-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.division-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ayurvedic-card .division-icon-box {
  background: var(--color-ayurvedic-light);
  color: var(--color-ayurvedic-primary);
}

.allopathic-card .division-icon-box {
  background: var(--color-allopathic-light);
  color: var(--color-allopathic-primary);
}

.division-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-ayurvedic {
  background: var(--color-ayurvedic-light);
  color: var(--color-ayurvedic-primary);
}

.badge-allopathic {
  background: var(--color-allopathic-light);
  color: var(--color-allopathic-primary);
}

.division-card-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.division-description {
  font-size: 1.02rem;
  color: var(--color-slate);
  margin-bottom: 28px;
  line-height: 1.6;
}

.division-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.feature-bullet svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ayurvedic-card .feature-bullet svg {
  fill: var(--color-ayurvedic-primary);
}

.allopathic-card .feature-bullet svg {
  fill: var(--color-allopathic-primary);
}

.division-card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PRODUCT CATALOGUE SECTION */
.catalog-section {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.catalog-tab-switcher {
  display: inline-flex;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 6px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.catalog-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-slate);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.catalog-tab-btn.active {
  background: var(--color-navy-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-slate);
}

.catalog-tab-btn.active .tab-dot {
  background: var(--color-gold);
}

.catalog-search-bar {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: var(--color-slate);
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-allopathic-primary);
  box-shadow: 0 0 0 3px var(--color-allopathic-glow);
}

.category-filters-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-slate);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--color-navy-dark);
  color: var(--color-white);
  border-color: var(--color-navy-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-item-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.product-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-allopathic-accent);
}

.product-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-allopathic-primary);
  background: var(--color-allopathic-light);
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 10px;

  text-transform: uppercase;
}

.product-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.product-packing-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--color-slate);
  font-weight: 600;
}

.product-packing-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.page-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-slate);
  cursor: pointer;

  transition: var(--transition-fast);
}

.page-btn:hover:not(:disabled), .page-btn.active {
  background: var(--color-navy-dark);
  color: var(--color-white);
  border-color: var(--color-navy-dark);
}

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

.page-dots {
  font-weight: 700;
  color: var(--color-slate);
}

.empty-search-box {
  grid-column: 1 / -1;
  background: var(--color-white);
  padding: 50px 20px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-border);
}

/* Operations Section */
.operations-section {
  background: transparent;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.lead-text {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.body-text {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 32px;
}

.operations-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-navy-dark);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.pillar-info h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar-info p {
  font-size: 0.9rem;
  color: var(--color-slate);
}

.visual-glass-card {
  background: linear-gradient(135deg, #0a192f 0%, #1e3a5f 100%);
  color: var(--color-white);
  padding: 44px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.visual-glass-card h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  margin: 16px 0 24px 0;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  color: #cbd5e1;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 800;
}

.visual-cta-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: var(--radius-md);
}

.visual-cta-box p {
  font-size: 0.92rem;
  color: #e2e8f0;
  margin-bottom: 14px;
}

/* Institutional Reach & Clients */
.institutional-section {
  background: transparent;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.client-badge-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-fast);
}

.client-badge-card:hover {
  border-color: var(--color-allopathic-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy-dark);
}

.client-details span {
  font-size: 0.8rem;
  color: var(--color-slate);
}

/* Leadership Section */
.leadership-section {
  background: transparent;
}

.directors-grid {
  max-width: 840px;
  margin: 0 auto 50px auto;
}

.director-card {
  background: var(--color-slate-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.director-images-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.director-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.director-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-details h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.director-title {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-allopathic-primary);
  margin-bottom: 16px;
}

.director-bio {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--color-slate);
  line-height: 1.6;
}

.credentials-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cred-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.cred-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-ayurvedic-light);
  color: var(--color-ayurvedic-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.cred-text h4 {
  font-size: 1.02rem;
  font-weight: 700;
}

.cred-text p {
  font-size: 0.84rem;
  color: var(--color-slate);
}

/* Testimonials */
.testimonials-section {
  background: transparent;
}

.video-testimonials-wrapper {
  margin-top: 36px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.video-section-header {
  margin-bottom: 20px;
}

.video-section-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-section-header p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.video-testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.video-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold-dark);
}

.video-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-player-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b0f19;
  border: none;
}

.video-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #f8fafc;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.video-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.video-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.4;
}

.video-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.video-author-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-emerald-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  color: var(--color-gold);
  font-size: 2.5rem;
  font-family: serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.author-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-navy-dark);
  color: var(--color-white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-photo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.author-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--color-slate);

  display: block;
}

/* Contact Section */
.contact-section {
  background: transparent;
}

.contact-box-wrapper {
  background: var(--color-navy-dark);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 54px;
  box-shadow: var(--shadow-xl);
}

.contact-info-panel h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin: 12px 0 20px 0;
}

.contact-info-panel p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.method-details {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

.method-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
}

.method-link:hover {
  text-decoration: underline;
}

.contact-form-panel {
  background: #ffffff;
  color: var(--color-text-main);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--color-navy-dark);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-allopathic-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--color-allopathic-glow);
}

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

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-slate);
  cursor: pointer;
}

.modal-header h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--color-slate);
  margin-bottom: 20px;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
}

.toast-item {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--color-green);
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  animation: slideInRight 0.3s ease forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Main Footer */
.main-footer {
  background: #061121;
  color: #94a3b8;
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand-tagline {
  font-size: 0.85rem;
  color: #d4af37;
  font-weight: 700;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Executive Card & Corporate Overview Styling */
.executive-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
}

.executive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  border-color: var(--color-gold);
}

.executive-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.executive-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-navy-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.qualification-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-navy-dark);
  color: #ffffff;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.qualification-badge strong {
  color: var(--color-gold);
  font-size: 0.86rem;
}

.executive-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.executive-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.executive-role {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-allopathic-primary);
}

.experience-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
  margin: 4px 0;
}

.experience-tag strong {
  color: #047857;
  font-weight: 800;
}

.executive-quote {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-slate);
  line-height: 1.5;
}

.company-overview-box {
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.96) 0%, rgba(10, 25, 47, 0.96) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
}

.overview-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.overview-heading {
  font-size: 1.65rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.overview-paragraph {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 14px;
}

.overview-paragraph strong {
  color: var(--color-gold);
}

.motto-tag {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-link {
  color: var(--color-gold);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.5rem; }
  .divisions-grid { grid-template-columns: 1fr; }
  .grid-2-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catalog-header-wrapper { flex-direction: column; align-items: stretch; }
  .catalog-search-bar { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-logo-img { height: 60px; }
  .footer-logo-img { height: 56px; }
  .executive-card { flex-direction: column; text-align: center; }
  .experience-tag { margin: 6px auto; }
  .company-overview-box { padding: 24px; }
  .hero-title { font-size: 2.1rem; }
  .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-box-wrapper { padding: 30px; }
}
