/* ====== EĞİTİM GRID & CARDS ====== */
.egitim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Fluid Responsive Grid - Mobilde 2 Kolon */
@media (max-width: 1200px) {
  .egitim-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .egitim-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .egitim-grid {
    grid-template-columns: repeat(2, 1fr); /* MOBİLDE 2 ADET YAN YANA */
    gap: 12px; /* Mobilde daha dar boşluk */
  }

  .egitim-title2 {
    font-size: 16px !important; /* Mobilde başlık küçültme */
  }

  .egitim-overlay2 {
    padding: 15px !important;
  }

  .egitim-text2 {
    display: none; /* Mobilde çok kalabalık olmaması için kısa yazıyı gizle */
  }
}

/* Eye-Catching Card Design */
.egitim-card2 {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); */ /* Daha belirgin gölge */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.egitim-card2:hover {
  transform: translateY(-12px) scale(1.02); /* Hafif büyüme ve yükselme */
  box-shadow: 0 30px 60px rgba(154, 39, 141, 0.2); /* Marka renginde parlama */
}

.egitim-media2 {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  overflow: hidden;
}

.egitim-media2 img {
  width: 100%;
  height: auto;
  object-fit: cover !important;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.egitim-card2:hover .egitim-media2 img {
  transform: scale(1.15); /* Daha güçlü zoom */
}

/* Modern Glassmorphism Overlay */
.egitim-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(154, 39, 141, 0.9) 0%,
    /* Marka moru */ rgba(247, 160, 46, 0.4) 100% /* Marka turuncusu */
  );
  backdrop-filter: blur(4px); /* Hafif buzlu cam efekti */
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
}

.egitim-card2:hover .egitim-overlay2 {
  opacity: 1;
}

/* Typography & Animations */
.egitim-title2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.egitim-text2 {
  margin: 10px 0 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.egitim-card2:hover .egitim-title2,
.egitim-card2:hover .egitim-text2 {
  transform: translateY(0);
}

/* ====== YAKLAŞAN EĞİTİMLER ====== */
.dn-event-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.dn-event-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--dn-accent);
}

.dn-event-date {
  background: #f8fafc;
  min-width: 65px;
  height: 65px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.dn-event-date .day {
  font-size: 20px;
  font-weight: 800;
  color: var(--dn-dark);
  line-height: 1;
}

.dn-event-date .month {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dn-accent);
}

.dn-event-body {
  flex-grow: 1;
}

.dn-event-body h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
}

.dn-event-body h3 a {
  color: var(--dn-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dn-event-body h3 a:hover {
  color: var(--dn-accent);
}

.dn-event-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #64748b;
}

.dn-event-meta i {
  color: var(--dn-accent);
  margin-right: 4px;
}

.dn-event-action {
  margin-left: 15px;
}

.dn-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dn-dark);
  transition: all 0.3s ease;
}

.dn-event-card:hover .dn-arrow-btn {
  background: var(--dn-accent);
  color: white;
}

/* ====== COURSE CAROUSEL CARDS ====== */
.dn-carousel-item {
  padding: 15px;
}

.dn-course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
}

.dn-course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dn-course-img {
  position: relative;
  overflow: hidden;
}

.dn-course-img img {
  width: 100%;
  height: 100%;

  transition: transform 0.6s ease;
}

.dn-course-card:hover .dn-course-img img {
  transform: scale(1.1);
}

.dn-course-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--dn-dark);
  backdrop-filter: blur(5px);
}

.dn-course-content {
  padding: 20px;
}

.dn-course-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dn-course-content h3 a {
  color: var(--dn-dark);
  text-decoration: none;
}

.dn-course-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dn-course-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

.dn-link {
  font-weight: 700;
  color: var(--dn-accent);
  text-decoration: none;
  font-size: 14px;
}

.dn-link i {
  transition: transform 0.3s ease;
}

.dn-link:hover i {
  transform: translateX(5px);
}

/* ====== MEZUNLAR: BOŞLUKSIZ GRID ====== */

/* Bootstrap kolonu etkisini iptal edip grid yap */
.teachers-wapper-01 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 30px 0px !important;
  align-items: start;
  justify-content: start !important;
  justify-items: stretch !important;
}

/* col-* float/width override */
.teacher-single {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  display: block;
}

/* responsive */
@media (max-width: 1100px) {
  .teachers-wapper-01 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .teachers-wapper-01 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0px !important;
  }
}

/* Kart */
.teacher-body {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Resimler aynı ölçüde olsun */
.teacher-body img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  display: block;
  background: #ddd;
}

/* İsim/ünvan alanı */
.teachars-info {
  text-align: center;
  padding: 16px 14px 14px;
  height: auto !important;
  min-height: 0 !important;
}

.teachars-info h3 {
  margin: 0 0 6px 0 !important;
  font-size: 15px !important;
  line-height: 1.2;
  font-weight: 800 !important;
  word-break: break-word;
}

.teachars-info span {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Renk şeridi */
.teacher-bar {
  height: 6px;
  width: 100%;
}

.teacher-single.c1 .teacher-bar {
  background: #fab522;
}
.teacher-single.c2 .teacher-bar {
  background: #9a278d;
}
.teacher-single.c3 .teacher-bar {
  background: #f25e4d;
}
.teacher-single.c4 .teacher-bar {
  background: #99278d;
}

/* ====== AURA FLOW HEADER SYSTEM (UNIQUE CLASSES) ====== */
:root {
  --dn-accent: #9a278d;
  --dn-dark: #0f172a;
  --dn-light: #ffffff;
  --dn-glass: rgba(255, 255, 255, 0.75);
  --dn-blur: 20px;
  --dn-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  --dn-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.dn-master-header {
  position: fixed; /**/
  top: 0;

  left: 0;
  right: 0;
  z-index: 9999;
  /* padding: 0 20px; */
  transition: all 0.5s var(--dn-ease);
  background: white;
  border-bottom: 1px solid #9a278d;
}
.dn-nav-container {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--dn-glass);
  backdrop-filter: blur(var(--dn-blur));
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* border-radius: 20px; */
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* box-shadow: var(--dn-shadow); */
  transition: all 0.4s var(--dn-ease);
}

/* Scrolled State */
.dn-is-scrolled {
  top: 0;
  padding: 0;
}

.dn-is-scrolled .dn-nav-container {
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.95);
  /* padding: 8px 40px; */
  border-top: none;
}

/* Brand */
.dn-brand-link img {
  height: 80px;
  transition: transform 0.3s ease;
}

.dn-brand-link:hover img {
  transform: scale(1.05);
}

/* Navigation List */
.dn-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.dn-nav-item {
  position: relative;
}

.dn-nav-link {
  color: var(--dn-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====== TESTIMONIALS ====== */
.stu-parent-say-area {
  background: #f8fafc;
  padding: 100px 0;
}

.dn-testimonial-item {
  padding: 20px;
}

.dn-testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.dn-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.dn-quote-icon {
  width: 50px;
  height: 50px;
  background: rgba(154, 39, 141, 0.1);
  color: #9a278d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 25px;
}

.dn-testimonial-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  margin-bottom: 25px;
}

.dn-testimonial-author h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* ====== NEWS GRID ====== */
.dn-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .dn-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dn-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.dn-news-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.dn-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dn-news-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.dn-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dn-news-card:hover .dn-news-img img {
  transform: scale(1.1);
}

.dn-news-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #9a278d;
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.dn-news-body {
  padding: 30px;
}

.dn-news-date {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.dn-news-date i {
  color: #9a278d;
  margin-right: 5px;
}

.dn-news-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.dn-news-body h3 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dn-news-body h3 a:hover {
  color: #9a278d;
}

.dn-news-link {
  font-weight: 700;
  color: #9a278d;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dn-news-link i {
  transition: transform 0.3s ease;
}

.dn-news-link:hover i {
  transform: translateX(5px);
}

.dn-nav-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dn-nav-item:hover > .dn-nav-link {
  background: rgba(247, 160, 46, 0.1);
  color: #9a278d;
}

.dn-nav-item.is-active > .dn-nav-link {
  background: #9a278d;
  color: #ffffff;
}

/* Mega/Sub Menu */
.dn-sub-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #ffffff;
  min-width: 260px;
  border-radius: 5px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dn-nav-item:hover .dn-sub-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.dn-sub-link {
  display: block;
  padding: 12px 18px;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dn-sub-link:hover {
  background: #f8fafc;
  color: #9a278d;
  padding-left: 22px;
}

/* Actions Section */
.dn-action-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dn-search-pill {
  background: rgba(15, 23, 42, 0.05);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dn-search-pill:hover {
  background: var(--dn-accent);
  color: white;
}

/* Minimal Mobile Trigger */
.dn-burger-box {
  display: none;
}

.dn-mobile-panel,
.dn-mobile-dropdown,
.dn-mobile-sub {
  display: none;
}

@media (max-width: 1100px) {
  .dn-nav-list {
    display: none; /* Desktop list hidden */
  }

  .dn-burger-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--dn-dark);
    border-radius: 12px;
    color: white;
    cursor: pointer;
  }

  /* Fullscreen Menu Overlay */
  .dn-mobile-panel {
    position: fixed;
    inset: 0;
    background: var(--dn-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding: 40px;
    transform: translateY(-100%);
    transition: transform 0.6s var(--dn-ease);
  }

  .dn-mobile-panel.is-open {
    transform: translateY(0);
  }

  .dn-mobile-close {
    align-self: flex-end;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-bottom: 40px;
  }

  .dn-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .dn-mobile-dropdown {
    display: block;
  }

  .dn-mobile-link {
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .dn-mobile-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .dn-mobile-link.is-active i {
    transform: rotate(180deg);
    color: var(--dn-accent);
  }

  .dn-mobile-sub {
    display: none;
    padding: 10px 0 10px 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
  }

  .dn-mobile-sub .dn-sub-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
  }

  .dn-mobile-sub .dn-sub-link:hover {
    color: white;
    background: #f8fafc00;
  }

  .dn-mobile-panel.is-open .dn-mobile-link {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fullscreen Search Overlay */
.dn-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: none;
  place-items: center;
  padding: 20px;
}

.dn-search-overlay.is-active {
  display: grid;
}

.dn-search-wrap {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.dn-search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 40px;
  padding: 20px;
  outline: none;
  transition: border-color 0.3s ease;
}

.dn-search-input:focus {
  border-color: var(--dn-accent);
}

/* ====== WELCOME SECTION ====== */
.dn-welcome-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */ /* Optional parallax */
}

.dn-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.4) 100%
  );
  z-index: 1;
}

.dn-welcome-section .container {
  position: relative;
  z-index: 2;
}

.dn-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(154, 39, 141, 0.1);
  color: #9a278d;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.dn-badge-light {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.dn-welcome-content .dn-section-title {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.dn-text-accent {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

.dn-text-accent-white p {
  font-size: 18px;
  line-height: 1.8;
  color: rgb(255 255 255 / 85%);
  margin-bottom: 40px;
}

.dn-btn-wrap {
  display: flex;
  gap: 20px;
}

.dn-btn-primary {
  background: linear-gradient(135deg, #9a278d 0%, #7c1e70 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(154, 39, 141, 0.3);
}

.dn-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(154, 39, 141, 0.4);
  color: white;
}

/* Media Side */
.dn-welcome-media {
  position: relative;
  padding: 20px;
}

.dn-media-main {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  background: #f8fafc;
}

.dn-media-main img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.dn-floating-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: floatAnim 4s ease-in-out infinite;
}

.dn-floating-card.relative-pos {
  position: relative;
  right: auto;
  bottom: auto;
  margin-left: auto;
}

.dn-floating-card i {
  color: #f7a02e;
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
}

.dn-floating-card p {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 991px) {
  .dn-welcome-content .dn-section-title {
    font-size: 32px;
  }
  .dn-welcome-section {
    padding: 60px 0;
    background-size: cover;
    background-position-x: -1524px;
  }
  .dn-floating-card {
    display: none;
  }
  .dn-btn-primary {
    width: 100%;
    justify-content: center;
  }
}
.home_version_02 .reg-news_others .regi-full-box .regi-content {
  text-align: left;
  position: relative;
  z-index: 0;
  padding: 35px 30px 0;
  min-height: 170px;
  margin-bottom: 15px;
  font-size: 18px;
}

a:focus,
a:hover {
  color: #23527c;
  text-decoration: none;
}

/* ✅ Bu bölüme özel scope */
.wen-courses-wrap {
  position: relative;
}

/* ✅ Swiper alanı */
#wen-courses-swiper.wen-courses-swiper {
  position: relative;
  padding-bottom: 40px; /* pagination için */
}

/* ✅ Overlay oklar */
#wen-courses-swiper .wen-courses-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;

  width: 46px;
  height: 46px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  transition: all 0.18s ease;

  cursor: pointer;
  user-select: none;
}

#wen-courses-swiper .wen-courses-nav i {
  font-size: 26px;
  line-height: 1;
}

/* ✅ Sol / Sağ konum */
#wen-courses-swiper .wen-courses-prev {
  left: 5px;
}
#wen-courses-swiper .wen-courses-next {
  right: 5px;
}

/* ✅ Hover efekti: premium */
#wen-courses-swiper .wen-courses-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.95);
}
#wen-courses-swiper .wen-courses-nav:active {
  transform: translateY(-50%) scale(0.98);
}

/* ✅ Disabled görünümü */
#wen-courses-swiper .wen-courses-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

/* ✅ Kenarlarda yumuşak gradient (overlay hissi güçlensin) */
#wen-courses-swiper:before,
#wen-courses-swiper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 40px; /* pagination alanına girmesin */
  width: 60px;
  z-index: 5;
  pointer-events: none;
}
#wen-courses-swiper:before {
  left: 0;
}
#wen-courses-swiper:after {
  right: 0;
}

/* ✅ Pagination şık ve scope’lu */
#wen-courses-swiper .wen-courses-pagination {
  bottom: 0 !important;
}
#wen-courses-swiper .wen-courses-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: 0.25;
}
#wen-courses-swiper .wen-courses-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ✅ Mobilde oklar içeri girsin */
@media (max-width: 575px) {
  #wen-courses-swiper .wen-courses-prev {
    left: 5px;
  }
  #wen-courses-swiper .wen-courses-next {
    right: 5px;
  }
  #wen-courses-swiper:before,
  #wen-courses-swiper:after {
    width: 34px;
  }
}

/* ✅ Kartı flex yap: footer hep altta kalsın */
#wen-courses-swiper .dn-course-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#wen-courses-swiper .dn-course-content {
  display: flex;
  flex-direction: column;
  flex: 1; /* içerik alanı uzasın */
}

/* ✅ Başlık sabit satır: 2 satır */
#wen-courses-swiper .dn-course-content h3 {
  margin: 0 0 10px 0;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.25em * 2); /* 2 satır sabit alan */
}

/* ✅ Kısa yazı sabit satır: 3 satır */
#wen-courses-swiper .dn-course-content p {
  margin: 0 0 14px 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.55em * 3); /* 3 satır sabit alan */
}

/* ✅ Footer her zaman en altta */
#wen-courses-swiper .dn-course-footer {
  margin-top: auto;
}

.Courses-area .section-header-l h2 {
  color: black;
  margin-bottom: 20px;
}

.Courses-area .section-header-box {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.search-curses-area .section-header h2 {
  padding-bottom: 15px;
  color: #ffffff !important;
  text-align: center;
  font-size: 30px;
}

.section-header-l {
  padding: 0;
}

.form-control {
  height: 52px;
}

/* ✅ Scope: sadece bu slider */
#wen-parent-swiper.wen-parent-swiper {
  position: relative;
  padding-bottom: 40px; /* pagination alanı */
}

/* ✅ Slide içi kartlar eşit dursun */
#wen-parent-swiper .swiper-slide {
  height: auto;
}
#wen-parent-swiper .swiper-slide > * {
  height: 100%;
}

/* ✅ Overlay oklar */
#wen-parent-swiper .wen-parent-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;

  width: 46px;
  height: 46px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  transition: all 0.18s ease;

  cursor: pointer;
  user-select: none;
}

#wen-parent-swiper .wen-parent-nav i {
  font-size: 26px;
  line-height: 1;
}

#wen-parent-swiper .wen-parent-prev {
  left: -14px;
}
#wen-parent-swiper .wen-parent-next {
  right: -14px;
}

#wen-parent-swiper .wen-parent-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.92);
}

#wen-parent-swiper .wen-parent-nav:active {
  transform: translateY(-50%) scale(0.98);
}

#wen-parent-swiper .wen-parent-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

/* ✅ Pagination (nokta) */
#wen-parent-swiper .wen-parent-pagination {
  bottom: 0 !important;
}
#wen-parent-swiper .wen-parent-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: 0.25;
}
#wen-parent-swiper .wen-parent-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ✅ Mobilde okları içeri al */
@media (max-width: 575px) {
  #wen-parent-swiper .wen-parent-prev {
    left: 6px;
  }
  #wen-parent-swiper .wen-parent-next {
    right: 6px;
  }
}

.news-area .section-header h2 {
  text-align: center;
  font-size: 30px;
  color: #fff !important;
  padding-bottom: 25px;
}
.stu-parent-say-area .section-header h2 {
  text-align: center;
  font-size: 30px;
  padding-bottom: 25px;
}
.stu-parent-say-area .section-header p {
  text-align: center;
  font-size: 18px;
}

/* =========================
   WEN Premium Breadcrumb
========================= */

.wen-breadcrumb {
  background: #f7f8fb;
  padding: 22px 0;
  border-bottom: 1px solid #e6e9f2;
  margin-top: 9rem;
}

.wen-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.wen-breadcrumb-list li {
  color: #6b7280;
}

.wen-breadcrumb-list li a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wen-breadcrumb-list li a:hover {
  color: #9c2aa0; /* Dialog moruna uygun */
}

/* Ayraç */
.wen-breadcrumb-list li + li:before {
  content: "/";
  margin: 0 10px;
  color: #c2c7d6;
}

/* Aktif sayfa */
.wen-breadcrumb-list li.active {
  color: #111827;
  font-weight: 600;
}

.teachers-area {
  margin-top: 4rem;
}
.single-courses-area p {
  color: black;
  font-size: 18px !important;
  font-weight: 300;
}
.single-curses-contert h2 {
  font-size: 30px !important;
  color: black;
}

/* ✅ Mobilde 3'lü yan yana */
@media (max-width: 767px) {
  .event-body-content .single-item {
    width: 33.3333% !important;
    float: left !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid #00000021;
    box-sizing: border-box;
  }

  /* ✅ img taşmasın, kutuya otursun */
  .event-body-content .single-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ✅ satır temizleme */
  .event-body-content:after {
    content: "";
    display: block;
    clear: both;
  }
}
.single-address p {
  color: black;
  font-size: 18px;
}

.single-address h4 {
  color: black;
  font-size: 20px;
}

.contact .contact-area-02 .contact-info p {
  color: black;
  font-size: 18px;
}

.contact .contact-area-02 .contact-info h2 {
  color: black;
  font-size: 20px;
}
.contact .contact-area-02 .contact-form .contact-title-btm h2 p {
  color: black;
  font-size: 18px;
}

.contact .contact-area-02 .contact-form .contact-title-btm h2 {
  color: black;
  font-size: 20px;
}
.contact .contact-area-02 {
  padding: 60px 0;
}

/* ✅ Bu galeriye özel - garanti kolon kontrolü */
@media (max-width: 767px) {
  .gallery_img_wrapper .wen-gal-col {
    width: 33.3333% !important; /* موبildə 3'lü */
    float: left !important;
  }
  .gallery_img_wrapper .wen-gal-col {
    padding-left: 6px !important;
    padding-right: 6px !important;
    margin-bottom: 12px;
  }
  .gallery_img_wrapper:after {
    content: "";
    display: block;
    clear: both;
  }

  /* Çok küçük ekranda 2'li olsun istersen aç */
  /* @media (max-width: 360px){
    .gallery_img_wrapper .wen-gal-col{ width:50% !important; }
  } */
}

@media (min-width: 992px) {
  .gallery_img_wrapper .wen-gal-col {
    width: 16.6667% !important; /* masaüstünde 6'lı */
    float: left !important;
  }
}

/* ✅ Lightbox */
.wen-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.wen-lightbox.is-open {
  display: block;
}

.wen-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.78);
}

.wen-lightbox-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 980px);
  max-height: 86vh;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.wen-lightbox-img {
  width: 100%;
  height: auto;
  max-height: 74vh;
  display: block;
  object-fit: contain;
  background: #0b0f18;
}

.wen-lightbox-title {
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  color: #0f1b2d;
  border-top: 1px solid #eef1f6;
}

.wen-lightbox-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  cursor: pointer;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.wen-lightbox-close:hover {
  background: #fff;
}

.gallery-images {
  padding: 40px 0px;
}

/* HERO SWIPER */
.wen-hero-slider {
  position: relative;
  overflow: hidden;
}

.wen-hero-swiper {
  width: 100%;
  height: auto;
}

.wen-hero-swiper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Oklar */
.wen-hero-next,
.wen-hero-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.wen-hero-next:after,
.wen-hero-prev:after {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* Pagination */
.wen-hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.4;
}

.wen-hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Default ok ikonunu kapat */
.wen-hero-swiper .swiper-button-next::after,
.wen-hero-swiper .swiper-button-prev::after {
  display: none;
}

/* Buton tasarımı */
.wen-hero-swiper .swiper-button-next,
.wen-hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Icon ekle */
.wen-hero-swiper .swiper-button-next {
  right: 20px;
}
.wen-hero-swiper .swiper-button-prev {
  left: 20px;
}

.wen-hero-swiper .swiper-button-next:before {
  content: "›";
  font-size: 28px;
  font-weight: bold;
  color: #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wen-hero-swiper .swiper-button-prev:before {
  content: "‹";
  font-size: 28px;
  font-weight: bold;
  color: #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =========================================
   WEN Kurumsal Tabs + Cards (Scope’lu)
   Etki alanı: .wen-tabs ve .wen-course-grid
========================================= */

/* ---------- Tabs (Banka stili) ---------- */
.wen-tabs .nav-tabs {
  border-bottom: 1px solid #e6e9f2 !important;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.wen-tabs .nav-tabs::-webkit-scrollbar {
  height: 6px;
}
.wen-tabs .nav-tabs::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.wen-tabs .nav-tabs > li {
  float: none !important;
  margin-bottom: 0 !important;
  white-space: nowrap;
}

.wen-tabs .nav-tabs > li > a {
  border: 1px solid #d8deea !important;
  background: #fbfcff !important;
  color: #0f1b2d !important;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  margin-right: 0 !important;
  transition: all 0.18s ease;
}

.wen-tabs .nav-tabs > li > a:hover {
  background: #ffffff !important;
  border-color: #b9c4d8 !important;
  transform: translateY(-1px);
}

.wen-tabs .nav-tabs > li.active > a,
.wen-tabs .nav-tabs > li.active > a:hover,
.wen-tabs .nav-tabs > li.active > a:focus {
  background: #ffffff !important;
  border-color: #163a7a !important;
  box-shadow: 0 0 0 3px rgba(22, 58, 122, 0.1);
  color: #163a7a !important;
}

/* Tab content spacing */
.wen-tabs .tab-content {
  padding-top: 18px;
}

/* ---------- Kurs Grid (Kayma biter) ---------- */
.wen-course-grid {
  /* Bootstrap row kalsın ama biz grid gibi hizalayacağız */
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.wen-course-col {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

/* 4 kolon (desktop) */
@media (min-width: 992px) {
  .wen-course-col {
    width: 25%;
  }
}
/* 3 kolon (tablet) */
@media (min-width: 768px) and (max-width: 991px) {
  .wen-course-col {
    width: 33.3333%;
  }
}
/* 2 kolon (mobil) */
@media (max-width: 767px) {
  .wen-course-col {
    width: 50%;
  }
}
/* çok küçük ekran 1 kolon (opsiyonel) */
@media (max-width: 360px) {
  .wen-course-col {
    width: 100%;
  }
}

/* ---------- Kart tasarımı (Premium) ---------- */
.wen-course-card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef1f6;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  background: #fff;
}

.wen-course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
  border-color: #d7deea;
}

/* Görsel: aynı oran, temiz görünüm */
.wen-course-card .dn-course-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f2f4f8;
}

.wen-course-card .dn-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* İçerik: sabit yükseklik hissi */
.wen-course-card .dn-course-content {
  display: flex;
  flex-direction: column;
  padding: 14px 14px 12px;
  min-height: 120px; /* kaymayı bitirir */
}

.wen-course-card .dn-course-content h3 {
  margin: 0 0 10px 0;
  font-size: 14.5px;
  line-height: 1.28;
  font-weight: 800;
  color: #0f1b2d;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.28em * 2);
}

.wen-course-card .dn-course-content h3 a {
  color: inherit;
  text-decoration: none;
}

.wen-course-card .dn-course-footer {
  margin-top: auto;
}

.wen-course-card .dn-link {
  font-weight: 800;
  color: #9a278d; /* senin mor */
  text-decoration: none;
}

.wen-course-card .dn-link:hover {
  text-decoration: underline;
}

/* Sadece eğitim kartları mobilde 2'li */
@media (max-width: 767px) {
  .courses-area-04 .row > [class*="col-"] {
    width: 50% !important;
    float: left !important;
  }
  .dn-master-header,
  .dn-nav-container {
    background: transparent;
    border: transparent;
  }
  .dn-brand-link img {
    height: 50px;
  }
  .dn-search-pill {
    color: white;
  }
  .dn-burger-box {
    background: white;
    color: black;
  }
}

/* ===== Mobil Premium 2'li Eğitim Kartları ===== */
@media (max-width: 767px) {
  /* Row flex yap */
  .courses-area-04 .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  /* Kolon genişliği 2'li */
  .courses-area-04 .row > .col-sm-3 {
    width: 50% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-bottom: 16px !important;
    float: left !important;
  }

  /* Kart Premium Görünüm */
  .dn-course-card {
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid #eef1f6 !important;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08) !important;
    background: #fff !important;
    height: 100% !important;
  }

  /* Görsel sabit oran */
  .dn-course-card .dn-course-img {
    aspect-ratio: 16 / 11 !important;
    overflow: hidden !important;
    background: #f2f4f8 !important;
  }

  .dn-course-card .dn-course-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Başlık sabit 2 satır */
  .dn-course-card .dn-course-content h3 {
    font-size: 13px !important;
    line-height: 1.3 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: calc(1.3em * 2) !important;
  }

  /* Link daha minimal */
  .dn-course-card .dn-link {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #9a278d !important;
  }
}

.home_version_02
  .register-area
  .form-full-box
  .header-box-top
  .section-header-box {
  margin-bottom: 15px;
}

.register-area .section-header h2 {
  font-size: 20px;
  color: black;
  text-align: center;
}
.header-box-top p {
  font-size: 18px;
  color: black;
}
.aq .register-area .form-content .section-header h2 {
  color: #fff !important;
  text-transform: none;
  font-size: 40px;
  padding-bottom: 0;
}
