
/* ==============================
   SIDEBAR (New Soft Glass Look)
============================== */
.custom-sidebar {
  border-radius: 20px;
  background: #ffffff;
  padding: 15px;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.custom-sidebar .list-group-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 8px;
  font-weight: 500;
  padding: 13px 18px;
  color: #000;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.custom-sidebar .list-group-item:hover {
  background: linear-gradient(90deg, #c1601f, #000);
  color: #fff;
  transform: translateX(4px);
}

.custom-sidebar .list-group-item.active {
  background: #c1601f;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 991px) {
  .custom-sidebar {
    position: static !important;
    margin-bottom: 20px;
  }
}

/* ==============================

/* ==============================
   SECTION HEADING
============================== */
.section-heading h3 {
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-heading h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #c1601f;
  transition: width 0.4s ease;
}

.section-heading:hover h3::after {
  width: 100%;
}

/* ==============================
   FACULTY CARD (Modern Elevated)
============================== */
.faculty-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
  border: 1px solid #f2f2f2;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.faculty-card img {
  border-radius: 15px;
  border: none;
  transition: 0.4s ease;
}

.faculty-card:hover img {
  transform: scale(1.04);
}

.faculty-card h6 {
  color: #c1601f;
  margin-top: 10px;
}

/* ==============================
   WHY SECTION (Soft Highlight)
============================== */
#why .why-item {
  padding: 12px 15px;
  border-radius: 10px;
  background: #fdf5ef;
  border-left: 4px solid #c1601f;
  transition: 0.3s ease;
}

#why .why-item:hover {
  background: #c1601f;
}

#why .why-item:hover span,
#why .why-item:hover i {
  color: #fff !important;
}

/* ==============================
   COURSE CARD (Minimal Modern)
============================== */
.course-card {
  background: #fff;
  border-radius: 15px;
  padding: 18px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.course-card:hover {
  border-left: 5px solid #c1601f;
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.course-icon {
  background: #fff4ec;
  color: #c1601f;
  padding: 10px;
  border-radius: 50%;
}

/* ==============================
   JOB CARD (Clean Corporate)
============================== */
.job-card {
  background: #fff;
  border-radius: 15px;
  padding: 18px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.job-card:hover {
  background: linear-gradient(90deg, #c1601f, #000);
  color: #fff;
  transform: translateY(-6px);
}

.job-card:hover .job-icon {
  background: #fff;
  color: #c1601f;
}

.job-icon {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s ease;
}

/* ==============================
   CONTACT SECTION
============================== */
#contact .shadow-sm {
  border-radius: 20px;
     border-left: 4px solid #c1601f;
  padding: 0px;
}

#contact h5 {
  color: #c1601f;
}

#contact a {
  color: #000;
  font-weight: 600;
}

#contact iframe {
  border-radius: 20px;
}

/* ==============================
   BUTTON
============================== */
.btn {
  background: linear-gradient(90deg, #c1601f, #000);
  border: none;
  border-radius: 30px;
  padding: 8px 25px;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
section {
  scroll-margin-top: 120px;
}
  .left-border-card {
    border-left: 3px solid #d35a03; /* Change color if needed */
    transition: all 0.3s ease;
  }

  .info-card ul {
    list-style: none;
    padding-left: 0;
  }

  .info-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 8px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .info-card li:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
  }

  .info-icon {
    font-size: 22px;
    color: #d35a03;
    margin-right: 12px;
    margin-top: 3px;
    min-width: 25px;
  }

  .info-text strong {
    display: block;
    margin-bottom: 4px;
  }
  .left-border-card{
    scroll-margin-top: 100px; /* Adjust based on your navbar height */
  }
  .left-only-border {
    border-left: 4px solid #1e3651;
  }