/**
 * -----------------------------------------------------------------------------
 * File        : public/assets/css/frontend/about/about.css
 * Project     : GyanPeeth Academy
 * Framework   : CodeIgniter 4
 * Version     : 4.0.0
 * -----------------------------------------------------------------------------
 * Description : Global About Page Styles
 * -----------------------------------------------------------------------------
 * Shared styles for the About page.
 *
 * NOTE:
 * Individual sections are loaded separately in:
 * app/Views/frontend/about/about.php
 * -----------------------------------------------------------------------------
 */

/*==============================================================================
    ABOUT PAGE
==============================================================================*/

.fe-about-page {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/*==============================================================================
    SECTION
==============================================================================*/

.fe-about-page .fe-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.fe-about-page .fe-section:nth-child(even) {
  background: #f8fafc;
}

/*==============================================================================
    CONTAINER
==============================================================================*/

.fe-about-page .fe-container {
  position: relative;
  z-index: 2;
}

/*==============================================================================
    SECTION HEADER
==============================================================================*/

.fe-section-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.fe-section-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.fe-section-subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.9;
}

/*==============================================================================
    SECTION BADGE
==============================================================================*/

.fe-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.65rem 1.25rem;

  margin-bottom: 1.25rem;

  border-radius: 999px;

  background: rgba(37, 99, 235, 0.08);

  border: 1px solid rgba(37, 99, 235, 0.12);

  color: #2563eb;

  font-size: 0.9rem;

  font-weight: 700;
}

.fe-section-badge i {
  font-size: 0.9rem;
}

/*==============================================================================
    CARD
==============================================================================*/

.fe-card {
  position: relative;
  overflow: hidden;

  background: #ffffff;

  border: 1px solid rgba(226, 232, 240, 0.8);

  border-radius: 24px;

  transition: all 0.35s ease;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.fe-card:hover {
  transform: translateY(-6px);

  border-color: rgba(37, 99, 235, 0.18);

  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
}

/*==============================================================================
    GRADIENT TEXT
==============================================================================*/

.fe-gradient-text {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

/*==============================================================================
    DIVIDER
==============================================================================*/

.fe-divider {
  width: 80px;

  height: 5px;

  margin: 1.5rem auto 0;

  border-radius: 999px;

  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

/*==============================================================================
    BACKGROUND DECORATION
==============================================================================*/

.fe-about-page::before {
  content: "";

  position: absolute;

  top: -150px;

  right: -120px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: radial-gradient(rgba(37, 99, 235, 0.08), transparent 70%);

  pointer-events: none;

  z-index: 0;
}

.fe-about-page::after {
  content: "";

  position: absolute;

  bottom: -180px;

  left: -120px;

  width: 360px;

  height: 360px;

  border-radius: 50%;

  background: radial-gradient(rgba(249, 115, 22, 0.08), transparent 70%);

  pointer-events: none;

  z-index: 0;
}

/*==============================================================================
    RESPONSIVE
==============================================================================*/

@media (max-width: 991px) {
  .fe-about-page .fe-section {
    padding: 5rem 0;
  }

  .fe-section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .fe-about-page .fe-section {
    padding: 4rem 0;
  }

  .fe-section-title {
    font-size: 2rem;
  }

  .fe-section-subtitle {
    font-size: 1rem;
  }
}
