a {
  text-decoration: none;
  transition: 0.3s;
}

body {
  font-family: Arial, sans-serif;
}

.header {
  color: white;
  background-color: #080808;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 1000;
  align-items: center;
}

.header .logo h1 {
  font-size: 30px;
  align-items: center;
  margin: 0;
  font-weight: 700;
  color: white;
}

.btn-primary,
.btn-primary:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.navmenu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.header .icons a {
  color: white;
  font-size: 20px;
  padding: 0 5px;
  transition: color 0.3s;
}

.header .icons a:hover {
  color: var(--nav-hover-color);
}

.header .search-icon i,
.header .heart-icon i,
.header .cart-icon i {
  font-size: 15px;
}

.header .btn-primary {
  margin-left: 10px;
}

nav {
  display: flex;
  gap: 20px;
}

.nav-link,
.nav-link:focus {
  color: white;
  align-items: center;
  padding: 18px 12px;
  font-size: 15px;
  font-family: var(--nav-font);
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  text-align: center;
}

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 70px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title p {
  color: darkslategray;
  margin: 10px 0 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: var(--heading-font);
}

.btn-readmore,
.login {
  color: black;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  margin-right: 10px;
  transition: all 0.3s;
  border: 2px solid #cf9fff;
  cursor: pointer;
  background-color: #cf9fff;
}

a.login {
  text-decoration: none;
}

.hero {
  background-color: #080808;
  position: relative;
  position: relative;
  padding: 20px;
  overflow: hidden;
}
.hero .container {
  max-width: 1200px;
}
.hero-img {
  position: relative;
  max-width: 100%;
  height: auto;
}

.hero h1,
h6 {
  margin: 0;
  font-size: 48px;
  color: #f8f9fa;
  font-weight: 700;
  line-height: 56px;
}

.filled-button {
  color: #cf9fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 10px;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
  border: 2px solid #cf9fff;
  cursor: pointer;
}

.filled-button:hover {
  color: wheat;
  border: 2px solid #cf9fff;
}

.link-primary {
  font-size: 1.2rem;
}

.text-custom {
  color: blueviolet;
}

.top-lorem {
  color: #915f6d;
}

.corner-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50px;
  height: 180px;
  margin: 10px;
}

.para {
  color: #f8f9fa;
  padding-bottom: 40px;
}

.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-img img.stick-bottom {
  position: absolute;
  bottom: -485px;
  right: -100px;
  max-width: 100%;
  height: auto;
}

.conatiner {
  background-color: #f8f9fa;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.2s;
  text-align: center;
  max-width: 350px; /*  change details*/
  margin: auto;
  /* z-index: ; */
  margin-top: 100px;
}
.card h5 {
  font-size: 1rem;
}

.card p {
  font-size: 0.875rem;
}
.card:hover {
  transform: scale(1.05);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  /* margin-top: -200px !important; */
  text-align: center;
  transition: transform 0.2s;
  margin-bottom: 20px;
}

.card:hover {
  transform: scale(1.05);
}

.card i {
  font-size: 40px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .card {
    margin: 10px;
    width: 290px;
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%;
  }
}

.card i {
  font-size: 3em;
  color: #915f6d;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 1.5em;
  color: #915f6d;
}

.card p {
  font-size: 1em;
  color: #555;
}

.button-group {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.category-button-dark {
  margin: 0 10px;
  padding: 10px 20px;
  background-color: #cf9fff;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.category-button-dark:hover {
  background-color: #bdb5d5;
}

@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
  }
}

.category-button {
  margin: 0 10px;
  padding: 10px 20px;
  background-color: #cf9fff;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.category-button:hover {
  background-color: #bdb5d5;
}

.read-more-btn {
  border-radius: 30px 0 0 30px;
}

.join-now-btn {
  border-radius: 0 30px 30px 0;
}

.course-item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  color: #000;
}

.course-item .fa-star {
  color: #915f6d;
}

.course-item img {
  max-height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .read-more-btn,
  .join-now-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.testimonial-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.left-side {
  width: 60%;
}

.right-side {
  width: 35%;
}

.testimonial-slider {
  margin-top: 20px;
  position: relative;
}

.card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 16px;
  color: #333;
}

.testimonial-author {
  font-size: 14px;
  font-style: italic;
  color: #666;
}

img {
  max-width: 100%;
  border: #000;
}

.about-img {
  height: 500px;
  width: 650px;
}

.testimonial-box {
  background-color: #f8f9fa;
}

.star-rating span {
  font-size: 1.2rem;
}

.video-container {
  max-width: 500px;
  margin: auto;
  border-radius: 30px;
}

.play-button .play-circle {
  width: 60px;
  border-radius: 30px;
  height: 60px;
}

:root {
  --light-purple: #d3b8ff;
  --dark-purple: black;
}

.bg-light-purple {
  background-color: var(--light-purple);
}

ul.list-unstyled a {
  color: black;
  text-decoration: none;
}

.flex-container {
  display: flex;
  flex-direction: column;
}

.testi-name {
  color: #000;
}

@media (max-width: 768px) {
  .hero h6 {
    font-size: 2rem;
  }

  .hero .para {
    font-size: 0.9rem;
  }

  .filled-button {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero h6 {
    font-size: 1.5rem;
  }

  .filled-button {
    width: 100%;
    margin-right: 0;
  }
}

.hero .btn-get-started,
.hero .btn-watch-video {
  font-size: 15px;
  transition: 0.5s;
  text-decoration: none;
  box-shadow: #cf9fff;
  border: 2px solid #cf9fff;
}

.hero .btn-get-started {
  color: #cf9fff;
  background: var(--accent-color);
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 28px;
  border-radius: 50px;
  box-shadow: #cf9fff;
}

.hero .btn-get-started:hover {
  color: black;
  background-color: #cf9fff;
}

.hero .btn-watch-video {
  font-size: 16px;
  margin-left: 10px;
  color: #cf9fff;
  font-weight: 500;
  border: 2px solid #cf9fff;
  padding: 10px 20px;
  border-radius: 30px;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  /* margin-right: 0px; */
}

.hero .btn-watch-video:hover {
  color: black;
  background-color: #cf9fff;
}

.hero .btn-watch-video:hover i {
  color: black;
}

.hero img {
  max-width: 100%;
  height: auto;
}

.hero .hero-img {
  position: relative;
}

@media (max-width: 768px) {
  .hero .row {
    flex-direction: column;
    align-items: center;
  }

  .hero .col-lg-5,
  .hero .col-lg-6 {
    text-align: center;
    order: 1;
  }

  .hero .col-lg-6 {
    margin-top: 20px;
  }

  .hero .girl-image,
  .hero .custom-image,
  .hero .corner-image,
  .hero .hero-img img:first-child {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.custom-image {
  border-radius: 15px;
}

footer {
  background-color: #f8f9fa;
  color: #343a40;
  margin-top: 45px;
}

footer h5 {
  font-size: 1.2rem;
  margin-top: 15px;
}

footer ul li {
  font-size: 0.9rem;
  color: #495057;
  margin-top: 15px;
}

@media (max-width: 576px) {
  footer h5 {
    font-size: 1.1rem;
  }

  footer ul li {
    font-size: 0.85rem;
  }

  .list-inline-item img {
    max-width: 30px;
  }

  .row {
    text-align: center;
  }

  .col-md-6 {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Home Service PAge Title
--------------------------------------------------------------*/
.page-title {
  color: black;
  position: relative;
  /* margin-top: -142px; */
  margin-bottom: -23px;
}

.hometext {
  color: #000;
}

.page-title .heading {
  padding: 25px 0 70px 0;
  margin-bottom: 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: whitesmoke;
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-title nav ol {
    font-size: 12px; /* Adjust font size for smaller screens */
  }

  .page-title nav ol li + li {
    padding-left: 10px; /* Reduce spacing for smaller screens */
  }

  .page-title nav ol li + li::before {
    padding-right: 5px;
  }
}

@media (max-width: 480px) {
  .page-title nav ol {
    font-size: 13px; /* Further adjust font size for very small screens */
  }

  .page-title nav ol li + li {
    padding-left: 5px; /* Even less spacing for very small screens */
  }

  .page-title nav ol li + li::before {
    padding-right: 5px;
  }
}

/* details */
.text {
  margin-top: 100px;
}

.learning {
  font-weight: 700;
}

.card-title {
  margin-left: -150px;
}

.buynow {
  margin-left: auto;
  background-color: #bdb5d5;
  border: #ddd;
  position: relative;
  z-index: 1000;
}
.buynow:hover {
  color: #000;
  background-color: #915f6d;
}

.addtocart {
  margin-left: auto;
  background-color: #bdb5d5;
  border: #ddd;
  z-index: 1000;
  position: relative;
}
.addtocart:hover {
  color: #000;
  background-color: #915f6d;
}

.sticky-top {
  top: 80px;
  z-index: 999;
}

.off-badge {
  background-color: #000;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  display: inline-block;
}

.label {
  font-size: 12px;
  color: gray;
  margin-bottom: 5px;
}
.stars i {
  font-size: 18px;
}
.btn-outline-secondary {
  border-color: #cf9fff;
  color: #cf9fff;
}
.btn-outline-secondary .fa-heart,
.btn-outline-secondary .fa-share-nodes {
  color: #cf9fff;
}

.tab-menu {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.tab-menu a {
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none;
  color: #6f6f6f;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.tab-menu a.active {
  color: #9d88f5;
  border-bottom: 2px solid #9d88f5;
}

.tab-menu a:hover {
  color: #9d88f5;
}

.text-center .tab-menu {
  justify-content: flex-start;
}

.what-you-will-learn {
  margin-top: 50px;
}

.what-you-will-learn h5 {
  font-weight: bold;
  margin-bottom: 20px;
}

.learn-list {
  list-style: none;
  padding-left: 0;
}

.learn-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.learn-list li i {
  margin-right: 10px;
  color: #9d88f5;
}

@media (max-width: 767px) {
  .what-you-will-learn .row {
    flex-direction: column;
  }

  .learn-list {
    padding-left: 10px;
  }

  .learn-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .learn-list li i {
    margin-right: 8px;
    font-size: 14px;
  }
}

/* details courses */

.button-courses {
  color: #000;
  border: 2px solid #ccc;
  padding: 10px 300px;
  font-size: 16px;
  background-color: transparent;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
}

.button-courses:hover {
  background-color: #f0f0f0;
  color: #333;
}

.button-courses i {
  margin-left: -500px;
  align-items: center;
}

/* Default styles (for larger screens) */
.button-courses span {
  margin-left: 220px;
}

.button-courses i.uiux {
  margin-right: -290px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .button-courses {
    flex-direction: column;
    text-align: center;
  }

  /* Align text and icon centrally */
  .button-courses span {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .button-courses i {
    margin-right: 0;
  }
}

/* About Mentors Page ============================================================================  */

.about-mentors {
  color: #000;
  border: 2px solid #ccc;
  padding: 10px 300px;
  font-size: 16px;
  background-color: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 500px;
  text-align: left;
}

.about-mentors:hover {
  background-color: #f0f0f0;
  color: #333;
}

.about-mentors i {
  margin-left: -500px;
  align-items: center;
}

.about-mentors span {
  margin-left: 220px;
}

.about-mentors i.uiux {
  margin-right: -290px;
}

@media (max-width: 768px) {
  .about-mentors {
    flex-direction: column;
    text-align: center;
  }

  .about-mentors span {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .about-mentors i {
    margin-right: 0;
  }
}

.mentor-card {
  background: white;
  border-radius: 15px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 70 0px;
  margin: 30px auto 50px -20px;
  position: sticky; /* Make the card sticky */
  top: 100px; /* Adjust the position at which it becomes fixed */
  z-index: 999;
}

.mentor-img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.mentor-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.mentor-info {
  margin-left: 15px;
}

.mentor-info h5 {
  margin: 0;
  font-weight: bold;
}

.mentor-info p {
  margin: 0;
  font-size: 14px;
  color: gray;
}

.mentor-description {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.mentor-metrics {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
}

.metric {
  text-align: center;
}

.metric h6 {
  margin-bottom: 5px;
  font-weight: bold;
  color: #000;
  font-size: 30px;
}

.metric span {
  color: gray;
  font-size: 12px;
}

.mentor-card .rating {
  color: #ffc107;
}

@media (max-width: 768px) {
  .mentor-card {
    margin: 10px;
    width: 290px;
    position: sticky;
    top: 50px;
    z-index: 999;
    margin-left: 30px;
  }

  .mentor-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mentor-info {
    margin-left: 0;
    margin-top: 10px;
  }

  .mentor-metrics {
    flex-direction: column;
  }

  .metric {
    margin-bottom: 10px;
  }
}

/* Review Page ==================================================================== */

@media (max-width: 576px) {
  .review-summary .row {
    flex-direction: column;
    align-items: center;
  }

  .review-summary .col-4 {
    margin-bottom: 1rem;
  }

  .user-review .media {
    flex-direction: column;
    align-items: center;
  }

  .user-review img {
    margin-bottom: 1rem;
  }

  .media-body {
    text-align: center;
  }

  .review-form .form-group {
    text-align: center;
  }

  .review-form button {
    width: 100%;
  }
}

.reviewsubmit {
  margin-left: 0px;
  background-color: #bdb5d5;
  border: #000;
}

.review {
  font-size: 60px;
  margin-top: 60px;
}

.rating-bars {
  font-family: "Arial", sans-serif;
  color: #333;
}

.rating-bars p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 14px;
}

.progress {
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 15px;
}

.progress-bar {
  height: 8px;
  border-radius: 4px;
}

/* Book details description ============================================================*/

body {
  font-family: Arial, sans-serif;
}

.product-img {
  border-radius: 30px;
}
.product-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.author {
  margin-top: 20px;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.rating {
  font-size: 14px;
}

.price .current-price {
  font-size: 24px;
  color: #000;
  /* margin-bottom: 50px; */
  font-weight: bold;
}

.price .old-price {
  text-decoration: line-through;
  font-size: 16px;
  margin-left: 10px;
}

.description {
  font-size: 14px;
  color: #444;
  margin-top: 25px;
}

.quantity-selector input {
  width: 50px;
  text-align: center;
}

.action-buttons .btn-primary {
  background-color: #7c6eff;
  border: none;
}

.action-buttons .btn-outline-secondary {
  border: 2px solid #7c6eff;
  color: #7c6eff;
}

.star {
  font-size: 18 px;
}
.badge {
  margin-left: 550px;
}

.course-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin-bottom: 30px;
}

.course-item:hover {
  transform: translateY(-10px);
}
.course-img {
  position: relative;
  overflow: hidden;
  height: 400px; /* Set a height for the container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensure the full image is visible */
  border-radius: 12px;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.course-img:hover .overlay {
  opacity: 1;
}

.icon-buttons {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 10px;
}

.icon-btn {
  background: white;
  border: none;
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.add-to-cart {
  background-color: #c3a4f3;
  border: none;
  padding: 10px 20px;
  width: 100%; /* Full width */
  text-align: center;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  font-size: 16px;
  margin-top: auto; /* Push to the bottom */
  margin-bottom: 20px;
}

.course-info {
  padding: 12px;
}

.course-info p {
  margin-bottom: 5px;
}

.course-info .price span {
  margin-right: 5px;
}

.price {
  margin-top: 10px;
}

.current-price {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: #888;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .price .current-price {
    font-size: 20px;
  }
  .course-item {
    margin-bottom: 20px;
  }

  .price .old-price {
    font-size: 14px;
  }

  .product-title {
    font-size: 20px;
  }

  .rating {
    font-size: 12px;
  }
  .badge {
    margin-left: 0px;
    margin-bottom: 30px;
  }
}

/* Checkout Page ============================================================ */

body {
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

table {
  background-color: white;
  border-radius: 25px;
  margin-top: 0;
  overflow: hidden;
}

thead {
  background-color: #f8f8f8;
}

.product-heading {
  margin-top: 70px;
  /* margin-bottom: 55px; */
}

td {
  vertical-align: middle;
  padding: 0px;
  border: #000;
}

img.img-product {
  width: auto;
  height: 50px;
  margin-right: 5px;
}

.card {
  border: none;
  background-color: #f4f4f4;
  /* margin-top: auto; */
  margin-top: 120px;
  margin-bottom: 100px;
}
.input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .btn-primary {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}

.checkout-btn {
  margin-left: auto;
  width: auto;
}

.card-body {
  padding: 15px;
}

.submit-product {
  margin: auto;
}

h5.card-title,
h5.card-text {
  font-weight: bold;
}

.btn-primary {
  background-color: #cf9fff;
  border: none;
}

.btn-primary:hover {
  background-color: #cf9fff;
}

@media (max-width: 768px) {
  table {
    font-size: 14px;
  }

  .card-body {
    padding: 10px;
  }

  h5.card-title,
  h5.card-text {
    font-size: 16px;
  }

  .btn-primary {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .img-product {
    width: 100px; /* Adjust the image size */
    height: auto; /* Maintain aspect ratio */
  }

  .table thead {
    display: none; /* Hide the header on smaller screens */
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block; /* Display as blocks for better readability */
    width: 100%; /* Full width */
  }

  .table tr {
    margin-bottom: 15px; /* Space between rows */
  }

  .table td {
    text-align: center; /* Align text to the right */
    position: relative; /* Position relative for label styling */
    padding-left: 0; /* Padding for the label */
  }

  .table td:before {
    position: absolute; /* Absolute position for the label */
    left: 0; /* Align left */
    width: 50%; /* Width of label */
    padding-left: 10px; /* Padding */
    white-space: nowrap; /* Prevent wrapping */
    text-align: left; /* Align text left */
  }
}

/* address shipping ======================================================= */

.address-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.address-card:hover {
  transform: scale(1.02);
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.address-header h5 {
  font-weight: bold;
  margin: 0;
}

.address-header .selected-icon {
  background-color: #cf9fff;
  border-radius: 50%;
  color: white;
  padding: 5px;
  font-size: 12px;
}

.address-body {
  font-size: 14px;
  color: #6c757d;
}

.address-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.address-actions .btn {
  font-size: 14px;
}

.deliver-btn {
  background-color: #cf9fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: black;
  width: 48%;
  margin-right: auto;
}

.deliver-btn:hover {
  background-color: #cf9fff;
  color: gray;
}

.step {
  width: 100px;
}

.dashed-line {
  border-top: 2px dashed #cf9fff;
  margin: 0 10px;
}

.address-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-checkbox {
  display: flex;
  align-items: center;
}
.address-actions {
  margin-top: 10px;
}

.address-actions .btn {
  width: 100%;
  margin: 0;
  border-radius: 0;
}

.address-actions .btn:first-child {
  border-right: none; /* Remove the right border of the first button */
}

@media (max-width: 768px) {
  .step {
    width: 80px;
  }

  .dashed-line {
    margin: 0 5px;
  }
}

@media (max-width: 768px) {
  .address-card {
    padding: 15px;
  }

  .address-actions .btn {
    font-size: 12px;
  }

  .deliver-btn {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* payment method ================================================================ */

form {
  max-width: 500px;
  /* margin: auto;  */
}

input {
  border-radius: 5px;
}

.btn {
  border-radius: 5px;
}

.card-detail {
  width: 700px;
}

.card-submit {
  margin: auto;
  width: 250px;
}
.form-check {
  width: 250px;
}
.form-check-input:checked {
  /* width: 250px; */
  color: #cf9fff;
  background-color: #cf9fff;
  border-color: #000;
}
.payment-options {
  width: 700px;
}
@media (max-width: 768px) {
  .card-detail {
    width: 350px;
  }

  .card-submit {
    margin: auto;
    width: 250px;
  }
  .form-check {
    width: 250px;
  }
  .payment-options {
    width: 700px;
    /* margin-left: -70px; */
  }
  .hr {
    width: 350px;
  }
}

/* order summary ================================================================================= */

.deliver-btn {
  display: inline-block; 
  padding: 10px 20px; 
  background-color: #cf9fff; 
  color: black; 
  text-align: center; 
  text-decoration: none; 
  border-radius: 5px;
  border: none; 
  cursor: pointer; 
}

.custom-order-item img {
  width: 80px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.custom-item-title {
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

.custom-item-price,
.custom-item-qty {
  font-size: 14px;
  color: #6c757d;
}

.custom-section-title {
  font-weight: bold;
  font-size: 16px;
  color: #000;
}

.custom-shipping-address,
.custom-payment-method {
  font-size: 14px;
  margin-bottom: 4px;
}
.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eae2ff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}

.modal-content {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-title {
  font-size: 18px;
  color: #333;
}

.modal-body p {
  color: #666;
}

.btn-primary {
  background-color: #cf9fff;
  border-color: #cf9fff;
}

.btn-light {
  color: #333;
  border-color: #ddd;
}

@media (max-width: 576px) {
  .modal-content {
    padding: 15px;
  }
  .icon-container {
    width: 50px;
    height: 50px;
  }
  .modal-title {
    font-size: 16px;
  }
  .modal-body p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .custom-order-item img {
    width: 60px;
  }

  .custom-item-title,
  .custom-item-price,
  .custom-item-qty {
    font-size: 13px;
  }

  .custom-section-title {
    font-size: 14px;
  }

  .custom-shipping-address,
  .custom-payment-method {
    font-size: 12px;
  }
}

/* about us page ================================================================= */

.progress-bar {
  background-color: #b28ee6;
}

button {
  background-color: #b28ee6;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 16px;
}

button:hover {
  background-color: #b28ee6;
}

img {
  object-fit: cover;
}

.about-i {
  font-size: 24px;
  color: #b28ee6;
}

.about-top {
  font-weight: bold;
  margin-top: 30px;
}

.about-img {
  padding: 10px;
  margin-top: 20px;
}
body {
  background-color: #f8f9fa;
}

.profile-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-card img {
  border-radius: 15px 15px 0 0;
  height: 300px;
  object-fit: cover;
}

.card-title {
  font-weight: bold;
  margin-top: 15px;
}

.card-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

.ratings {
  font-size: 1.2rem;
  margin: 10px 0;
}

.stars {
  color: #ffc107;
}

.info {
  font-size: 1rem;
}
.consulting-text {
  text-align: right;
}
section.mt-5 {
  background-color: whitesmoke; /* Off-white color */
  padding: 50px 0; /* Optional: Add some padding for spacing */
}
.info {
  display: flex;
  justify-content: space-between; /* Distributes items evenly */
  align-items: center; /* Centers vertically */
  text-align: center;
}

.rating-stars {
  flex-shrink: 0;
}

.info span {
  flex-grow: 1;
  margin: 0 10px;
}

@media (max-width: 767px) {
  .profile-card img {
    height: 200px;
  }
  .info {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .about-img {
    margin-top: 0;
  }
}

.about-img.first-img {
  margin-left: 0;
  height: auto;
}

.about-img.secound-img {
  margin-top: 0;
  height: auto;
}

.about-img.third-img {
  margin-top: -200px;
  height: auto;
}

@media (max-width: 768px) {
  .about-img,
  .aboutus-img {
    display: none;
  }
  .about-range {
    display: none;
  }
  .consulting-text {
    text-align: center;
    display: block;
    width: 100%;
    margin-left: 100px;
  }
}

/* .mentor-details================================================================================ */

.about-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  /* margin-top: -200px !important; */
  text-align: center;
  transition: transform 0.2s;
  margin-top: 140px;
}

@media (max-width: 768px) {
  .about-card {
    margin-left: 40px;
  }
}

/* Contact us page ============================================================================== */

#contact {
  background-color: #f9f9f9;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.icon-box {
  /* background-color: #d6e1ff; */
  padding: 10px;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #b28ee6;
}

/* form {
  background-color: white;
} */

input,
textarea {
  border-radius: 5px;
  border: 1px solid #ddd;
}

button {
  background-color: #6f42c1;
  border: none;
  color: white;
  font-size: 1rem;
}

button:hover {
  background-color: #5a3797;
}

.aboutus-submit {
  margin-left: 0px;
}

/* Media Queries */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }

  .icon-box {
    font-size: 1.2rem;
  }
}

/* Home Page ======================================================================== */

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.single-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
  width: 23%;
  margin-bottom: 20px;
}

.single-card:hover {
  transform: scale(1.05);
}

.single-card h2 {
  font-size: 1.5em;
  color: #915f6d;
}

.single-card p {
  font-size: 1em;
  color: #555;
}

.single-card img {
  display: block;
  margin: 0 auto 15px;
}

@media (max-width: 1024px) {
  .single-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .single-card {
    width: 100%;
    margin: 10px 0;
  }
}
.column-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.column-item {
  flex: 0 0 48%;
}

.custom-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.custom-card:hover {
  transform: scale(1.05);
}

.custom-card h5 {
  font-size: 1.5em;
  color: #915f6d;
}

.custom-card p {
  font-size: 1em;
  color: #555;
}

.custom-card img {
  display: block;
  margin: 0 auto 15px;
}

@media (max-width: 768px) {
  .column-item {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}
