.content-wrapper{
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}
.academic-programs {
    text-align: center;
}
.academic-card img {
    width: 100%;
    object-fit: cover;
   
}

.academic-card-body {
    padding: 15px;
}

.admission-section {
    padding: 10px;
    background-color: #efeff0; /* Light gray background */
  
}
.specialization-heading {
    background-color: #f8f9fa; /* Light gray background */
    padding: 15px;
    border-left: 5px solid var(--primary-color); /* Blue accent border */
    border-radius: 5px;
    margin-top: 20px;
}
.specialization-heading p {
    font-weight: bold;
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.specialization-list {
    list-style: none;
    padding: 0;
}

.specialization-list li {
    font-size: 17px;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
}

.specialization-list li::before {
    content: "✔"; /* Checkmark icon */
    color: var(--primary-color);
    font-size: 17px;
    position: absolute;
    left: 0;
    top: 2
}
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #004085; /* Deep professional blue */
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    font-size: 17px;
}

.download-btn:hover {
    background-color: #ffffff;
    color: #004085;
    border: 2px solid #004085;
    text-decoration: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.download-btn i {
    margin-right: 10px;
    font-size: 17px;
}
.section-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  color: #003049;
  display: inline-block;
  padding-bottom: 12px;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 0.6px;
  text-align: center;
}


.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 120px;
  height: 2px;
  background-color: #F4A261;
  transform: translateX(-50%);
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #E76F51;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #F4A261;
}
