.content3-title {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        flex-direction: column;
        text-align: center;
}

.content3-title p {
        background-color: transparent;
}
.content3-title p:nth-child(1) {
        font-size: clamp(24px, 8vw, 48px);
        font-family: 'supershiny';
}
.content3-title span {
        font-size: clamp(24px, 8vw, 48px);
        font-family: 'supershiny';
        color: var(--primary);
}
.content3-title p:nth-child(2){
        margin-top: 10px;
        background-color: transparent;
        font-size: 16px;
        line-height: 1.2;
        color: var(--text-muted);
}
.content3-title p:nth-child(3){
        margin-top: 10px;
        background-color: var(--primary);
        width: 10%;
        height: 5px;
        border-radius: 10px;
}
/* ############################################################################### */
.courses-section {
  text-align: center;
  padding: 3rem 2rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.courses-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.courses-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.course-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: transparent;
  gap: 2rem;
}
.buy-btn {
  margin-top: 10px;
  background: linear-gradient(90deg, var(--primary), rgb(56, 56, 228));
  color: whitesmoke;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(54, 4, 191, 0.3);
}

.buy-btn:hover {
  background: linear-gradient(90deg, var(--primary), rgb(56, 56, 228));;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(54, 4, 191, 0.4);
}

.course-card {
  position: relative;
  width: 300px;
  background: var(--input);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}
.card-header {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.card-header h3 {
  background-color: transparent;
  font-size: 1.3rem;
  margin: 0 0 0.8rem 0;
}

.card-body .description {
  background-color: transparent;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.features {
  background-color: transparent;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  background-color: transparent;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: bold;
}


.course-img1 {
        overflow: visible;
        width: 100%;
        height: 150px;
        background-image: url('./../../assets/page3/dsa.jpg');
        background-size: cover;
        mask-image: url(./../../assets/ink.png);
        mask-position: center;
        mask-size: cover;
        margin-bottom: 0.8rem;

}
.course-img2 {
        overflow: visible;
        width: 100%;
        height: 150px;
        background-image: url('./../../assets/page3/genai.jpg');
        background-size: cover;
        mask-image: url(./../../assets/ink.png);
        mask-position: center;
        mask-size: cover;
        margin-bottom: 0.8rem;
}

.course-img3 {
        overflow: visible;
        width: 100%;
        height: 150px;
        background-image: url('./../../assets/page3/web.jpg');
        background-size: cover;
        mask-image: url(./../../assets/ink.png);
        mask-position: center;
        mask-size: cover;
        margin-bottom: 0.8rem;

}
.course-card *,
.course-card *::before,
.course-card *::after {
  background-color: transparent !important;
}
.badge {
  background: #ffdd57 !important;
  color: #000;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
}
/* ############################################################################### */

/* mobile  */
@media (max-width: 550px) {
    .content3-main {
      margin-top: 20px;
    }
        .content3-title p:nth-child(2){
        margin-top: 10px;
        background-color: transparent;
        font-size: 16px;
        line-height: 1.2;
        color: var(--text-muted);
        margin-bottom: 20px;
}
}
@media (min-width: 600px) {
        .page3 {
                width: 100%;
                height: 100vh;
        }
        .content3 {
                height: 100%;
                width: 100%;
                display: grid;
                grid-template-rows: 1fr 5fr;
        }
        .content3-main {
          background-color: transparent;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
        }

}
