/* === AKADEMİ NAVBAR === */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 48px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6em;
  font-weight: bold;
  color: #c70000;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.navbar {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-size: 17px;
  text-decoration: none;
  color: #c70000;
  font-weight: 1000;
  padding: 20px 28px;
  border-radius: 6px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(199, 0, 0, 0.1);
}

.nav-links li a:hover {
  background-color: #ffe5e5;
  color: #900000;
  box-shadow: 0 6px 12px rgba(199, 0, 0, 0.25);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 10px 0;
  z-index: 999;
  min-width: 220px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #c70000;
  background-color: #ffffff;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #fff0f0;
}

/* HAMBURGER */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: #c70000;
  display: none;
  user-select: none;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}
.about-akademi-section {
  background-color: #fffdfd;
  padding: 100px 20px;
}

.about-akademi-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-akademi-text {
  flex: 1;
  min-width: 320px;
}

.about-akademi-text h1 {
  font-size: 38px;
  color: #c70000;
  margin-bottom: 20px;
}

.about-akademi-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
}

.about-akademi-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.about-akademi-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Mobil */
@media (max-width: 768px) {
  .about-akademi-container {
    flex-direction: column;
  }

  .about-akademi-text h1 {
    font-size: 28px;
  }

  .about-akademi-text p {
    font-size: 15.5px;
  }
}

/* === HERO === */
.akademi-hero-section {
  background: linear-gradient(to right, #fff, #ffe5e5);
  text-align: center;
  padding: 100px 20px 80px;
  box-shadow: 0 8px 20px rgba(199, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  width: 1200px;
}

/* Dekoratif efekt: yumuşak beyaz blur katman */
.akademi-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.akademi-hero-section > * {
  position: relative;
  z-index: 2;
}

.akademi-hero-section h1 {
  font-size: 3em;
  color: #c70000;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.06);
  animation: fadeInDown 1s ease-out forwards;
  opacity: 0;
}

.akademi-hero-section p {
  font-size: 1.2em;
  color: #444;
  margin: 15px 0 40px;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
}

.akademi-cta-button {
  background-color: #c70000;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(199, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
}

.akademi-cta-button:hover {
  background-color: #900000;
  transform: translateY(-3px);
}

/* Fade-in Animasyonları */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= CAROUSEL (Responsive dahil) ================= */

.carousel {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 16px;
  width: 1200px;
  max-width: 95vw;
  margin: 40px auto;
}

.carousel-images {
  display: flex;
  transition: transform 0.6s ease-in-out;
  align-items: center;
  justify-content: center;
  height: 450px;
}

.carousel-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s;
}

.carousel-img:hover {
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 26px;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}

.indicator {
  width: 30px;
  height: 5px;
  background-color: #c70000;
  opacity: 0.4;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.indicator.active {
  background-color: #c70000;
  opacity: 1;
}

/* ============ RESPONSIVE MEDIA QUERIES ============ */
@media (max-width: 768px) {
  .carousel-images {
    height: 300px;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 10px;
  }

  .indicator {
    width: 20px;
    height: 4px;
  }
}

@media (max-width: 480px) {
  .carousel-images {
    height: 220px;
  }

  .carousel-btn {
    font-size: 18px;
    padding: 8px;
  }

  .indicator {
    width: 16px;
    height: 4px;
  }
}



/* === POPÜLER EĞİTİMLER === */
.akademi-feature-products {
  background: linear-gradient(to bottom, #fff, #fff5f5);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.akademi-feature-products h2 {
  color: #c70000;
  font-size: 2.2em;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.05);
  animation: fadeInDown 0.8s ease-out forwards;
  opacity: 0;
}

.akademi-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

/* KART TASARIMI */
.akademi-product-card {
  background-color: #fff;
  border-left: 5px solid #c70000;
  padding: 24px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.akademi-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Görsel için alan */
.akademi-product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Başlık ve açıklama */
.akademi-product-card h3 {
  font-size: 1.2em;
  color: #c70000;
  margin-bottom: 10px;
}

.akademi-product-card p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
}

/* CTA veya footer alanı (örnek) */
.akademi-product-card .egitim-fiyati {
  margin-top: 12px;
  font-weight: bold;
  color: #900000;
}
.akademi-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #c70000, #ff9999);
  border-radius: 16px 16px 0 0;
}


/* ========== AKADEMİ VİZYON ve MİSYON PARALLAX BLOKLARI ========== */
.akademi-image-block.parallax-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  margin: 60px auto 0 auto;
  padding: 70px 42px;
  background: linear-gradient(120deg, #fff 60%, #c7000013 100%);
  background-attachment: fixed;
  border-radius: 32px;
  box-shadow: 0 14px 40px 0 rgba(60,10,10,0.11);
  max-width: 1400px;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

/* İç yerleşim */
.akademi-vision-block .parallax-img,
.akademi-mission-block .parallax-img {
  flex: 1 1 40%;
  min-width: 280px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInLeft 1.1s both;
}
.akademi-vision-block .block-info,
.akademi-mission-block .block-info {
  flex: 1 1 60%;
  padding: 0 16px;
  animation: fadeInRight 1.1s both;
}

/* Görseller */
.akademi-vision-block .parallax-img img,
.akademi-mission-block .parallax-img img {
  width: 100%;
  max-height: 390px;
  border-radius: 24px;
  box-shadow: 0 6px 26px #c7000018;
  object-fit: cover;
}

/* Başlık & Metin */
.akademi-vision-block .block-info h2,
.akademi-mission-block .block-info h2 {
  color: #c70000;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.akademi-vision-block .block-info p,
.akademi-mission-block .block-info p {
  font-size: 1.16rem;
  color: #353535;
  background: #fff7f7bb;
  border-radius: 13px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px #c7000010;
  line-height: 1.85;
}

/* Animasyon keyframe’leri (kopyalandı) */
@keyframes fadeInLeft  { from {opacity:0;transform:translateX(-36px);} to {opacity:1;transform:translateX(0);} }
@keyframes fadeInRight { from {opacity:0;transform:translateX( 36px);} to {opacity:1;transform:translateX(0);} }

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  .akademi-image-block.parallax-block {
    gap: 20px;
    flex-direction: column;
    min-height: unset;
    padding: 24px 2vw;
  }
  .akademi-vision-block .parallax-img,
  .akademi-mission-block .parallax-img,
  .akademi-vision-block .block-info,
  .akademi-mission-block .block-info {
    max-width: 100%;
  }
  .akademi-vision-block .block-info h2,
  .akademi-mission-block .block-info h2 { font-size: 1.19rem; }
  .akademi-vision-block .block-info p,
  .akademi-mission-block .block-info p { font-size: 1.01rem; }
}
@media (max-width: 650px) {
  .akademi-image-block.parallax-block {
    border-radius: 11px;
    padding: 10px 1vw;
  }
  .akademi-vision-block .block-info h2,
  .akademi-mission-block .block-info h2 { font-size: 1rem; }
  .akademi-vision-block .parallax-img img,
  .akademi-mission-block .parallax-img img { max-height: 160px; }
}



/* === FLOATING BUTONLAR === */
.akademi-floating-contact-buttons {
  position: fixed;
  bottom: 90px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.akademi-contact-btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* === MÜZİK BUTONU === */
.music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  background: white;
  border: 2px solid #c70000;
  color: #c70000;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* === AKADEMİ FOOTER – KIRMIZI TEMA === */
.akademi-footer {
  background-color: #c70000;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Playfair Display', serif;
}

.akademi-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.akademi-footer-column {
  flex: 1;
  min-width: 220px;
}

.akademi-footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 6px;
}

.akademi-footer-column p,
.akademi-footer-column a,
.akademi-footer-column ul {
  font-size: 0.95em;
  color: #fff;
  text-decoration: none;
}

.akademi-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.akademi-footer-column ul li {
  margin-bottom: 8px;
}

.akademi-footer-column a:hover {
  text-decoration: underline;
  color: #ffe5e5;
}

.akademi-footer-bottom {
  text-align: center;
  font-size: 0.9em;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #eee;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    background-color: #ffffff;
    width: 230px;
    padding: 20px;
    border-left: 4px solid #c70000;
    border-radius: 0 0 0 8px;
    box-shadow: -6px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 12px;
    margin-top: 6px;
    display: none;
    flex-direction: column;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown > a::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 4px;
  }

  .hamburger {
    display: block;
  }

  .akademi-hero-section h1 {
    font-size: 1.8em;
  }

  .akademi-carousel-img {
    max-height: 220px;
  }

  .akademi-vision-wrapper,
  .akademi-mission-wrapper {
    flex-direction: column;
  }

  .akademi-product-grid {
    grid-template-columns: 1fr;
  }

  .akademi-cta-button {
    width: 90%;
  }

  .akademi-footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .akademi-footer-column {
    width: 100%;
  }
}
.akademi-certificates-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.akademi-certificates-section h1 {
  font-size: 2.2em;
  color: #c70000;
  margin-bottom: 40px;
}

.no-certificate-msg {
  color: #888;
  font-size: 18px;
  margin-top: 40px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.certificate-card {
  background: #fff;
  border-left: 5px solid #c70000;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease;
}

.certificate-card:hover {
  transform: translateY(-5px);
}

.certificate-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.certificate-card h3 {
  color: #c70000;
  font-size: 20px;
  margin-bottom: 10px;
}

.certificate-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .akademi-certificates-section {
    padding: 60px 15px;
  }

  .akademi-certificates-section h1 {
    font-size: 1.8em;
  }

  .certificate-card {
    padding: 16px;
  }

  .certificate-card h3 {
    font-size: 18px;
  }

  .certificate-card p {
    font-size: 14px;
  }

  .certificate-grid {
    gap: 20px;
  }
}
.akademi-egitim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.akademi-egitim-kart {
  display: block;
  background-color: #fff;
  border-left: 5px solid #c70000;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.akademi-egitim-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.akademi-egitim-detaylar h2 {
  color: #c70000;
  margin-bottom: 10px;
  font-size: 20px;
}

.akademi-egitim-detaylar p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.akademi-egitim-detay-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
}

/* HERO */
.akademi-egitim-hero {
  background: linear-gradient(to right, #fff, #ffe5e5);
  padding: 60px 40px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(199, 0, 0, 0.08);
  margin-bottom: 60px;
  animation: fadeDown 1s ease-out;
}

.akademi-egitim-hero h1 {
  color: #c70000;
  font-size: 2.6em;
  font-weight: bold;
  margin-bottom: 12px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.05);
}

.akademi-egitim-hero p {
  font-size: 1.2em;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* BODY */
.akademi-egitim-detay-body h2 {
  font-size: 1.8em;
  color: #900000;
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
}

.akademi-egitim-detay-body h2::after {
  content: '';
  width: 50px;
  height: 3px;
  background: #c70000;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 3px;
}

.akademi-egitim-detay-body p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.akademi-egitim-detay-body ul {
  list-style-type: "✔️ ";
  padding-left: 20px;
  font-size: 1.05em;
  color: #444;
  line-height: 1.8;
}

/* CALL TO ACTION */
.akademi-egitim-call {
  text-align: center;
  margin-top: 60px;
}

.akademi-cta-button {
  background-color: #c70000;
  color: white;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(199, 0, 0, 0.3);
}

.akademi-cta-button:hover {
  background-color: #900000;
  transform: translateY(-2px);
}

/* ANIMATION */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .akademi-egitim-hero h1 {
    font-size: 2em;
  }

  .akademi-egitim-detay-body h2 {
    font-size: 1.5em;
  }

  .akademi-cta-button {
    width: 90%;
    font-size: 1em;
  }
}
.akademi-egitim-detay-container {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
}

.akademi-egitim-banner {
  background: linear-gradient(to right, #fff, #fce5e5);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(199, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

.akademi-egitim-banner h1 {
  font-size: 2.2em;
  color: #c70000;
  margin-bottom: 12px;
}

.akademi-egitim-banner p {
  font-size: 1.1em;
  color: #555;
}

.akademi-egitim-icerik h2 {
  font-size: 1.5em;
  color: #c70000;
  margin-top: 30px;
  border-bottom: 2px solid #f3c0c0;
  padding-bottom: 8px;
}

.akademi-egitim-icerik ul {
  list-style-type: '✔️ ';
  padding-left: 20px;
  margin: 15px 0;
}

.akademi-egitim-icerik ul li {
  margin-bottom: 10px;
  color: #444;
}

.akademi-cta-button {
  display: inline-block;
  background-color: #c70000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(199, 0, 0, 0.3);
  transition: background 0.3s;
}

.akademi-cta-button:hover {
  background-color: #900000;
}

@media (max-width: 768px) {
  .akademi-egitim-banner h1 {
    font-size: 1.6em;
  }

  .akademi-egitim-banner p,
  .akademi-egitim-icerik p,
  .akademi-egitim-icerik li {
    font-size: 0.95em;
  }
}
.akademi-egitim-detay-container {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
}

.akademi-egitim-banner {
  background: linear-gradient(to right, #fff, #fce5e5);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(199, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

.akademi-egitim-banner h1 {
  font-size: 2.2em;
  color: #c70000;
  margin-bottom: 12px;
}

.akademi-egitim-banner p {
  font-size: 1.1em;
  color: #555;
}

.akademi-egitim-icerik h2 {
  font-size: 1.5em;
  color: #c70000;
  margin-top: 30px;
  border-bottom: 2px solid #f3c0c0;
  padding-bottom: 8px;
}

.akademi-egitim-icerik ul {
  list-style-type: '✔️ ';
  padding-left: 20px;
  margin: 15px 0;
}

.akademi-egitim-icerik ul li {
  margin-bottom: 10px;
  color: #444;
}

.akademi-cta-button {
  display: inline-block;
  background-color: #c70000;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(199, 0, 0, 0.3);
  transition: background 0.3s;
}

.akademi-cta-button:hover {
  background-color: #900000;
}

@media (max-width: 768px) {
  .akademi-egitim-banner h1 {
    font-size: 1.6em;
  }

  .akademi-egitim-banner p,
  .akademi-egitim-icerik p,
  .akademi-egitim-icerik li {
    font-size: 0.95em;
  }
}
.akademi-egitim-detay-container {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
}

.akademi-egitim-banner {
  background: linear-gradient(to right, #fff, #ffe5e5);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(199, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

.akademi-egitim-banner h1 {
  font-size: 2.2em;
  color: #c70000;
  margin-bottom: 12px;
}

.akademi-egitim-banner p {
  font-size: 1.1em;
  color: #555;
}

.akademi-egitim-icerik h2 {
  font-size: 1.5em;
  color: #c70000;
  margin-top: 30px;
  border-bottom: 2px solid #f3c0c0;
  padding-bottom: 8px;
}

.akademi-egitim-icerik ul {
  list-style-type: '✔️ ';
  padding-left: 20px;
  margin: 15px 0;
}

.akademi-egitim-icerik ul li {
  margin-bottom: 10px;
  color: #444;
}

.akademi-cta-button {
  display: inline-block;
  background-color: #c70000;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(199, 0, 0, 0.3);
  transition: background 0.3s;
}

.akademi-cta-button:hover {
  background-color: #900000;
}

@media (max-width: 768px) {
  .akademi-egitim-banner h1 {
    font-size: 1.6em;
  }

  .akademi-egitim-banner p,
  .akademi-egitim-icerik p,
  .akademi-egitim-icerik li {
    font-size: 0.95em;
  }
}
.akademi-egitim-detay-container {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
}

.akademi-egitim-banner {
  background: linear-gradient(to right, #ffffff, #ffe5e5);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(199, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

.akademi-egitim-banner h1 {
  font-size: 2.2em;
  color: #c70000;
  margin-bottom: 12px;
}

.akademi-egitim-banner p {
  font-size: 1.1em;
  color: #555;
}

.akademi-egitim-icerik h2 {
  font-size: 1.6em;
  color: #c70000;
  margin-top: 30px;
  border-bottom: 2px solid #f3c0c0;
  padding-bottom: 8px;
}

.akademi-egitim-icerik ul {
  list-style-type: "✔️ ";
  padding-left: 20px;
  margin: 15px 0;
}

.akademi-egitim-icerik ul li {
  margin-bottom: 10px;
  color: #444;
}

.akademi-egitim-icerik p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.akademi-cta-button {
  display: inline-block;
  background-color: #c70000;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(199, 0, 0, 0.3);
  transition: background 0.3s;
}

.akademi-cta-button:hover {
  background-color: #900000;
}

@media (max-width: 768px) {
  .akademi-egitim-banner h1 {
    font-size: 1.6em;
  }

  .akademi-egitim-banner p,
  .akademi-egitim-icerik p,
  .akademi-egitim-icerik li {
    font-size: 0.95em;
  }

  .akademi-cta-button {
    width: 100%;
    text-align: center;
  }
}
.video-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 64px 40px;
  margin: 60px auto 0 auto;
  background: linear-gradient(115deg, #fff 75%, #ffe6e6 100%);
  border-radius: 32px;
  box-shadow: 0 12px 38px 0 rgba(199,0,0,0.08);
  max-width: 1400px;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .22s;
}
.video-block:hover {
  box-shadow: 0 24px 62px 0 rgba(199,0,0,0.12);
}

/* --- Video kısmı küçültüldü --- */
.video-block .video-wrapper {
  flex: 0 0 320px;
  min-width: 200px;
  max-width: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(199,0,0,0.11);
  background: #000;
  animation: fadeInLeft 1.2s both;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-block .video-wrapper video {
  width: 100%;
  min-height: 135px;
  border-radius: 18px;
  display: block;
  background: #000;
  box-shadow: none;
}

/* --- Açıklama kısmı: göz alıcı ve modern --- */
.video-block .block-info {
  flex: 1 1 58%;
  padding: 0 18px;
  animation: fadeInRight 1.2s both;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-block .block-info h2 {
  color: #c70000;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0 4px 18px #c7000030;
}
.video-block .block-info h2::before {
  content: '';
  position: absolute;
  left: 0; bottom: -7px;
  width: 44px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #c70000 70%, #fff 100%);
  opacity: 0.82;
}

.video-block .block-info p {
  font-size: 1.17rem;
  color: #79181d;
  background: linear-gradient(96deg, #ffe5ec 40%, #fff 100%);
  padding: 16px 18px;
  border-radius: 13px;
  font-weight: 500;
  margin-bottom: 22px;
  box-shadow: 0 4px 24px #c7000010;
  text-shadow: 0 1px 5px #c7000012;
  letter-spacing: 0.3px;
  border-left: 6px solid #c70000;
  transition: background .21s;
}

.video-block .block-info ul {
  margin: 0 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.video-block .block-info ul li {
  font-size: 1.07rem;
  margin-bottom: 5px;
  color: #bb3030;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-left: 26px;
}
.video-block .block-info ul li::before {
  content: '★';
  color: #c70000;
  font-size: 1.12em;
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: bold;
  filter: drop-shadow(0 1px 4px #c7000030);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .video-block { flex-direction: column; gap: 36px; padding: 42px 12px; min-height: unset; }
  .video-block .video-wrapper, .video-block .block-info { max-width: 100%; }
  .video-block .video-wrapper { min-width: unset; flex-basis: 220px; }
  .video-block .block-info { padding: 0 2vw; }
  .video-block .block-info h2 { font-size: 1.32rem;}
  .video-block .block-info p { font-size: 1.02rem; padding: 13px 7px;}
}

@media (max-width: 700px) {
  .video-block { padding: 18px 1vw; gap: 14px; border-radius: 11px; margin: 19px 0 0 0;}
  .video-block .video-wrapper { max-width: 97vw; }
  .video-block .video-wrapper video { min-height: 92px; }
  .video-block .block-info h2 { font-size: 1.09rem;}
  .video-block .block-info p { font-size: .96rem; padding: 9px 5px;}
  .video-block .block-info ul li { font-size: .99rem; }
}