* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b8860b;
}

header {
  /* TOP NAV */
  /* MAIN NAV */
  /* TOP NAV */
  /* MAIN NAV */
}
header .top-nav {
  background: #111;
  color: #fff;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
header .top-nav .social i {
  margin-right: 10px;
  cursor: pointer;
}
header .top-nav .contact span {
  margin-left: 15px;
}
header .top-nav {
  background: #111;
  color: #fff;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
header .top-nav i {
  margin-right: 10px;
}
header .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
header .logo {
  font-size: 22px;
  font-weight: bold;
  color: #b8860b;
}
header .hamburger {
  font-size: 24px;
  cursor: pointer;
  display: block;
  color: #b8860b;
}
header .nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  z-index: 1000;
}
header .nav-menu ul {
  list-style: none;
  padding: 50px;
  flex: 1;
}
header .nav-menu ul li {
  margin: 25px 0;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}
header .nav-menu ul li:hover {
  color: #b8860b;
}
header .nav-menu .nav-contact-details {
  flex: 1;
  padding: 50px;
  font-size: 16px;
}
header .nav-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}
header .nav-menu.active {
  left: 0;
}

.hero_section {
  /* BANNER SLIDER */
}
.hero_section .banner {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.hero_section .slides {
  height: 100%;
  width: 100%;
  position: relative;
}
.hero_section .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero_section .slide.active {
  opacity: 1;
}
.hero_section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero_section .banner-overlay {
    width: 100%;
  }
}
.hero_section .banner-overlay h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.hero_section .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  padding: 10px;
}
.hero_section .slider-btn.prev {
  left: 20px;
}
.hero_section .slider-btn.next {
  right: 20px;
}
.hero_section section {
  padding: 70px 10%;
}
.hero_section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b8860b;
}

.about_us {
  padding: 70px 10%;
  /* ABOUT */
}
.about_us .about {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .about_us .about {
    flex-direction: column;
  }
}
.about_us .about .about-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_us .about img {
  width: 50%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}
.about_us .about img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.course_section {
  padding: 70px 10%;
  /* COURSES */
}
.course_section .tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.course_section .tabs button {
  padding: 10px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
}
.course_section .tabs button.active {
  background: #b8860b;
  color: #fff;
}
.course_section .courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.course_section .course {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.course_section .course img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.course_section .course-content {
  padding: 15px;
}
.course_section .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  width: 100%;
}
.course_section .course-meta span:first-child {
  justify-content: flex-start;
}
.course_section .course-meta span:last-child {
  justify-content: flex-end;
  text-align: right;
}
.course_section .course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.course_section .course-meta i {
  color: #b8860b;
}

/* COUNTER */
.counter {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 50px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.counter h3 {
  font-size: 36px;
  color: #b8860b;
  margin-bottom: 10px;
}
.counter p {
  font-size: 16px;
  color: #fff;
}

/* DIRECTOR */
.director-section {
  padding: 70px 10%;
  background: #fdf6e3;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .director-section .director-section {
    flex-direction: column;
    text-align: center;
  }
}
.director-section img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #b8860b;
  transition: all 0.4s ease;
}
.director-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.director-section .director-content {
  flex: 1;
}
@media (max-width: 900px) {
  .director-section .director-content .director-content {
    order: 2;
  }
}
.director-section .director-content h3 {
  font-size: 28px;
  color: #b8860b;
  margin-bottom: 15px;
}
.director-section .director-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.director-section .director-content .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #b8860b;
  color: #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.director-section .director-content .btn:hover {
  background: #d4a017;
  transform: translateY(-3px);
}

/* BLOG */
.blog-section {
  padding: 70px 10%;
}
.blog-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b8860b;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.blog-section .blog {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.blog-section .blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.blog-section .blog img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-section .blog-meta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  display: flex;
  gap: 10px;
}
.blog-section .blog-content {
  padding: 15px;
  background: #fff;
}
.blog-section .blog-content h3 {
  margin-bottom: 10px;
  color: #b8860b;
}
.blog-section .blog-content p {
  font-size: 14px;
  color: #555;
}

.our_team {
  padding: 70px 10%;
  /* TEAM */
}
.our_team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}
.our_team .team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.our_team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.our_team .team img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}
.our_team .team h4 {
  margin: 5px 0;
  color: #b8860b;
}
.our_team .team p {
  margin: 2px 0;
  font-weight: bold;
}
.our_team .team small {
  color: #555;
}
.our_team .explore-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #b8860b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.our_team .explore-btn:hover {
  background: #d4a017;
  transform: translateY(-3px);
}

/* TESTIMONIAL */
.testimonial {
  background: #f5f5f5;
  padding: 70px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial h2 {
  margin-bottom: 40px;
  color: #b8860b;
}
.testimonial .testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}
.testimonial .testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  min-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonial .testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.testimonial .testimonial-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.testimonial .testimonial-nav span {
  cursor: pointer;
  font-size: 30px;
  color: #b8860b;
  padding: 0 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* PHOTO ALBUM */
.album-section {
  background: #f8f8f8;
  padding: 70px 10%;
}
.album-section .album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.album-section .album-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.album-section .album-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.album-section .album-card:hover img {
  transform: scale(1.05);
}
.album-section .album-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
}
.album-section .album-info h4 {
  margin-bottom: 5px;
}
.album-section .album-info p {
  font-size: 14px;
}

/* ALBUM POPUP */
.album-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 400;
}
.album-popup img {
  max-width: 80%;
  max-height: 70%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.album-popup button {
  padding: 10px 20px;
  font-size: 16px;
  background: #b8860b;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* CONTACT US */
.contact-section {
  background: #f8f8f8;
  padding: 70px 10%;
}
.contact-section .contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-section .contact-container {
    flex-direction: column;
    height: auto;
  }
}
.contact-section .contact-map,
.contact-section .contact-form {
  flex: 1;
  min-width: 300px;
  height: 450px;
}
@media (max-width: 900px) {
  .contact-section .contact-map,
  .contact-section .contact-form {
    height: auto;
  }
}
.contact-section .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
.contact-section .contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-section .contact-form h3 {
  margin-bottom: 20px;
}
.contact-section .contact-form input,
.contact-section .contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.contact-section .contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: none;
  min-height: 120px;
}
.contact-section .contact-form button {
  background: #b8860b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  align-self: flex-start;
  margin-top: 10px;
}
.contact-section .contact-details {
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #333;
}
@media (max-width: 600px) {
  .contact-section .contact-details {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.contact-section .contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* PARTNERS */
.partners {
  padding: 70px 10%;
  text-align: center;
}
.partners h2 {
  margin-bottom: 40px;
}
.partners .partner-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
}
.partners .partner-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}
.partners .partner {
  flex: 0 0 150px;
  text-align: center;
  transition: transform 0.3s;
}
.partners .partner img {
  width: 100%;
  filter: none;
  transition: filter 0.4s;
}
.partners .partner:hover img {
  filter: invert(100%);
}
.partners .partner h4 {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* BREADCRUMB */
.breadcrumb {
  height: 100px;
  background: url("https://images.unsplash.com/photo-1556911220-e15b29be8c8f") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.aboutus_page {
  /* ABOUT */
  /* TEAM */
}
.aboutus_page section {
  padding: 70px 10%;
}
.aboutus_page h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b8860b;
}
.aboutus_page .about {
  display: flex;
  gap: 40px;
  align-items: center;
}
.aboutus_page .about .about-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutus_page .about img {
  width: 50%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}
.aboutus_page .about img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.aboutus_page .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}
.aboutus_page .team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.aboutus_page .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.aboutus_page .team img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}
.aboutus_page .team h4 {
  margin: 5px 0;
  color: #b8860b;
}
.aboutus_page .team p {
  margin: 2px 0;
  font-weight: bold;
}
.aboutus_page .team small {
  color: #555;
}
.aboutus_page .explore-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #b8860b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.aboutus_page .explore-btn:hover {
  background: #d4a017;
  transform: translateY(-3px);
}

.blogdetail_page {
  /* Move sidebar to left */
  /* SIMILAR BLOGS */
  /* MORE BLOGS FROM AUTHOR */
}
.blogdetail_page section {
  padding: 60px 10%;
}
.blogdetail_page .blog-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.blogdetail_page .blog-main {
  flex: 3;
  min-width: 300px;
}
.blogdetail_page .blog-sidebar {
  flex: 1.2;
  min-width: 250px;
  order: -1;
}
.blogdetail_page .blog-title {
  font-size: 28px;
  color: #b8860b;
  margin-bottom: 15px;
}
.blogdetail_page .blog-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blogdetail_page .blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blogdetail_page .blog-meta i {
  color: #b8860b;
}
.blogdetail_page .blog-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.blogdetail_page .highlight {
  background: linear-gradient(90deg, #fff3cd, #fff);
  padding: 18px;
  border-left: 6px solid #b8860b;
  margin-bottom: 25px;
  font-weight: 600;
  border-radius: 6px;
}
.blogdetail_page .blog-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}
.blogdetail_page .similar-blog {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  transition: 0.3s;
}
.blogdetail_page .similar-blog:hover {
  transform: translateX(5px);
}
.blogdetail_page .similar-blog img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.blogdetail_page .similar-meta {
  font-size: 12px;
  color: #777;
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.blogdetail_page .similar-meta i {
  color: #b8860b;
}
.blogdetail_page .similar-title {
  font-weight: 600;
  color: #b8860b;
  font-size: 14px;
}
.blogdetail_page .more-blogs {
  margin-top: 40px;
}
.blogdetail_page .more-blogs h3 {
  color: #b8860b;
  margin-bottom: 25px;
}
.blogdetail_page .breaker {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #b8860b, #fff, #b8860b);
  margin: 25px 0;
  border-radius: 3px;
}
.blogdetail_page .more-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blogdetail_page .more-block {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.blogdetail_page .more-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.blogdetail_page .more-block img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.blogdetail_page .more-block h4 {
  color: #b8860b;
  margin-bottom: 6px;
}
.blogdetail_page .more-block .meta {
  font-size: 12px;
  color: #555;
}

.blog_list_page {
  /* BLOG GRID */
}
.blog_list_page section {
  padding: 70px 10%;
}
.blog_list_page h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b8860b;
}
.blog_list_page .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.blog_list_page .blog {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog_list_page .blog:hover {
  transform: translateY(-5px);
}
.blog_list_page .blog img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_list_page .blog-content {
  padding: 15px;
}
.blog_list_page .blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #b8860b;
  margin-bottom: 10px;
}

.contact_us_page .popular-courses {
  margin-top: 60px;
}
.contact_us_page .popular-courses h3 {
  color: #b8860b;
  margin-bottom: 25px;
}
.contact_us_page .courses-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact_us_page .course-block {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact_us_page .course-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.contact_us_page .course-block img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.contact_us_page .course-block .info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}
.contact_us_page .course-block h4 {
  color: #b8860b;
  font-size: 16px;
  text-align: center;
}

.course_list_page {
  /* COURSES */
}
.course_list_page section {
  padding: 70px 10%;
}
.course_list_page h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b8860b;
}
.course_list_page .courses-container {
  display: flex;
  gap: 20px;
}
@media (max-width: 900px) {
  .course_list_page .courses-container {
    flex-direction: column;
  }
}
.course_list_page .tabs-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 900px) {
  .course_list_page .tabs-left {
    flex-direction: row;
    overflow-x: auto;
  }
}
.course_list_page .tabs-left button {
  padding: 12px 18px;
  border: none;
  background: #eee;
  cursor: pointer;
  text-align: left;
  position: relative;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (max-width: 900px) {
  .course_list_page .tabs-left button {
    flex: 1;
    white-space: nowrap;
  }
}
.course_list_page .tabs-left button.active {
  background: #b8860b;
  color: #fff;
}
.course_list_page .tabs-left button.active:hover::after {
  right: -16px;
  transform: translateY(-50%) scale(1.15);
}
.course_list_page .tabs-left button::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #b8860b;
  transition: transform 0.35s ease, right 0.35s ease;
}
.course_list_page .tabs-left button.active::after {
  transform: translateY(-50%) scale(1);
  right: -10px;
}
.course_list_page .tabs-left button.active::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #b8860b;
}
.course_list_page .courses-right {
  flex: 3;
}
.course_list_page .course-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.course_list_page .course {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.course_list_page .course:hover {
  transform: translateY(-5px);
}
.course_list_page .course img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.course_list_page .course-content {
  padding: 15px;
}
.course_list_page .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #b8860b;
}
.course_list_page .course-meta i {
  margin-right: 5px;
}
.course_list_page .read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #b8860b;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.course_list_page .read-more:hover {
  background: #a57c08;
}

.course_detail_page {
  /* LAYOUT */
  /* COURSE TOP */
  /* GALLERY */
  /* GALLERY MODAL */
  /* DESCRIPTION */
  /* YOU MAY ALSO LIKE */
  /* SIDEBAR */
}
.course_detail_page section {
  padding: 60px 10%;
}
.course_detail_page .detail-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.course_detail_page .main-detail {
  flex: 3;
  min-width: 300px;
}
.course_detail_page .sidebar {
  flex: 1.3;
  min-width: 250px;
}
.course_detail_page .course-hero img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.course_detail_page .course-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 25px 0;
  padding: 15px;
  background: #fafafa;
  border-radius: 10px;
  color: #b8860b;
  font-weight: 600;
}
.course_detail_page .course-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.course_detail_page h1 {
  margin: 20px 0;
  font-size: 30px;
}
.course_detail_page .highlight {
  background: linear-gradient(90deg, #fff3cd, #fff);
  padding: 18px;
  border-left: 6px solid #b8860b;
  margin: 25px 0;
  font-weight: 600;
  border-radius: 6px;
}
.course_detail_page .gallery {
  margin: 30px 0;
}
.course_detail_page .gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.course_detail_page .gallery img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.course_detail_page .gallery img:hover {
  transform: scale(1.05);
}
.course_detail_page .gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.course_detail_page .gallery-modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}
.course_detail_page .gallery-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}
.course_detail_page .gallery-modal .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.course_detail_page .gallery-modal .prev {
  left: 5%;
}
.course_detail_page .gallery-modal .next {
  right: 5%;
}
.course_detail_page .description {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.8;
}
.course_detail_page .related-courses {
  margin-top: 50px;
  width: 100%;
}
.course_detail_page .related-courses h2 {
  color: #b8860b;
  margin-bottom: 25px;
  text-align: center;
}
.course_detail_page .related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.course_detail_page .course-block {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.course_detail_page .course-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.course_detail_page .course-block img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.course_detail_page .course-block h4 {
  color: #b8860b;
  margin: 8px 0;
}
.course_detail_page .course-block .meta {
  font-size: 13px;
  color: #555;
}
.course_detail_page .course-block button {
  margin-top: 10px;
  padding: 6px 12px;
  border: none;
  background: #b8860b;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.course_detail_page .course-block button:hover {
  background: #996515;
}
.course_detail_page .sidebar {
  position: sticky;
  top: 120px;
}
.course_detail_page .sidebar h3 {
  margin-bottom: 20px;
  color: #b8860b;
  font-size: 22px;
}
.course_detail_page .popular {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  align-items: center;
  background: #fff;
  transition: all 0.3s;
}
.course_detail_page .popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.course_detail_page .popular img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.course_detail_page .meta {
  font-size: 13px;
  color: #b8860b;
  margin-bottom: 4px;
}/*# sourceMappingURL=style.css.map */