/* course List  */
  /* ── Hero Banner ── */
    .contact-parts .contact-hero {
      background: linear-gradient(135deg, #8b1a2b 60%, #c4243e 100%);
      color: #fff;
      padding: 60px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .contact-parts .contact-hero::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 60px;
      background: #fff5f6;
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .contact-parts .contact-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 700;
    }
    .contact-parts .contact-hero .badge-pill {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50px;
      padding: 4px 18px;
      font-size: .8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* ── Info Cards ── */
   .contact-parts .info-card {
      background: #fff5f6;
      border-radius: 16px;
      padding: 28px 24px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform .25s, box-shadow .25s;
      height: 100%;
    }
    .contact-parts .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 28px rgba(0,0,0,.12);
    }
    .contact-parts .info-card .icon-wrap {
      width: 58px; height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #e8455c);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      color: #fff;
      font-size: 1.3rem;
    }
    .contact-parts .info-card h6 {
      font-weight: 700;
      color:  #c4243e;
      margin-bottom: 6px;
    }
    .contact-parts .info-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

    /* ── Form Card ── */
    .contact-parts .form-card {
      background: #fff5f6;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 4px 24px rgba(0,0,0,.08);
    }
    .contact-parts .form-card h4 {
      font-family: 'Playfair Display', serif;
      color:  #c4243e;
      margin-bottom: 24px;
    }
    .contact-parts .form-label { font-weight: 700; font-size: .88rem; color: #444; }
    .contact-parts .form-control, .form-select {
      border: 1.5px solid #dde3ee;
      border-radius: 10px;
      padding: 10px 14px;
      font-size: .93rem;
      transition: border-color .2s, box-shadow .2s;
    }
    .contact-parts .form-control:focus, .form-select:focus {
      border-color:  #c4243e;
      box-shadow: 0 0 0 3px rgba(196,36,62,.12);
    }
    .contact-parts .input-group-text {
      background: #fff5f6;
      border: 1.5px solid #dde3ee;
      border-right: none;
      border-radius: 10px 0 0 10px;
      color:  #c4243e;
    }
    .contact-parts .input-group .form-control { border-left: none; border-radius: 0 10px 10px 0; }

    .contact-parts .btn-submit {
      background: linear-gradient(135deg, #8b1a2b, #c4243e);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 36px;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: .5px;
      transition: opacity .2s, transform .2s;
    }
    .contact-parts .btn-submit:hover { opacity: .9; transform: translateY(-2px); color:#fff; }

    /* ── Map placeholder ── */
    .contact-parts .map-wrap {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      background: #fde8ec;
      height: 220px;
      display: flex; align-items: center; justify-content: center;
      color:  #c4243e;
      font-size: 1.8rem;
    }

    /* ── Breadcrumb ── */
    .contact-parts .breadcrumb-item a { color: rgba(255,255,255,.75); text-decoration: none; }
    .contact-parts .breadcrumb-item.active { color: #fff; }
    .contact-parts .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

    /* ── Accent line ── */
    .contact-parts .accent-line {
      width: 48px; height: 4px;
      background: #ff6b81;
      border-radius: 4px;
      margin-bottom: 20px;
    }

    /* ── Success alert ── */
    .contact-parts #successAlert { display: none; }
/* cousrse list */

/* Sidebar */
.course-list .filter-box {
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Accordion */
.course-list .accordion-button {
    font-weight: 600;
    background: #f8f9fa;
}



/* Filters */
.course-list .filter-item,
.rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
}

.course-list .filter-item input,
.rating-item input {
    margin-right: 10px;
}

.course-list .filter-item span,
.rating-item span {
    flex-grow: 1;
}

.course-list .rating-item:hover {
    background: #f5f8ff;
}

.course-list .rating-item.active {
    background: #eef4ff;
}

/* Stars */
.course-list .stars i {
    font-size: 14px;
}
/* Card */
.course-list .course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.course-list .course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.course-list .course-img-box {
    position: relative;
}

.course-list .course-img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Badge */
.course-list .course-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Body */
.course-list .course-body {
    padding: 15px;
}

.course-list .course-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.course-list .course-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

/* Meta */
.course-list .course-meta {
    font-size: 12px;
    color: #555;
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

/* Rating */
.course-list .course-rating {
    color: #f39c12;
    font-size: 14px;
    margin-bottom: 10px;
}

.course-list .course-rating span {
    color: #777;
    font-size: 12px;
}

/* Footer */
.course-list .course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Price */
.course-list .new-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
}

.course-list .old-price {
    text-decoration: line-through;
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

/* Button */
.course-list .btn-add {
    border: none;
    background: #f1f3f6;
    padding: 8px 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.course-list .btn-add:hover {
    background: #0d6efd;
    color: #fff;
}


 .course-details .course-header {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

.course-details .course-sidebar {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

 .course-details .video-box img {
            width: 100%;
            border-radius: 8px;
        }

 .course-details .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            color: red;
        }

.course-details .btn-cart {
            background: #7ab730;
            color: #fff;
            width: 100%;
            font-weight: 600;
        }

.course-details .btn-cart:hover {
            background: #5fa121;
        }

.course-details .accordion-item {
            margin-bottom: 10px;
            border-radius: 6px;
            overflow: hidden;
        }

.course-details .course-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            transition: 0.3s;
        }

.course-details .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

.course-details .course-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

.course-details .star {
            color: #f39c12;
        }

.course-details .review-box {
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }
.course-details .review-item {
			background: #fff;
			padding: 15px;
			border-radius: 10px;
		}

.course-details .review-img {
			width: 45px;
			height: 45px;
			border-radius: 50%;
		}

.course-details .review-date {
			font-size: 12px;
			color: #999;
		}

.course-details .review-item .stars i {
			color: #f39c12;
			font-size: 13px;
		}	