.section-title,
p {
  margin-bottom: 1rem;
}
#preloader,
body {
  background-color: var(--primary-dark);
}
#heroVideo,
.karate-icon {
  top: 50%;
  left: 50%;
  z-index: 2;
}
.gallery-overlay h5,
.hero-title,
.section-title {
  text-transform: uppercase;
}
.belt-level,
.preloader-content,
.testimonial-card {
  text-align: center;
}
.about-image,
.blog-post,
.class-card,
.featured-post,
.footer,
.instructor-card,
.instructor-image,
.map-container,
.related-post {
  overflow: hidden;
}
#heroVideo,
.author-avatar,
.author-avatar-detail,
.author-box-avatar,
.blog-post-img,
.comment-avatar,
.featured-image,
.featured-post-img,
.parent-avatar,
.recent-post-img,
.recent-post-img-sidebar,
.related-post-img,
.student-avatar,
.student-avatar-blackbelt,
.student-avatar-selfdefense {
  object-fit: cover;
  object-fit: cover;
}
.comparison-table,
.refund-table,
.schedule-table,
.terms-table {
  border-collapse: collapse;
}
:root {
  --primary-dark: #121212;
  --secondary-dark: #1e1e1e;
  --accent-red: #d62828;
  --accent-light-red: #e63946;
  --light-gray: #f8f9fa;
  --medium-gray: #bbbbbb;
  --dark-gray: #343a40;
  --white: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Poppins, sans-serif;
  color: var(--white);
  overflow-x: hidden;
}
.lang-switcher-circle {
    display: flex;
    align-items: center;
    gap: 12px; /* 국기 사이 간격 */
    justify-content: center;
}

.lang-circle {
    display: inline-block;
    transition: all 0.2s ease;
    text-decoration: none;
}

.lang-circle img {
    width: 20px;  /* 원형 크기 - 적절하게 조정 가능 */
    height: 20px;
    object-fit: cover;
    border-radius: 50%; /* ★ 핵심: 이미지를 완벽한 원형으로 만듦 */
    border: 1px solid #fff; /* 국기 테두리에 흰색 선을 넣어 더 깔끔하게 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.15); /* 은은한 그림자로 입체감 부여 */
}

.lang-circle:hover {
    transform: scale(1.2); /* 마우스 올리면 살짝 커짐 */
}

.lang-circle img:hover {
    border-color: #ddd; /* 호버 시 테두리 색상 변경 */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Oswald, sans-serif;
  font-weight: 600;
}
p {
  line-height: 1.6;
}
.section-title {
  font-size: 2.5rem;
  letter-spacing: 1px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  font-family: Montserrat, sans-serif;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s;
}
.preloader-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}
.karate-icon {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: var(--accent-red);
}
.spinner-border {
  width: 120px !important;
  height: 120px !important;
  border-width: 4px !important;
}
#home .hero-content {
  padding-top: 15%;
}
.preloader-text {
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--white);
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-red);
  color: var(--white);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
}
.scroll-top-btn:hover {
  background-color: var(--accent-light-red);
  transform: translateY(-3px);
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
.navbar {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 15px 0;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-cta,
.btn-danger,
.navbar-nav .nav-link::after {
  background-color: var(--accent-red);
}
.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(18, 18, 18, 0.98);
}
.btn-cta:hover,
.btn-danger:hover {
  background-color: var(--accent-light-red);
}
.logo-container {
  display: flex;
  align-items: center;
}
.class-icon,
.feature-icon {
  display: flex;
  justify-content: center;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--accent-red);
  margin-right: 10px;
}
.logo-text {
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.hero-subtitle,
.navbar-nav .nav-link {
  font-weight: 500;
  font-family: Montserrat, sans-serif;
}
.logo-accent {
  color: var(--accent-red);
  font-size: 12px;
}
.navbar-nav .nav-link {
  color: var(--white) !important;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s;
}
.btn-cta,
.hero-buttons .btn {
  transition: 0.3s;
  border-radius: 40px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--accent-red) !important;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s;
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.btn-cta {
  color: var(--white) !important;
  padding: 8px 20px !important;
  margin-left: 10px;
}
.btn-cta:hover {
  transform: translateY(-2px);
}
.hero-media-container,
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#heroVideo {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}
.about-text,
.hero-description {
  font-size: 1.1rem;
  color: var(--light-gray);
}
.hero-description {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.hero-buttons .btn {
  margin: 0 10px;
  padding: 12px 30px;
  font-weight: 600;
  height: auto;
}
.btn {
  border-radius: 40px;
  height: auto;
}
.btn-danger {
  border-color: var(--accent-red);
}
.btn-danger:hover {
  border-color: var(--accent-light-red);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(214, 40, 40, 0.3);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: #fff;
}
.rounded {
  border-radius: 40px !important;
}
.about-section,
.instructors-section,
.testimonials-section {
  background-color: var(--secondary-dark);
}
.about-text {
  margin-bottom: 2rem;
}
.feature-item {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  height: 100%;
  transition: transform 0.3s;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.class-card:hover,
.instructor-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-red);
  border-radius: 50%;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.feature-item h4 {
  color: var(--white);
  margin-bottom: 0.8rem;
}
.feature-item p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}
.about-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.contact-form-card,
.contact-info-card,
.testimonial-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
}
.classes-section,
.contact-section,
.gallery-section {
  background-color: var(--primary-dark);
}
.class-card {
  background-color: var(--secondary-dark);
  border-radius: 40px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.class-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.class-icon {
  background-color: var(--accent-red);
  height: 80px;
  align-items: center;
  font-size: 2.5rem;
}
.contact-icon,
.gallery-overlay {
  display: flex;
  justify-content: center;
}
.class-header {
  padding: 1.5rem 1.5rem 0.5rem;
}
.class-header h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.class-body {
  padding: 0 1.5rem 1.5rem;
}
.class-body p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.class-features,
.footer-links {
  list-style: none;
  padding-left: 0;
}
.class-features li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--light-gray);
}
.class-features i {
  margin-right: 8px;
}
.class-footer {
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.instructor-card {
  background-color: var(--primary-dark);
  border-radius: 40px;
  transition: transform 0.3s;
  height: 100%;
}
.instructor-image {
  position: relative;
  height: 250px;
}
.belt-level,
.footer h5::after,
.footer::before {
  position: absolute;
  left: 0;
}
.gallery-item img,
.gallery-item-adult img,
.gallery-item-blackbelt img,
.gallery-item-selfdefense img,
.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.instructor-card:hover .instructor-image img {
  transform: scale(1.05);
}
.belt-level {
  bottom: 0;
  right: 0;
  background-color: rgba(214, 40, 40, 0.9);
  color: var(--white);
  padding: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.footer,
.footer h5,
.hero-section,
.subscribe-form {
  position: relative;
}
.instructor-info {
  padding: 1.5rem;
}
.instructor-info h4,
.testimonial-author h5 {
  color: var(--white);
  margin-bottom: 0.3rem;
}
.instructor-title {
  color: var(--accent-red);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: Montserrat, sans-serif;
}
.instructor-bio {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.instructor-experience {
  color: var(--light-gray);
  font-size: 0.85rem;
}
.gallery-overlay {
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h5 {
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.testimonial-card {
  background-color: var(--primary-dark);
  padding: 2.5rem;
  height: 100%;
}
.testimonial-rating {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--light-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.testimonial-author p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--medium-gray) !important;
}
.carousel-indicators button.active {
  background-color: var(--accent-red) !important;
}
.contact-form-card,
.contact-info-card {
  background-color: var(--secondary-dark);
  padding: 2rem;
  height: 100%;
}
.contact-form-card h4,
.contact-info-card h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 0.75rem 1rem;
}
.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-red);
  color: var(--white);
  box-shadow: 0 0 0 0.25rem rgba(214, 40, 40, 0.25);
}
.form-control::placeholder {
  color: var(--medium-gray);
}
.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-red);
  border-radius: 50%;
  align-items: center;
  margin-right: 1rem;
  font-size: 1.2rem;
}
.contact-details h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.contact-details p {
  color: var(--medium-gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}
.footer-logo,
.social-links a {
  display: flex;
  color: var(--white);
}
.author-social,
.social-links,
.social-share {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a,
.footer-social a,
.social-share a {
  display: inline-flex;
  text-decoration: none;
}
.social-links a:hover {
  background-color: var(--accent-red);
  transform: translateY(-3px);
}
.map-container {
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.footer {
  background: linear-gradient(135deg, #0a0a0a 0, #1a1a1a 100%);
  border-top: 2px solid var(--accent-red);
}
.footer hr,
hr {
  border-color: rgba(255, 255, 255, 0.1);
}
.footer::before {
  content: "";
  top: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-red),
    transparent
  );
}
.footer-logo {
  align-items: center;
  font-size: 1.8rem;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.footer h5,
.subscribe-btn {
  font-weight: 600;
  text-transform: uppercase;
}
.footer-logo i {
  color: var(--accent-red);
  margin-right: 12px;
  font-size: 2.2rem;
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
}
.footer h5,
.footer-social a i {
  font-size: 1.1rem;
}
.footer-text {
  color: var(--medium-gray);
  max-width: 400px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-family: Oswald, sans-serif;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
}
.footer-bottom p,
.footer-links a,
.newsletter-text {
  color: var(--medium-gray);
}
.footer h5::after {
  content: "";
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-red);
}
.footer-links li {
  margin-bottom: 0.9rem;
}
.footer-links a {
  transition: 0.3s;
  align-items: center;
  font-size: 0.95rem;
}
.footer-links a::before {
  content: "›";
  margin-right: 8px;
  color: var(--accent-red);
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--accent-red);
  transform: translateX(5px);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.newsletter-box {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 40px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.newsletter-box h5 {
  margin-bottom: 0.8rem;
}
.newsletter-text {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.subscribe-btn,
.subscribe-input {
  width: 100%;
  color: var(--white);
  transition: 0.3s;
}
.subscribe-input {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.subscribe-input:focus {
  outline: 0;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.subscribe-btn {
  padding: 12px 20px;
  background: var(--accent-red);
  border: none;
  border-radius: 40px;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 1px;
}
.subscribe-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}
.subscribe-btn:active {
  transform: translateY(0);
}
.footer hr {
  margin: 2.5rem 0;
}
.footer-bottom p {
  font-size: 0.9rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: var(--white);
  margin-left: 5px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}
.success-message {
  display: none;
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 8px;
  animation: 0.3s fadeIn;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-buttons .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}
@media (max-width: 768px) {
  .footer-social {
    margin-top: 1.5rem;
    text-align: center !important;
  }
  .footer-social a {
    margin: 0 6px;
  }
  .newsletter-box {
    margin-top: 2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .navbar-nav .btn-cta {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
  .gallery-item {
    height: 200px;
  }
}
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-image,
.hero-overlay {
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}
.hero-bg-image {
  position: absolute;
  background-image: url("../images/photo-1593359677879-a4bb92f829d1.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
}
.blogdetail-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8))
      center/cover,
    url("../images/photo-1544367567-0f2fcb009e0b.jpg")
      center/cover;
  color: #fff;
  padding: 160px 0 80px;
  text-align: center;
  margin-top: 80px;
}
.blogdetail-hero h1 {
  font-size: 3rem;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blogdetail-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.author-info h4,
.author-info p {
  margin-bottom: 5px;
}
.adult-content,
.blackbelt-content,
.blogdetail-content,
.kids-content,
.selfdefense-content {
  padding: 80px 0;
}
.blogdetail-main {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.author-avatar-detail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid #f0f0f0;
}
.author-info h4 {
  color: #333;
}
.author-info p,
.post-meta {
  color: #6c757d;
  font-size: 0.9rem;
}
.post-meta {
  display: flex;
  gap: 20px;
}
.blog-post-meta i,
.post-meta i {
  margin-right: 5px;
}
.post-categories {
  display: block;
  margin: auto auto 30px;
  gap: 10px;
}
.post-category {
  display: inline-block;
  background-color: #f8f9fa;
  color: #dc3545;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.post-category:hover,
.tag-sidebar:hover,
.tag:hover {
  background-color: #dc3545;
  color: #fff;
}
.featured-image {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.blog-content {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
}
.blog-content h2 {
  color: #dc3545;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 1.8rem;
}
.blog-content h3 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.blog-content p,
.form-group {
  margin-bottom: 20px;
}
.blog-content ol,
.blog-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.adult-section li,
.blackbelt-section li,
.blog-content li,
.kids-section li,
.policy-section li,
.privacy-section li,
.selfdefense-section li,
.sidebar-categories li,
.terms-section li {
  margin-bottom: 10px;
}
.quote-box {
  background-color: #f8f9fa;
  border-left: 5px solid #dc3545;
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
}
.author-box,
.key-points {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}
.quote-author {
  text-align: right;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}
.author-social a:hover,
.blog-post-title a:hover,
.point-icon,
.recent-post-content h4 a:hover,
.recent-post-content-sidebar h4 a:hover,
.related-post-title a:hover {
  color: #dc3545;
}
.key-points {
  margin: 40px 0;
}
.author-box,
.share-post {
  margin-top: 50px;
  display: flex;
}
.key-points h3 {
  color: #dc3545;
  margin-top: 0;
  margin-bottom: 20px;
}
.point-item {
  display: flex;
  margin-bottom: 15px;
}
.point-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}
.share-post {
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.share-post h4 {
  margin-right: 20px;
  margin-bottom: 0;
  color: #333;
}
.social-share a {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #555;
  transition: 0.3s;
}
.social-share a:hover {
  transform: translateY(-3px);
}
.social-share .facebook:hover {
  background-color: #3b5998;
  color: #fff;
}
.social-share .twitter:hover {
  background-color: #1da1f2;
  color: #fff;
}
.social-share .linkedin:hover {
  background-color: #0077b5;
  color: #fff;
}
.social-share .pinterest:hover {
  background-color: #bd081c;
  color: #fff;
}
.author-box {
  align-items: center;
}
.author-box-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 25px;
  flex-shrink: 0;
  border: 3px solid #fff;
}
.author-box-content h3 {
  margin-top: 0;
  color: #333;
  margin-bottom: 10px;
}
.author-box-content p {
  color: #555;
  margin-bottom: 15px;
}
.author-social a {
  color: #6c757d;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.comments-section {
  margin-top: 60px;
}
.comments-section h3,
.related-posts h3 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #dc3545;
  font-family: Oswald, sans-serif;
}
.comment {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.comment:last-child {
  border-bottom: none;
}
.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}
.comment-content h5 {
  margin-bottom: 5px;
  color: #fff;
}
.featured-post-title a,
a {
  color: #fff;
  text-decoration: none;
}
.comment-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.comment-text {
  color: #555;
  line-height: 1.6;
}
.comment-reply {
  margin-left: 80px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.comment-form {
  margin-top: 50px;
}
.comment-form h4 {
  color: #fff;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
}
.form-control {
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.blogdetail-sidebar,
.related-post {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.related-posts {
  margin-top: 80px;
}
.related-post {
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.related-post-img {
  width: 100%;
  height: 200px;
}
.related-post-content {
  padding: 20px;
}
.related-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.recent-post-content h4 a,
.recent-post-content-sidebar h4 a,
.related-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.author-title,
.related-post-date {
  color: #6c757d;
  font-size: 0.9rem;
}
.blogdetail-sidebar {
  padding: 30px;
  margin-bottom: 30px;
}
.recent-posts,
.recent-posts-sidebar,
.sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.recent-post,
.recent-post-sidebar {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.recent-post-sidebar:last-child,
.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.recent-post-img,
.recent-post-img-sidebar {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  margin-right: 15px;
  flex-shrink: 0;
}
.recent-post-content h4,
.recent-post-content-sidebar h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.4;
}
.recent-post-date,
.recent-post-date-sidebar {
  color: #6c757d;
  font-size: 0.8rem;
}
.tag,
.tag-sidebar {
  display: inline-block;
  background-color: #f8f9fa;
  color: #555;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}
.newsletter-sidebar,
.newsletter-sidebar-detail {
  background-color: #111;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
}
.elite-box h3,
.newsletter-sidebar h4,
.newsletter-sidebar-detail h4 {
  color: #fff;
  margin-bottom: 15px;
}
.newsletter-sidebar p,
.newsletter-sidebar-detail p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.8;
}
.newsletter-sidebar input,
.newsletter-sidebar-detail input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
}
.newsletter-sidebar button,
.newsletter-sidebar-detail button {
  width: 100%;
  padding: 12px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}
.newsletter-sidebar button:hover,
.newsletter-sidebar-detail button:hover {
  background-color: #c82333;
}
@media (max-width: 768px) {
  #heroVideo {
    display: none;
  }
  .hero-bg-image {
    z-index: 2;
  }
  .blogdetail-hero {
    padding: 120px 0 60px;
  }
  .blogdetail-hero h1 {
    font-size: 2.2rem;
  }
  .blogdetail-content {
    padding: 50px 0;
  }
  .blogdetail-main {
    padding: 30px;
  }
  .featured-image {
    height: 300px;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  .author-box-avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .comment {
    flex-direction: column;
  }
  .comment-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .comment-reply {
    margin-left: 0;
  }
}
.blog-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8))
      center/cover,
    url("../images/photo-1544367567-0f2fcb009e0b.jpg")
      center/cover;
  color: #fff;
  padding: 160px 0 100px;
  text-align: center;
  margin-top: 80px;
}
.adult-hero h1,
.blackbelt-hero h1,
.blog-hero h1,
.kids-hero h1,
.privacy-hero h1,
.refund-hero h1,
.selfdefense-hero h1,
.terms-hero h1 {
  font-size: 3.5rem;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.adult-hero p,
.blackbelt-hero p,
.blog-hero p,
.kids-hero p,
.selfdefense-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 30px;
}
.blog-content,
.privacy-content,
.refund-content,
.terms-content {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.blog-post {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-category,
.blog-read-more {
  transition: 0.3s;
  font-weight: 600;
}
.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.blog-post-img {
  width: 100%;
  height: 300px;
}
.blog-post-content {
  padding: 30px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #6c757d;
  font-size: 0.9rem;
}
.blog-post-meta span {
  margin-right: 15px;
}
.blog-post-title {
  color: #333;
  font-family: Oswald, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-post-excerpt {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-post-categories {
  margin-bottom: 15px;
}
.blog-category {
  display: inline-block;
  background-color: #f8f9fa;
  color: #dc3545;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-right: 10px;
  margin-bottom: 10px;
}
.blog-category:hover {
  background-color: #dc3545;
  color: #fff;
  text-decoration: none;
}
.blog-read-more {
  color: #dc3545;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.blog-read-more:hover {
  color: #c82333;
  text-decoration: underline;
}
.blog-read-more i {
  margin-left: 5px;
  transition: transform 0.3s;
}
.blog-read-more:hover i {
  transform: translateX(5px);
}
.blog-sidebar {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
  color: #dc3545;
  border-bottom: 3px solid #dc3545;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
}
.sidebar-search {
  position: relative;
  margin-bottom: 30px;
}
.sidebar-search input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
}
.sidebar-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: 0.3s;
}
.page-item.active .page-link,
.page-link:hover {
  background-color: #dc3545;
  border-color: #dc3545;
}
.sidebar-categories a:hover {
  color: #dc3545;
  padding-left: 10px;
}
.sidebar-categories span {
  background-color: #f8f9fa;
  color: #6c757d;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination {
  justify-content: center;
  margin-top: 50px;
}
.page-link {
  color: #dc3545;
  border: 1px solid #ddd;
  margin: 0 5px;
  border-radius: 5px;
  transition: 0.3s;
}
.benefit-card,
.phase-card,
.program-card,
.program-card-selfdefense {
  transition: transform 0.3s, box-shadow 0.3s;
}
.page-item.active .page-link,
.page-link:hover {
  color: #fff;
}
.featured-post {
  position: relative;
  margin-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.featured-post-img {
  width: 100%;
  height: 400px;
}
.featured-post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  padding: 40px;
}
.featured-post-badge {
  display: inline-block;
  background-color: #dc3545;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.featured-post-title {
  font-size: 2.2rem;
  font-family: Oswald, sans-serif;
  margin-bottom: 15px;
  line-height: 1.2;
}
.featured-post-title a:hover {
  color: #ddd;
}
.featured-post-excerpt {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}
.blog-author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid #f0f0f0;
}
.author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 80px;
  }
  .blog-hero h1 {
    font-size: 2.5rem;
  }
  .blog-content {
    padding: 50px 0;
  }
  .featured-post-img {
    height: 300px;
  }
  .featured-post-overlay {
    padding: 25px;
  }
  .featured-post-title {
    font-size: 1.8rem;
  }
  .blog-post-img {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .blogdetail-hero h1,
  .hero-title {
    font-size: 1.8rem;
  }
  .blog-post-title,
  .featured-post-title,
  .preloader-text {
    font-size: 1.5rem;
  }
  .karate-icon {
    font-size: 2.5rem;
  }
  .preloader-icon {
    width: 100px;
    height: 100px;
  }
  .spinner-border {
    width: 100px !important;
    height: 100px !important;
  }
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .blog-post-content,
  .blogdetail-main {
    padding: 20px;
  }
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-meta {
    margin-top: 10px;
  }
}
.privacy-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9))
      center/cover,
    url("../images/photo-1566552881560-0be862a7c445.jpg")
      center/cover;
  color: #fff;
  padding: 150px 0 100px;
  text-align: center;
  margin-top: 80px;
}
.privacy-hero p,
.refund-hero p,
.terms-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
.privacy-section {
  margin-bottom: 50px;
}
.policy-section h2,
.privacy-section h2,
.terms-section h2 {
  color: #dc3545;
  border-bottom: 3px solid #dc3545;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-family: Oswald, sans-serif;
}
.policy-section h3,
.privacy-section h3,
.terms-section h3 {
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.policy-section li,
.policy-section p,
.privacy-section li,
.privacy-section p,
.terms-section li,
.terms-section p {
  color: #555;
  line-height: 1.7;
}
.adult-section ol,
.adult-section ul,
.blackbelt-section ol,
.blackbelt-section ul,
.kids-section ol,
.kids-section ul,
.policy-section ol,
.policy-section ul,
.privacy-section ul,
.selfdefense-section ol,
.selfdefense-section ul,
.terms-section ol,
.terms-section ul {
  padding-left: 20px;
}
.highlight-box {
  background-color: #fff;
  border-left: 5px solid #dc3545;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 30px 0;
}
.contact-privacy {
  background-color: #111;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.acceptance-box h3,
.contact-privacy h3,
.refund-process h3 {
  color: #fff;
  margin-bottom: 25px;
}
.acceptance-box .btn,
.contact-privacy .btn,
.contact-refund .btn {
  margin-top: 15px;
}
.last-updated,
.last-updated-terms {
  background-color: #222;
  color: #aaa;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
.refund-hero,
.term-number,
.terms-hero {
  color: #fff;
  text-align: center;
}
.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9))
      center/cover,
    url("../images/photo-1517836357463-d25dfeac3438.jpg")
      center/cover;
  padding: 150px 0 100px;
  margin-top: 80px;
}
.policy-section,
.terms-section {
  margin-bottom: 50px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.highlight-term,
.info-term,
.warning-term {
  padding: 20px;
  border-radius: 5px;
  margin: 25px 0;
}
.policy-section h4,
.terms-section h4 {
  color: #555;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.highlight-term {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  font-style: italic;
}
.warning-term {
  background-color: #f8d7da;
  border-left: 5px solid #dc3545;
}
.info-term {
  background-color: #d1ecf1;
  border-left: 5px solid #17a2b8;
}
.terms-table {
  width: 100%;
  margin: 25px 0;
}
.terms-table td,
.terms-table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  color: #000;
}
.terms-table th {
  font-weight: 600;
}
.refund-table tr:hover,
.requirements-table tr:hover,
.schedule-table tr:hover,
.schedule-table-adult tr:hover,
.schedule-table-selfdefense tr:hover,
.terms-table tr:hover {
  background-color: #f5f5f5;
}
.acceptance-box,
.refund-process {
  background-color: #111;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  margin-top: 50px;
}
.term-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #dc3545;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 10px;
  font-weight: 700;
}
.refund-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9))
      center/cover,
    url("../images/photo-1599058917212-d750089bc07e.jpg")
      center/cover;
  padding: 150px 0 100px;
  margin-top: 80px;
}
.refund-table {
  width: 100%;
  margin: 25px 0;
  border: 1px solid #ddd;
}
.refund-table td,
.refund-table th,
.requirements-table td,
.requirements-table th,
.schedule-table td,
.schedule-table th,
.schedule-table-adult td,
.schedule-table-adult th,
.schedule-table-selfdefense td,
.schedule-table-selfdefense th {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  color: #000;
}
.refund-table th,
.requirements-table th,
.schedule-table th,
.schedule-table-adult th,
.schedule-table-selfdefense th {
  background-color: #dc3545;
  color: #fff;
  font-weight: 600;
}
.refund-table tr:nth-child(2n),
.requirements-table tr:nth-child(2n),
.schedule-table tr:nth-child(2n),
.schedule-table-adult tr:nth-child(2n),
.schedule-table-selfdefense tr:nth-child(2n) {
  background-color: #f9f9f9;
}
.policy-card {
  border-left: 5px solid #dc3545;
  padding: 20px;
  margin: 25px 0;
  background-color: #f8f9fa;
  border-radius: 0 5px 5px 0;
}
.comparison-table .highlight,
.no-refund {
  background-color: #fff3cd;
}
.no-refund {
  border-left: 5px solid #ffc107;
}
.partial-refund {
  border-left: 5px solid #17a2b8;
  background-color: #d1ecf1;
}
.full-refund {
  border-left: 5px solid #28a745;
  background-color: #d4edda;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  margin: 10px;
  background-color: #222;
  border-radius: 10px;
  position: relative;
}
.step-number {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #dc3545;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.contact-refund {
  background-color: #222;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.last-updated-refund {
  background-color: #333;
  color: #aaa;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
.benefit-icon,
.benefit-icon-blackbelt,
.policy-icon,
.principle-icon {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 15px;
}
.kids-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7))
      center/cover,
    url("../images/photo-1549778399-f94fd24d4697.jpg")
      center/cover;
  color: #fff;
  padding: 160px 0 100px;
  text-align: center;
  margin-top: 80px;
}
.age-group-card,
.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.adult-section,
.blackbelt-section,
.kids-section,
.selfdefense-section {
  margin-bottom: 80px;
}
.adult-section h2,
.blackbelt-section h2,
.kids-section h2,
.selfdefense-section h2 {
  color: #dc3545;
  border-bottom: 3px solid #dc3545;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
}
.kids-section h3 {
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.adult-section li,
.adult-section p,
.blackbelt-section li,
.blackbelt-section p,
.kids-section li,
.kids-section p,
.selfdefense-section li,
.selfdefense-section p {
  color: #fff;
  line-height: 1.7;
}
.benefit-card {
  border-radius: 10px;
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.schedule-table {
  width: 100%;
  margin: 25px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
tbody,
td,
tfoot,
th,
thead,
tr {
  background-color: #fff;
}
.age-group-card {
  border-radius: 10px;
  border-top: 5px solid #dc3545;
}
.age-badge,
.audience-badge,
.belt-badge,
.level-badge {
  display: inline-block;
  background-color: #dc3545;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}
.kids-gallery {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
  border-radius: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  height: 250px;
}
.gallery-item-adult:hover img,
.gallery-item-blackbelt:hover img,
.gallery-item-selfdefense:hover img,
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay,
.gallery-overlay-adult,
.gallery-overlay-blackbelt,
.gallery-overlay-selfdefense {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 20px;
}
.parent-testimonial {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #dc3545;
}
.parent-avatar,
.student-avatar,
.student-avatar-blackbelt,
.student-avatar-selfdefense {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.cta-kids {
  background: linear-gradient(rgba(220, 53, 69, 0.9), rgba(220, 53, 69, 0.8))
      center/cover,
    url("../images/kids.jpeg")
      center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 30px;
}
.cta-kids h2,
.cta-selfdefense h2 {
  color: #fff;
  border-bottom: 3px solid #fff;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.faq-item,
.faq-item-adult,
.faq-item-blackbelt,
.faq-item-selfdefense {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.faq-question,
.faq-question-adult,
.faq-question-blackbelt,
.faq-question-selfdefense {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question-adult:hover,
.faq-question-blackbelt:hover,
.faq-question-selfdefense:hover,
.faq-question:hover {
  color: #c82333;
}
.faq-answer,
.faq-answer-adult,
.faq-answer-blackbelt,
.faq-answer-selfdefense {
  color: #555;
  line-height: 1.7;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}
.feature-list-adult li,
.feature-list-blackbelt li,
.feature-list-selfdefense li,
.kids-feature-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.feature-list-selfdefense li:before,
.kids-feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: 700;
}
.adult-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8))
      center/cover,
    url("../images/adult.jpeg")
      center/cover;
  color: #fff;
  padding: 160px 0 100px;
  text-align: center;
  margin-top: 80px;
}
.adult-section h3,
.blackbelt-section h3,
.selfdefense-section h3 {
  color: #fff;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.adult-section h4,
.blackbelt-section h4,
.selfdefense-section h4 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.program-card,
.program-card-selfdefense {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #dc3545;
}
.phase-card:hover,
.program-card-selfdefense:hover,
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.program-icon,
.program-icon-selfdefense {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 20px;
}
.requirements-table,
.schedule-table-adult,
.schedule-table-selfdefense {
  width: 100%;
  margin: 25px 0;
  border-collapse: collapse;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.benefit-item,
.benefit-item-blackbelt,
.principle-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #dc3545;
}
.program-comparison,
.technique-box {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.adult-gallery,
.selfdefense-gallery {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}
.gallery-item-adult,
.gallery-item-blackbelt,
.gallery-item-selfdefense {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  height: 300px;
}
.student-testimonial,
.student-testimonial-selfdefense,
.testimonial-blackbelt {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #dc3545;
}
.cta-adult {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85))
      center/cover,
    url("../images/2150399986.jpg")
      center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-adult h2,
.cta-blackbelt h2 {
  color: #fff;
  border-bottom: 3px solid #dc3545;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.feature-list-adult li:before,
.feature-list-blackbelt li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-size: 1.5rem;
  line-height: 1;
}
.program-comparison {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
}
.comparison-table {
  width: 100%;
  margin: 20px 0;
}
.comparison-table td,
.comparison-table th {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid #ddd;
  color: #000;
}
.comparison-table th {
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}
.fitness-level,
.rank-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.level-beginner {
  background-color: #d4edda;
  color: #155724;
}
.level-intermediate {
  background-color: #cce5ff;
  color: #004085;
}
.level-advanced {
  background-color: #f8d7da;
  color: #721c24;
}
.selfdefense-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8))
      center/cover,
    url("../images/Self-Defense.jpg") center/cover;
  color: #fff;
  padding: 160px 0 100px;
  text-align: center;
  margin-top: 80px;
}
.cta-selfdefense {
  background: linear-gradient(rgba(220, 53, 69, 0.9), rgba(220, 53, 69, 0.85))
      center/cover,
    url("../images/Self-Defense.jpg")
      center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 30px;
}
.form-control,
.form-select {
  color: #ddd;
  border: 1px solid #ddd;
}
.scenario-card,
.technique-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.technique-box {
  padding: 30px;
  height: 100%;
}
.technique-icon {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 15px;
}
.scenario-card {
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #ffc107;
}
.scenario-title {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 10px;
}
.blackbelt-warning,
.warning-box {
  border-left: 5px solid #dc3545;
  padding: 20px;
  border-radius: 5px;
  margin: 25px 0;
}
.blackbelt-info,
.info-box {
  border-left: 5px solid #17a2b8;
  padding: 20px;
  border-radius: 5px;
  margin: 25px 0;
}
.duration-badge {
  display: inline-block;
  background-color: #6c757d;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.blackbelt-highlight,
.program-highlight {
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 5px;
  margin: 25px 0;
}
.blackbelt-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85))
      center/cover,
    url("../images/History.jpg")
      center/cover;
  color: #fff;
  padding: 160px 0 100px;
  text-align: center;
  margin-top: 80px;
}
.phase-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #dc3545;
  position: relative;
}
.phase-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #dc3545;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.phase-icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 20px;
  margin-top: 10px;
}
.blackbelt-gallery {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
  border-radius: 30px;
  margin-bottom: 20px;
}
.cta-blackbelt {
  background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9))
      center/cover,
    url("../images/Warrior.jpeg")
      center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}
.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.timeline-icon {
  width: 50px;
  height: 50px;
  background-color: #dc3545;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
  z-index: 2;
}
.timeline-content {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  border-left: 3px solid #dc3545;
}
.timeline-content h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
}
.timeline-line {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #dc3545;
  z-index: 1;
}
.elite-box {
  background-color: #111;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 30px 0;
  border: 2px solid #dc3545;
}
.belt-display {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 15px;
}
.belt-sample {
  width: 80px;
  height: 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}
.belt-white {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}
.belt-yellow {
  background-color: #ffc107;
}
.belt-orange {
  background-color: #fd7e14;
}
.belt-green {
  background-color: #28a745;
}
.belt-blue {
  background-color: #007bff;
}
.belt-purple {
  background-color: #6f42c1;
}
.belt-brown {
  background-color: #8b4513;
}
.belt-black {
  background-color: #000;
}
.rank-1st {
  background-color: gold;
  color: #333;
}
.rank-2nd {
  background-color: silver;
  color: #333;
}
.rank-3rd {
  background-color: #cd7f32;
  color: #fff;
}
@media (max-width: 768px) {
  .adult-hero,
  .blackbelt-hero,
  .kids-hero,
  .privacy-hero,
  .refund-hero,
  .selfdefense-hero,
  .terms-hero {
    padding: 120px 0 80px;
  }
  .adult-hero h1,
  .blackbelt-hero h1,
  .kids-hero h1,
  .privacy-hero h1,
  .refund-hero h1,
  .selfdefense-hero h1,
  .terms-hero h1 {
    font-size: 2.5rem;
  }
  .adult-content,
  .blackbelt-content,
  .kids-content,
  .privacy-content,
  .refund-content,
  .selfdefense-content,
  .terms-content {
    padding: 50px 0;
  }
  .policy-section,
  .terms-section {
    padding: 25px;
  }
  .comparison-table,
  .refund-table,
  .requirements-table,
  .schedule-table,
  .schedule-table-adult,
  .schedule-table-selfdefense,
  .terms-table {
    display: block;
    overflow-x: auto;
  }
  .process-steps,
  .timeline-item {
    flex-direction: column;
  }
  .process-step {
    margin: 10px 0;
  }
  .gallery-item {
    height: 200px;
  }
  .gallery-item-adult,
  .gallery-item-blackbelt,
  .gallery-item-selfdefense {
    height: 250px;
  }
  .timeline-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .timeline-line {
    display: none;
  }
}