/* =====================================================
   ABOUT PAGE - ENHANCED PROFESSIONAL STYLES
   ===================================================== */

/* ================== ABOUT HERO ================== */
.about-hero {
  height: 55vh;
  min-height: 450px;
  background: linear-gradient(135deg, #8b0000 0%, #dc143c 50%, #ff8c00 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.about-hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* ================== STATS SECTION ================== */
.stats-section {
  padding: 0 10%;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(139, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid #dc143c;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(255, 140, 0, 0.05));
  transition: height 0.4s ease;
}

.stat-card:hover::before {
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.18);
  border-top-color: #ff8c00;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b0000, #dc143c, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.stat-number::after {
  content: '+';
  font-size: 2rem;
  margin-left: 4px;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* ================== SECTION HEADER ================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #8b0000, #dc143c);
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* ================== OVERVIEW SECTION ================== */
.overview-section {
  padding: 100px 10%;
  background: #ffffff;
}

.overview-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.overview-text h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  color: #2c2c2c;
}

.overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.overview-text strong {
  color: #dc143c;
  font-weight: 600;
}

.overview-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #555;
}

.feature-item svg {
  color: #dc143c;
  flex-shrink: 0;
}

.overview-image {
  position: relative;
}

.overview-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.overview-image:hover img {
  transform: scale(1.02);
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #8b0000, #dc143c);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
  text-align: center;
}

.badge-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================== FOUNDER SECTION ================== */
.founder-section {
  padding: 100px 10%;
  background: #f5f5f5;
}

.founder-wrapper {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.founder-wrapper:last-child {
  margin-bottom: 0;
}

/* Founder Image */
.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Founder Content */
.founder-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dc143c;
  margin-bottom: 10px;
}

.founder-name {
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: #2c2c2c;
  font-weight: 700;
}

.founder-role {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #666;
  font-weight: 500;
}

.founder-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #555;
}

.founder-content strong {
  color: #dc143c;
  font-weight: 600;
}

/* Founder Expertise */
.founder-expertise {
  margin-top: 28px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #dc143c;
}

.founder-expertise h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.founder-highlights {
  padding-left: 0;
  list-style: none;
}

.founder-highlights li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.founder-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dc143c;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px) {
  .founder-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 70px 6%;
  }

  .founder-wrapper {
    margin-bottom: 60px;
  }
}
/* ================== FOUNDER SECTION ================== */
.founder-section {
  padding: 100px 10%;
  background: #f5f5f5;
}

.founder-wrapper {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.founder-wrapper:last-child {
  margin-bottom: 0;
}

/* Founder Image */
.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Founder Content */
.founder-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dc143c;
  margin-bottom: 10px;
}

.founder-name {
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: #2c2c2c;
  font-weight: 700;
}

.founder-role {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #666;
  font-weight: 500;
}

.founder-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #555;
}

.founder-content strong {
  color: #dc143c;
  font-weight: 600;
}

/* Founder Expertise */
.founder-expertise {
  margin-top: 28px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #dc143c;
}

.founder-expertise h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.founder-highlights {
  padding-left: 0;
  list-style: none;
}

.founder-highlights li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.founder-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dc143c;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px) {
  .founder-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 70px 6%;
  }

  .founder-wrapper {
    margin-bottom: 60px;
  }
}
/* ================== CAPABILITIES SECTION ================== */
.capabilities-section {
  padding: 100px 10%;
  background: #ffffff;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.capability-card {
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid #dc143c;
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.03), rgba(255, 140, 0, 0.03));
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: all 0.4s ease;
}

.capability-card:hover::before {
  transform: translate(50%, -50%) scale(1.5);
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(139, 0, 0, 0.12);
  border-top-color: #ff8c00;
}

.capability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8b0000, #dc143c);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.capability-card:hover .capability-icon {
  background: linear-gradient(135deg, #dc143c, #ff8c00);
  transform: scale(1.1) rotate(5deg);
}

.capability-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #2c2c2c;
  position: relative;
  z-index: 2;
}

.capability-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #666;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.capability-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.capability-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #dc143c;
  font-weight: bold;
}

/* ================== EXPERIENCE SECTION ================== */
.experience-section {
  padding: 100px 10%;
  background: #f5f5f5;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #8b0000, #ff8c00);
  transition: height 0.4s ease;
}

.experience-card:hover::before {
  height: 100%;
}

.experience-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 36px rgba(139, 0, 0, 0.1);
}

.experience-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b0000, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.experience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #2c2c2c;
}

.experience-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}



/* ================== ANIMATIONS ================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .overview-content,
  .founder-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .overview-image,
  .founder-image {
    order: -1;
  }

  .founder-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .stats-section {
    padding: 0 6%;
    margin-top: -40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .overview-section,
  .founder-section,
  .capabilities-section,
  .experience-section,
  .mission-section {
    padding: 70px 6%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .overview-text h2,
  .founder-name {
    font-size: 2rem;
  }

  .overview-features {
    grid-template-columns: 1fr;
  }

  .capabilities-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .mission-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 18px;
  }
}