.elementor-5555 .elementor-element.elementor-element-7a2baee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5555 .elementor-element.elementor-element-2615665{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2501b24 */.modern-page-header {
  position: relative;
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  padding: 60px 0 40px;
  overflow: hidden;
  margin-top: 0 !important;
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 41, 128, 0.95) 0%, rgba(38, 208, 206, 0.95) 100%);
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.header-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.title-section {
  color: white;
  text-align: center;
}

.title-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  line-height: 1.1;
   color:#fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.header-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 120px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb-section {
  display: flex;
  justify-content: center;
}

.modern-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 12px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
 
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
   color:#fff !important;
}

.breadcrumb-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.breadcrumb-item i {
  font-size: 0.8rem;
  opacity: 0.8;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.breadcrumb-current {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.header-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.header-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.header-wave .shape-fill {
  fill: #FFFFFF;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-section,
.breadcrumb-section {
  animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-section {
  animation-delay: 0.2s;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .modern-page-header {
    padding: 50px 0 30px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .header-stats {
    gap: 30px;
  }
  
  .stat-item {
    padding: 15px 20px;
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .modern-page-header {
    padding: 40px 0 20px;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .header-stats {
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat-item {
    padding: 12px 15px;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .modern-breadcrumb {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .modern-page-header {
    padding: 30px 0 15px;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .header-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .stat-item {
    width: 150px;
  }
  
  .modern-breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 15px;
  }
  
  .breadcrumb-item {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
  
  .header-wave svg {
    height: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a70354c */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
            color: #2c3e50;
            min-height: 100vh;
        }
        
        .modern-ref-section {
            width: 100%;
            padding: 40px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .ref-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }
        
        .ref-subtitle {
            display: inline-block;
            color: #3498db;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            padding: 8px 20px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 30px;
        }
        
        .ref-title {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .ref-desc {
            max-width: 700px;
            margin: 0 auto;
            color: #5a6c7d;
            font-size: 1.2rem;
            line-height: 1.6;
        }
        
        .ref-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .ref-card {
            background: white;
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
            height: 100%;
            animation: fadeIn 0.5s ease-out forwards;
            opacity: 0;
            display: flex;
            flex-direction: column;
        }
        
        .ref-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
        }
        
        .ref-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        
        /* Ders Renkleri */
        .ref-card[data-ders="anatomi"]::before { background: linear-gradient(90deg, #FF6B6B, #FF8E8E); }
        .ref-card[data-ders="fizyoloji"]::before { background: linear-gradient(90deg, #4ECDC4, #88D3CE); }
        .ref-card[data-ders="biyokimya"]::before { background: linear-gradient(90deg, #45B7D1, #7BC8E2); }
        .ref-card[data-ders="mikrobiyoloji"]::before { background: linear-gradient(90deg, #96CEB4, #B8E0C8); }
        .ref-card[data-ders="farmakoloji"]::before { background: linear-gradient(90deg, #FFEAA7, #FFEFC1); }
        .ref-card[data-ders="patoloji"]::before { background: linear-gradient(90deg, #DDA0DD, #E6B8E6); }
        .ref-card[data-ders="adc-cerrahisi"]::before { background: linear-gradient(90deg, #98D8C8, #B4E4D4); }
        .ref-card[data-ders="adc-radyolojisi"]::before { background: linear-gradient(90deg, #F7DC6F, #F9E79F); }
        .ref-card[data-ders="endodonti"]::before { background: linear-gradient(90deg, #C39BD3, #D2B4DE); }
        .ref-card[data-ders="ortodonti"]::before { background: linear-gradient(90deg, #76D7C4, #85E0CE); }
        .ref-card[data-ders="pedodonti"]::before { background: linear-gradient(90deg, #F1948A, #F5B7B1); }
        .ref-card[data-ders="periodontoloji"]::before { background: linear-gradient(90deg, #85C1E9, #A9CCF5); }
        .ref-card[data-ders="protetik"]::before { background: linear-gradient(90deg, #F8C471, #FAD7A0); }
        .ref-card[data-ders="restoratif"]::before { background: linear-gradient(90deg, #82E0AA, #A3E4C1); }
        
        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .ders-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 32px;
            color: white;
        }
        
        /* İkon Renkleri */
        .ref-card[data-ders="anatomi"] .ders-icon { background: linear-gradient(135deg, #FF6B6B, #FF8E8E); }
        .ref-card[data-ders="fizyoloji"] .ders-icon { background: linear-gradient(135deg, #4ECDC4, #88D3CE); }
        .ref-card[data-ders="biyokimya"] .ders-icon { background: linear-gradient(135deg, #45B7D1, #7BC8E2); }
        .ref-card[data-ders="mikrobiyoloji"] .ders-icon { background: linear-gradient(135deg, #96CEB4, #B8E0C8); }
        .ref-card[data-ders="farmakoloji"] .ders-icon { background: linear-gradient(135deg, #FFEAA7, #FFEFC1); color: #2c3e50; }
        .ref-card[data-ders="patoloji"] .ders-icon { background: linear-gradient(135deg, #DDA0DD, #E6B8E6); }
        .ref-card[data-ders="adc-cerrahisi"] .ders-icon { background: linear-gradient(135deg, #98D8C8, #B4E4D4); }
        .ref-card[data-ders="adc-radyolojisi"] .ders-icon { background: linear-gradient(135deg, #F7DC6F, #F9E79F); color: #2c3e50; }
        .ref-card[data-ders="endodonti"] .ders-icon { background: linear-gradient(135deg, #C39BD3, #D2B4DE); }
        .ref-card[data-ders="ortodonti"] .ders-icon { background: linear-gradient(135deg, #76D7C4, #85E0CE); }
        .ref-card[data-ders="pedodonti"] .ders-icon { background: linear-gradient(135deg, #F1948A, #F5B7B1); }
        .ref-card[data-ders="periodontoloji"] .ders-icon { background: linear-gradient(135deg, #85C1E9, #A9CCF5); }
        .ref-card[data-ders="protetik"] .ders-icon { background: linear-gradient(135deg, #F8C471, #FAD7A0); color: #2c3e50; }
        .ref-card[data-ders="restoratif"] .ders-icon { background: linear-gradient(135deg, #82E0AA, #A3E4C1); }
        
        .ders-baslik h3 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .soru-bilgi {
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-block;
        }
        
        .card-desc {
            color: #5a6c7d;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1.05rem;
            flex-grow: 1;
        }
        
        /* PDF LİNK BUTONU */
        .pdf-link-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #e74c3c;
            color: white !important;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #e74c3c;
            width: 100%;
            text-align: center;
            margin-top: auto;
        }
        
        .pdf-link-btn:hover {
            background: white;
            color: #e74c3c !important;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
        }
        
        .pdf-link-btn i {
            margin-right: 10px;
            font-size: 1.3rem;
        }
        
        /* Filtre Butonları */
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 12px 28px;
            border: 2px solid #3498db;
            background: white;
            color: #3498db;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: #3498db;
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .ref-grid { grid-template-columns: repeat(3, 1fr); }
        }
        
        @media (max-width: 992px) {
            .ref-grid { grid-template-columns: repeat(2, 1fr); }
            .ref-title { font-size: 2.4rem; }
        }
        
        @media (max-width: 768px) {
            .ref-grid { grid-template-columns: 1fr; gap: 20px; }
            .ref-title { font-size: 2rem; }
            .ref-desc { font-size: 1.1rem; }
            .card-header { flex-direction: column; text-align: center; }
            .ders-icon { margin-right: 0; margin-bottom: 15px; }
            .pdf-link-btn { padding: 14px 25px; }
        }
        
        @media (max-width: 480px) {
            .modern-ref-section { padding: 30px 15px; }
            .ref-title { font-size: 1.8rem; }
            .ref-card { padding: 25px 20px; }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }/* End custom CSS */