html,
body {
  max-width: 100%;
  overflow: auto;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
html,
button,
input,
select,
textarea {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

body {
  color: #141412;
  background: #e3f2ed !important;
  line-height: 1.5;
  margin: 0;
}
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  letter-spacing: 1.5px;
  font-family: arial;
}
a {
  text-decoration: none !important;
  color: #000;
}
h4 {
  color: #fff;
}
.logo-logo {
  width: 100px;
}
.logo-img {
  width: 50px;
}
/* Navbar Styling */
.navbar {
  /* position: fixed; */
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(145deg, #e76e67, #90ee90) !important;
  padding: 12px 20px;
  /* z-index: 1000; */
}

/* Logo */
.navbar .logo {
  width: 50px;
  margin-top: 3px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 0px white;
}

/* Navbar Links */
.navbar-links {
  display: flex;
  gap: 15px;
}

.navbar-links a {
  display: block;
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  transition: 0.3s all;
  text-decoration: none;
  border-radius: 6px;
}

/* Active Link */
.navbar-links a.active {
  background: #fff;
  color: black;
}

/* Hover Effect */
.navbar-links a:hover {
  background: #fff;
  color: black;
  border-radius: 6px;
}

/* Toggle Button */
.toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  border-radius: 6px;
  padding: 5px;
}

.bar {
  width: 30px;
  height: 3px;
  background: white;
  margin: 5px 0;
}

/* Custom Button */
.custom-btn {
  padding: 8px 20px;
  background: #ff5722;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.custom-btn:hover {
  background: #e64a19;
}

/* Responsive Navbar */
@media (max-width: 650px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
  }

  .navbar-links.active {
    display: flex;
  }

  .toggle {
    display: flex;
  }
  .icon-box {
    width: 100% !important;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  text-align: center;
  color: white;
}
.bg-image {
  width: 100%;
  height: 500px; /* Height increased to 400px */
  object-fit: cover;
  object-position: center bottom; /* Image aligned to center bottom */
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #02000046 0%, #00000000 100%);
  z-index: 1;
}

/* Text wrapper centered */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
}

/* Headings and button */
.banner-heading {
  font-size: 70px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.banner-subheading {
  font-size: 25px;
  font-weight: bold;
  margin-top: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-custom {
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 20px;
  /* background-color: #fff; */
  color: #000;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border: none;
}
.btn-custom:hover {
  color: #222;
}

.course-card {
  /* height: 320px;  */
  display: flex;
  flex-direction: column;
}
/*   
  .course-card img {
    max-height: 200px;
    object-fit: cover;
  } */

/* .card-body {
    flex-grow: 1;
    padding: 10px;
  }
   */
.course-card {
  transition: transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 10px;
  overflow: hidden;
}

.course-card:hover {
  /* transform: translateY(-10px) rotateX(5deg) rotateY(5deg); */
  box-shadow: 0 10px 20px rgba(59, 59, 59, 0.2);
}
.category-card {
  transition: transform 0.3s ease-in-out;
}
.category-card:hover {
  transform: scale(1.05);
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.filter-card {
  background: linear-gradient(145deg, #ffffff, #c3e5da);
  box-shadow: 5px 5px 15px #b8b8b8, -5px -5px 15px #ffffff;
  border-radius: 10px;
  padding: 20px;
}
.category-list ul {
  list-style-type: disc;
  padding-left: 20px;
}
.category-list li {
  padding: 10px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}
.category-list li a {
  text-decoration: none;
  color: #000;
}
.category-list li:hover {
  background: linear-gradient(145deg, #c3e5da, #ff6f58);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -3px -3px 8px rgba(255, 255, 255, 0.7);
  color: #ff6f58;
}
.category-list li:active {
  background: linear-gradient(145deg, #c3e5da, #ff6f58);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -3px -3px 8px rgba(255, 255, 255, 0.7);
  color: #ff6f58;
}
.slider-container {
  position: relative;
  width: 80%;
  margin: auto;
}
.range-slider {
  width: 100%;
  position: relative;
  height: 5px;
  background: #fff;
  border-radius: 5px;
}
.range-slider .progress {
  position: absolute;
  height: 100%;
  background: #ff6f58;
  border-radius: 5px;
}
.range-input {
  position: absolute;
  width: 100%;
  appearance: none;
  background: none;
  pointer-events: none;
}
.range-input::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid #ff6f58;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
}
.price-bubble {
  position: absolute;
  background: #ff6f58;
  color: #fff;
  padding: 0px 05px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  top: -30px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .banner {
    height: 400px;
  }
  .custom-row {
    gap: 25px;
  }
  .course-card img {
    max-height: 100%;
  }
  .about-text {
    padding: 0 !important;
  }
  .box {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
.course-detail {
  background: white;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.course-images img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
.course-thumbnails img {
  width: 100px;
  border-radius: 5px;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.course-thumbnails img:hover {
  transform: scale(1.1);
}
.course-info {
  background: linear-gradient(145deg, #ffffff, #c3e5da);
  box-shadow: 5px 5px 15px #b8b8b8, -5px -5px 15px #ffffff;
  border-radius: 15px;
  padding: 30px;
}
.course-info h2 {
  font-size: 35px;
  font-weight: bold;
}
.course-price {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #82bc41;
}
/* .btn-custom {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
} */
.btn-buy {
  background: linear-gradient(145deg, #c3e5da, #ff6f58);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.7);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
  color: #fff !important;
}
.btn-buy:active {
  transform: translateY(2px);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}
.btn-cart {
  background: linear-gradient(145deg, #c3e5da, #ff6f58);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.7);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-cart:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
}
.btn-cart:active {
  transform: translateY(2px);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}
.seller-info {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}
.custom-container {
  margin-top: 150px;
}
input.form-control.quantity-input {
  width: 80px;
  margin-right: 20px;
}
.cart-card {
  margin-right: 15px;
}
.rating-section {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.seller-stats .card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.seller-stats .card h4 {
  font-weight: bold;
  color: #ff6f58;
}
.seller-stats .card p {
  font-size: 18px;
  font-weight: bold;
}
.course-detail {
  background: white;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.rating-section {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}
.rating-box {
  text-align: center;
}
.rating-stars {
  font-size: 28px;
  color: gold;
}
.rating-breakdown {
  margin-top: 10px;
}
.progress {
  height: 15px;
}
.progress-bar {
  background-color: #ffc107;
}
.sold-out {
  color: red;
}
.rating-soldout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rating {
  background: linear-gradient(145deg, #ffffff, #c3e5da);
  box-shadow: 5px 5px 15px #b8b8b8, -5px -5px 15px #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}
.profile-card {
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f1f1f1;
  /* margin-bottom: 10px; */
}
/* .btn-custom {
  background: linear-gradient(90deg, #e76e67 , #90EE90);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.7);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
} */
.session-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  /* margin-top: 20px; */
}
.session-card:hover {
  box-shadow: 0 10px 20px rgba(59, 59, 59, 0.2);
}
.table thead {
  background: linear-gradient(145deg, #c3e5da, #ff6f58) !important;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2),
    -1px -1px 2px rgba(255, 255, 255, 0.7);
  color: white;
}
.table {
  background-color: white;
  color: black;
}
.custom-row {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.accordion-button {
  font-size: 18px;
  font-weight: bold;
}
.badge-free {
  background-color: green;
  color: white;
}
.badge-premium {
  background-color: red;
  color: white;
}
.accordion-body {
  text-align: left;
}
li {
  /* list-style-type: disc; */
  margin-bottom: 6px;
}
.price-tag {
  font-size: 16px;
  font-weight: bold;
  color: #d9534f;
  margin-bottom: 10px;
}
.profile-container {
  /* width: 300px; */
  background: white;
  border-radius: 15px;
  padding: 20px;

  box-shadow: 0 10px 20px rgba(59, 59, 59, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.profile-container:hover {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ccc;
}
.stars-rating {
  color: #ffcc00;
  font-size: 18px;
}
.seller-details {
  font-size: 12px;
  /* font-weight: bold; */
  /* margin-top: 12px; */
}
.stats-section {
  font-size: 16px;
  color: #444;
  margin-top: 12px;
}
.text-muted {
  font-size: 12px;
}
.profile-container h3 {
  font-size: 18px;
}
.btn-outline-custom {
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.7);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #e3242b;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-outline-custom:hover {
  background: #e3242b;
  color: #fff;
  transform: translateY(2px);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}
.session-box {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); */

  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.session-box:hover {
  box-shadow: 0 10px 20px rgba(59, 59, 59, 0.2);
}
.session-box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.session-box h4 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.session-box p {
  font-size: 20px;
  font-weight: bold;
  color: #28a745;
  margin: 5px 0;
}
.session-time {
  font-size: 14px;
  color: #666;
}
.about-text {
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}
.box {
  width: 30%;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.box h5 {
  margin-bottom: 10px;
}
.why-choose {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2),
    -5px -5px 15px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease-in-out;
}

.content {
  flex: 1;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content li {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.image {
  flex: 1;
  text-align: center;
}

.image img {
  max-width: 100%;
  height: 350px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.thin-banner {
  width: 100%;
  background: #ff5722 !important;
  color: white;
}
.join-btn {
  background: #fff;
}
.join-btn:hover {
  background: #fff;
  color: #000;
}

.icon-box {
  width: 300px;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 35px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.icon-box i {
  font-size: 24px;
  color: #007bff;
  margin-right: 15px;
}
.contact-info {
  background: #fff;
  /* background: linear-gradient(145deg, #c3e5da,  #ff5722); */
  box-shadow: 5px 5px 15px #b8b8b8, -5px -5px 15px #ffffff;
  border-radius: 15px;
  padding: 35px;
}
.learn-section {
  padding: 60px 0;
  background-color: #fff;
}

.section-heading {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 40px;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #00c4b3;
  margin: 10px auto 0;
  position: relative;
}

.section-heading span.star {
  display: inline-block;
  color: #00c4b3;
  font-size: 24px;
  margin: 0 10px;
}

/* Card style */
.card-custom {
  background: #e3f7ff; /* light teal bg */
  border: 2px solid #29abe2; /* turquoise border */
  border-radius: 10px;
  padding: 30px 20px;
  transition: 0.3s;
  height: 100%;
}

.card-custom:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-weight: 700;
  font-size: 18px;
}

.card-date {
  font-size: 14px;
  color: #444;
  font-weight: 600;
}

.card-location {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  color: #222;
}
.join-button {
  background: #fff !important;
  color: #ff6b3d !important;
  border-radius: 30px !important;
  margin-top: 20px;
  transition: 0.3s;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.7);
  border: none;
  padding: 12px 24px !important;
  font-size: 16px;
  font-weight: 600;
}

.join-button:hover {
  background: #e3242b !important;
  color: #fff !important;
  transform: translateY(2px);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7) !important;
}
.join-btn {
  background: #ff6b3d !important;
  color: #fff !important;
  border-radius: 30px !important;
  margin-top: 20px;
  transition: 0.3s !important;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.7) !important;
  border: none !important;
  padding: 12px 24px !important;
  font-size: 16px;
  font-weight: 600;
}

.join-btn:hover {
  background: #e3242b !important;
  color: #fff;
  transform: translateY(2px);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7) !important;
}
/* Add this to your custom CSS or inside a <style> tag */
.fixed-bg-section {
  background-image: url("https://diypusher.com/public/assets/section.webp"); /* Replace with your actual image URL */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 80vh;
}
.testimonial-box {
  border: 2px solid #29abe2; /* teal border */
  border-radius: 12px;
  position: relative;
  background-color: #ffffff;
  transition: 0.3s;
}

.testimonial-box .quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 7rem;
  color: #ff6b35; /* orange quote */
}

.testimonial-box img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.text-success {
  color: #82bc41 !important;
}
.share-button {
  border: none;
  text-decoration: none !important;
  background: none;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Arial, sans-serif;
}

.share-button img {
 width: 30px;

 
}

.share-button:hover {
  text-decoration: underline;
}