/* ========================================
   MI-DOSE PHARMA PRIVATE LIMITED
   COMPLETE CUSTOM STYLESHEET
   Brand Colors: Green (#00A650) & Yellow (#FFF200)
   Following UI/UX Brand Guidelines
   ======================================== */

/* ========================================
   1. BASE STYLES & TYPOGRAPHY
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif !important;
  line-height: 0.8;
  color: #333;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

a {
  transition: all 0.3s ease;
}

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

/* ========================================
   2. CSS VARIABLES - BRAND COLORS
   ======================================== */
:root {
  /* Primary Colors */
  --primary-green: #00A650;
  --primary-dark-green: #116530;
  
  /* Secondary Colors */
  --secondary-yellow: #FFF200;
  --secondary-gold: #FFD700;
  
  /* Neutral Colors */
  --neutral-cream: #FAF9F6;
  --neutral-white: #FFFFFF;
  --neutral-light-grey: #F5F5F5;
  --neutral-warm-grey: #E9ECEF;
  
  /* Text Colors */
  --text-color: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  
  /* Border & Shadow */
  --border-grey: #E0E0E0;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  
  /* Gradients */
  --gradient-green: linear-gradient(135deg, #00A650 0%, #116530 100%);
  --gradient-yellow: linear-gradient(135deg, #FFF200 0%, #FFD700 100%);
  --gradient-cream: linear-gradient(135deg, #F5F5F5 0%, #FAF9F6 100%);
}

/* ========================================
   3. HERO SECTIONS WITH BACKGROUND IMAGES
   ======================================== */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 166, 80, 0.67) 0%, rgba(17, 101, 48, 0.62) 100%);
/* background: linear-gradient(
  135deg,
  rgba(34, 190, 100, 0.45) 0%,
  rgba(30, 120, 60, 0.40) 100%
); */
opacity: 0.9 !important;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,242,0,0.1)"/></svg>');
  z-index: 1;
  opacity: 0.3;
}

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

.hero-section h1 {
  color: var(--neutral-white);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero-section .lead {
  color: var(--neutral-white);
  opacity: 0.98;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 1.25rem;
}

/* Hero Breadcrumb Navigation */
.hero-breadcrumb {
  margin-top: 29px;
  display: inline-block;
}

.hero-breadcrumb a {  
  color: var(--secondary-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-breadcrumb a:hover {
  color: var(--neutral-white);
  text-shadow: 0 0 10px rgba(255, 242, 0, 0.5);
}

.hero-breadcrumb span {
  color: var(--neutral-white);
  opacity: 0.95;
  font-weight: 600;
  font-size: 1rem;
}

.hero-breadcrumb i {
  color: var(--secondary-yellow);
  /*margin: 0 12px;*/
  font-size: 11px;
  opacity: 0.8;
}

/* ========================================
   4. CONTENT SECTIONS
   ======================================== */
.content-section {
  padding: 90px 0;
  background-color: var(--neutral-cream);
}

.content-section-white {
  padding: 90px 0;
  background-color: var(--neutral-white);
}

.content-section-grey {
  padding: 90px 0;
  background-color: var(--neutral-light-grey);
}

/* ========================================
   5. CARDS & BOXES
   ======================================== */

/* Highlight Box */
.highlight-box {
  background-color: var(--neutral-white);
  padding: 50px 45px;
  border-radius: 18px;
  margin: 40px 0;
  box-shadow: 0 8px 25px var(--shadow-light);
  border-left: 6px solid var(--secondary-yellow);
  transition: all 0.3s ease;
}

.highlight-box:hover {
  box-shadow: 0 12px 35px var(--shadow-medium);
  transform: translateY(-3px);
}

/* Quote Box */
.quote-box {
  background: var(--gradient-green);
  color: var(--neutral-white);
  padding: 55px 50px;
  border-radius: 18px;
  margin: 50px 0;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 166, 80, 0.25);
}

.quote-box::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-green), var(--secondary-yellow));
  border-radius: 18px;
  z-index: -1;
  opacity: 0.4;
}

.quote-box h3,
.quote-box h4 {
  color: var(--neutral-white);
  margin-bottom: 20px;
}

.quote-box p {
  margin-bottom: 0;
}

/* Mission Card */
.mission-card {
  background: var(--neutral-white);
  padding: 45px 40px;
  border-radius: 18px;
  box-shadow: 0 8px 25px var(--shadow-light);
  margin: 30px 0;
  transition: all 0.4s ease;
  border-top: 5px solid var(--secondary-yellow);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 166, 80, 0.02) 100%);
  z-index: 0;
  transition: all 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-medium);
  border-top-color: var(--primary-green);
}

.mission-card:hover::before {
  background: linear-gradient(135deg, transparent 0%, rgba(0, 166, 80, 0.05) 100%);
}

.mission-card * {
  position: relative;
  z-index: 1;
}

.mission-card h3,
.mission-card h4 {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.mission-card p {
  line-height: 1.9;
  color: var(--text-color);
}

/* ========================================
   6. ICON BOXES
   ======================================== */
.icon-box {
  width: 95px;
  height: 95px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 166, 80, 0.25);
}

.icon-box::after {
  content: '';
  position: absolute;
  width: 105px;
  height: 105px;
  border: 3px solid var(--secondary-yellow);
  border-radius: 50%;
  animation: iconPulse 2.5s infinite;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.icon-box i {
  font-size: 48px;
  color: var(--secondary-yellow);
  z-index: 1;
}

/* ========================================
   7. COMPARISON BOXES (WHY MI-DOSE)
   ======================================== */
.comparison-box {
  padding: 32px 28px;
  border-radius: 15px;
  margin: 18px 0;
  transition: all 0.4s ease;
}

.comparison-box-left {
  background-color: var(--neutral-light-grey);
  border: 2px solid var(--border-grey);
}

.comparison-box-left:hover {
  background-color: #E8E8E8;
  border-color: #CCCCCC;
}

.comparison-box-right {
  background: linear-gradient(135deg, #FFFEF0 0%, #FFFACD 100%);
  border: 3px solid var(--secondary-yellow);
  box-shadow: 0 5px 20px rgba(255, 242, 0, 0.2);
}

.comparison-box-right:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 242, 0, 0.35);
}

/* ========================================
   8. BUTTONS
   ======================================== */

/* CTA Button (Yellow) */
.cta-button {
  background: white;
  color: var(--primary-dark-green);
  border: 2px solid green;
  padding: 18px 50px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 242, 0, 0.35);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 242, 0, 0.5);
  color: var(--primary-dark-green);
  text-decoration: none;
}

.cta-button:active {
  transform: translateY(-2px);
}

/* Primary Green Button */
.btn-primary-green {
  background: var(--gradient-green);
  color: var(--neutral-white);
  border: none;
  padding: 16px 45px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 166, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-green::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary-green:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary-green:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 166, 80, 0.45);
  color: var(--neutral-white);
  text-decoration: none;
}

.btn-primary-green:active {
  transform: translateY(-2px);
}

/* ========================================
   9. SECTION HEADERS
   ======================================== */
.section-header {
  color: var(--primary-green);
  font-size: 2.8rem;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 65%;
  height: 5px;
  background: var(--gradient-yellow);
  border-radius: 3px;
}

.section-header.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================
   10. WHY MI-DOSE PAGE STYLES
   ======================================== */

/* Difference Section Container */
.difference-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  border-radius: 25px;
  padding: 55px 45px;
  margin: 45px 0;
  box-shadow: 0 10px 40px var(--shadow-light);
}

/* Image Wrapper */
.difference-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px var(--shadow-dark);
  margin-bottom: 45px;
}

.difference-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.difference-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Image Overlay */
.difference-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  padding: 35px 30px;
  color: var(--neutral-white);
}

.difference-overlay p {
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Comparison Wrapper */
.comparison-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 35px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Dose Cards */
.dose-card {
  flex: 1;
  min-width: 290px;
  max-width: 420px;
  padding: 40px 35px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.dose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

/* Distant Card (Grey) */
.dose-card-distant {
  background: var(--neutral-white);
  border: 2px solid var(--border-grey);
  box-shadow: 0 6px 22px var(--shadow-light);
}

.dose-card-distant::before {
  background: #999999;
}

.dose-card-distant:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px var(--shadow-medium);
}

.dose-card-distant h3 {
  color: #666666;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

/* Personal Card (Green) */
.dose-card-personal {
  background: linear-gradient(135deg, #F0FFF4 0%, #DCFFE4 100%);
  border: 3px solid var(--primary-green);
  box-shadow: 0 8px 30px rgba(0, 166, 80, 0.18);
}

.dose-card-personal::before {
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-yellow));
}

.dose-card-personal:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 50px rgba(0, 166, 80, 0.28);
}

.dose-card-personal h3 {
  color: var(--primary-green);
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.dose-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--text-color);
}

/* Icon Styles for Dose Cards */
.dose-icon-distant {
  background: var(--neutral-light-grey);
  color: #999999;
  border: 2px dashed #CCCCCC;
}

.dose-icon-distant::after {
  border-color: #CCCCCC;
}

.dose-icon-personal {
  background: var(--gradient-green);
  color: var(--secondary-yellow);
  box-shadow: 0 6px 25px rgba(0, 166, 80, 0.35);
}

.dose-icon-personal::after {
  border-color: var(--secondary-yellow);
}

/* VS Divider */
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: var(--gradient-yellow);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark-green);
  box-shadow: 0 6px 20px rgba(255, 242, 0, 0.45);
  flex-shrink: 0;
  align-self: center;
  transition: all 0.3s ease;
}

.vs-divider:hover {
  transform: scale(1.1) rotate(180deg);
}

/* ========================================
   11. LEADERSHIP PAGE STYLES
   ======================================== */

/* Leader Card */
.leader-card {
  background: var(--neutral-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 45px var(--shadow-light);
  margin-bottom: 55px;
  transition: all 0.5s ease;
  border-top: 6px solid var(--secondary-yellow);
}

.leader-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--shadow-medium);
  border-top-color: var(--primary-green);
}

/* Leader Image */
.leader-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.leader-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.leader-card:hover .leader-image {
  transform: scale(1.08);
}

/* Leader Content */
.leader-content {
  padding: 45px 40px;
}

.leader-name {
  color: var(--primary-green);
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.leader-designation {
  display: inline-block;
  background: var(--gradient-green);
  color: var(--secondary-yellow);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 35px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 166, 80, 0.25);
}

/* Leader Sections */
.leader-section {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-grey);
}

.leader-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.leader-section-title {
  color: var(--primary-green);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.leader-section-title i {
  color: var(--secondary-yellow);
  background: var(--primary-green);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.leader-section p {
  line-height: 1.95;
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 1.02rem;
}

/* Signature Line */
.signature-line {
  background: var(--gradient-cream);
  padding: 28px 32px;
  border-left: 6px solid var(--secondary-yellow);
  border-radius: 0 15px 15px 0;
  font-style: italic;
  color: var(--primary-dark-green);
  font-weight: 600;
  font-size: 1.12rem;
  margin-top: 35px;
  position: relative;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.signature-line::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: -18px;
  left: 25px;
  font-size: 28px;
  color: var(--secondary-yellow);
  opacity: 0.6;
}

/* ========================================
   12. PRODUCTS PAGE STYLES
   ======================================== */

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 45px;
}

/* Product Card */
.product-card {
  background: var(--neutral-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-light);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 166, 80, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 50px rgba(0, 166, 80, 0.18);
  border-color: var(--primary-green);
}

.product-card:hover::before {
  opacity: 1;
}

/* Product Image */
.product-image-wrapper {
  position: relative;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  padding: 35px;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image {
  transform: scale(1.12);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gradient-yellow);
  color: var(--primary-dark-green);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 242, 0, 0.4);
  z-index: 1;
}

/* Product Content */
.product-content {
  padding: 28px 25px;
  position: relative;
  z-index: 1;
}

.product-name {
  color: var(--primary-green);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.product-category {
  display: inline-block;
  background: var(--neutral-light-grey);
  color: var(--text-color);
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 0.88rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.product-description {
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-green);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.product-link:hover {
  color: var(--primary-dark-green);
  padding-left: 8px;
}

.product-link i {
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.product-link:hover i {
  margin-left: 14px;
}

/* ========================================
   13. CONTACT PAGE STYLES
   ======================================== */

/* Contact Info Box */
.contact-info-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: all 0.4s ease;
  border-left: 5px solid #FFF200;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 166, 80, 0.15);
  border-left-color: #00A650;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00A650 0%, #008a44 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0, 166, 80, 0.3);
}

.contact-info-icon i {
  font-size: 24px;
  color: #FFF200;
}

.contact-info-box h4 {
  color: #00A650;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-info-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-info-box a {
  color: #00A650;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: #008a44;
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00A650 0%, #008a44 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  text-decoration: none;
  color: #FFF200;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0, 166, 80, 0.3);
}

.social-link:hover {
  background: #FFF200;
  color: #00A650;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 242, 0, 0.4);
}

/* Section Header */
.section-header {
  color: #00A650;
  font-weight: 700;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00A650 0%, #FFF200 100%);
  border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-info-box {
    padding: 25px 20px;
    text-align: center;
  }
  
  .contact-info-icon {
    margin: 0 auto 15px auto;
  }
  
  .social-link {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .section-header {
    font-size: 1.8rem;
  }
}
/* ========================================
   14. CSR PAGE STYLES
   ======================================== */

/* CSR Card */
.csr-card {
  background: var(--neutral-white);
  padding: 45px 40px;
  border-radius: 22px;
  box-shadow: 0 10px 35px var(--shadow-light);
  margin-bottom: 45px;
  transition: all 0.4s ease;
  border-top: 6px solid var(--primary-green);
}

.csr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 55px var(--shadow-medium);
}

/* CSR Large Icon */
.csr-icon-large {
  width: 110px;
  height: 110px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  box-shadow: 0 8px 30px rgba(0, 166, 80, 0.3);
}

.csr-icon-large i {
  font-size: 55px;
  color: var(--secondary-yellow);
}

/* Stats Box */
.stats-box {
  background: var(--gradient-cream);
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  margin: 25px 0;
  border: 3px solid var(--secondary-yellow);
  box-shadow: 0 6px 25px var(--shadow-light);
  transition: all 0.3s ease;
}

.stats-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px var(--shadow-medium);
}

.stats-number {
  font-size: 3.5rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 166, 80, 0.1);
}

.stats-label {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.15rem;
}

/* Campaign Tree Card */
.campaign-tree-card {
  background: var(--neutral-white);
  border-left: 6px solid var(--primary-green);
  padding: 28px 25px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px var(--shadow-light);
  transition: all 0.3s ease;
}

.campaign-tree-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 25px var(--shadow-medium);
}

.campaign-tree-card h5 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-weight: 700;
}

.campaign-tree-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.75;
}

/* ========================================
   15. CAMPAIGNS PAGE STYLES
   ======================================== */

/* Campaign Tag */
.campaign-tag {
  display: inline-block;
  background: var(--gradient-green);
  color: var(--secondary-yellow);
  padding: 14px 28px;
  border-radius: 35px;
  margin: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 166, 80, 0.25);
}

.campaign-tag:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 30px rgba(0, 166, 80, 0.4);
  color: var(--secondary-yellow);
  text-decoration: none;
}

/* Campaign Section */
.campaign-section {
  margin-bottom: 55px;
}

.campaign-section h3 {
  color: var(--primary-green);
  margin-bottom: 30px;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.campaign-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-yellow);
  border-radius: 2px;
}

/* Campaign Grid */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

/* ========================================
   16. MEDIA PAGE STYLES
   ======================================== */

/* Media Card */
.media-card {
  background: var(--neutral-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-light);
  margin-bottom: 35px;
  transition: all 0.4s ease;
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px var(--shadow-medium);
}

/* Media Image */
.media-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-card:hover .media-image {
  transform: scale(1.12);
}

/* Media Date Badge */
.media-date {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gradient-yellow);
  color: var(--primary-dark-green);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 242, 0, 0.4);
}

/* Media Content */
.media-content {
  padding: 28px 25px;
}

.media-category {
  display: inline-block;
  background: var(--primary-green);
  color: var(--secondary-yellow);
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.media-title {
  color: var(--primary-green);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.media-excerpt {
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ========================================
   17. PARTNERSHIPS PAGE STYLES
   ======================================== */

/* Partnership Card */
.partnership-card {
  background: var(--neutral-white);
  padding: 55px 45px;
  border-radius: 22px;
  box-shadow: 0 10px 40px var(--shadow-light);
  margin-bottom: 45px;
  transition: all 0.4s ease;
  text-align: center;
  border: 3px solid transparent;
}

.partnership-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-12px);
  box-shadow: 0 22px 60px rgba(0, 166, 80, 0.18);
}

/* Partnership Icon */
.partnership-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 30px rgba(0, 166, 80, 0.3);
  transition: all 0.4s ease;
}

.partnership-card:hover .partnership-icon {
  transform: scale(1.1) rotate(360deg);
}

.partnership-icon i {
  font-size: 45px;
  color: var(--secondary-yellow);
}

.partnership-card h3 {
  color: var(--primary-green);
  margin-bottom: 22px;
  font-size: 1.8rem;
}

.partnership-card p {
  color: var(--text-color);
  line-height: 1.85;
  font-size: 1.05rem;
}

/* ========================================
   18. EVENTS & NEWS PAGE STYLES
   ======================================== */

/* Events Table */
.events-table {
  background: var(--neutral-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 35px var(--shadow-light);
  margin-bottom: 40px;
}

.events-table table {
  margin-bottom: 0;
  width: 100%;
}

.events-table thead {
  background: var(--gradient-green);
  color: var(--secondary-yellow);
}

.events-table thead th {
  padding: 22px 20px;
  font-weight: 700;
  border: none;
  font-size: 1.05rem;
  text-align: left;
}

.events-table tbody td {
  padding: 22px 20px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-grey);
  font-size: 1rem;
}

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

.events-table tbody tr {
  transition: all 0.3s ease;
}

.events-table tbody tr:hover {
  background: var(--neutral-cream);
  transform: scale(1.01);
}

/* Event Badge */
.event-badge {
  display: inline-block;
  background: var(--gradient-yellow);
  color: var(--primary-dark-green);
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(255, 242, 0, 0.3);
}

/* News Item */
.news-item {
  background: var(--neutral-white);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 6px 25px var(--shadow-light);
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-green);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 35px var(--shadow-medium);
}

.news-item h4 {
  color: var(--primary-green);
  margin-bottom: 15px;
}

.news-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ========================================
   19. COMMUNITY PAGE STYLES
   ======================================== */

/* Community Card */
.community-card {
  background: var(--neutral-white);
  padding: 45px 40px;
  border-radius: 22px;
  box-shadow: 0 10px 35px var(--shadow-light);
  margin-bottom: 45px;
  transition: all 0.4s ease;
  border-left: 6px solid var(--secondary-yellow);
}

.community-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 55px var(--shadow-medium);
  border-left-color: var(--primary-green);
}

.community-card h3 {
  color: var(--primary-green);
  margin-bottom: 22px;
  font-size: 1.8rem;
}

/* Testimonial Box */
.testimonial-box {
  background: var(--gradient-cream);
  padding: 40px 35px;
  border-radius: 18px;
  margin: 25px 0;
  position: relative;
  border-left: 6px solid var(--primary-green);
  box-shadow: 0 5px 20px var(--shadow-light);
}

.testimonial-box::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 18px;
  right: 25px;
  font-size: 35px;
  color: var(--primary-green);
  opacity: 0.2;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 22px;
  margin-bottom: 0;
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========================================
   20. REPORTS PAGE STYLES
   ======================================== */

/* Report Card */
.report-card {
  background: var(--neutral-white);
  padding: 45px 40px;
  border-radius: 22px;
  box-shadow: 0 10px 35px var(--shadow-light);
  margin-bottom: 45px;
  transition: all 0.4s ease;
  border-top: 6px solid var(--secondary-yellow);
}

.report-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 55px var(--shadow-medium);
  border-top-color: var(--primary-green);
}

/* Report Icon */
.report-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-green);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 25px rgba(0, 166, 80, 0.3);
  transition: all 0.3s ease;
}

.report-card:hover .report-icon {
  transform: scale(1.1);
}

.report-icon i {
  font-size: 40px;
  color: var(--secondary-yellow);
}

.report-card h3 {
  color: var(--primary-green);
  margin-bottom: 22px;
  font-size: 1.8rem;
}

.report-card p {
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 22px;
}

/* Download Link */
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-yellow);
  color: var(--primary-dark-green);
  padding: 14px 32px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  margin-top: 18px;
  box-shadow: 0 6px 20px rgba(255, 242, 0, 0.35);
}

.download-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 242, 0, 0.5);
  color: var(--primary-dark-green);
  text-decoration: none;
}

.download-link i {
  font-size: 18px;
}

/* ========================================
   21. UTILITY CLASSES
   ======================================== */
.text-primary-green {
  color: var(--primary-green) !important;
  font-weight: 500 !important;
}

.text-secondary-yellow {
  color: var(--secondary-yellow) !important;
}

.text-dark-green {
  color: var(--primary-dark-green) !important;
}

.bg-cream {
  background-color: var(--neutral-cream) !important;
}

.bg-light-grey {
  background-color: var(--neutral-light-grey) !important;
}

.bg-white {
  background-color: var(--neutral-white) !important;
}

.border-yellow {
  border-color: var(--secondary-yellow) !important;
}

.border-green {
  border-color: var(--primary-green) !important;
}

.shadow-light {
  box-shadow: 0 8px 25px var(--shadow-light) !important;
}

.shadow-medium {
  box-shadow: 0 12px 35px var(--shadow-medium) !important;
}

/* ========================================
   22. RESPONSIVE DESIGN
   ======================================== */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199px) {
  .section-header {
    font-size: 2.4rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991px) {
  .hero-section {
    min-height: 380px;
    background-attachment: scroll;
    padding: 90px 0 70px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.15rem;
  }

  .content-section,
  .content-section-white,
  .content-section-grey {
    padding: 70px 0;
  }

  .section-header {
    font-size: 2.2rem;
  }

  .leader-image {
    height: 350px;
  }

  .leader-content {
    padding: 35px 30px;
  }

  .leader-name {
    font-size: 1.9rem;
  }

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

  .campaign-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* Small Devices (Tablets, less than 768px) */
@media (max-width: 767px) {
  .hero-section {
    min-height: 320px;
    padding: 70px 0 50px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1.05rem;
  }

  .hero-breadcrumb {
    font-size: 0.9rem;
  }

  .content-section,
  .content-section-white,
  .content-section-grey {
    padding: 55px 0;
  }

  .highlight-box,
  .quote-box,
  .mission-card {
    padding: 32px 28px;
  }

  .quote-box {
    font-size: 1.2rem;
  }

  .section-header {
    font-size: 1.9rem;
  }

  .icon-box {
    width: 75px;
    height: 75px;
  }

  .icon-box i {
    font-size: 38px;
  }

  .icon-box::after {
    width: 85px;
    height: 85px;
  }

  .difference-section {
    padding: 35px 25px;
  }

  .difference-image-wrapper img {
    height: 300px;
  }

  .comparison-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .vs-divider {
    margin: 18px 0;
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }

  .dose-card {
    max-width: 100%;
    padding: 32px 28px;
  }

  .leader-image {
    height: 300px;
  }

  .leader-content {
    padding: 28px 22px;
  }

  .leader-name {
    font-size: 1.6rem;
  }

  .leader-designation {
    font-size: 0.95rem;
    padding: 10px 22px;
  }

  .signature-line {
    padding: 22px 20px;
    font-size: 1.02rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-form {
    padding: 35px 28px;
  }

  .stats-number {
    font-size: 2.5rem;
  }

  .stats-label {
    font-size: 1rem;
  }

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

  .campaign-tag {
    padding: 12px 22px;
    font-size: 0.98rem;
  }

  .partnership-card {
    padding: 40px 30px;
  }

  .partnership-icon {
    width: 85px;
    height: 85px;
  }

  .partnership-icon i {
    font-size: 38px;
  }

  .events-table thead th,
  .events-table tbody td {
    padding: 16px 14px;
    font-size: 0.95rem;
  }

  .community-card {
    padding: 35px 28px;
  }

  .testimonial-box {
    padding: 32px 28px;
  }

  .report-card {
    padding: 35px 28px;
  }

  .report-icon {
    width: 75px;
    height: 75px;
  }

  .report-icon i {
    font-size: 34px;
  }
}

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575px) {
  .hero-section {
    min-height: 180px;
    padding: 6px;
  }

  .hero-section h1 {
    font-size: 1.7rem;
  }

  .hero-section .lead {
    font-size: 0.98rem;
  }

  .content-section,
  .content-section-white,
  .content-section-grey {
    padding: 45px 0;
  }

  .cta-button {
    padding: 15px 38px;
    font-size: 1.02rem;
  }

  .btn-primary-green {
    padding: 14px 35px;
    font-size: 1rem;
  }

  .quote-box {
    font-size: 1.1rem;
    padding: 28px 22px;
  }

  .section-header {
    font-size: 1.7rem;
  }

  .difference-image-wrapper img {
    height: 260px;
  }

  .dose-card h3 {
    font-size: 1.6rem;
  }

  .dose-card p {
    font-size: 1.05rem;
  }

  .leader-name {
    font-size: 1.5rem;
  }

  .product-name {
    font-size: 1.25rem;
  }

  .stats-number {
    font-size: 2.2rem;
  }

  .social-links {
    gap: 14px;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .media-image-wrapper {
    height: 240px;
  }

  .media-title {
    font-size: 1.25rem;
  }

  .partnership-card h3 {
    font-size: 1.5rem;
  }

  .report-card h3 {
    font-size: 1.5rem;
  }

  .download-link {
    padding: 12px 28px;
    font-size: 1rem;
  }
}



/* ========================================
   23. PRINT STYLES
   ======================================== */
@media print {
  .hero-section,
  .social-links,
  .cta-button,
  .btn-primary-green {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .content-section,
  .content-section-white {
    padding: 20px 0;
  }

  .mission-card,
  .leader-card,
  .product-card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* ========================================
   24. ACCESSIBILITY ENHANCEMENTS
   ======================================== */
*:focus {
  outline: 3px solid var(--secondary-yellow);
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: 3px solid var(--primary-green);
  outline-offset: 3px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   25. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Apply animations on page load */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

/* ========================================
   END OF STYLESHEET
   ======================================== */

   



/* ========================================
   FIX FOR HERO CAROUSEL IMAGES ON MOBILE
   ======================================== */

/* Hero section base styles */
#hero {
  position: relative;
  overflow: hidden;
}

#hero-carousel {
  position: relative;
  width: 100%;
}

#hero-carousel .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#hero-carousel .carousel-item {
  position: relative;
  width: 100%;
  min-height: 500px;
}

#hero-carousel .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.carousel-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 50px 60px;
  z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.carousel-container h2 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  max-width: 800px;
  margin: 0 auto;
  font-size: 2rem;
}

/* Mobile responsive fixes */
@media (max-width: 992px) {
  #hero-carousel .carousel-item {
    min-height: 450px;
  }
  
  .carousel-container h2 {
    font-size: 1.5rem;
    padding: 0 15px;
  }
  
  .carousel-container {
    padding: 20px 30px 50px;
  }
}

@media (max-width: 768px) {
  #hero-carousel .carousel-item {
    min-height: 400px;
  }
  
  .carousel-container h2 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .carousel-container {
    padding: 15px 20px 40px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}

@media (max-width: 576px) {
  #hero-carousel .carousel-item {
    min-height: 350px;
  }
  
  .carousel-container h2 {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .carousel-container {
    padding: 10px 15px 30px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  #hero-carousel .carousel-item {
    min-height: 300px;
  }
  
  .carousel-container h2 {
    font-size: 1rem;
  }
  
  .carousel-container {
    padding: 10px 12px 25px;
  }
}

p{
line-height: 20px !important;
font-size: 12px !important;
}