.custom-bg {
    /*background: linear-gradient(to right, #fdfbfb, #ebedee);*/
    padding: 40px 0px;
  }

  .section-title {
    font-weight: 700;
    font-size: 2rem;
  }

  .highlight {
    color: var(--accent-color);
  }

  .section-subtitle {
    color: #6c757d;
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
  }

  .feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  .feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-content h5 {
    margin: 0 0 6px;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .feature-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
  }






.course-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  position: relative;
  backdrop-filter: blur(10px);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.badge-course {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(to right, #0b559e, #08427c);
  color: white;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 30px;
  font-size: 16px;
}

.price .new-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1b1b1b;
  margin-right: 10px;
}

.price .old-price {
  text-decoration: line-through;
  color: #e74c3c;
  font-weight: 500;
}

.btn-get-certified {
  background: linear-gradient(to right, #08427c, #348de5);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  transition: background 0.3s ease;
}

.btn-get-certified:hover {
  background: linear-gradient(to right, #08427c, #348de5);
}




.certification-section {
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

.cert-box {
  background: #ffffff;
  border: 1px solid #e0e6ff;
  border-radius: 20px;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #08427c, #348de5);
  color: #fff;
  border-radius: 50px;
}

.text-gradient {
  background: linear-gradient(to right, #08427c, #348de5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.certificate-img {
  max-width: 100%;
  border: 2px solid #e0e0ff;
  transition: transform 0.3s ease;
}

.certificate-img:hover {
  transform: scale(1.02);
}

.text-gradient-career {
  background: linear-gradient(to right, #08427c, #348de5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-card {
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  border: 1px solid #f0f0f0;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.career-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-blue {
  background-color: #4a6cf7;
}

.bg-green {
  background-color: #00c48c;
}

.bg-orange {
  background-color: #ff9f43;
}


.enroll-section {
  
  color: #fff;
}

.enroll-section .contact-details p {
  font-size: 1.1rem;
}

.enroll-section .btn-warning {
  background-color: #ffb703;
  border: none;
}

.enroll-section .btn-warning:hover {
  background-color: #f4a300;
}


.footer {
  background-color: #08427c !important;
  font-size: 15px;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #ffc107 !important;
}

.footer-links h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}


.btn_shine{
  position: relative;
  overflow: hidden;
}


.btn_shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
}

.btn_shine::before {
  animation: shine 1.3s ease-in-out forwards infinite;
}


@keyframes shine {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }
