/* ===================================
   ABOUT PAGE ENHANCED STYLES
   =================================== */

/* Professional Header Enhancement */
.page-header {
  background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.page-header::before {
  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"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Enhanced Founder Section - Higher Specificity */
section.founder-section {
  padding: 5rem 0 !important;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%) !important;
}

section.founder-section .founder-content {
  display: grid !important;
  grid-template-columns: 400px 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
  background: white !important;
  border-radius: 20px !important;
  padding: 3.5rem !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
  position: relative;
  overflow: hidden;
}

section.founder-section .founder-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #356b5e 0%, #28544a 100%);
}

section.founder-section .founder-image {
  position: relative;
}

section.founder-section .founder-image img {
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.3s ease;
}

section.founder-section .founder-image:hover img {
  transform: scale(1.03);
}

section.founder-section .founder-text {
  padding: 1rem 0;
}

section.founder-section .founder-label {
  display: inline-block !important;
  background: linear-gradient(135deg, #356b5e 0%, #28544a 100%) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  box-shadow: 0 4px 15px rgba(76, 140, 243, 0.3) !important;
}

section.founder-section .founder-text h2 {
  font-size: 2.5rem !important;
  margin-bottom: 1.5rem !important;
  color: #1a202c !important;
  font-weight: 700 !important;
}

section.founder-section .founder-text p {
  color: #4a5568 !important;
  line-height: 1.8 !important;
  font-size: 1.05rem !important;
  margin-bottom: 1.25rem !important;
}

section.founder-section .founder-text p:last-child {
  margin-bottom: 0 !important;
}

/* Mission, Vision, Goals Cards */
.mvg-section {
  padding: 5rem 0;
  background: var(--gradient-bg);
}

.mvg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mvg-card {
  background: linear-gradient(to bottom right, hsl(var(--card) / 0.9), hsl(var(--card-accent) / 0.8), hsl(var(--card) / 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mvg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, rgba(23, 102, 229, 0.8), rgba(23, 102, 229, 0.4));
}

.mvg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(23, 102, 229, 0.15);
  border-color: rgba(23, 102, 229, 0.4);
}

.mvg-card-content {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.mvg-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(23, 102, 229, 1), rgba(21, 94, 211, 1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(23, 102, 229, 0.3);
  transition: all 0.3s ease;
}

.mvg-card:hover .mvg-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(23, 102, 229, 0.4);
}

.mvg-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #1766e5, #3b82f6, #0d4fc2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.mvg-card p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mvg-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.mvg-card ul li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #2d3748;
}

.mvg-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1766e5;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Enhanced Offerings Grid with Icons */
.offerings-enhanced {
  padding: 5rem 0;
  background: white;
}

.offerings-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.offering-card-enhanced {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.offering-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #356b5e 0%, #28544a 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.offering-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(76, 140, 243, 0.2);
  border-color: #1766e5;
}

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

.offering-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.offering-card-enhanced:hover .offering-icon {
  transform: scale(1.1) rotate(5deg);
}

.offering-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
}

.offering-card-enhanced h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.offering-card-enhanced p {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1rem;
}

/* Roadmap Timeline 2025-2030 */
.roadmap-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.roadmap-timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #356b5e 0%, #28544a 100%);
  transform: translateX(-50%);
}

.roadmap-item {
  position: relative;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.roadmap-item:nth-child(even) .roadmap-content {
  order: 2;
}

.roadmap-item:nth-child(even) .roadmap-year {
  order: 1;
  text-align: left;
}

.roadmap-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.roadmap-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.roadmap-content h3 {
  color: #1766e5;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.roadmap-content ul {
  list-style: none;
  padding: 0;
}

.roadmap-content ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #4a5568;
  line-height: 1.6;
}

.roadmap-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #356b5e;
  font-weight: bold;
}

.roadmap-year {
  text-align: right;
}

.year-badge {
  display: inline-block;
  background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
  color: white;
  padding: 1.5rem 2.5rem;
  border-radius: 15px;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(76, 140, 243, 0.3);
  position: relative;
}

.roadmap-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: white;
  border: 4px solid #1766e5;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 8px rgba(76, 140, 243, 0.1);
}

/* Footer Logo */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo-section h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
  section.founder-section .founder-content {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 2.5rem !important;
  }
  
  section.founder-section .founder-image {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .mvg-grid,
  .offerings-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .roadmap-timeline::before {
    left: 30px;
  }
  
  .roadmap-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 80px;
  }
  
  .roadmap-item:nth-child(even) .roadmap-content {
    order: 1;
  }
  
  .roadmap-item:nth-child(even) .roadmap-year {
    order: 2;
    text-align: left;
  }
  
  .roadmap-year {
    text-align: left;
  }
  
  .roadmap-marker {
    left: 30px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  section.founder-section .founder-content {
    padding: 2rem !important;
  }
  
  section.founder-section .founder-text h2 {
    font-size: 2rem !important;
  }
  
  section.founder-section .founder-text p {
    font-size: 1rem !important;
  }
  
  .mvg-grid,
  .offerings-grid-6 {
    grid-template-columns: 1fr;
  }
  
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1.25rem;
  }
  
  .year-badge {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }
}

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