body {
  font-family: poppins !important;
}

.hero-section {
  color: #fff !important;
}

.note-section {
  border: 2px solid #333 !important;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0 !important; /* Aligns properly */
}

/* Optional: keep dropdown open if hovering inside */
.nav-item.dropdown .dropdown-menu {
  margin-top: 0 !important;
}

.text-wgreen{
 color: #79BD4D !important;
}

.text-wblue{
 color: #017BCA !important;
}

.text-wblue:hover{
  color: #79BD4D !important;
}

.text-wdarkblue{
 color: #033669 !important;
}

.text-wdarkblue:hover{
 color: #017BCA !important;
}

.bg-wblue{
 background-color: #017BCA !important;
 color: #fff !important;
}

.bg-wdarkblue{
 background-color: #033669 !important;
 color: #fff !important;
}

.bg-wgreen{
 background-color: #79BD4D !important;
 color: #fff !important;
}

.btn-wdarkblue{
 background-color: #033669 !important;
 color: #fff !important;
}
.btn-wdarkblue:hover{
 background-color: #017BCA !important;
 color: #fff !important;
}

.btn-wgreen{
 background-color: #79BD4D !important;
 color: #fff !important;
}

.btn-wgreen:hover{
 background-color: #017BCA !important;
 color: #fff !important;
}

/* counter-card */

.counter-card {
  transition: transform 0.3s !important;
}

.counter-card:hover {
  transform: scale(1.1) !important;
}

.counter {
  font-size: 25px !important;
  font-weight: 700 !important;
  transition: all 0.5s ease-in-out !important;
}

p {
  margin-top: 0.2rem !important;
  font-size: 16px !important;
}

.icon-circle {
  width: 60px !important;
  height: 60px !important;
  background: #ffd500 !important; /* default color */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  transition: background 0.3s !important;
}

.counter-card:hover .icon-circle {
  background: #033669 !important; /* color on hover */
  border: 2px solid #fff !important;
}

/* course-slider */

  .card{
    border: none !important;
    box-shadow: 0px 0px 15px #d2d2d2 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: transform 0.5s !important;
  }

  .card:hover {
  transform: scale(1.1) !important;
}
    .course-slider-wrapper {
      overflow: hidden !important;
      position: relative !important;
      padding: 10px 40px !important; /* space for arrows */
    }

    .course-slider {
      display: flex !important;
      gap: 25px !important;
      transition: transform 0.45s ease-in-out !important;
    }

    .course-card {
      flex: 0 0 40% !important; /* 3 visible */
    }

    .prev-btn, .next-btn {
      position: absolute !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      z-index: 10 !important;
      border-radius: 50% !important;
      padding: 8px 12px !important;
    }

    .prev-btn { left: 0 !important; }
    .next-btn { right: 0 !important; }

   /* Individual Courses */
    .simple-card-box {
      border-radius: 10px !important;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
      max-width: 100% !important;
      margin: 20px auto !important;
      padding: 20px !important;
    }

/* logo slider */
.logo-slider {
  background: #ffffff !important;
  padding: 30px 0 !important;
}

.logo-slider .carousel-item {
  display: flex !important;
  justify-content: center !important;
  gap: 40px !important;
}

.logo-slider img {
  max-height: 80px !important;
  object-fit: contain !important;
  filter: grayscale(100%) !important;
  transition: filter 0.3s !important;
}

.logo-slider img:hover {
  filter: grayscale(0%) !important;
}

/* Hero-advcor Section */
.hero-advcor {
  background: #ecf4ff !important;
}
.hero-advcor h2 {
  font-size: 1.8rem !important;
  line-height: 1.5 !important;
}
.hero-advcor .highlight {
  color: #0056ff !important;
}

/* Discover Section */
.discover .feature-box {
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  background: #fff !important;
  padding: 15px 20px !important;
  border-radius: 10px !important;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.08) !important;
  margin-bottom: 15px !important;
}
.checkmark {
  color: #007bff !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  margin-top: 5px !important;
}

/* Enroll Section */
.enroll {
  background: #fff !important;
}
.enroll h3 {
  font-size: 1.5rem !important;
}
.btn-primary {
  background: #0056ff !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  font-weight: 500 !important;
}
.btn-primary:hover {
  background: #0040cc !important;
}

  /* FAQ Section */
  .faq-item {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    transition: all .2s ease !important;
  }
  .faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    cursor: pointer !important;
  }
  .faq-question h5 {
    margin: 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #222 !important;
  }
  .faq-icon .bi {
    font-size: 1.25rem !important;
    transition: transform .25s ease !important;
  }
  .faq-answer {
    padding: 0 20px 16px 20px !important;
    display: none !important;
    font-size: .95rem !important;
    color: #444 !important;
    background: #fff !important;
  }
  .faq-item.show .faq-answer {
    display: block !important;
  }
  .faq-item.show .bi-plus {
    transform: rotate(45deg) !important;
  }
  .read-more-wrap {
    text-align: center !important;
    margin-top: 10px !important;
  }
  .btn-link-like {
    background: transparent !important;
    border: none !important;
    color: #0d6efd !important;
    font-weight: 600 !important;
    cursor: pointer !important;
  }

  /* Testimonial Section */
  .testimonial-slider {
    background: #f8f9fa !important;
    padding: 60px 0 !important;
  }
  .testimonial-card {
    max-width: 90% !important;
    margin: 0 auto !important;
    background: #fff !important;
    border-radius: 15px !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
    padding: 30px !important;
    text-align: center !important;
  }
  
  .testimonial-text {
    font-size: 1.1rem !important;
    color: #555 !important;
    margin-bottom: 15px !important;
    font-style: italic !important;
  }
  .testimonial-name {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
  }
  .testimonial-role {
    font-size: 0.9rem !important;
    color: #888 !important;
  }

  
.privacy-container {
      max-width: 900px;
      margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .privacy-header {
      text-align: center;
      margin-bottom: 30px;
    }
    .accordion-button:not(.collapsed) {
      background-color: #007bff;
      color: #fff;
    }
    .accordion-button {
      color: #007bff;
    }

    .terms-container {
      max-width: 900px;
      margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .terms-header {
      text-align: center;
      margin-bottom: 30px;
    }
    .accordion-button:not(.collapsed) {
      background-color: #007bff;
      color: #fff;
    }
    .accordion-button {
      color: #007bff;
    }
    .accept-checkbox {
      margin-top: 20px;
    }

        .policy-card {
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .section-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #0d6efd;
      margin-bottom: 1rem;
    }
    ul li {
      margin-bottom: .5rem;
    }

    
    
/* Profile Card */
.profile-card {
  background: #77BE4D;
  border-radius: 12px;
}

/* Earnings Boxes */
.earning-box {
  padding: 20px;
  border-radius: 10px;
  color: #333;
  font-weight: 600;
  background: #f8f9fa;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}
.earning-box.yellow { border-left: 6px solid #ffc107; }
.earning-box.blue { border-left: 6px solid #007bff; }
.earning-box.pink { border-left: 6px solid #e83e8c; }
.earning-box.green { border-left: 6px solid #28a745; }
.earning-box.redish { border-left: 6px solid #BD0917 !important; }

.card {
  border-radius: 12px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.08);
}

.course-card-mycor {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.course-card-mycor:hover {
  transform: translateY(-5px);
}

.rating i {
  color: #ffc107;
}


  .support-header {
    background-color: #007bff;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 0.5rem;
    margin-bottom: 30px;
  }
  .support-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .support-card {
    max-width: 700px;
    margin: auto;
  }
  .support-card .card-body {
    padding: 2rem;
  }
  .contact-info i {
    color: #007bff;
    margin-right: 10px;
  }
  .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }