/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .course-item {
  border-radius: 5px;
  border: 1px solid #0B2B6A;
  /* background-color: #0B2B6A; */
  box-shadow: 0px 5px 16px -6px rgba(114, 4, 207, 1);
  -webkit-box-shadow: 0px 5px 16px -6px rgba(114, 4, 207, 1);
  -moz-box-shadow: 0px 5px 16px -6px rgba(114, 4, 207, 1);
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 30px;
  color: black;
}

.courses .course-content h3 a {
  color: black;
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: black;
}

.courses .course-content p {
  font-size: 14px;
  color: black;
}

.courses .course-content hr {
  border: 1px solid #fff;
  z-index: 0;
}

.courses .course-content h4 {
  font-size: 14px;
  background: #F9C72E;
  padding: 7px 14px;
  color: #000;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0px 5px 16px -6px rgba(151, 189, 67, 1);
  -webkit-box-shadow: 0px 5px 16px -6px rgba(151, 189, 67, 1);
  -moz-box-shadow: 0px 5px 16px -6px rgba(151, 189, 67, 1);
}

.courses .course-content i {
  color: #F9C72E;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}

.courses .trainer .trainer-rank a {
  box-shadow: inset 0px 1px 0px 0px #f9c72e;
  background: linear-gradient(to bottom, #f9c62e 5%, #ffb13b 100%);
  background-color: #f9c62e;
  border-radius: 22px;
  display: inline-block;
  cursor: pointer;
  color: #231f20;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 18px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #f9c62e;
}

.courses .trainer .trainer-rank a:hover {
  background: linear-gradient(to bottom, #ffb13b 5%, #f9c62e 100%);
  background-color: #ffb13b;
  color: #231f20;
}

/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details .info-item {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 5px 16px -6px rgba(0, 0, 0, 0.8);
  padding: 17px;
  margin-top: 10px;
  border-radius: 10px;
}

.course-details .info-item i {
  font-size: 38px;
  line-height: 0;
  color: #0B2B6A;
  float: right;
}

.course-details.info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: #0B2B6A;
}

.course-details .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.course-details .resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

.course-details .resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}

.course-details .resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}

.course-details .resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.course-details .resume .resume-item ul {
  padding-left: 20px;
}

.course-details .resume .resume-item ul li {
  padding-bottom: 10px;
}

.course-details .resume .resume-item:last-child {
  padding-bottom: 0;
}

.course-details .resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}


.course-details .video-box {
  position: relative;
  text-align: center;
  color: white;
}

.course-details .video-box .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
}

.course-details .video-box .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#0b2b6a 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.course-details .video-box .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.course-details .video-box .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(25, 119, 204, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.course-details .video-box .play-btn:hover::after {
  border-left: 15px solid #0b2b6a;
  transform: scale(20);
}

.course-details .video-box .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  color: #0B2B6A;
}

.course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #eef0ef;
  bottom: 0;
  left: 0;
}

.course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #0B2B6A;
  bottom: 0;
  left: 0;
}

.course-details .course-info {
  background: #f1f7fd;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #0B2B6A;
}

.course-details h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  color: #0B2B6A;
}

.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.course-details .course-info a {
  color: #657a6d;
}

.course-details a.course-button {
  background: linear-gradient(to bottom, #0f61a8 5%, #0b2b6a 100%);
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 27px;
  font-weight: bold;
  padding: 26px 69px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #2f6627;
  margin-bottom: 10px;
  width: 100%;
}

.course-details a.course-button:hover {
  background: linear-gradient(to bottom, #0b2b6a 5%, #0f61a8 100%);
  background-color: #0b2b6a;
  color: #fff;
  box-shadow: 0px 0px 4px 2px rgba(114, 4, 207, 0.75);
  -webkit-box-shadow: 0px 0px 4px 2px rgba(114, 4, 207, 0.75);
  -moz-box-shadow: 0px 0px 4px 2px rgba(114, 4, 207, 0.75);
}

@media (max-width: 768px) {
  .course-details a.course-button {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Enhanced Course Details Section
--------------------------------------------------------------*/

/* Main Enhanced Section */
.course-details-enhanced {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.course-details-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}

/* Hero Image Enhancements */
.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.hero-media-item {
  position: relative;
}

@media (max-width: 768px) {
  .hero-media-grid {
    grid-template-columns: 1fr;
  }
}

.course-hero-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 100%;
}

.course-hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.course-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.course-hero-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(11, 43, 106, 0) 0%, rgba(11, 43, 106, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.course-hero-image:hover .image-overlay {
  opacity: 1;
}

/* Video Box Enhanced */
.video-box-enhanced {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  height: 100%;
}

.video-box-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.video-box-enhanced img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.video-box-enhanced:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 43, 106, 0.2) 0%, rgba(0, 153, 97, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-box-enhanced:hover .video-overlay {
  opacity: 1;
}

/* Video Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-decoration: none;
}

.play-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0B2B6A 0%, #009961 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(11, 43, 106, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.play-icon i {
  font-size: 32px;
  color: #fff;
  margin-left: 4px;
}

.video-play-btn:hover .play-icon {
  transform: scale(1.15);
  background: linear-gradient(135deg, #009961 0%, #0B2B6A 100%);
  box-shadow: 0 12px 40px rgba(0, 153, 97, 0.4);
}

/* Ripple Effect */
.play-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: rippleEffect 2s ease-out infinite;
  pointer-events: none;
}

@keyframes rippleEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Content Sections */
.content-section {
  margin-bottom: 25px;
}

.course-title {
  font-size: 32px;
  font-weight: 800;
  color: #0B2B6A;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 15px;
}

.course-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0B2B6A 0%, #009961 100%);
  border-radius: 2px;
}

.course-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* Card Styles */
.benefits-card,
.target-card,
.concept-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(11, 43, 106, 0.1);
}

.benefits-card:hover,
.target-card:hover,
.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(11, 43, 106, 0.3);
}

/* Feature List Styling */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding-left: 10px;
}

.feature-list li:hover {
  background: rgba(0, 153, 97, 0.05);
  padding-left: 20px;
}

.feature-list li span {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Animated Icons */
.animated-icon {
  color: #009961;
  font-size: 24px;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.feature-list li:hover .animated-icon {
  animation: bounce 0.6s ease;
  color: #0B2B6A;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Section Dividers */
.section-divider {
  margin: 35px 0 20px 0;
}

.section-divider h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0B2B6A;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(11, 43, 106, 0.1) 0%, rgba(0, 153, 97, 0.1) 100%);
  border-radius: 10px;
  border-left: 4px solid #0B2B6A;
  transition: all 0.3s ease;
}

.section-divider h4:hover {
  background: linear-gradient(135deg, rgba(11, 43, 106, 0.15) 0%, rgba(0, 153, 97, 0.15) 100%);
  transform: translateX(5px);
}

.section-divider h4 i {
  font-size: 26px;
  color: #0B2B6A;
}

/* Description Text */
.description-text {
  margin-bottom: 25px;
}

.description-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.highlight-text {
  background: linear-gradient(135deg, rgba(0, 153, 97, 0.1) 0%, rgba(11, 43, 106, 0.1) 100%);
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #009961;
  margin-top: 15px;
  color: #333;
  font-size: 16px;
}

/* Video Box Enhanced */
.video-box-enhanced {
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.video-box-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Course Features Section
--------------------------------------------------------------*/
.course-features {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.course-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0B2B6A 0%, #009961 50%, #0B2B6A 100%);
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(11, 43, 106, 0.1) 0%, rgba(0, 153, 97, 0.1) 100%);
  color: #0B2B6A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.section-badge i {
  color: #F9C72E;
  font-size: 16px;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.section-main-title {
  font-size: 36px;
  font-weight: 800;
  color: #0B2B6A;
  margin-bottom: 15px;
  position: relative;
}

.section-description {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Feature Card Base */
.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(11, 43, 106, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  transition: width 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(11, 43, 106, 0.12);
}

.feature-card:hover::before {
  width: 6px;
}

/* Icon Box */
.feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon-box i {
  font-size: 24px;
  color: #fff;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* Feature Content */
.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0B2B6A;
  margin: 0 0 5px 0;
}

.feature-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.feature-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
}

.feature-status.success {
  color: #009961;
}

.feature-status i {
  font-size: 16px;
}

/* Category Colors */
/* Schedule - Blue */
.feature-schedule::before { background: linear-gradient(180deg, #0B2B6A 0%, #1e40af 100%); }
.feature-schedule .feature-icon-box { background: linear-gradient(135deg, #0B2B6A 0%, #1e40af 100%); }

/* Benefit - Green */
.feature-benefit::before { background: linear-gradient(180deg, #009961 0%, #059669 100%); }
.feature-benefit .feature-icon-box { background: linear-gradient(135deg, #009961 0%, #059669 100%); }

/* Material - Purple */
.feature-material::before { background: linear-gradient(180deg, #7c3aed 0%, #8b5cf6 100%); }
.feature-material .feature-icon-box { background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); }

/* Support - Orange */
.feature-support::before { background: linear-gradient(180deg, #ea580c 0%, #f97316 100%); }
.feature-support .feature-icon-box { background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); }

/* Community - Teal */
.feature-community::before { background: linear-gradient(180deg, #0891b2 0%, #06b6d4 100%); }
.feature-community .feature-icon-box { background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%); }

/* Responsive */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-main-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .course-features {
    padding: 50px 0;
  }
  
  .section-main-title {
    font-size: 26px;
  }
  
  .feature-card {
    padding: 20px;
  }
}

/* Course Info Enhanced */
.course-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-info-enhanced {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(11, 43, 106, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-info-enhanced h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0B2B6A;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-info-enhanced h5 i {
  font-size: 20px;
  color: #0B2B6A;
  transition: transform 0.3s ease;
}

.course-info-enhanced p {
  margin: 0;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.success-icon {
  color: #009961 !important;
  font-size: 18px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover Lift Effect */
.hover-lift {
  cursor: pointer;
}

.hover-lift:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(11, 43, 106, 0.15);
  border-color: rgba(11, 43, 106, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hover-lift:hover h5 i {
  transform: rotate(360deg) scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .course-title {
    font-size: 28px;
  }
  
  .section-divider h4 {
    font-size: 20px;
  }
  
  .feature-list li span {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .course-details-enhanced {
    padding: 40px 0;
  }
  
  .course-title {
    font-size: 24px;
  }
  
  .benefits-card,
  .target-card,
  .concept-card {
    padding: 20px;
  }
  
  .section-divider h4 {
    font-size: 18px;
    padding: 12px 15px;
  }
  
  .feature-list li {
    padding: 10px 0;
  }
  
  .course-info-enhanced {
    padding: 12px 15px;
  }
  
  .course-info-enhanced h5 {
    font-size: 14px;
  }
}

/* Additional Animation Classes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Grid Layout for Features
--------------------------------------------------------------*/

/* Grid Container */
.grid-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(11, 43, 106, 0.1);
}

.grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(11, 43, 106, 0.3);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Grid Items */
.grid-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid rgba(11, 43, 106, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0B2B6A 0%, #009961 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.grid-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.grid-item:hover {
  transform: translateX(5px);
  border-color: rgba(11, 43, 106, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 5px 15px rgba(11, 43, 106, 0.1);
}

/* Icon Wrapper */
.grid-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0B2B6A 0%, #1a4d8f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11, 43, 106, 0.2);
  transition: all 0.3s ease;
}

.grid-icon-wrapper i {
  font-size: 26px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.grid-item:hover .grid-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 15px rgba(11, 43, 106, 0.3);
}

.grid-item:hover .grid-icon-wrapper i {
  transform: scale(1.1);
}

/* Grid Content */
.grid-content {
  flex: 1;
}

.grid-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0B2B6A;
  margin: 0 0 8px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.grid-item:hover .grid-content h5 {
  color: #1a4d8f;
}

.grid-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .grid-card {
    padding: 20px;
  }
  
  .grid-item {
    padding: 15px;
  }
  
  .grid-icon-wrapper {
    width: 45px;
    height: 45px;
  }
  
  .grid-icon-wrapper i {
    font-size: 22px;
  }
  
  .grid-content h5 {
    font-size: 15px;
  }
  
  .grid-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .grid-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .grid-icon-wrapper i {
    font-size: 20px;
  }
  
  .grid-content h5 {
    font-size: 14px;
  }
}

/* Animation Enhancement for Grid Items */
@keyframes gridItemFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.grid-item {
  animation: gridItemFadeIn 0.5s ease forwards;
}

/*--------------------------------------------------------------
# Material Grid Layout
--------------------------------------------------------------*/

/* Carousel Wrapper */
.materials-carousel-wrapper {
  position: relative;
  margin-top: 30px;
  padding: 0 60px;
}

/* Carousel Track */
.materials-carousel-track {
  overflow: hidden;
  width: 100%;
}

/* Material Grid - Carousel Mode */
.material-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Navigation Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(to bottom, #0f61a8 5%, #0b2b6a 100%);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(114, 4, 207, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav-btn:hover:not(:disabled) {
  background: linear-gradient(to bottom, #0b2b6a 5%, #0f61a8 100%);
  box-shadow: 0 4px 12px rgba(114, 4, 207, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #ccc;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-nav-btn i {
  font-size: 28px;
  line-height: 1;
}

.material-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11, 43, 106, 0.1);
  width: calc((100% - 30px) / 2);
  flex-shrink: 0;
}

.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: rgba(11, 43, 106, 0.3);
}

.material-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.material-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.material-card:hover .material-img img {
  transform: scale(1.1);
}

.material-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(11, 43, 106, 0.8) 0%, rgba(11, 43, 106, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.material-card:hover .material-overlay {
  opacity: 1;
}

.material-overlay h4 {
  color: #fff;
  font-weight: 700;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.material-card:hover .material-overlay h4 {
  transform: translateY(0);
}

.material-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
}

.material-header {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.material-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0B2B6A;
  margin: 0;
}

.material-header .meeting-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0B2B6A 0%, #1a4d8f 100%);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
}

.material-desc {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.material-attributes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.material-attr-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.attr-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.attr-value {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
}

.attr-value i {
  color: #009961;
}

.attr-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.badge-primary { background: rgba(11, 43, 106, 0.1); color: #0B2B6A; }
.badge-success { background: rgba(0, 153, 97, 0.1); color: #009961; }
.badge-warning { background: rgba(255, 193, 7, 0.1); color: #d39e00; }
.badge-danger { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.badge-secondary { background: rgba(108, 117, 125, 0.1); color: #6c757d; }


/* Responsive Styles */
@media (max-width: 992px) {
  .materials-carousel-wrapper {
    padding: 0 50px;
  }
  
  .carousel-nav-btn {
    width: 45px;
    height: 45px;
  }
  
  .carousel-nav-btn i {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .materials-carousel-wrapper {
    padding: 0 45px;
  }
  
  .material-card {
    min-width: 100%;
  }
  
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-nav-btn i {
    font-size: 20px;
  }
  
  .material-img {
    height: 200px;
  }
}
