/* =========================
   ABOUT PAGE HEADER
========================= */
.about-header {
  position: relative;
  padding: 110px 0 90px;
  background: rgba(13,71,255,0.15);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES (UNIQUE)
========================= */
.about-shape {
  position: absolute;
  z-index: 0;
}

/* Large soft blob */
.about-shape-one {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,71,255,0.12), transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -260px;
}

/* Angled panel */
.about-shape-two {
  width: 520px;
  height: 300px;
  background: linear-gradient(
    135deg,
 rgba(13,71,255,0.18),
    rgba(13,71,255,0.02)
  );
  transform: rotate(-10deg);
  bottom: -160px;
  left: -180px;
  border-radius: 50px;
}

/* Keep content above shapes */
.about-header .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TEXT CONTENT
========================= */
.about-badge {
  display: inline-block;
  background: rgba(13,71,255,0.1);
  color: #0d47ff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0a1f44;
  margin: 22px 0 18px;
  line-height: 1.2;
}

.about-title span {
  color: #0d47ff;
}

.about-subtitle {
  max-width: 620px;
  font-size: 1.05rem;
  color: #5f6f85;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================
   BREADCRUMB
========================= */
.about-breadcrumb {
  font-size: 0.95rem;
  color: #5f6f85;
}

.about-breadcrumb a {
  color: #0d47ff;
  text-decoration: none;
  font-weight: 500;
}

.about-breadcrumb span {
  margin: 0 6px;
}

/* =========================
   RIGHT VISUAL
========================= */
.about-visual {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.visual-card {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 25px 55px rgba(13,71,255,0.15);
}

.visual-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0d47ff;
  margin-bottom: 6px;
}

.visual-card p {
  font-size: 0.9rem;
  color: #5f6f85;
  margin: 0;
}

.visual-card.secondary {
  margin-top: 60px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .about-header {
    padding: 90px 0 70px;
    text-align: center;
  }

  .about-title {
    font-size: 2.3rem;
  }

  .about-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .about-header {
    padding: 70px 0 60px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 0.95rem;
  }
}

/* =========================
   FACULTY PROFILE SECTION
========================= */
.faculty-profile {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef4ff 45%,
    #f1fbf9 100%
  );
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.fp-shape {
  position: absolute;
  z-index: 0;
}

/* Blue radial glow */
.fp-shape-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13,71,255,0.18), transparent 70%);
  border-radius: 50%;
  top: -260px;
  left: -240px;
}

/* Teal angled panel */
.fp-shape-two {
  width: 600px;
  height: 300px;
  background: linear-gradient(
    135deg,
 rgba(13,71,255,0.18),
    rgba(13,71,255,0.02)
  );
  transform: rotate(-8deg);
  bottom: -160px;
  right: -260px;
  border-radius: 60px;
}

/* Decorative dots */
.fp-shape-dots {
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#0d47ff 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.15;
  top: 80px;
  right: 120px;
}

/* =========================
   CONTENT ABOVE SHAPES
========================= */
.faculty-profile .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TEXT CONTENT
========================= */
.fp-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0a1f44;
  line-height: 1.25;
  margin-bottom: 22px;
}

.fp-title span {
  color: #0d47ff;
}

.fp-text {
  font-size: 1.05rem;
  color: #5f6f85;
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 520px;
}

/* =========================
   POINT LIST
========================= */
.fp-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-points li {
  position: relative;
  font-size: 1rem;
  color: #0a1f44;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 500;
}

.fp-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #38bfa7;
  font-weight: 700;
}

/* =========================
   IMAGE AREA
========================= */
.fp-image-wrap {
  position: relative;
  display: inline-block;
  padding: 20px;
}

/* Floating circle behind image */
.fp-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #0d47ff, #38bfa7);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.15;
}

/* Profile image */
.fp-image {
  position: relative;
  max-width: 320px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(13,71,255,0.25);
  z-index: 2;
  transition: all 0.4s ease;
}

.fp-image-wrap:hover .fp-image {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(13,71,255,0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .faculty-profile {
    padding: 90px 0;
    text-align: center;
  }

  .fp-title {
    font-size: 2.3rem;
  }

  .fp-text {
    margin-left: auto;
    margin-right: auto;
  }

  .fp-points {
    display: inline-block;
    text-align: left;
  }

  .fp-circle {
    width: 300px;
    height: 300px;
  }

  .fp-image {
    max-width: 280px;
  }
}

@media (max-width: 575px) {
  .faculty-profile {
    padding: 70px 0;
  }

  .fp-title {
    font-size: 2rem;
  }

  .fp-text {
    font-size: 0.95rem;
  }

  .fp-image {
    max-width: 240px;
  }
}


/* =========================
   FACULTY DETAIL SECTION
========================= */
.faculty-detail {
  position: relative;
  padding: 100px 0;
  background: #f8fbff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.fd-shape {
  position: absolute;
  z-index: 0;
}

/* Soft blue glow */
.fd-shape-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13,71,255,0.14), transparent 70%);
  border-radius: 50%;
  top: -260px;
  left: -260px;
}

/* Teal curved panel */
.fd-shape-two {
  width: 600px;
  height: 320px;
  background: linear-gradient(
    135deg,
    rgba(13,71,255,0.18),
    rgba(13,71,255,0.02)
  );
  border-radius: 60% 40% 0 0;
  bottom: -180px;
  right: -200px;
}

/* Keep content above shapes */
.faculty-detail .container {
  position: relative;
  z-index: 2;
}

/* =========================
   IMAGE AREA
========================= */
.faculty-image-wrap {
  position: relative;
  border-radius: 20px;
  padding: 12px;
  background: linear-gradient(135deg, #38bfa7, #0d47ff);
  box-shadow: 0 30px 70px rgba(13,71,255,0.25);
}

.faculty-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  background: #ffffff;
}

/* =========================
   CONTENT
========================= */
.faculty-name {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 22px;
}

.faculty-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #5f6f85;
  margin-bottom: 18px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .faculty-detail {
    padding: 80px 0;
  }

  .faculty-name {
    font-size: 2rem;
    margin-top: 30px;
  }

  .fd-shape-two {
    display: none;
  }
}

@media (max-width: 575px) {
  .faculty-detail {
    padding: 60px 0;
  }

  .faculty-name {
    font-size: 1.8rem;
  }

  .faculty-text {
    font-size: 0.95rem;
  }
}
