:root {
  --primary-gradient: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
  --secondary-gradient: linear-gradient(135deg, #20c997 0%, #198754 100%);
  --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  --primary-color: #0d6efd;
  --dark-blue: #0a58ca;
  --text-dark: #212529;
  --text-light: #f8f9fa;
  --bg-light: #fafbfc;
  --gradient-primary: linear-gradient(135deg, #1a73e8 0%, #6610f2 100%);
   --gradient-accent: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: var(--bg-light);
  margin: 0;
  padding: 0;
  color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  background: var(--primary-gradient);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/abnetwork/fmng/give.jpg') center/cover;
  opacity: 0.08;
}

.hero-section img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.hero-section img:hover {
  transform: scale(1.05);
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1.2rem;
  font-style: italic;
}

/* Biography Sections */
.bio-section {
  padding: 60px 20px;
}

.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

/* Card-style containers */
.bio-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.bio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.bio-card h2 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.bio-card h2 i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* Back Button */
.back-button {
  display: inline-block;
  margin: 20px;
  padding: 10px 18px;
  background: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.back-button:hover {
  background: var(--primary-gradient);
  color: white;
}

 .btn-primary {
      background: var(--primary-color);
      border: none;
      color: #fff;
      box-shadow: 0 6px 15px rgba(26, 115, 232, 0.4);
    }
    .btn-primary:hover, .btn-primary:focus {
      background: var(--primary-hover);
      box-shadow: 0 8px 20px rgba(22, 105, 193, 0.6);
      outline: none;
    }
    .btn-accent {
      background: var(--accent-color);
      border: none;
      color: #fff;
      box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
    }
    .btn-accent:hover, .btn-accent:focus {
      background: var(--accent-hover);
      box-shadow: 0 8px 20px rgba(230, 92, 0, 0.6);
      outline: none;
    }


.hero-section {
     position: relative;
}











