.disc{
  list-style-type: disc;
  padding-left: 20px;
}

.list-circle{
  list-style-type: circle;
  padding-left: 20px;
}

.roman{
  list-style-type: upper-roman;
  padding-left: 20px;
}

.edu-content-2 .disc{
  margin-bottom: 20px;
}

.news-content ul.disc{
  margin-bottom: 20px;
}


.edu-content-2 h2 {
  margin-top: 20px;
}


.services-img img {
  filter: brightness(0.5);
}

.blog-top-content .disc {
  margin-bottom: 20px;
}

.empty-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  padding: 20px;
  background-color: #111;
}

.services-content ol li{
  margin-bottom: 20px;
}

.blog-top-content a{
  text-decoration: none;
}


.heading{
  font-size: 1.3em;
}

#edu-outer{
  width: 25%;
  height: auto;
}

#edu-outer h3 a{
  font-size: 1.125rem;
}

.outer h3{
  padding-left: 20px;
  padding-right: 20px;
}

.educlient-carousel {
  overflow: hidden;
  background: #ffffff;
  position: relative;
  margin: 0 0 100px 0;
}

.educarousel-track {
  display: flex;
  width: calc(100vw * 2);
  animation: scrollCarousel2 10s ease-in-out infinite;
}

.educarousel-track img {
  height: 30vh;
  object-fit: contain;
  width: 100%;
}

/* Animation for scrolling */
@keyframes scrollCarousel2 {
  0% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(0);
    /* Stay at first image */
  }

  50% {
    transform: translateX(-100vw);
    /* Slide to second image */
  }

  95% {
    transform: translateX(-100vw);
    /* Stay at second image */
  }

  100% {
    transform: translateX(0);
    /* Slide back to first image */
  }
}

/* Responsive for Tablets */
@media (max-width: 992px) {
  .educarousel-track img {
    height: 20vh;
  }
}

/* Responsive for Mobiles */
@media (max-width: 576px) {
  .educarousel-track img {
    height: 18vh;
  }
}


.education-head h2 a :hover{
  text-decoration: none;
}



  .outer h3 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.1rem;
  }

  .educarousel-track img {
    height: 25vh;
  }

  .heading {
    font-size: 1.1em;
  }

  .education-head {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }


/* Mobile devices */
@media (max-width: 576px) {
  #edu-outer {
    width: 90%;
  }

  .outer h3 {
    font-size: 1rem;
    padding: 0 5px;
  }

  .educarousel-track {
    flex-direction: column;
    width: 100%;
    animation: none;
  }

  .educarousel-track img {
    height: 20vh;
    margin-bottom: 10px;
  }

  .heading {
    font-size: 1em;
  }

  /* .disc,
  .list-circle,
  .roman {
    padding-left: 15px;
  } */

  .education-head {
    padding: 0 10px;
  }
}


@media (max-width: 575.98px) {
  #form-section .form-group {
    margin-bottom: 15px;
  }

  #form-section .form-control,
  #form-section select {
    width: 100%;
    padding: 12px 10px;
    font-size: 15px;
  }

  #form-section label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
  }

  #form-section .captcha-submit {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  #form-section .captcha-submit button {
    width: 100%;
    font-size: 15px;
    padding: 10px 15px;
  }
}

/* Full-screen background overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Updated Content box (wraps image + button) */
.popup-content {
  position: relative;
  max-width: 30%;
  max-height: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* NEW: Wrapper to hold image and close button */
.image-wrapper {
  position: relative;
  width: 100%;
} 

/* The image itself */
 .popup-img,
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
} 

/* Close button FIXED on top of image */
#closePopup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  color: black;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* CTA Button Styling */
.cta-button1 {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: #0D6BF7;
  text-decoration: none;
  background: linear-gradient(135deg, #e7e9ed, #f0f2f6);
  transition: background 0.3s;
  box-shadow: 0 0 15px rgba(13, 107, 247, 0.5);
  margin-top: 5px;
}

/* Mobile phones (portrait) */
@media (max-width: 480px) {
  .popup-overlay {
    height: 100%;
  }
  .popup-content {
    max-width: 90%;
    max-height: 80%;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .popup-content {
    max-width: 70%;
    max-height: 60%;
  }
}

/* Small laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  .popup-content {
    max-width: 50%;
    max-height: 50%;
  }
}

/* Large screens */
@media (min-width: 1025px) {
  .popup-overlay {
    height: 60%;
  }
  .popup-content {
    max-width: 30%;
    max-height: 15%;
  }
}




/* Section */
.education-section {
  margin-bottom: 30px;
}

.section-title h2 {
  font-weight: 700;
  color: #0D6EFD;
  margin-bottom: 15px;
}



/* Tabs Container */
.edu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #f3f6fc;
  border-radius: 50px;
  padding: 8px 12px;
  margin-bottom: 40px;
  gap: 10px;
}

/* Tab Buttons */
.edu-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  color: #0D6EFD;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 50px;
  white-space: nowrap;
}

.edu-tab-btn.active {
  background: #0D6EFD;
  color: #fff;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* Tab Content */
.edu-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.edu-tab-content.active {
  display: block;
}

/* Course Grid Layout */
.course-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Course Card */
.course-card {
  background: linear-gradient(145deg, #EEEDF0, #EEEDF0);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 233, 236, 0.889);
  max-width: 350px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}


.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Course Image */
.course-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

/* Course Content */
.course-content {
  padding: 10px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-content h3 {
  font-size: 1rem;
  color: #0D6EFD;
  font-weight: 600;
  margin-bottom: 10px;
}

.course-content .duration {
  color: #0D6EFD;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* View Course Button */
.course-card .get-quote {
  margin-top: auto;
  text-align: center;
}

.course-card .default-btn {
  background: #0D6EFD;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.course-card .default-btn:hover {
  background: #0846a6;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Heading Alignment */
.education-head {
  display: flex;
  justify-content: center;
}


/* Tablets & Small Screens */
@media (max-width: 992px) {
  .edu-tabs {
    justify-content: center;
    gap: 8px;
  }

  .edu-tab-btn {
    flex: 1 1 45%;
    font-size: 13px;
    padding: 8px 12px;
  }

  .course-container {
    justify-content: center;
    gap: 25px;
  }

  .course-card {
    max-width: 320px;
    flex: 1 1 45%;
  }

  .course-card .default-btn {
    width: 100%;
    padding: 12px 0;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .edu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    border-radius: 25px;
    overflow-x: auto;
  }

  .edu-tab-btn {
    flex: 1 1 45%;
    font-size: 12px;
    padding: 8px 10px;
    text-align: center;
  }

  .course-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .course-card {
    width: 90%;
  }

  .course-card .default-btn {
    width: 100%;
  }
}

