.sideborder {
  border: 1.5px solid #157015;
}

.course-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.course-links a {
  text-decoration: none;
}

.course-links p {
  border: 1.5px solid #ef4b42;
  color: #157015;
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  white-space: nowrap;
}

.course-links p:hover {
  background-color: #157015;
  color: #fff;
  border-color: #157015;
}

.middleborder {
  border-left: 2px solid #187b31;
  ;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .middleborder {
    display: none;
  }
}

.text-style1 {
  color: #157015;
  font-weight: 600;
}

.form-control,
.form-select {
  border-radius: 10px;
  border-color: #000;
}

.submit-btn {
  background-color: white;
  color: #0b5720;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 10px 25px;
  width: 100%;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #0b5720 !important;
  color: #fff !important;
  border: 1.5px solid #fff !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #0b5720 !important;
  color: #fff !important;
}

/* ✅ Success overlay */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-message {
  background: #ffffff;
  color: #0b5720;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.4s ease-in-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-section {
  position: relative;
}

.hero-img {
  width: 100%;
}

.enquiry-box {
  background: #0b5f29;
  padding: 15px 20px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.student-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.submit-btn {
  width: 100%;
  color: #000000;
  background: #ffc107;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .enquiry-right-lower {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 90%;
    margin: 20px auto;
  }
}

.section-title {
  color: #0b5f29;
  font-weight: 700;
}

.green-text {
  color: #0b5f29;
}

/* Bullet list */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.custom-list li::before {
  content: "↪";
  color: #0b5f29;
  font-size: 20px;
  position: absolute;
  left: 0;
}

/* PERFECT CENTER DIVIDER */
.right-content {
  border-left: 2px solid #0b5f29;
  padding-left: 40px;
}

.left-content {
  padding-right: 40px;
}

@media (max-width: 768px) {
  .right-content {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }
}


.content-short {
  overflow: hidden;
}

.popup-box {
  position: fixed;
  top: 0;
  left: 0;
  padding: 5px 15px;

  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-content {
  background: #fff;
  padding: 25px 35px;
  border-radius: 10px;
  text-align: center;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.circle-box {
  width: 260px;
  height: 260px;
  left: 25px;
  border-radius: 50%;
  border: 9px solid #0b7c3a;
  margin: auto;
  position: relative !important;
  z-index: 9999 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: translateX(30px);
}

.circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 9px solid white;
  overflow: hidden;
}

.circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card {
  background: #0b7c3a;
  padding: 25px 40px;
  border-radius: 12px;
  position: relative;
  color: white;
}

.tab-label {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #0b7c3a;
  color: white;
  padding: 5px 22px;
  font-weight: 700;
  border-radius: 6px 6px 0 0;
  border: 2px solid white;
  border-bottom: none;
  font-size: 14px;
}

.title-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.desc-text {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .circle-box {
    width: 200px;
    height: 200px;
  }

  .tab-label {
    left: 20px;
    font-size: 13px;
  }

  .content-card {
    padding: 20px;
  }
}

.programs-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0px;
  position: relative;
}

.programs-left,
.programs-right {
  width: 47%;
}

.programs-left ul,
.programs-right ul {
  list-style: none;
  padding: 0;
}

.programs-left li,
.programs-right li {
  font-size: 16px;
}

.vertical-line {
  width: 2px;
  background-color: #187b31;
  min-height: 190px;
}

@media (max-width: 768px) {
  .programs-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .vertical-line {
    display: none;
  }

  .programs-left,
  .programs-right {
    width: 100%;
    text-align: center;
  }
}

.redirections {
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 500;
  color: #000 !important;
}

.redirections:hover {

  color: #ff0000 !important;
}

.offereds {
  color: #006700;
  font-weight: 700;
  font-style: italic;
}
