/* =======================================================
   Inner Pages - Shared Styles
   Chathra Power Group
======================================================= */

/* Page Hero Banner */
.page-hero {
  background: linear-gradient(135deg, #1f1d5a 0%, #2a2870 60%, #13124a 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #96D8EA, #b8ecf7, #96D8EA);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero .page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}
.page-hero .page-hero-icon {
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
}
.page-hero .breadcrumb-item a {
  color: #96D8EA;
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero .breadcrumb-item a:hover { color: #b8ecf7; }
.page-hero .breadcrumb-item.active { color: rgba(255, 255, 255, 0.65); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.35); }

/* Section Title Accent */
.section-accent {
  width: 50px;
  height: 3px;
  background: #96D8EA;
  margin: 0 auto 0.75rem;
}
.section-accent.left { margin: 0 0 0.75rem; }

/* Pillar Cards */
.pillar-card {
  border-left: 4px solid #1f1d5a;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(31, 29, 90, 0.13);
}
.pillar-card .pillar-icon-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1f1d5a, #2a2870);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pillar-card .pillar-icon-wrap i {
  color: #fff;
  font-size: 1.1rem;
}
.pillar-card h5 {
  color: #1f1d5a;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.pillar-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.65;
}

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, #1f1d5a 0%, #2a2870 100%);
  color: white;
  padding: 3.5rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '\201C';
  font-size: 12rem;
  color: rgba(150, 216, 234, 0.18);
  position: absolute;
  top: -2.5rem;
  left: 1rem;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.quote-block p {
  font-size: 1.25rem;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.quote-block footer {
  color: #96D8EA;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Leadership Cards */
.leadership-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s;
}
.leadership-card:hover { transform: translateY(-4px); }
.leadership-card .card-banner {
  background: linear-gradient(135deg, #1f1d5a, #2a2870);
  padding: 2.5rem 2rem;
  color: white;
}
.leadership-card .role-badge {
  display: inline-block;
  background: #96D8EA;
  color: #1f1d5a;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}
.leadership-card .card-banner h3 {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}
.leadership-card .card-body-content {
  padding: 2rem 2rem 2.25rem;
}
.leadership-card .card-body-content p {
  color: #444;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.leadership-card .card-body-content p:last-child { margin-bottom: 0; }

/* Core Value Cards */
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: attr(data-number);
  position: absolute;
  top: -8px;
  right: 10px;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(150, 216, 234, 0.13);
  line-height: 1;
  font-family: "Raleway", sans-serif;
}
.value-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 40px rgba(31, 29, 90, 0.15);
}
.value-card i {
  font-size: 2.5rem;
  color: #1f1d5a;
  margin-bottom: 1rem;
  display: block;
}
.value-card h4 {
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.value-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.65;
}

/* Sector Overview Cards */
.sector-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #1f1d5a;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.sector-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 40px rgba(31, 29, 90, 0.15);
  color: inherit;
}
.sector-card .sector-icon-wrap {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, #1f1d5a, #2a2870);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.sector-card .sector-icon-wrap i { font-size: 1.9rem; color: white; }
.sector-card h4 {
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.sector-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.sector-card .learn-more-link {
  color: #1f1d5a;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.sector-card .learn-more-link i { transition: transform 0.2s; }
.sector-card:hover .learn-more-link i { transform: translateX(5px); }

/* Partnership Cards */
.partner-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, border-bottom 0.3s;
  border-bottom: 4px solid transparent;
}
.partner-card:hover {
  transform: translateY(-7px);
  border-bottom-color: #1f1d5a;
}
.partner-card .icon-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #1f1d5a, #2a2870);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.partner-card .icon-circle i { font-size: 2rem; color: white; }
.partner-card h4 {
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.partner-card p {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, #1f1d5a 0%, #2a2870 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.cta-band h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.btn-gold {
  background: #96D8EA;
  color: #1f1d5a !important;
  font-weight: 700;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}
.btn-gold:hover { background: #b8ecf7; transform: translateY(-2px); }
.btn-outline-light-custom {
  background: transparent;
  color: white !important;
  font-weight: 600;
  padding: 12px 34px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  font-size: 0.95rem;
}
.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Story Highlight Box */
.story-highlight {
  background: linear-gradient(135deg, #f5f7ff, #eceffe);
  border-radius: 14px;
  padding: 2.5rem;
  border-left: 5px solid #1f1d5a;
}
.story-highlight p { line-height: 1.85; margin-bottom: 1rem; color: #333; }
.story-highlight p:last-child { margin-bottom: 0; }

/* Vision / Mission Cards */
.vm-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #1f1d5a;
}
.vm-card .vm-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1f1d5a, #2a2870);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.vm-card .vm-icon i { font-size: 1.6rem; color: white; }
.vm-card h3 { font-weight: 700; color: #222; margin-bottom: 1rem; font-size: 1.4rem; }
.vm-card p { color: #555; line-height: 1.8; font-size: 0.95rem; margin-bottom: 0; }

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-hero h1 { font-size: 2.1rem; }
  .page-hero .page-hero-icon { display: none; }
  .quote-block { padding: 2.5rem 2rem; }
  .quote-block p { font-size: 1.05rem; }
}
