:root {
    --primary: #4e00aa;
    --primary-dark: #3c0080;
    --primary-light: #6600cc;
    --accent: #FF7300;
    --accent-light: #ff9036;
    --text-dark: #222222;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #0f0f0f;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
  }
.is-hidden {
  display: none !important;
}

  img {
    max-width: 100%;
    height: auto;
  }

  .bg-primary{
    background-color: var(--primary) !important;
  }

  .breadcrumb-item a{
    color: var(--primary) !important;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
  }
  .breadcrumb-item{
margin-bottom: 20px;
  }
/* Menü ile içerik üst üste binme sorununu çözen margin */
.page-header {
  margin-top: 150px; /* Sabit menü yüksekliğine göre üst margin */
}
@media (max-width: 991.98px) {
  .page-header {
    margin-top: 80px;
  }
}
.text-primary{
    color: var(--primary-light) !important;
  }
  /* Global Typography Updates */
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.8;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .display-1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
  }
  
  .display-2 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
  }
  
  .display-3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .lead {
    font-size: 1.375rem;
    line-height: 1.7;
    font-weight: 400;
  }
  
  .subheading {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  /* Modern Button Styling */
  .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
  }
  
  .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: -1;
  }
  
  .btn:hover::after {
    height: 100%;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
  }
  
  .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
  

  .btn-outline-primary {
    color: var(--accent);
    border: 2px solid var(--accent);
    background: transparent;
  }
  .btn-outline-primary:hover {
    color: var(--text-light);
    background: var(--accent);
    border-color: var(--accent);
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  }
  
  .btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    color: var(--text-dark);
  }
  
  .btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--text-dark);
  }
  
  .btn-outline-light {
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
  }
  
  .btn-outline-light:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Section Spacing */
  section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .section-lg {
    padding: 160px 0;
  }
  
  .section-sm {
    padding: 80px 0;
  }
  
  /* Section Headers */
  .section-header {
    margin-bottom: 80px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
  }
  
  .section-header p {
    color: #666;
    font-size: 1.25rem;
  }
  
  /* Container with larger padding */
  .container-padded {
    padding: 0 50px;
  }
  
  /* Background gradients */
  .bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  }
  
  .bg-gradient-dark {
    background: linear-gradient(135deg, #111, #333);
  }
  
  /* Modern cards */
  .modern-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
  }
  
  .modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1199.98px) {
    .display-1 {
      font-size: 3.75rem;
    }
    
    .display-2 {
      font-size: 3.25rem;
    }
    
    .display-3 {
      font-size: 2.5rem;
    }
    
    .lead {
      font-size: 1.25rem;
    }
    
    section {
      padding: 100px 0;
    }
    
    .section-lg {
      padding: 130px 0;
    }
    
    .section-sm {
      padding: 70px 0;
    }
  }
  
  @media (max-width: 991.98px) {
    .display-1 {
      font-size: 3rem;
    }
    
    .display-2 {
      font-size: 2.75rem;
    }
    
    .display-3 {
      font-size: 2.25rem;
    }
    
    .lead {
      font-size: 1.125rem;
    }
    
    section {
      padding: 80px 0;
    }
    
    .section-lg {
      padding: 100px 0;
    }
    
    .section-sm {
      padding: 60px 0;
    }
    
    .container-padded {
      padding: 0 30px;
    }
  }
  
  @media (max-width: 767.98px) {
    .display-1 {
      font-size: 2.5rem;
    }
    
    .display-2 {
      font-size: 2.25rem;
    }
    
    .display-3 {
      font-size: 1.875rem;
    }
    
    .lead {
      font-size: 1rem;
    }
    
    section {
      padding: 60px 0;
    }
    
    .section-lg {
      padding: 80px 0;
    }
    
    .section-sm {
      padding: 40px 0;
    }
    
    .container-padded {
      padding: 0 15px;
    }
  }
  
  /* Modern animations and effects */
  .hover-lift {
    transition: var(--transition);
  }
  
  .hover-lift:hover {
    transform: translateY(-8px);
  }
  
  .hover-scale {
    transition: var(--transition);
  }
  
  .hover-scale:hover {
    transform: scale(1.05);
  }
  
  /* Scroll animations enhancements */
  [data-aos] {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }


/* Modern Header Styling */
.site-header {
    transition: all 0.4s ease;
  }
  
  .top-bar {
    background-color: var(--primary-dark);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .top-info {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .top-info li {
    margin-right: 20px;
    display: flex;
    align-items: center;
  }
  
  .top-info i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 0.9rem;
  }
  
  .top-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .top-info a:hover {
    color: white;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }
  
  .social-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .social-icon:hover {
    color: var(--accent);
    transform: translateY(-3px);
  }
  
  .navbar {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  
  .navbar-brand {
    padding: 0;
  }
  
  .navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
  }
  
  .navbar-scrolled .navbar-brand img {
    height: 50px;
  }
  
  .navbar-nav .nav-item {
    position: relative;
    margin-left: 10px;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
  }
  
  .navbar-nav .nav-link span {
    position: relative;
    display: inline-block;
  }
  
  .navbar-nav .nav-link span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }
  
  .navbar-nav .nav-link:hover span::after,
  .navbar-nav .nav-item.active .nav-link span::after {
    width: 100%;
  }
  
  .navbar-scrolled {
    padding: 10px 0;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-top: 3px solid var(--accent);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
  }
  
  .dropdown-menu-dark {
    background-color: var(--primary-dark);
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .dropdown-menu-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .dropdown-menu-dark .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
/* Mega Menu Styles */
.mega-dropdown {
    position: static !important;
}

.mega-dropdown .dropdown-menu {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    top: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.dropdown-menu.mega-menu {
    width: 650px; /* Genişliği artırma */
    padding: 20px;
    max-width: 90vw; /* Mobil cihazlarda taşmayı önlemek için */
  }

/* Full Mega Menu Styles - Tüm Eğitimler için */
.dropdown-menu.mega-menu-full {
    width: 80vw !important;
    max-width: 1100px !important;
    padding: 0;
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-top: 15px;
    max-height: 80vh;
    overflow-y: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 1050;
}

/* Mobil cihazlarda mega menu düzenlemeleri */
@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu-full {
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: none !important;
        margin: 10px 0 !important;
        border-radius: 8px;
        max-height: 70vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .mega-dropdown .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 10px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
    }
    
    .mega-menu-full .container {
        padding: 15px !important;
    }
    
    .mega-menu-full .mega-menu-content {
        display: block !important;
        max-height: 60vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-right: 5px !important;
    }
    
    .mega-menu-full .mega-menu-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        margin-bottom: 15px;
    }
    
    .mega-menu-full .mega-menu-section {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    /* Mobil scroll bar stilleri */
    .mega-menu-full .mega-menu-content::-webkit-scrollbar {
        width: 4px;
    }
    
    .mega-menu-full .mega-menu-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .mega-menu-full .mega-menu-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.4);
        border-radius: 2px;
    }
    
    .mega-menu-full .mega-menu-content::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.6);
    }
    
    /* Dropdown açıldığında body scroll'unu engelle */
    body.dropdown-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
}

.mega-menu-full .container-fluid {
    padding: 30px;
}

.mega-menu-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mega-menu-full .dropdown-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    color: #ffffff !important;
    background: none;
    font-weight: 600;
}

.mega-menu-full .dropdown-item {
    padding: 10px 14px;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 8px;
    margin-bottom: 3px;
    transition: all 0.2s ease;
    color: #e3f2fd;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
}

.mega-menu-full .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.mega-menu-full .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.mega-menu-full .dropdown-item i {
    width: 18px;
    text-align: center;
    margin-right: 10px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.mega-menu-full .education-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: inline-block;
}

.mega-menu-full .mega-menu-content {
    margin: 0;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scroll bar stilleri */
.mega-menu-full .mega-menu-content::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-full .mega-menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mega-menu-full .mega-menu-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.mega-menu-full .mega-menu-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Büyük ekranlar için */
@media (min-width: 1200px) {
    .dropdown-menu.mega-menu-full {
        width: 75vw !important;
        max-width: 1100px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
    
    .mega-menu-full .mega-menu-content {
        max-height: 65vh;
    }
}

.mega-menu-full .mega-menu-column {
    padding: 0 10px;
}

.mega-menu-footer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.mega-menu-footer .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mega-menu-footer .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.mega-menu-footer .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
}

/* Tablet için responsive */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .dropdown-menu.mega-menu-full {
        width: 75vw !important;
        max-width: 950px !important;
        max-height: 70vh;
        overflow-y: auto;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
    
    .mega-menu-full .mega-menu-column.col-lg-3 {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    .mega-menu-full .mega-menu-content {
        max-height: 50vh;
        overflow-y: auto;
        padding-right: 10px;
    }
    
    .mega-menu-full .mega-menu-content::-webkit-scrollbar {
        width: 6px;
    }
    
    .mega-menu-full .mega-menu-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .mega-menu-full .mega-menu-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
    
    .mega-menu-full .mega-menu-content::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu-full {
        width: 90vw;
        margin-top: 10px;
    }
    
    .mega-menu-full .container-fluid {
        padding: 20px;
    }
    
    .mega-menu-full .mega-menu-content {
        display: flex;
        flex-direction: column;
    }
    
    .mega-menu-full .mega-menu-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 15px;
    }
    
    .mega-menu-full .col-lg-3 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .mega-menu-full .dropdown-item {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .mega-menu-full .education-title {
        max-width: 100%;
        white-space: normal;
    }
}

/* Mobil dropdown özel davranışları */
.mega-dropdown .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.mega-dropdown .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobil navbar collapse için özel ayarlar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        margin: 15px -15px -15px -15px;
        padding: 20px 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 5px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(13, 71, 161, 0.1);
    }
    
    .mega-dropdown {
        position: static !important;
    }
    
    .mega-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        left: 0 !important;
        right: auto !important;
        top: auto !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: var(--primary-dark) !important;
    }
    
    .mega-dropdown .dropdown-menu.mega-menu-full {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        left: 0 !important;
        margin: 10px 0 !important;
        background: var(--primary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }
    
    .mega-menu-full .container-fluid {
        padding: 15px !important;
    }
    
    .mega-menu-full .mega-menu-content .row {
        flex-direction: column !important;
    }
    
    .mega-menu-full .mega-menu-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 10px !important;
    }
}

/* Mobil telefon için */
@media (max-width: 767.98px) {
    .dropdown-menu.mega-menu-full {
        width: 100% !important;
        position: static !important;
        transform: none !important;
        left: 0 !important;
        top: auto !important;
        max-height: 70vh;
        overflow-y: auto;
        z-index: 9999;
        margin: 10px 0 !important;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .dropdown-menu.mega-menu-full.show {
        display: block !important;
        opacity: 1;
    }
    
    .mega-menu-full .container-fluid {
        padding: 15px;
    }
    
    .mega-menu-full .dropdown-item {
        font-size: 0.85rem;
        padding: 8px 10px;
        margin-bottom: 5px;
        white-space: normal;
    }
    
    .mega-menu-full .education-title {
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        max-width: 100%;
    }
    
    .mega-menu-full .dropdown-header {
        font-size: 1rem;
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .mega-menu-footer .d-flex {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .mega-menu-footer .text-muted {
        display: none !important;
    }
}

/* Küçük telefon ekranları */
@media (max-width: 575.98px) {
    .dropdown-menu.mega-menu-full {
        width: 98vw;
        margin: 5px auto;
        max-height: 60vh;
    }
    
    .mega-menu-full .dropdown-item {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .mega-menu-full .dropdown-item i {
        margin-right: 8px;
        width: 16px;
    }
    
    .mega-menu-full .dropdown-header {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .mega-menu-footer {
        margin: 5px -5px -8px -5px;
        padding: 10px;
    }
}



@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu-full {
        width: 100vw !important;
        left: 0 !important;
        transform: none !important;
        position: fixed !important;
        top: 100% !important;
        margin-top: 0 !important;
        border-radius: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mega-menu-full .container-fluid {
        padding: 15px 10px;
    }
    
    .mega-menu-section {
        margin-bottom: 15px;
        padding: 15px 10px;
        border-radius: 8px;
    }
    
    .mega-menu-full .dropdown-item {
        font-size: 0.85rem;
        padding: 12px 15px;
        margin-bottom: 1px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .mega-menu-full .text-truncate {
        max-width: none !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: initial !important;
    }
    
    .mega-menu-footer {
        margin: 15px -10px -15px -10px;
        position: sticky;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
    }
    
    .mega-menu-footer .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }
    
    /* Tek sütun düzeni */
    .mega-menu-full .col-lg-4 {
        width: 100% !important;
        flex: none !important;
    }
}

@media (max-width: 767.98px) {
    .dropdown-menu.mega-menu-full {
        max-height: 70vh;
    }
    
    .mega-menu-full .container-fluid {
        padding: 10px 8px;
    }
    
    .mega-menu-section {
        padding: 12px 8px;
        margin-bottom: 10px;
    }
    
    .mega-menu-full .dropdown-item {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .mega-menu-full .dropdown-header {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .mega-menu-footer {
        margin: 10px -8px -10px -8px;
    }
    
    .mega-menu-footer .badge {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .mega-menu-footer .btn-outline-primary {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

@media (max-width: 575.98px) {
    .dropdown-menu.mega-menu-full {
        max-height: 60vh;
    }
    
    .mega-menu-full .dropdown-item {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .mega-menu-full .dropdown-item i {
        width: 16px;
        font-size: 0.75rem;
        margin-right: 8px;
    }
    
    .mega-menu-full .dropdown-header {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .mega-menu-section {
        padding: 10px 6px;
    }
    
    .mega-menu-footer {
        margin: 8px -6px -10px -6px;
    }
}
  
  @media (max-width: 991.98px) {
    .dropdown-menu.mega-menu {
      width: 100%;
      padding: 15px;
    }
    
    .mega-menu .row {
      margin: 0;
    }
    
    .dropdown-menu .dropdown-item {
      font-size: 0.9rem;
      padding: 10px 10px 10px 35px;
    }
    
    .dropdown-menu .dropdown-item i {
      left: 10px;
    }
  }
  
  .dropdown-menu .dropdown-item {
    padding: 8px 12px; /* Padding azaltma */
    font-size: 0.85rem; /* Font boyutunu küçültme */
    white-space: normal; /* Uzun yazıların satır atlamasına izin verme */
    line-height: 1.3; /* Satır yüksekliğini azaltma */
    transition: all 0.3s ease;
    position: relative;
    padding-left: 30px; /* İkonlar için sol padding */
  }

  .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }
  
/* İkonları pozisyonlama */
.dropdown-menu .dropdown-item i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}
  /* Daha fazla alan için menü hizalama ayarları */
.mega-menu .row {
    margin: 0 -10px;
  }
  
  .mega-menu .col-lg-6 {
    padding: 0 10px;
  }

  .dropdown-menu hr.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
  }
  
  .dropdown-menu .fw-bold {
    font-weight: 600 !important;
  }

  .navbar-toggler {
    border: none;
    padding: 0;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background-color: white;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 15px;
    }
    
    .dropdown-menu {
      border-top: none;
      box-shadow: none;
      margin-top: 0;
      padding-left: 20px;
      opacity: 1;
      visibility: visible;
      transform: none;
      position: static !important;
      display: none;
    }
    
    .show > .dropdown-menu {
      display: block;
    }
    
    .navbar-nav .nav-item {
      margin-left: 0;
    }
  }


/* Neden Biz Bölümü İyileştirmeleri */
.why-us-container {
    position: relative;
    height: 100%;
  }
  
  .why-us-items {
    position: relative;
  }
  
  .why-us-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
  }
  
  .why-us-item.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .why-us-item.hover-card:hover .why-us-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
  }
  
  .why-us-icon-wrapper {
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .why-us-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    background-color: rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
  }
  
  .why-us-content {
    flex: 1;
  }
  
  .why-us-content h4 {
    color: var(--text-dark);
    transition: color 0.3s ease;
  }
  
  .why-us-item:hover .why-us-content h4 {
    color: var(--primary);
  }
  
  .why-us-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .subheading {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 30px;
  }
  
  .subheading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary);
  }
  
  .highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  
  .highlight-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: -1;
  }
  
  /* Responsive Ayarlamalar */
  @media (max-width: 991.98px) {
    .why-us-container {
      padding-left: 0 !important;
      margin-top: 50px;
    }
    
    .why-us-item {
      padding: 20px;
    }
    
    .why-us-icon {
      width: 50px;
      height: 50px;
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .why-us-item {
      padding: 15px;
    }
    
    .why-us-icon-wrapper {
      margin-right: 15px;
    }
    
    .why-us-icon {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
    
    .why-us-content h4 {
      font-size: 1rem;
    }
    
    .why-us-content p {
      font-size: 0.85rem;
    }
  }


  /* Modern Hero Section */
  .hero-section.modern-hero-design {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
  }
  
  .hero-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 1;
  }
  
  .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 0, 170, 0.02) 0%, rgba(255, 115, 0, 0.03) 100%);
    z-index: 2;
  }
  
  .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
  }
  
  .floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
  }
  
  .shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
  }
  
  .shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
  }
  
  .shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
  }
  
  .shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 25%;
    animation-delay: 1s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
  }
  
  .hero-section .container {
    position: relative;
    z-index: 4;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: slideInDown 0.8s ease-out;
  }
  
  .hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
  }
  
  .hero-line-1, .hero-line-3 {
    color: var(--primary);
    display: block;
    animation: slideInLeft 0.8s ease-out 0.2s both;
  }
  
  .hero-line-2 {
    color: var(--accent);
    display: block;
    animation: slideInRight 0.8s ease-out 0.4s both;
  }
  
  .hero-subtitle-modern {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }
  
  .hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
  }
  
  .btn-modern-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 0, 170, 0.3);
    color: white;
  }
  
  .btn-modern-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .btn-modern-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
  }
  
  .hero-stats-mini {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 1s both;
  }
  
  .stat-mini {
    text-align: center;
  }
  
  .stat-mini .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }
  
  .stat-mini .label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero-visual-container {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
  }
  
  .hero-card-stack {
    position: relative;
    height: 100%;
  }
  
/* Hero Card Yapısı - Mobil Uyumlu */
.hero-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: cardFloat 6s ease-in-out infinite;
}
  .hero-card.card-1 {
  top: 0;
  left: 0;
  width: 280px;
  z-index: 3;
  animation-delay: 0s;
}

.hero-card.card-2 {
  top: 150px;
  right: 0;
  width: 300px;
  z-index: 2;
  animation-delay: 2s;
}

.hero-card.card-3 {
  bottom: 0;
  left: 50px;
  width: 260px;
  z-index: 1;
  animation-delay: 4s;
}
  
  @keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .hero-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .hero-card h4 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .hero-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 1.2s both;
  }
  
  .scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary);
    position: relative;
    animation: bounce 2s infinite;
  }
  
  .scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
  }
  
  @keyframes slideInDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes fadeInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @media (max-width: 991.98px) {
      .hero-visual-container {
    height: 500px; /* Konteyner yüksekliği azaltıldı */
  }
  
  .hero-card {
    padding: 20px; /* Mobil görünümde daha az iç boşluk */
  }
  
  .hero-card.card-1 {
    width: 240px; /* Mobilde daha küçük genişlik */
  }
  
  .hero-card.card-2 {
    width: 240px; /* Mobilde daha küçük genişlik */
    top: 120px; /* Konum ayarlaması */
    right: 0;
  }
  
  .hero-card.card-3 {
    width: 240px; /* Mobilde daha küçük genişlik */
    bottom: 20px; /* Alt marjin ayarlaması */
    left: 20px; /* Sol marjin ayarlaması */
  }

    .hero-title-modern {
      font-size: 3rem;
    }
    
    .hero-visual-container {
      height: 400px;
      margin-top: 3rem;
    }
    
    .hero-card {
      transform: scale(0.8);
    }
    
    .hero-cta-group {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .hero-stats-mini {
      justify-content: space-between;
      max-width: 300px;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-visual-container {
    height: 480px; /* Daha da küçük konteyner */
  }
  
  .hero-card {
    padding: 15px; /* Daha az iç boşluk */
  }
  
  .hero-card.card-1 {
    width: 210px; /* Daha küçük genişlik */
    left: 0;
  }
  
  .hero-card.card-2 {
    width: 210px; /* Daha küçük genişlik */
    top: 100px; /* Konum ayarlaması */
    right: 0;
  }
  
  .hero-card.card-3 {
    width: 210px; /* Daha küçük genişlik */
    bottom: 20px;
    left: 10px; /* Konum ayarlaması */
  }
  
  .hero-card .card-icon {
    width: 45px; /* Daha küçük ikon boyutu */
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .hero-card h4 {
    font-size: 1.1rem; /* Daha küçük başlık */
    margin-bottom: 5px;
  }
  
  .hero-card p {
    font-size: 0.85rem; /* Daha küçük metin */
  }
    .hero-title-modern {
      font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
      font-size: 1.125rem;
    }
    
    .hero-visual-container {
      height: 300px;
    }
    
    .hero-card {
      transform: scale(0.7);
    }
    
    .hero-stats-mini {
      gap: 1rem;
    }
    
    .stat-mini .number {
      font-size: 1.5rem;
    }
  }

  .text-accent {
    color: var(--accent);
  }
/* Hero Animations */
@keyframes fade-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes line-grow {
  to {
    width: 100%;
  }
}

@keyframes highlight-grow {
  to {
    width: calc(100% + 20px);
  }
}

@keyframes subtle-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}


  /* Statistics Section Styling */
.stats-section {
    position: relative;
    z-index: 3;
    overflow: visible;
  }
  
  .stats-wrapper {
    margin-top: -80px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
  }
  
  .stat-card {
    padding: 2rem 1rem;
    transition: var(--transition);
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
  }
  
  .stat-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(74, 0, 143, 0.1);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .stat-card:hover .stat-icon-wrapper {
    background: var(--primary);
  }
  
  .stat-icon {
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
  }
  
  .stat-card:hover .stat-icon {
    color: white;
  }
  
  .stat-counter-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  
  .stat-counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
  }
  
  .stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-top: 12px;
  }
  
  .stat-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #666;
    margin: 0;
  }
  
  @media (max-width: 767.98px) {
    .stats-wrapper {
      margin-top: -60px;
    }
    
    .stat-card {
      padding: 1.5rem 1rem;
    }
    
    .stat-counter {
      font-size: 2.5rem;
    }
    
    .stat-plus {
      font-size: 1.25rem;
      margin-top: 8px;
    }
    
    .stat-text {
      font-size: 1rem;
    }
  }


  /* Çok küçük ekranlar için son düzenleme */
@media (max-width: 575.98px) {
  .hero-visual-container {
    height: 420px;
  }
  
  .hero-card.card-1 {
    width: 180px;
  }
  
  .hero-card.card-2 {
    width: 180px;
    top: 90px;
  }
  
  .hero-card.card-3 {
    width: 180px;
  }
}

/* Services Category Styling */
.services-category {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .services-category:last-child {
    border-bottom: none;
  }
  
  .category-header {
    margin-bottom: 30px;
    position: relative;
  }
  
  .category-header h3 {
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .category-header h3 i {
    font-size: 1.5rem;
    margin-right: 10px;
    opacity: 0.9;
  }
  
/* Category Styling */
.services-category {
  margin-bottom: 100px;
}

.category-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

/* Service Cards - Tony Robbins Style */
.service-card.tr-style {
    height: 300px;
    perspective: 1000px;
    border-radius: 12px;
    overflow: visible;
    margin-bottom: 20px;
    box-shadow: none;
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .service-card.tr-style.card-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-card.tr-style .card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
  }
  
  .service-card.tr-style:hover .card-inner,
  .service-card.tr-style .card-inner.touch-rotate {
    transform: rotateY(180deg);
  }
  
  .service-card.tr-style .card-front,
  .service-card.tr-style .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    top: 0;
    left: 0;
    pointer-events: auto;
    z-index: 2; /* Arka yüz daha yüksek z-index değerine sahip olmalı */
  }
  .service-card.tr-style .card-back a {
    position: relative;
    z-index: 5;
    pointer-events: auto !important; /* Önemli! */
  }
  
  .service-card.tr-style .card-front {
    background: linear-gradient(to bottom right, var(--primary-light), var(--primary-dark));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .service-card.tr-style .card-back {
    background: white;
    color: var(--text-dark);
    transform: rotateY(180deg);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow-y: auto;
  }
  
  .service-card.tr-style .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    transition: all 0.3s ease;
  }
  
  .service-card.tr-style .service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  
  .service-card.tr-style .card-back .service-title {
    color: var(--primary);
    margin-bottom: 15px;
  }
  
  .service-card.tr-style .service-description {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-card.tr-style .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/card-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
  }
  
  /* Category Icon */
  .category-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .category-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(74, 0, 143, 0.3);
  }
  
  /* CTA Banner */
  .cta-gradient-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    overflow: hidden;
    position: relative;
  }
  
  .cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern-dots-white.png') repeat;
    opacity: 0.07;
    z-index: 0;
  }
  
  /* Spacing utilities */
  .mb-6 {
    margin-bottom: 4.5rem !important;
  }
  
  .mt-6 {
    margin-top: 4.5rem !important;
  }
  
    .mt-7 {
    margin-top: 7rem !important;
  }

  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .service-card.tr-style {
      height: 280px;
    }
    
    .service-card.tr-style .service-icon {
      font-size: 2.5rem;
    }
    
    .service-card.tr-style .card-front,
    .service-card.tr-style .card-back {
      padding: 20px;
    }
    
    .service-card.tr-style .service-title {
      font-size: 1.2rem;
    }
    
    .category-icon {
      width: 80px;
      height: 80px;
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .service-card.tr-style {
      height: 260px;
    }
    
    .category-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }
    
    .service-card.tr-style .service-icon {
      font-size: 2.2rem;
      margin-bottom: 15px;
    }
    
    .service-card.tr-style .service-description {
      font-size: 0.9rem;
    }
    
    .service-card.tr-style .card-back {
      padding: 20px;
    }
  }

/* Special gradient for CTA Banner */
.cta-gradient-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  overflow: hidden;
  position: relative;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern-dots-white.png') repeat;
  opacity: 0.07;
  z-index: 0;
}

/* Spacing utilities */
.mb-6 {
  margin-bottom: 4.5rem !important;
}

.mt-6 {
  margin-top: 4.5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .service-card.tr-style {
    height: 280px;
  }
  
  .service-card.tr-style .service-icon {
    font-size: 2.5rem;
  }
  
  .service-card.tr-style .card-front,
  .service-card.tr-style .card-back {
    padding: 20px;
  }
  
  .service-card.tr-style .service-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .service-card.tr-style {
    height: 260px;
  }
  
  .category-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .service-card.tr-style .service-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .service-card.tr-style .service-description {
    font-size: 0.9rem;
  }
}


/* Touch support for mobile */
.service-card.tr-style .card-inner.touch-rotate {
    transform: rotateY(180deg);
  }
  
  /* Animation when cards come into view */
  .service-card.tr-style {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .service-card.tr-style.card-visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Team Section Styling */
.team-section {
    background-color: white;
    position: relative;
  }
  
  .team-card {
    overflow: hidden;
    transition: var(--transition);
    border-radius: var(--border-radius);
  }
  
  .team-image-container {
    position: relative;
    overflow: hidden;
  }
  
  .team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .team-card:hover .team-img {
    transform: scale(1.05);
  }
  
  .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: var(--transition);
  }
  
  .team-card:hover .team-overlay {
    opacity: 1;
  }
  
  .team-social-links {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
  }
  
  .team-card:hover .team-social-links {
    transform: translateY(0);
    opacity: 1;
  }
  
  .team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .team-social-link:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-5px);
  }
  
  .team-content {
    padding: 30px;
    text-align: center;
  }
  
  .team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
  }
  
  .team-position {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 15px;
  }
  
  .team-bio {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
  }
  
  @media (max-width: 767.98px) {
    .team-img {
      height: 350px;
    }
    
    .team-content {
      padding: 20px;
    }
    
    .team-name {
      font-size: 1.25rem;
    }
    
    .team-position {
      font-size: 0.9rem;
    }
    
    .team-bio {
      font-size: 0.85rem;
    }
  }




  /* Event Section Styling */
.event-section {
    position: relative;
    overflow: hidden;
  }
  
  .event-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .event-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 0, 143, 0.3), rgba(52, 0, 101, 0.1));
  }
  
  .event-date {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.71);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .event-date .month {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
  }
  
  .event-date .year {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
  }
  
  .event-content {
    position: relative;
  }
  
  .event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .event-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
  }
  
  .event-feature {
    text-align: center;
  }
  
  .event-feature i {
    font-size: 2rem;
    color: var(--accent);
  }
  
  .event-feature h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .event-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
  }
  
/* Shape Divider */
.shape-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px); /* Küçük bir aşağı kaydırma */
  }
  
  .shape-divider-bottom {
    bottom: -63px; /* Küçük bir negatif değer ile çizgi boşluklarını önleyin */
  }
  
  .shape-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 48px;
  }

  .shape-divider-fluid-x svg {
    width: calc(100% + 1.5px);
    height: 48px;
  }
  /* Arka planı olmadığından emin olun (opacity 0) */
  .event-section {
    position: relative;
    margin-bottom: 0; /* Alt marjini kaldırma */
    padding-bottom: 48px; /* Shape divider yüksekliği kadar padding */
  }
  
  @media (max-width: 991.98px) {
    .event-content {
      padding-left: 0 !important;
    }
  }
  
  @media (max-width: 767.98px) {
    .event-features {
      padding: 20px;
    }
    
    .event-feature i {
      font-size: 1.5rem;
    }
    
    .event-feature h5 {
      font-size: 1rem;
    }
    
    .event-feature p {
      font-size: 0.85rem;
    }
  }



  /* Blog Section Styling */
.blog-section {
    background-color: var(--bg-light);
    position: relative;
  }
  
  .blog-slider-container {
    position: relative;
    padding: 30px 0;
  }
  
  .blog-card {
    overflow: hidden;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .blog-image {
    position: relative;
    overflow: hidden;
  }
  
  .blog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .blog-card:hover .blog-img {
    transform: scale(1.05);
  }
  
  .blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    z-index: 1;
  }
  
  .blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .blog-date .month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-top: 3px;
  }
  
  .blog-category {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
  }
  
  .blog-content {
    padding: 25px;
  }
  
  .blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .blog-title a:hover {
    color: var(--primary);
  }
  
  .blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .blog-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
  }
  
  .blog-readmore {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .blog-readmore span {
    position: relative;
  }
  
  .blog-readmore span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: var(--transition);
  }
  
  .blog-readmore:hover span::after {
    width: 100%;
  }
  
  .blog-readmore i {
    margin-left: 10px;
    transition: var(--transition);
  }
  
  .blog-readmore:hover i {
    transform: translateX(5px);
  }
  
  .blog-slider .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }
  
  .blog-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: var(--primary);
    color: white;
  }
  
  @media (max-width: 767.98px) {
    .blog-img {
      height: 200px;
    }
    
    .blog-content {
      padding: 20px;
    }
    
    .blog-title {
      font-size: 1.125rem;
    }
    
    .blog-excerpt {
      font-size: 0.85rem;
    }
  }



  /* Modern Footer Styling */
.site-footer {
    position: relative;
    color: white;
    background-color: var(--primary-dark);
    overflow: hidden;
  }
  
  .footer-wave-top {
    width: 100%;
    line-height: 0;
    overflow: hidden;
  }
  
  .footer-main {
    position: relative;
    z-index: 1;
    padding-top: 100px;
  }
  
  .footer-brand img {
    max-width: 100%;
    height: auto;
  }
  
  .footer-about {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-link:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-5px);
  }
  
  .footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
  }
  
  .footer-link span {
    position: relative;
    display: inline-block;
  }
  
  .footer-link span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-link:hover span::after {
    width: 100%;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-list li {
    margin-bottom: 15px;
  }
  
  .contact-link, .contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .contact-link:hover {
    color: white;
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
  }
  
  .contact-link:hover .contact-icon {
    background: var(--accent);
    color: var(--primary-dark);
  }
  
  .footer-newsletter {
    position: relative;
    z-index: 1;
  }
  
  .newsletter-form .form-control {
    height: 54px;
    border-radius: 27px 0 0 27px;
    border: none;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.15);
  }
  
  .newsletter-form .btn {
    border-radius: 0 27px 27px 0;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 600;
  }
  
  .footer-bottom {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
  }
  
  .legal-links {
    font-size: 0.875rem;
  }
  
  .legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .legal-links a:hover {
    color: white;
  }
  
  .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
  }
  
  @media (max-width: 991.98px) {
    .footer-main {
      padding-top: 60px;
    }
  }


  /* Floating Buttons Styling */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 999;
  }
  
  .floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    background-color: #25d366; /* WhatsApp yeşili */
}

.floating-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    width: 180px; /* Buton genişler */
    border-radius: 25px;
    justify-content: flex-start;
    padding-left: 20px;
}

.floating-btn:hover .floating-text {
    opacity: 1;
}

.floating-text {
    position: absolute;
    left: 45px;
    white-space: nowrap;
    opacity: 0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}
  
  @media (max-width: 767.98px) {
    .floating-buttons {
      bottom: 20px;
      right: 20px;
    }
  
    .floating-toggle {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
  
    .floating-btn {
      width: 45px;
      height: 45px;
    }
  }


  /* İnfografik Bölüm Stilleri */
.infographic-section {
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
  }
  
  .infographic-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('/images/dots-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  .infographic-wrapper {
    position: relative;
    z-index: 1;
  }
  
  .infographic-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .infographic-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }
  
  /* Dairesel İlerleme Göstergeleri */
  .progress-circle {
    position: relative;
    margin: 0 auto;
    width: 160px;
    height: 160px;
  }
  
  .progress-ring-circle {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1.5s ease-in-out;
  }
  
  .progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .progress-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    line-height: 1;
  }
  
  .progress-content p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    font-weight: 500;
  }
  
  /* Grafik Kartı */
  .infographic-chart-card {
    padding: 30px;
  }
  
  .chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
  }
  
  .chart-container {
    position: relative;
    margin: 0 auto;
  }
  
  .chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
  }
  
  .legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
  }
  
  /* Özellik Kartları */
  .feature-card {
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
  }
  
  .feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
  }
  
  .feature-card p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
  }
  
  /* Arka Plan Renkleri */
  .bg-primary-light {
    background-color: rgba(74, 0, 143, 0.1);
  }
  
  .bg-accent-light {
    background-color: rgba(232, 195, 8, 0.1);
  }
  
  .bg-success-light {
    background-color: rgba(25, 135, 84, 0.1);
  }
  
  .bg-info-light {
    background-color: rgba(13, 202, 240, 0.1);
  }
  
  /* Karşılaştırma Tablosu */
  .comparison-table-card {
    padding: 35px;
  }
  
  .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
  }
  
  .comparison-table {
    margin-bottom: 0;
  }
  
  .comparison-table th {
    font-weight: 600;
    color: var(--text-dark);
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.02);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  
  .comparison-table td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
  }
  
  .progress-bar-container span {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
  }
  
  /* CTA Kutusu */
  .cta-box {
    position: relative;
    overflow: hidden;
  }
  
  .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern-dots-white.png') repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  .cta-box h3, .cta-box p, .cta-box .btn {
    position: relative;
    z-index: 1;
  }
  
  .bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  }
  
  /* Responsive Düzenlemeler */
  @media (max-width: 991.98px) {
    .infographic-card {
      padding: 20px;
    }
    
    .progress-circle {
      width: 140px;
      height: 140px;
    }
    
    .progress-content h3 {
      font-size: 2rem;
    }
    
    .feature-card {
      padding: 15px !important;
    }
    
    .icon-box {
      width: 50px;
      height: 50px;
    }
    
    .icon-box i {
      font-size: 1.25rem;
    }
    
    .feature-card h4 {
      font-size: 1.25rem;
    }
    
    .comparison-table-card {
      padding: 20px;
    }
  }
  
  @media (max-width: 767.98px) {
    .progress-circle {
      width: 120px;
      height: 120px;
    }
    
    .progress-content h3 {
      font-size: 1.75rem;
    }
    
    .progress-content p {
      font-size: 0.7rem;
    }
    
    .comparison-table th {
      font-size: 0.8rem;
      padding: 10px;
    }
    
    .comparison-table td {
      font-size: 0.8rem;
      padding: 10px;
    }
  }


  /* Sık Sorulan Sorular Bölümü Stil */
.faq-section {
    position: relative;
    background-color: var(--bg-light);
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/dots-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  /* FAQ Tab Menü Stilleri */
  #faqTab {
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 5px;
  }
  
  #faqTab .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 50px;
    padding: 12px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
  }
  
  #faqTab .nav-link i {
    margin-right: 8px;
  }
  
  #faqTab .nav-link:hover {
    background-color: rgba(74, 0, 143, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
  }
  
  #faqTab .nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 5px 15px rgba(74, 0, 143, 0.3);
  }
  
  .faq-accordion {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    background-color: white;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-item:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
  }
  
  .faq-header {
    position: relative;
  }
  
  .faq-button {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-button::after {
    display: none;
  }
  
  .faq-button-text {
    display: flex;
    align-items: center;
    flex: 1;
  }
  
  .faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(74, 0, 143, 0.1);
    color: var(--primary);
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
  }
  
  .faq-icon {
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
  }
  
  /* Tıklanan butonun stili */
  .faq-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
  }
  
  /* Tıklanan butonun içindeki metin rengi düzeltmesi */
  .faq-button:not(.collapsed) .faq-question,
  .faq-button:not(.collapsed) .faq-icon {
    color: white;
  }
  
  /* Sayı kutusunun tıklanınca tam daire ve beyaz olması */
  .faq-button:not(.collapsed) .faq-number {
    background-color: white;
    color: var(--primary);
    border-radius: 50%;
  }
  
  .faq-icon i {
    transition: transform 0.3s ease;
  }
  
  .faq-button:not(.collapsed) .faq-icon i {
    transform: rotate(180deg);
  }
  
  .faq-body {
    padding: 2rem 1.5rem 1.5rem 4.5rem;
  }
  
  /* FAQ içerik stillemeleri */
  .faq-highlights {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
  }
  
  .faq-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    width: 100%;
  }
  
  .highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(74, 0, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 1rem;
  }
  
  .highlight-text {
    flex: 1;
  }
  
  .highlight-text strong {
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .highlight-text p {
    margin-bottom: 0;
    color: #666;
  }
  
  .faq-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }
  
  .faq-list-item i {
    color: var(--primary);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }
  
  .faq-cta-banner {
    position: relative;
  }
  
  .faq-cta-content {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .faq-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern-dots-white.png') repeat;
    opacity: 0.07;
    z-index: -1;
  }
  
  .faq-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  /* Responsive Ayarlamalar */
  @media (max-width: 991.98px) {
    #faqTab .nav-link {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
    
    .faq-number {
      width: 30px;
      height: 30px;
      font-size: 0.8rem;
    }
    
    .faq-question {
      font-size: 0.95rem;
    }
    
    .faq-body {
      padding-left: 3.5rem;
    }
  }
  
  @media (max-width: 767.98px) {
    #faqTab {
      flex-direction: column;
      padding: 5px;
    }
    
    #faqTab .nav-link {
      margin: 3px 0;
      width: 100%;
    }
    
    .faq-button {
      padding: 1rem;
    }
    
    .faq-question {
      font-size: 0.9rem;
    }
    
    .faq-number {
      width: 28px;
      height: 28px;
      font-size: 0.75rem;
      margin-right: 0.75rem;
    }
    
    .faq-body {
      padding: 2rem 1rem 1rem 3rem;
    }
  }


  /* Showcase Section Styling */
.showcase-section {
    position: relative;
    overflow: hidden;
  }
  
  .showcase-item {
    position: relative;
    overflow: hidden;
    min-height: 600px;
  }
  
  .showcase-image-container {
    position: relative;
    height: auto; /* Önceden fixed height idi, şimdi auto */
    overflow: hidden;
    min-height: auto; /* Minimum height'ı da auto yapıyoruz */
  }
  
  @media (max-width: 991.98px) {
    .showcase-image-container {
      height: 400px;
      min-height: 400px;
    }
  }
  
  .showcase-image {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  
  .showcase-image .image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .showcase-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
  }
  @media (max-width: 991.98px) {
    .showcase-image-container {
      min-height: auto !important;
      height: auto !important;
    }
    .showcase-image .image-wrapper {
      margin-top: 0 !important;
      gap: 1rem;
    }
  }
  .showcase-item:hover .showcase-image img {
    transform: scale(1);
  }
  /* Görsellere sürekli büyüyüp küçülme animasyonu */
@keyframes showcasePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.showcase-image .image-wrapper img {
  animation: showcasePulse 4s ease-in-out infinite;
  will-change: transform;
}
.showcase-image .image-wrapper img:nth-child(2) {
  animation-delay: 2s;
}
  
  .showcase-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/pattern.png');
    opacity: 0.2;
    z-index: 2;
  }
  
  .showcase-content-container {
    min-height: 600px;
  }
  
  @media (max-width: 991.98px) {
    .showcase-content-container {
      min-height: auto;
    }
  }
  
  .showcase-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  
  .showcase-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .bg-gradient-primary .showcase-badge {
    background-color: white;
    color: var(--primary);
  }
  
  
  /* Metrics */
  .showcase-metrics {
    margin-top: 30px;
  }
  
  .metric-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .showcase-item:nth-child(even) .metric-item {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .bg-gradient-primary .metric-item {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .metric-item:hover {
    transform: translateY(-5px);
  }
  
  .metric-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .metric-content {
    flex: 1;
  }
  
  .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--primary);
  }
  
  .showcase-item:nth-child(even) .metric-value {
    color: var(--primary);
  }
  
  .bg-gradient-primary .metric-value,
  .bg-gradient-primary .metric-label {
    color: white;
  }
  
  .metric-label {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
  }
  


  
  /* Partners Grid */
  .partners-grid {
    margin-top: 30px;
  }
  
  .partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .partner-logo:hover {
    transform: translateY(-5px);
  }
  
  .grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  
  .partner-logo:hover .grayscale {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  /* Success Counters */
  .success-counter-wrapper {
    margin-top: 40px;
  }
  
  .success-counter {
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }
  
  .success-counter:hover {
    transform: translateY(-10px);
  }
  
  .counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
  }
  
  .counter-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
  }
  
  .counter-label {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
  }
  
  /* Gradient Background */
  .bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    position: relative;
  }
  
  .bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern-dots-white.png') repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  .bg-gradient-primary > * {
    position: relative;
    z-index: 1;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767.98px) {
    .showcase-content {
      padding: 40px 20px !important;
    }
    
    .showcase-badge {
      margin-bottom: 15px;
      font-size: 0.8rem;
    }
    
    .showcase-content h2 {
      font-size: 2.5rem;
    }
    
    .metric-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .metric-value {
      font-size: 1.5rem;
    }
    
    .counter-number {
      font-size: 2.5rem;
    }
    
    .counter-suffix {
      font-size: 1.8rem;
    }
    
    .partner-logo {
      height: 40px;
    }
  }



  /* Enhanced List Page Styles */

/* Hero Section */
.enhanced-hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
  }
  
  .hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(var(--primary-rgb), 0.05);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
  }
  
  .text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .hero-illustration {
    text-align: center;
    max-width: 400px;
    margin-left: auto;
  }
  
  /* Filter Buttons */
  .btn-filter {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
  
  .btn-filter:hover {
    background-color: #e9ecef;
    color: #495057;
  }
  
  .btn-filter.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
  }
  
  /* Search Box */
  .search-box {
    position: relative;
  }
  
  .search-box .form-control {
    padding-right: 50px;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .btn-search {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    border: none;
  }
  
  .btn-search:hover {
    background-color: var(--primary-dark);
  }
  
  /* View Options */
  .btn-view {
    background: none;
    border: 1px solid #e9ecef;
    color: #6c757d;
    margin-right: 5px;
    border-radius: 4px;
  }
  
  .btn-view:hover, .btn-view.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
  }
  
  /* Content Cards */
  .content-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f1f1;
    background-color: white;
  }
  
  .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .content-card:hover .card-image img {
    transform: scale(1.05);
  }
  
  .card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
  }
  
  .placeholder-icon {
    font-size: 2.5rem;
    color: rgba(var(--primary-rgb), 0.2);
  }
  
  .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    z-index: 1;
  }
  
  .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #6c757d;
  }
  
  .card-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .card-title a:hover {
    color: var(--primary);
  }
  
  .btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }
  
  .btn-link i {
    transition: transform 0.3s ease;
  }
  
  .btn-link:hover {
    color: var(--primary-dark);
  }
  
  .btn-link:hover i {
    transform: translateX(5px);
  }
  
  /* List View */
  .view-list .row {
    flex-direction: column;
  }
  
  .view-list .col-lg-4 {
    width: 100%;
    max-width: 100%;
  }
  
  .view-list .content-card {
    display: flex;
    flex-direction: row;
  }
  
  .view-list .card-image {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
  }
  
  .view-list .card-content {
    flex: 1;
  }
  
  /* No Results */
  .no-results {
    padding: 50px 0;
  }
  
  .no-results-icon {
    opacity: 0.5;
  }
  
  /* Newsletter Section */
  .newsletter-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  }
  
  .newsletter-form .form-control {
    height: 50px;
    border-radius: 50px 0 0 50px;
    padding-left: 20px;
  }
  
  .newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Pagination */
  .pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border: 1px solid #e9ecef;
    margin: 0 3px;
    font-size: 0.9rem;
  }
  
  .pagination .page-link:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    border-color: #e9ecef;
  }
  
  .pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
  }
  
  .pagination .page-item.disabled .page-link {
    color: #d1d3d4;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .enhanced-hero {
      padding: 40px 0;
    }
    
    .view-list .content-card {
      flex-direction: column;
    }
    
    .view-list .card-image {
      width: 100%;
      height: 200px;
    }
    
    .newsletter-form .input-group {
      flex-direction: column;
    }
    
    .newsletter-form .form-control {
      border-radius: 50px;
      margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
      border-radius: 50px;
      width: 100%;
    }
  }
  
  @media (max-width: 767.98px) {
    .enhanced-hero {
      padding: 30px 0;
    }
    
    .card-meta {
      flex-direction: column;
      gap: 5px;
    }
  }


/* Instagram Cards Styling */
.instagram-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.instagram-profile-header {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.profile-avatar img {
  border: 3px solid var(--primary);
  padding: 2px;
}

.profile-stat {
  font-size: 0.9rem;
  color: #6c757d;
}

.instagram-slider-container {
  position: relative;
  padding: 20px 0;
}

.instagram-swiper {
  overflow: visible;
}

.instagram-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.instagram-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.instagram-card-header {
  display: flex;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #efefef;
}

.profile-avatar-sm {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.profile-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info-sm h5 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.profile-info-sm span {
  font-size: 0.75rem;
}

.more-options {
  color: #262626;
  padding: 8px;
  cursor: pointer;
}

.instagram-embed-wrapper {
  position: relative;
  width: 100%;
  background-color: #fafafa;
}

.instagram-loading {
  padding: 30px;
}

.instagram-card-footer {
  padding: 14px;
}

.instagram-actions {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.action-btn {
  background: none;
  border: none;
  padding: 8px;
  font-size: 1.25rem;
  color: #262626;
  text-decoration: none;
  margin-right: 5px;
}

.action-btn:hover {
  color: #8e8e8e;
}

.instagram-likes {
  margin-bottom: 5px;
}

.instagram-caption {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.instagram-timestamp {
  margin-bottom: 8px;
}

.view-post {
  font-size: 0.9rem;
  padding-top: 12px;
}

/* Swiper Styling */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  color: var(--primary);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .instagram-profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-avatar {
    margin-bottom: 15px;
    margin-right: 0 !important;
  }
  
  .ms-auto {
    margin-left: 0 !important;
    margin-top: 15px;
  }
}


/* Services Page Styling */

/* Hero Section */
.service-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4));
}

.service-hero-title {
  margin-bottom: 1.5rem;
}

.service-hero-title .highlight-text {
  position: relative;
}

.service-hero-title .highlight-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.2em;
  height: 0.3em;
  width: 100%;
  background-color: var(--accent);
  opacity: 0.4;
  z-index: -1;
}

/* Service Overview Section */
.service-overview-section {
  padding: 6rem 0;
}

.overview-content h2 {
  position: relative;
  margin-bottom: 1.5rem;
}

.overview-content h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #4a008f;
}

.overview-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.feature-item {
  font-size: 14px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Feature Icons Fix - Tam Daire İçinde İkonlar */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px; /* Genişliğin sabit kalmasını sağlar */
  border-radius: 50%; /* Tam daire */
  background-color: #4a008f;
  color: white;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(74, 0, 143, 0.3);
  margin-right: 15px; /* İkonu metinden ayırmak için sağ kenar boşluğu */
}

/* Hover durumunda efekt ekleyelim */
.feature-item:hover .feature-icon {
  transform: scale(1.1);
  background-color: var(--accent);
  color: var(--primary-dark);
}

.feature-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-text {
  font-size: 0.95rem;
  color: #666;
}

/* Process Infographic */
.process-infographic {
  padding: 2rem;
}

.process-timeline {
  position: relative;
  padding: 1rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  height: 100%;
  width: 3px;
  background-color: #f8f9fa;
}

.process-step {
  position: relative;
  padding: 1rem 0 1rem 5rem;
  margin-bottom: 1.5rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-icon {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 4rem;
  height: 4rem;
  background-color: #4a008f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(74, 0, 143, 0.3);
}

.process-content {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #212529;
}

.process-content p {
  margin-bottom: 0;
  color: #666;
}

/* Comparison Infographic */
.comparison-infographic .comparison-container {
  border-radius: 8px;
  overflow: hidden;
}

.comparison-infographic .comparison-row {
  display: flex;
  border-bottom: 1px solid #e9ecef;
}

.comparison-infographic .comparison-row:last-child {
  border-bottom: none;
}

.comparison-infographic .comparison-row.header {
  background-color: #4a008f;
  color: white;
  font-weight: 600;
}

.comparison-infographic .comparison-cell {
  flex: 1;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.comparison-infographic .comparison-cell:first-child {
  font-weight: 600;
  background-color: #f8f9fa;
}

.comparison-infographic .comparison-cell.highlight {
  color: #4a008f;
  font-weight: 600;
}

/* Chart Infographic */
.chart-container {
  height: 100%;
  padding: 2rem;
}

.chart-container .chart-title {
  margin-bottom: 1.5rem;
  color: #212529;
  font-weight: 600;
}

/* Service Details Section */
.service-details-section {
  padding: 6rem 0;
}

.service-content h2, 
.service-content h3, 
.service-content h4, 
.service-content h5, 
.service-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.service-content ul, 
.service-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.service-content ul li, 
.service-content ol li {
  margin-bottom: 0.5rem;
}

.service-content blockquote {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-left: 4px solid #4a008f;
  margin: 1.5rem 0;
}

.service-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
}

.benefit-card {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(74, 0, 143, 0.1);
  color: #4a008f;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background-color: #4a008f;
  color: white;
}

.benefit-title {
  font-weight: 600;
  color: #212529;
}

.benefit-description {
  color: #666;
}

/* Case Study Section */
.case-study-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.case-card {
  height: 100%;
}

.case-header {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.case-content h5 {
  font-weight: 600;
  color: #212529;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.case-content p {
  color: #555;
  margin-bottom: 1rem;
}

.result-item {
  padding: 1rem;
  border-radius: 6px;
  background-color: #f8f9fa;
}

.result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4a008f;
  color: white;
  font-size: 1rem;
}

.result-text {
  display: flex;
  flex-direction: column;
}

.result-text .result-value {
  font-size: 1.25rem;
  color: #212529;
}

.case-testimonial {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.case-testimonial blockquote {
  margin-bottom: 0;
  font-style: italic;
}

.case-testimonial blockquote p {
  margin-bottom: 0.5rem;
}

.case-testimonial blockquote footer {
  font-style: normal;
}

/* Methodology Section */
.methodology-section {
  padding: 6rem 0;
}

.methodology-timeline {
  position: relative;
  padding: 3rem 0;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background-color: #f8f9fa;
  transform: translateX(-50%);
}

.methodology-step {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
}

.methodology-step:last-child {
  margin-bottom: 0;
}

.methodology-step.left {
  justify-content: flex-end;
}

.methodology-step.left .step-content {
  padding-right: 3rem;
  text-align: right;
}

.methodology-step.left .step-icon {
  left: calc(50% - 30px);
}

.methodology-step.right {
  justify-content: flex-start;
}

.methodology-step.right .step-content {
  padding-left: 3rem;
  text-align: left;
}

.methodology-step.right .step-icon {
  right: calc(50% - 30px);
}

.methodology-step .step-content {
  width: 50%;
  position: relative;
}

.methodology-step .step-count {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(74, 0, 143, 0.1);
  line-height: 1;
  z-index: -1;
}

.methodology-step .step-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #212529;
}

.methodology-step .step-description {
  color: #666;
}

.methodology-step .step-icon {
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: #4a008f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(74, 0, 143, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-accordion .faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-accordion .faq-header .faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  background-color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-accordion .faq-header .faq-button:not(.collapsed) {
  background-color: #4a008f;
  color: white;
}

.faq-accordion .faq-header .faq-button:not(.collapsed) .faq-number {
  background-color: white;
  color: #4a008f;
}

.faq-accordion .faq-header .faq-button:not(.collapsed) .faq-icon {
  color: white;
}

.faq-accordion .faq-header .faq-button:not(.collapsed) .faq-icon i {
  transform: rotate(180deg);
}

.faq-accordion .faq-header .faq-button .faq-button-text {
  display: flex;
  align-items: center;
}

.faq-accordion .faq-header .faq-button .faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #f8f9fa;
}

.faq-accordion .faq-header .faq-button .faq-icon i {
  transition: transform 0.3s ease;
}

.faq-accordion .faq-body {
  padding: 0 30px 30px;
  color: #555;
  line-height: 1.7;
}

/* Consultation Form Section */
.consultation-section {
  background: linear-gradient(135deg, #330062, #4a008f, #7800e2);
  color: white;
}

.consultation-form {
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Related Services Section */
.related-services-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.related-service-card {
  height: 100%;
  perspective: 1000px;
}

.related-service-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.related-service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.related-service-card .card-front,
.related-service-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
}

.related-service-card .card-front {
  background: linear-gradient(to bottom right, #7800e2, #330062);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.related-service-card .card-back {
  background: white;
  color: #212529;
  transform: rotateY(180deg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-service-card .service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.related-service-card .service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.related-service-card .card-back .service-title {
  color: #4a008f;
  margin-bottom: 15px;
}

.related-service-card .service-description {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.related-service-card .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/card-pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .methodology-step.left .step-content,
  .methodology-step.right .step-content {
    padding: 0 0 0 70px;
    text-align: left;
    width: 100%;
  }
  
  .methodology-step.left .step-icon,
  .methodology-step.right .step-icon {
    left: 0;
    right: auto;
  }
  
  .methodology-timeline::before {
    left: 30px;
    transform: none;
  }
  
  .methodology-step {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .process-step {
    padding-left: 4rem;
  }
  
  .process-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  
  .faq-number {
    display: none !important;
  }
  
  .faq-button {
    padding: 1rem !important;
  }
  
  .faq-body {
    padding: 1rem 1rem !important;
  }
  
  .methodology-step .step-count {
    font-size: 3rem;
  }
}

.page-hero-section{
  margin-top: 150px;
}

.service-hero-section{
  margin-top: 160px;
}

.blog-hero-section{
  margin-top: 160px;
}

/* Yorumlar Slider Stilleri */
.comments-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.comment-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.comment-author {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4a008f;
}

.comment-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.swiper-pagination-bullet {
  background: #4a008f;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #4a008f;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #4a008f;
}

/* Etkinlikler Bölümü */
.events-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.event-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-date {
  text-align: center;
  font-size: 1.2rem;
}

.event-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.event-body {
  padding: 15px;
}

.event-footer {
  background: #f1f1f1;
  padding: 10px;
}

.event-footer a {
  text-decoration: none;
  color: white;
  background: #4a008f;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.event-footer a:hover {
  background: #3a006f;
}

.event-hero-section{
  margin-top: 200px;
}

.video-container {
  position: relative;
  padding-bottom: 0; /* padding-bottom kaldırıldı */
  height: auto; /* otomatik yükseklik */
  max-width: 320px; /* maksimum genişlik sınırı */
  margin: 0 auto; /* sayfada ortalamak için */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  aspect-ratio: 9/16; /* 9:16 oranı */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover; /* videoyu düzgün oranlayacak */
}

.contact-method-item {
  position: relative;
}

.icon-box {
  width: 45px;
  height: 45px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a008f;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info p a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info p a:hover {
  color: #4a008f;
}

@media (min-width: 992px) {
  .offset-lg-1-5 {
      margin-left: 12.5%;
  }
}

.search-trigger {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 20px;
  color: white;
  padding: 6px 15px;
  width: 100%;
  font-size: 13px;
  transition: all 0.3s;
  text-align: left;
}

.search-trigger:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive header fixes for medium-sized devices (1024px) */
@media (min-width: 992px) and (max-width: 1439px) {
  /* Navbar item font size adjustment */
  .navbar-nav .nav-link {
    font-size: 0.85rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  /* Optimize spacing for navbar items */
  .navbar-nav .nav-item {
    margin-right: 2px;
  }
  
  /* Adjust dropdown menus for better fit */
  .dropdown-menu.mega-menu {
    min-width: 540px;
  }
  
  /* Compact button in navbar */
  .navbar-nav .btn-primary.btn-sm {
    padding: 0.2rem 0.8rem;
    font-size: 0.9rem;
  }
  
  /* Adjust logo size for medium screens if needed */
  .navbar-brand img {
    height: 50px;
  }
  
    /* Arama Kutusu Stilleri */
    .search-container {
      position: relative;
      max-width: 250px;
      margin: 0 auto;
  }
  
  #search-form {
      display: flex;
      align-items: center;
  }
  
  #search-input {
      background-color: rgba(255, 255, 255, 0.1);
      border: none;
      border-radius: 20px;
      color: white;
      padding: 6px 15px;
      width: 100%;
      font-size: 13px;
      transition: all 0.3s;
  }
  
  #search-input::placeholder {
      color: rgba(255, 255, 255, 0.7);
  }
  
  #search-input:focus {
      outline: none;
      background-color: rgba(255, 255, 255, 0.2);
  }
  
  #search-form button {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      font-size: 14px;
      padding: 0;
  }
  
  #search-form button:hover {
      color: white;
  }

  /* Arama Sonuçları Stilleri */
  #search-results {
      position: fixed;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      max-width: 800px;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      z-index: 1050;
      max-height: 70vh;
      overflow-y: auto;
      display: none;
      padding: 20px;
  }

  #search-results.show {
      display: block;
  }

  .search-result-item {
      padding: 15px;
      border-bottom: 1px solid #eee;
      transition: all 0.3s;
  }

  .search-result-item:last-child {
      border-bottom: none;
  }

  .search-result-item:hover {
      background-color: #f9f9f9;
  }

  .search-result-item h5 {
      margin-bottom: 5px;
      color: var(--primary);
  }

  .search-result-item p {
      margin-bottom: 0;
      font-size: 14px;
      color: #666;
  }

  .search-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.5);
      z-index: 1040;
      display: none;
  }

  .search-overlay.show {
      display: block;
  }

  .no-results {
      text-align: center;
      padding: 20px;
      color: #666;
  }

  #close-search {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 20px;
      color: #666;
      cursor: pointer;
  }


  /* For laptop screens at 1024px width */
  @media (max-width: 1199px) {
    .navbar-brand img {
      height: 45px;
    }
    
    .navbar-nav .nav-link {
      font-size: 0.8rem;
      padding-left: 0.4rem;
      padding-right: 0.4rem;
    }
    
    /* Further reduce spacing between items */
    .navbar-nav .nav-item {
      margin-right: 1px;
    }
    
    /* Make dropdown menus take less space */
    .dropdown-menu.mega-menu {
      min-width: 480px;
    }
    
    /* Ensure dropdown menus don't overflow screen */
    .dropdown-menu {
      max-width: calc(100vw - 30px);
    }
  }
}

/* Add smooth transition for menu items to avoid abrupt changes */
.navbar-nav .nav-link {
  transition: font-size 0.2s, padding 0.2s;
}

.search-results-wrapper {
  max-height: 60vh;
  overflow-y: auto;
}

.search-result-item:last-child {
  border-bottom: none !important;
}

/* Modal arka plan düzeltmeleri */
.modal-backdrop {
  opacity: 0.85 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Modals should always be above backdrop */
.modal {
  z-index: 1050 !important;
}

/* Backdrop should be below modal but above page content */
.modal-backdrop {
  z-index: 1029 !important;
}

.statistics-section-ultra {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.statistics-section-ultra::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.statistics-section-ultra .container {
  z-index: 2;
}

/* Background Floating Numbers */
.stats-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-number {
  position: absolute;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(var(--primary-rgb, 78, 0, 170), 0.05);
  animation: floatNumber 6s ease-in-out infinite;
}

.floating-number:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-number:nth-child(2) {
  top: 20%;
  right: 5%;
  animation-delay: 2s;
}

.floating-number:nth-child(3) {
  bottom: 15%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes floatNumber {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.05;
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
    opacity: 0.08;
  }
}

/* Section Header */
.stats-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb, 78, 0, 170), 0.3);
}

.stats-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.stats-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Ultra Modern Stat Cards */
.stat-card-ultra {
  position: relative;
  height: 320px;
  perspective: 1000px;
  margin-bottom: 2rem;
}

.stat-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-card-ultra:hover .stat-card-inner {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Featured Stat Card */
.stat-card-ultra.featured-stat .stat-card-inner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  transform: scale(1.05);
}

.stat-card-ultra.featured-stat .stat-title,
.stat-card-ultra.featured-stat .stat-desc {
  color: rgba(255, 255, 255, 0.95);
}

.stat-card-ultra.featured-stat .stat-number {
  color: white;
}

.stat-card-ultra.featured-stat:hover .stat-card-inner {
  transform: translateY(-10px) rotateX(5deg) scale(1.05);
}

/* Stat Icon Container */
.stat-icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), #ff9500);
  border-radius: 20px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.stat-card-ultra.featured-stat .stat-icon-bg {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
}

.stat-card-ultra:hover .stat-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.stat-icon {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: white;
}

/* Stat Content */
.stat-content {
  text-align: center;
}

.stat-number-wrapper {
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-left: 4px;
}

.stat-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Stat Decoration */
.stat-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.stat-card-ultra:hover .stat-decoration {
  transform: scale(1.2);
  opacity: 0.15;
}

/* Stat Glow Effect */
.stat-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 24px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.stat-card-ultra:hover .stat-glow {
  opacity: 0.3;
}

/* Achievement Badges */
.achievements-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.achievement-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.achievement-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.achievement-badge i {
  margin-right: 8px;
  color: var(--accent);
  transition: color 0.3s ease;
}

.achievement-badge:hover i {
  color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .stats-title {
    font-size: 2.5rem;
  }
  
  .stat-card-ultra {
    height: 280px;
  }
  
  .stat-card-inner {
    padding: 2rem 1.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .floating-number {
    font-size: 6rem;
  }
}

@media (max-width: 767.98px) {
  .stats-title {
    font-size: 2rem;
  }
  
  .stat-card-ultra {
    height: 260px;
  }
  
  .stat-card-inner {
    padding: 1.5rem 1rem;
  }
  
  .stat-icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-title {
    font-size: 1.1rem;
  }
  
  .stat-desc {
    font-size: 0.9rem;
  }
  
  .floating-number {
    font-size: 4rem;
  }
  
  .achievements-container {
    flex-direction: column;
    align-items: center;
  }
  
  .achievement-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Animation Delays for Cards */
.stat-card-ultra:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card-ultra:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card-ultra:nth-child(3) {
  animation-delay: 0.3s;
}

/* Counter Animation Enhancement */
.stat-number.counting {
  animation: numberPulse 0.1s ease-in-out;
}

@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ...existing code... */

/* Modern About Section Styling */
.about-section-modern {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--bg-light);
}

.about-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.03);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
  z-index: 0;
}

/* Left side - Visual elements */
.about-visual-modern {
  position: relative;
  z-index: 1;
}

.about-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-main-image {
  transform: scale(1.05);
}

.experience-card{
  width: 300px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.exp-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.exp-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.exp-card .pe-2 {
  padding-right: 0.5rem !important;
  flex-shrink: 0;
}

.exp-content {
  flex: 1;
}

.exp-content h5 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.exp-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 500;
}

.about-main-image {
  width: 100%;
  height: auto;
  transition: transform 0.7s ease;
}

.about-image-container:hover .about-main-image {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4); }
  100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
}

.floating-badge i {
  color: var(--accent);
}

.experience-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 30px;
}

.exp-card {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}


.exp-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.exp-card:hover .exp-icon {
  background-color: var(--primary);
  color: white;
}

.exp-content h5 {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.exp-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Right side - Content */
.about-content-modern {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.2));
  color: var(--primary);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-title-modern {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-title-modern .text-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.about-title-modern .text-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background-color: var(--accent);
  opacity: 0.2;
  z-index: -1;
}

.about-description-modern {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.feature-list-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.feature-item-modern {
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-item-modern:hover {
  transform: translateX(10px);
}

.feature-item-modern .feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
  transition: all 0.3s ease;
}

.feature-item-modern:hover .feature-icon {
  transform: rotate(10deg);
}

.feature-item-modern .feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature-item-modern .feature-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.about-cta-modern {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-section-modern {
    padding: 60px 0;
  }
  
  .about-content-modern {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .about-title-modern {
    font-size: 2rem;
  }
  
  .experience-cards {
    margin-left: 0;
  }
  
  .exp-card {
    transform: translateX(0);
  }
}

@media (max-width: 767.98px) {
  .about-section-modern {
    padding: 50px 0;
  }
  
  .about-title-modern {
    font-size: 1.8rem;
  }
  
  .about-description-modern {
    font-size: 1rem;
  }
  
  .feature-item-modern .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }
  
  .feature-item-modern .feature-content h5 {
    font-size: 1rem;
  }
  
  .experience-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .exp-card {
    padding: 15px;
    gap: 12px;
  }
  
  .exp-content h5 {
    font-size: 0.9rem;
  }
  
  .exp-content p {
    font-size: 0.8rem;
  }
}

/* ...existing code... */

/* Modern Eğitim Kartları - İyileştirilmiş Tasarım */
.education-card-modern {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.education-card-modern:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, rgba(78, 0, 170, 0.02) 0%, rgba(255, 115, 0, 0.04) 100%);
  z-index: -1;
}

.education-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(78, 0, 170, 0.15);
  border-color: rgba(78, 0, 170, 0.1);
}

/* Modern Badge */
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(78, 0, 170, 0.1);
  transition: all 0.3s ease;
}

.education-card-modern:hover .card-badge {
  background: var(--primary);
  color: white;
}

.card-badge i {
  font-size: 0.7rem;
  margin-right: 3px;
}

/* Kart Başlığı */
.card-header-modern {
  padding: 2rem 1.5rem 0.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.icon-container {
  position: relative;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 24px;
  background: linear-gradient(135deg, #4e00aa 0%, #6600cc 100%);
  transform: rotate(-5deg);
  transition: all 0.5s ease;
  box-shadow: 0 10px 20px rgba(78, 0, 170, 0.2);
}

.education-card-modern:hover .icon-bg {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 15px 25px rgba(78, 0, 170, 0.3);
}

.card-header-modern i {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 2.2rem;
  transition: all 0.5s ease;
}

.education-card-modern:hover .card-header-modern i {
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

/* Kart İçeriği */
.card-body-modern {
  padding: 1rem 1.5rem 1.5rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.card-title-modern {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
  line-height: 1.3;
}

.card-title-modern::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.education-card-modern:hover .card-title-modern::after {
  width: 80px;
}

.card-desc-modern {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Kart Özellikleri */
.card-features-modern {
  margin-top: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
}

.feature-item-modern {
  display: flex;
  align-items: center;
  padding: 10px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-item-modern:last-child {
  border-bottom: none;
}

.feature-item-modern:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.feature-icon-modern {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(78, 0, 170, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-item-modern:hover .feature-icon-modern {
  background-color: var(--primary);
  transform: scale(1.1);
}

.feature-icon-modern i {
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.feature-item-modern:hover .feature-icon-modern i {
  color: white;
}

.feature-text-modern {
  display: flex;
  flex-direction: column;
}

.feature-label-modern {
  font-size: 0.7rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.feature-value-modern {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Kart Alt Kısmı */
.card-footer-modern {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 1) 40%);
}

.btn-modern-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(78, 0, 170, 0.25);
  letter-spacing: 0.5px;
}

.btn-modern-details span {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.btn-modern-details svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-left: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.btn-modern-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), #ff9500);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.btn-modern-details:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 0, 170, 0.4);
}

.btn-modern-details:hover::before {
  width: 100%;
}

.btn-modern-details:hover svg {
  transform: translateX(5px);
}

/* Tüm Eğitimleri Görüntüle Butonu - İyileştirilmiş */
.btn-view-all {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
}

.btn-view-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-view-all:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(78, 0, 170, 0.3);
  border-color: transparent;
}

.btn-view-all:hover::before {
  width: 100%;
}

.btn-view-all i {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-left: 8px;
}

.btn-view-all:hover i {
  transform: translateX(6px);
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
  .icon-container {
    width: 75px;
    height: 75px;
  }
  
  .icon-bg {
    width: 75px;
    height: 75px;
    border-radius: 20px;
  }
  
  .card-header-modern i {
    font-size: 1.9rem;
  }
  
  .card-title-modern {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .card-header-modern, .card-body-modern, .card-footer-modern {
    padding: 1.2rem;
  }
  
  .icon-container {
    width: 65px;
    height: 65px;
  }
  
  .icon-bg {
    width: 65px;
    height: 65px;
    border-radius: 18px;
  }
  
  .card-header-modern i {
    font-size: 1.7rem;
  }
  
  .card-title-modern {
    font-size: 1.2rem;
    padding-bottom: 12px;
  }
  
  .card-desc-modern {
    font-size: 0.9rem;
  }
  
  .feature-item-modern {
    padding: 8px;
  }
  
  .feature-icon-modern {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .btn-modern-details {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/* Footer Eğitim Listesi için CSS */
.footer-education-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}

.footer-education-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-education-links li {
  margin-bottom: 8px;
  line-height: 1.3;
}

.footer-education-links .footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  position: relative;
  padding-left: 12px;
}

.footer-education-links .footer-link::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color, #3498db);
}

.footer-education-links .footer-link:hover {
  color: #fff;
}

.horizontal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.horizontal-links li {
  margin-bottom: 10px;
}


/* Yeni Sidebar Stilleri */
.hover-opacity-100 {
    transition: opacity 0.3s ease;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.reference-logos img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.reference-logos img:hover {
    transform: scale(1.1);
}

.service-icon-sm {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.popular-post-card {
    transition: all 0.3s ease;
}

.popular-post-card:hover {
    background-color: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.popular-post-content .post-title {
    font-size: 0.9rem;
    line-height: 1.4;
}

.popular-post-content .post-excerpt {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Diğer Eğitimlerimiz - Modern Stil */
.bg-gradient-light {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  border-bottom: none;
}

.education-link-item {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 0px solid var(--primary);
}

.education-link-item:hover {
  background-color: rgba(78, 0, 170, 0.03);
  transform: translateX(5px);
  border-left: 4px solid var(--primary);
}

.education-link-item:hover .fas.fa-chevron-right {
  opacity: 1 !important;
  transform: translateX(0);
}

.education-icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(78, 0, 170, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.education-link-item:hover .education-icon-wrapper {
  background-color: var(--primary);
}

.education-link-item:hover .education-icon-wrapper i {
  color: white !important;
}

.education-title {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.education-link-item:hover .education-title {
  color: var(--primary);
}

.fas.fa-chevron-right {
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.transition-all {
  transition: all 0.3s ease;
}

/* Üst üste binmeyi önlemek için margin düzeltmesi */
.card.sticky-top {
  margin-bottom: 2rem;
}

/* Consultation Form Styles */
.form-container {
  background: linear-gradient(135deg, rgba(74, 0, 143, 0.05), rgba(232, 195, 8, 0.05));
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(74, 0, 143, 0.1);
  box-shadow: 0 10px 30px rgba(74, 0, 143, 0.1);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 20px 20px 0 0;
}

.form-container form {
  position: relative;
  z-index: 2;
}

.form-container .form-control {
  border: 2px solid rgba(74, 0, 143, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.form-container .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(74, 0, 143, 0.15);
  background: white;
  transform: translateY(-2px);
}

.form-container .form-control::placeholder {
  color: rgba(74, 0, 143, 0.6);
  font-weight: 500;
}

.form-container textarea.form-control {
  resize: vertical;
  min-height: 120px;
  border-radius: 12px;
}

.form-container .btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 0, 143, 0.3);
}

.form-container .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.form-container .btn:hover::before {
  left: 100%;
}

.form-container .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 0, 143, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.form-container .btn:active {
  transform: translateY(0);
}

/* Loading Spinner */
.loading-spinner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-spinner i {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Success Message */
.js-success-message {
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), rgba(25, 135, 84, 0.05));
  border: 2px solid rgba(25, 135, 84, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  font-weight: 600;
  color: #198754;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Error Message */
.js-error-message {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #dc3545;
  animation: slideInUp 0.5s ease-out;
}

/* Form Row Spacing */
.form-container .row {
  margin-bottom: 1rem;
}

.form-container .row:last-of-type {
  margin-bottom: 0;
}

/* Form Input Groups */
.form-container .mb-3 {
  margin-bottom: 1.5rem !important;
}

.form-container .mb-4 {
  margin-bottom: 2rem !important;
}

/* Form Button Enhancement */
.form-container .btn i {
  transition: transform 0.3s ease;
}

.form-container .btn:hover i {
  transform: translateX(3px);
}

/* Label Styling */
.form-container label {
  position: relative;
  display: block;
}

.form-container label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--primary);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.form-container .form-control:focus + label::before,
.form-container .form-control:not(:placeholder-shown) + label::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .form-container {
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .form-container .form-control {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .form-container .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
    width: 100%;
  }
  
  .form-container textarea.form-control {
    min-height: 100px;
  }
}

@media (max-width: 575.98px) {
  .form-container {
    padding: 1rem;
    border-radius: 15px;
  }
  
  .form-container .form-control {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .form-container .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Modal Form Specific Styles */
.modal .form-container {
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.modal .form-container::before {
  display: none;
}

.modal .form-container .form-control {
  background: white !important;
  border: 2px solid #e9ecef !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
}

.modal .form-container .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(74, 0, 143, 0.15) !important;
  background: white !important;
  transform: translateY(-2px) !important;
}

.modal .form-container .form-control::placeholder {
  color: rgba(74, 0, 143, 0.6) !important;
  font-weight: 500 !important;
}

.modal .form-container textarea.form-control {
  resize: vertical !important;
  min-height: 120px !important;
  border-radius: 12px !important;
}

.modal .form-container .btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 30px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  color: white !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(74, 0, 143, 0.3) !important;
  width: 100% !important;
  margin-top: 1rem !important;
}

.modal .form-container .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.modal .form-container .btn:hover::before {
  left: 100%;
}

.modal .form-container .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 0, 143, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.modal .form-container .btn:active {
  transform: translateY(0);
}

.modal .form-container .btn i {
  transition: transform 0.3s ease;
}

.modal .form-container .btn:hover i {
  transform: translateX(3px);
}

/* Modal Form Row Spacing */
.modal .form-container .row {
  margin-bottom: 1rem;
}

.modal .form-container .row:last-of-type {
  margin-bottom: 0;
}

.modal .form-container .mb-3 {
  margin-bottom: 1.5rem !important;
}

.modal .form-container .mb-4 {
  margin-bottom: 2rem !important;
}

/* Modal Loading Spinner */
.modal .loading-spinner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}

.modal .loading-spinner i {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

/* Modal Success Message */
.modal .js-success-message-modal {
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), rgba(25, 135, 84, 0.05));
  border: 2px solid rgba(25, 135, 84, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  font-weight: 600;
  color: #198754;
  animation: slideInUp 0.5s ease-out;
}

/* Modal Error Message */
.modal .js-error-message-modal {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #dc3545;
  animation: slideInUp 0.5s ease-out;
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  background-image: url(/images/buyce-narter-header.jpg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: right;
  animation: subtle-zoom 30s infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(22 0 41 / 84%) 0%, rgb(0 0 0 / 39%) 100%);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}

.hero-title {
  transform: translateY(30px);
  opacity: 0;
  animation: fade-up 1s 0.5s forwards;
}

.hero-subtitle {
  transform: translateY(30px);
  opacity: 0;
  animation: fade-up 1s 0.8s forwards;
}

.text-accent {
  color: var(--accent);
}

.animated-underline {
  position: relative;
  display: inline-block;
  transform: translateY(30px);
  opacity: 0;
  animation: fade-up 1s 0.3s forwards;
}

.animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  animation: line-grow 1s 0.8s forwards;
}

.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0;
  height: 15px;
  background-color: rgba(255, 115, 0, 0.3);
  z-index: -1;
  animation: highlight-grow 1s 1.2s forwards;
}

.hero-buttons {
  transform: translateY(30px);
  opacity: 0;
  animation: fade-up 1s 1s forwards;
}

.animated-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animated-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.animated-btn:hover::before {
  width: 300px;
  height: 300px;
}

.animated-btn.secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
}

.animated-btn.secondary:hover {
  background-color: var(--accent);
  color: white;
}

.scroll-down-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  opacity: 0;
  animation: fade-up 1s 1.5s forwards;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

.scroll-text {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Tony Robbins Style Service Cards */
.service-card.tr-style {
  height: 300px;
  perspective: 1000px;
  border-radius: 12px;
  overflow: visible;
  margin-bottom: 20px;
  box-shadow: none;
  background: transparent;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.tr-style.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.tr-style .card-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}

.service-card.tr-style:hover .card-inner,
.service-card.tr-style .card-inner.touch-rotate {
  transform: rotateY(180deg);
}

.service-card.tr-style .card-front,
.service-card.tr-style .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  top: 0;
  left: 0;
  pointer-events: auto;
  z-index: 2;
}

.service-card.tr-style .card-back a {
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
}

.service-card.tr-style .card-front {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card.tr-style .card-back {
  background: white;
  color: var(--text-dark);
  transform: rotateY(180deg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow-y: auto;
}

.service-card.tr-style .service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  transition: all 0.3s ease;
}

.service-card.tr-style .service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.service-card.tr-style .card-back .service-title {
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card.tr-style .service-description {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card.tr-style .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card.tr-style:hover .service-overlay {
  opacity: 1;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes highlight-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes subtle-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes scroll-wheel {
  0%, 20% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80%, 100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

/* Touch support for mobile */
.service-card.tr-style .card-inner.touch-rotate {
  transform: rotateY(180deg);
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 600px;
    height: 100vh;
  }
  
  .display-1 {
    font-size: 2.5rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .service-card.tr-style {
    height: 250px;
  }
  
  .service-card.tr-style .service-icon {
    font-size: 2.5rem;
  }
  
  .service-card.tr-style .card-front,
  .service-card.tr-style .card-back {
    padding: 20px;
  }
}