.bi-check-circle{color:#00b8ff;}
span a {color: black !important;}
  .section-title h2::after {
  margin-top: 12px; /* space between text and underline */
}
    .section-title h2 {
    color: var(--heading-color);
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--nav-font);
    text-transform: uppercase;
   text-align:center;
}
.section-title{text-align:center;}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f5f7fa;
  padding: 20px;
}

.main-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Left section */
.left-section {
  background-color: #2e2e80;
  color: white;
  padding: 40px 30px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color:#fff;
}

.left-section p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.explore-btn {
  background-color: #4c4cad;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
  transition: background-color 0.3s;
}

.explore-btn:hover {
  background-color: #3a3a90;
}

/* Right section */
.right-section {
  display: flex;
  flex: 2 1 700px;
  flex-wrap: wrap;
  background-color: white;
  padding: 20px;
  gap: 15px;
}

.card {
  flex: 1 1 250px;
  background-color: #eef6fb;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  min-width: 260px;
}

.card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.card strong {
  color: #000;
  font-weight: bold;
}
    .card h3 {
      color: #0077cc;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .card h4 {
      background-color: #2f3f54;
      color: #fff;
      padding: 6px;
      border-radius: 4px;
      font-size: 13px;
      margin-top: 0;
      margin-bottom: 10px;
    }
    
     /* Button */
  .btn-register {
    background-color: #00a0e3;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin:0 auto;
    display:block;
  }

  /* Modal styles */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
  }

  .close {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
  }

  .close:hover {
    color: black;
  }


  /* Form inputs */
  #registerForm input[type="text"],
  #registerForm input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  /* Send button */
  .btn-send {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
  }

  .btn-send:hover {
    background-color: #0056b3;
  }
    
/* ✅ Mobile Responsive */
@media (max-width: 768px) {
      .nav-tabs .nav-link.active {
    color: #ffffff !important;
  }
/*     img[alt="Social Media Management Course"] {*/
/*    display: none !important;*/
/*}*/
    .section-title h2 {
    font-size: 18px;
    padding-bottom: 12px !important;
       line-height: 24px;
     }
  .main-container {
    flex-direction: column;
  }

  .right-section {
    flex-direction: column;
    padding: 15px;
  }

  .card {
    width: 100%;
  }

  .explore-btn {
    width: 100%;
    text-align: center;
  }


}

.mode-wrap{
  display:flex;
  
  gap:8px;
  margin:20px 0;   /* ðŸ‘ˆ space before & after */
justify-content:center;
}
.mode{
  border:1px solid #000;
  padding:3px 8px;
  font-size:14px;
  font-weight:700;
  line-height:2;
}

.bg-internal-titles{ 
    background-color:#00b8ff;
    color:white;
    padding:5px;
}

 .section-title h2 {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--nav-font);
    text-transform: uppercase;
}

.section-title p {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: 
 color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}



.bi-check-circle{color:#00b8ff;}
span a {color: black !important;}
.course-item img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

@media screen and (max-width: 480px) {
    .section-title h2 {
    color: var(--heading-color);
    margin: 0;
    font-size: 19px;
} 
.section-title h2 {
   font-size: 22px; 
}
}

{
  .course-item img {
    height: 200px;
  }
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
ol, ul {
    padding-left: 2rem;
}
/*.traing-mode{*/
/*    margin-top:200px;*/
/*}*/