
.tag-main{
  z-index: 0;
    padding: 4px 9px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}
.tag-main::after{
  content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: #239698;
    opacity: 0;
}
.tag-main:hover{
   border-color: transparent;
   background-color: #239698;;
}
.tag-main a{
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    text-transform: capitalize;
}
.tag-main:hover a{
    color: #fff;
}

.div-sticky-class {
        /* position: sticky;
        top: 0; 
        background-color: rgb(197, 16, 16);
        padding: 10px;
        border: 1px solid black; */
        
        position: sticky;
        position: -webkit-sticky;
        top: 50px;
        z-index: 2;
        
    }


    .div-sticky-class-2 {
        /* position: sticky;
        top: 0; 
        background-color: rgb(197, 16, 16);
        padding: 10px;
        border: 1px solid black; */
        
        position: sticky;
        position: -webkit-sticky;
        top: 60px;
        z-index: 2;
        
    }

  

/*=================================================================*/
.item-with-badge {
  position: relative; /* Allows absolute positioning of the badge within */
  display: inline-block; /* Adjusts display as needed */
}

.badge-pc {
  display: inline-block; /* Allows padding and margin to be applied correctly */
  padding: 0.4em 0.8em; /* Vertical and horizontal padding */
  font-size: 0.85em; /* Adjust font size relative to parent */
  font-weight: bold;
  line-height: 1; /* Prevents extra line height */
  color: #fff; /* Text color */
  background-color: #007bff; /* Default background color (blue) */
  text-align: center;
  white-space: nowrap; /* Prevents text from wrapping */
  vertical-align: baseline; /* Aligns with text baseline */
  border-radius: 0.25rem; /* Slightly rounded corners */
  margin: 4px;
}

/* Contextual color variations */
.badge-success {
  background-color: #28a745; /* Green */
}

.badge-warning {
  background-color: #ffc107; /* Yellow */
  color: #212529; /* Darker text for better contrast on yellow */
}

/* Rounded badge */
.badge-rounded {
  border-radius: 50rem; /* Creates a pill-shaped badge */
}

/* Adding a subtle shadow for depth */
.badge-pc {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.badge-pc:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease-in-out;
}

/*BANNER*/
/* 1 */
:root {
  --font-family-aref: "Aref Ruqaa", serif;
  --font-family-rajdhani: "Rajdhani", sans-serif;
  --font-family-source: "Source Code Pro", monospace;
}
.card { 
    border-radius: 7px;
    padding: 7px;
    width: fit-content;
    margin: 20px auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
    z-index: 1;
    overflow: hidden;
}
.card-body {
  display: flex;
  gap: 15px;
}
.card-body::after {
  content: "See the Courses >> ";
  font-size: 18px;
  font-family: var(--font-family-rajdhani);
  font-weight: 600;
  position: absolute;
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  color: red;
  transform: scale(0);
  transition: ease-out 200ms;
}
.card-body:hover::after {
  transform: scale(1);
}
a#ad-card {
  text-decoration: none;
  color: #121212;
}
.card-pic {
    border-radius: 7px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
}
.card-describe {
    line-height: 20px;
}
.card-describe>p:nth-child(1) {
    color: red;
    font-size: 27px;
    font-family: var(--font-family-rajdhani);
    font-weight: 600;
}
.card-describe>p:nth-child(2) {
    font-size: 18px;
    font-family: var(--font-family-aref);
    font-weight: 500;
}
.card-describe>p:nth-child(3) {
    color: green;
    font-size: 20px;
    font-family: var(--font-family-source);
    font-weight: 500;
}
#card-coupon {
    background-color: red;
    padding: 4px 8px;
    color: white;
    border-radius: 4px;
}
.card:hover {
    transform: scale(1.03);
}
.card:active {
    color: red;
}

/* 2 */
/* slider container */

.slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(320px * 10);
  animation: scroll 20s linear infinite;
}
.slide {
  width: 320px;
  flex-shrink: 0;
  margin: 0 15px;
}

.ad-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.ad-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 255, 0.05);
  z-index: -1;
}

.ad-box h2 {
  font-size: 1.5rem;
  color: #00ffffff;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.ad-box p {
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
}

.ad-box:hover {
  transform: scale(1.08);
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.6);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .slider {
    padding: 10px 0;
  }

  .ad-box {
    padding: 15px;
  }
}

/* 3 */
.product-scroller-container {
    position: relative;
    padding: 10px 0;
}

.scrolling-wrapper {
    display: flex; /* or overflow-x: scroll; white-space: nowrap; with inline-block cards */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth; /* Enables smooth scrolling with navigation */
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS devices */
    padding: 10px;
}

.product-card {
    flex: 0 0 auto; /* Prevents cards from stretching/shrinking in flexbox */
    width: 200px;
    margin: 0 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    text-align: center;
    padding: 15px;
    background-color: #fff;
    display: inline-block; /* Used with white-space: nowrap method */
}

.product-card img {
    width: 100%;
    height: auto;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}





/*--------------------------------------------------- */

.breadscrumb-section-custom{
  background-color: #f8f8f8;
  padding: 0;
  margin-bottom: 0;
  
}
.order-tabs__nav{
  padding-top: 10px;
  padding-bottom: 10px;
}
.swiper-container {
        width: 90%;
        height: 100%;
      }

      .swiper-button-next {
    margin-right: 10px; /* Adjust as needed */
    padding-right: 10px; /* Adjust as needed */
}
      .swiper-slide {
        
        
        text-align: center;
        font-size: 14px;
        background: #fff;

        
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        width: auto;
        
    
      }

      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }