.course-extra {
  padding: 60px 20px;
  background: #f9f9f9;
}

.courses-hero {
  color: #fff;
  text-align: center;
  height: 450px;
  background: url('../assets/images/Contact Us.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* subtle glow effect */

.outline-btn {
  display: inline-block;
  text-decoration: none;
}

.courses-hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  backdrop-filter: blur(5px);
}

.courses-hero h1 {
  font-size: 46px;
  margin-bottom: 12px;
  font-weight: 700;
}

.courses-hero p {
  max-width: 650px;
  margin: 0 auto 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-actions button {
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* primary button */
.hero-actions button:first-child {
  background: #ff9800;
  color: #fff;
}

.hero-actions button:first-child:hover {
  transform: scale(1.05);
}

/* outline button */
.outline-btn1 {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.outline-btn:hover {
  background: #fff;
  color: #c62828;
}

/* responsive */
@media(max-width:600px) {
  .courses-hero h1 {
    font-size: 18px !important;
  }
  
}

.extra-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.extra-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.extra-box:hover {
  transform: translateY(-5px);
}

.extra-box i {
  font-size: 30px;
  color: #C62828;
  margin-bottom: 10px;
}

.extra-box h3 {
  margin: 10px 0;
  font-size: 18px;
}

.extra-box p {
  font-size: 14px;
  color: #666;
}

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