/* Section Base */
.why-choose {
  background: linear-gradient(135deg, #f9fbff, #eef4ff);
  padding: 60px 20px;
  text-align: center;
}

/* Heading */
.why-choose h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1f497d;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.why-choose h2 i {
  color: #2a6fb6;
  font-size: 1.7rem;
}

/* List */
.choose-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.choose-list li {
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2e3b55;
  box-shadow: 0 6px 14px rgba(31, 73, 125, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choose-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(31, 73, 125, 0.12);
}

.choose-list i {
  font-size: 1.4rem;
  color: #2a6fb6;
  flex-shrink: 0;
  background: #e7f0ff;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.choose-list li:hover i {
  background: #2a6fb6;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

@media (max-width: 600px) {
  .why-choose {
    padding: 40px 15px;
  }

  .choose-list li {
    font-size: 0.95rem;
  }
}

/* Publication Css */
.publication {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.publication::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(237, 118, 121, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.publication .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 15px;
}

.section-header h2 i {
  color: #2a6fb6;
  margin-right: 10px;
}

.section-header p {
  color: #555;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.pub-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.pub-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #2a6fb6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pub-card:hover::before {
  opacity: 1;
}

.pub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pub-card i {
  font-size: 1.6rem;
  color: #2a6fb6;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pub-card:hover i {
  transform: scale(1.15);
}

.pub-card p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
/* ENd */

/* Philosphy of care Css */
.philosophy {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(237, 118, 121, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.philosophy .container {
  position: relative;
  z-index: 1;
}

.philosophy .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.philosophy .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
}

.philosophy .section-header i {
  color: #2a6fb6;
  margin-right: 10px;
}

.philosophy-content {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  position: relative;
  transition: all 0.4s ease;
}

.philosophy-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.philosophy-content strong {
  color: #2a6fb6;
  font-weight: 600;
}
