* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background-color: #f0f9ff;
    color: #1f2937;
    overflow-x: hidden;
	 font-family: 'Segoe UI', sans-serif;
	
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Header */
header {
	background: #FFFFFF;
	color: #131000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.top-bar {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    font-size: 12px;
    color: #131000;
    transition: transform 0.2s;
}

.top-bar span i {
    margin-right: 6px;
    color: #FFFFFF;
    font-size: 14px;
}

.top-bar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
}

.top-bar a:hover {
    background: linear-gradient(135deg, #fb923c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-bar span:hover {
    transform: scale(1.05);
}

.top-bar .separator {
    color: #bfdbfe;
    font-size: 12px;
    margin: 0 5px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
	
}

.nav-links li {
    margin-left: 30px;
    position: relative;
	list-style-type: none; /* Noktaları kaldırır */
}

.nav-links a {
    text-decoration: none;
    color: #0F80C1;
	font-style: oblique;
    font-size: 16px;
    transition: color 0.3s;
	border-bottom: solid 2px;
	
}

.nav-links a:hover {
    color: #fb923c;
	 border-bottom: 2px solid #007BFF; /* Mavi, 2px kalınlığında alt çizgi */

  
	
	


}

/* Dropdown Menu (Desktop) */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: linear-gradient(135deg, #fff, #e6f3ff);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    
    left: 0;
    min-width: 260px;
    z-index: 1000;
    padding: 10px 0;
    border: 1px solid #bfdbfe;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #1f2937;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #3b82f6, #fb923c);
    color: #fff;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    color: #6262FF;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #fb923c;
}

.mobile-menu {
    display: none;
    background: #FFFFFF;
    padding: 20px;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    position: fixed;
    top: 60px;
    right: 0;
    width: 70%;
    max-width: 300px;
    max-height: 500px;
    overflow-y: auto;
    transform: translateX(100%);
}

.mobile-menu::before {
    content: 'Sistemce';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 80px;
    font-weight: bold;
    color: #1f2937;
    opacity: 0.1;
    pointer-events: none;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
    animation: slideInRight 0.3s ease forwards;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu li {
    margin: 10px auto;
    width: 90%;
    background: linear-gradient(135deg, #e6f3ff, #ffffff);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
}

.mobile-menu li:hover {
    background: #fb923c;
    transform: scale(1.05);
}

.mobile-menu a {
    text-decoration: none;
    color: #1f2937;
    font-size: 16px;
    display: block;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    transition: color 0.3s;
}

.mobile-menu li:hover a {
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b82f6, #ffffff);
    padding: 80px 20px;
    animation: fadeInUp 1s ease;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,186.7C96,181,192,171,288,160C384,149,480,139,576,149.3C672,160,768,192,864,197.3C960,203,1056,181,1152,176C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center top;
    background-size: cover;
    z-index: 0;
}

.hero-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-box {
    width: 600px;
    height: 400px;
    background: #F8EFEF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid #3b82f6;
    animation: fadeInUp 1.2s ease;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-box {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
}

.hero-box h1 {
    font-size: 28px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.hero-box h1:hover {
    transform: scale(1.05);
}

.hero-box p {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 20px;
	text-align: justify
}

.hero-box ul {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hero-box ul li {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.hero-box ul li:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #3b82f6;
    position: absolute;
    left: 0;
    top: 2px;
}

.btn-container {
    text-align: right;
}

.hero-box .btn {
    display: inline-block;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-box .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.5);
}

/* Slider */
/* Slider Konteyneri */
.slider-container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid transparent;
    background-clip: padding-box;
}

/* Slider Ana Elemanı */
.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

/* Her Slayt */
.slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

/* Görsel */
.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.slider img:hover {
    transform: scale(1.05);
}

/* Başlık / Açıklama */
.slider-caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #d3d3d3;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: background 0.3s, transform 0.3s;
    max-width: 80%;
    text-align: right;
    overflow-wrap: break-word;
}
/* Slider İleri/Geri Okları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s, transform 0.3s;
    z-index: 3;
    user-select: none;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}
/* Services Section */
.services {
    padding: 20px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
}


.services h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease;
    background: #1d4ed8;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.services h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}



.service-card i {
    font-size: 40px;
    color: #fb923c;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: rotate(360deg);
}

.service-card h3 {
  text-align: center;
    font-size: 1.2rempx;
    color: #fff;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card h3:hover {
    transform: scale(1.05);
}

.service-card h3 a {
    color: #FFF;
    text-decoration: none;
	
}

.service-card h3 a:hover {
    color: #3b82f6;
}

.service-card h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}


.service-card .btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #fb923c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.5);
}
/* Services Section */
.services2 {
    padding: 20px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
}

.services2 h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    background: #1d4ed8;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.services2 h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.services2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.services2-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}



.service2-card i {
    font-size: 40px;
    color: #fb923c;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.service2-card:hover i {
    transform: rotate(360deg);
}

.service2-card h3 {
  text-align: center;
    font-size: 1.2rempx;
    color: #fff;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service2-card h3:hover {
    transform: scale(1.05);
}

.service2-card h3 a {
    color: #FFF;
    text-decoration: none;
	
}

.service2-card h3 a:hover {
    color: #3b82f6;
}

.service2-card h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}


.service2-card .btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #fb923c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service2-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.5);
}
/* Certification Section (Belgelendirme) */
.certification-section {
  
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
}

.certification-section h1 {
     font-size: 26px;
      color: #0a2351;
      border-bottom: 3px solid #ffd700;
      padding-bottom: 10px;
      position: relative;
      transition: color 0.3s ease;
	text-align: center;
}

.certification-section h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.certification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.certification-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.certification-card {
    background: rgba(255, 255, 255, 0.3);
  
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.4s ease;
    text-align: center;
	padding: 10px 10px; /* Üstte 5mm, sağ/sol 2mm */
	margin-top: 20px;
	margin-bottom: 20px;
	  position: relative;
    text-align: center; /* İçeriği ortala */
    padding: 5px 2px; /* Üstte 5mm, sağ/sol 2mm */
    box-sizing: border-box;
    background-color: #f5f5f5; /* Arka plan rengini koru */
}

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

.certification-card i {
    font-size: 40px;
    color: #10b981;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.certification-card:hover i {
    transform: rotate(360deg);
}



.certification-card p {
    font-size: 0,9rem;
    color: #333;
	line-height: 1.5;
	margin: 20px;
	
   
}

.certification-card .btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #fb923c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.certification-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.5);
}

/* Consulting Section (Danışmanlık) */
.consulting-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
}

.consulting-section h1 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease;
    background: #1d4ed8;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.consulting-section h1::after {
    content: '';

    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.consulting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.consulting-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.consulting-card {
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.4s ease;
    text-align: center;
}

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

.consulting-card i {
    font-size: 40px;
    color: #8b5cf6;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.consulting-card:hover i {
    transform: rotate(360deg);
}

.consulting-card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.consulting-card p {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 20px;
}

.consulting-card .btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #fb923c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.consulting-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
}

.contact-section h1 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease;
    background: #1d4ed8;
    padding: 20px;
    border-radius: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-section h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.contact-column {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-column h2 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.contact-column ul {
    list-style: none;
}

.contact-column ul li {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.contact-column ul li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #3b82f6;
}

.contact-column ul li a {
    color: #1f2937;
    text-decoration: none;
}

.contact-column ul li a:hover {
    color: #fb923c;
}

/* Blog Section */
.blog-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
    max-width: 1200px;  /* Maksimum genişlik */
    margin: 0 auto;     /* Ortalamak için */
}
.blog-sectionxx {
    padding: 10px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
    max-width: 1200px;  /* Maksimum genişlik */
    margin: 0 auto;     /* Ortalamak için */
}
.blog-section h1 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease;
    background: #1d4ed8;
    padding: 20px;
    border-radius: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.blog-section h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.4s ease;
    text-align: center;
}

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

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.blog-card p {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 20px;
}

.blog-card .btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #fb923c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.5);
}

/* Blog Detail Page */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.blog-sidebar {
    width: 300px;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.blog-sidebar h2 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.blog-sidebar ul {
    list-style: none;
}

.blog-sidebar ul li {
    margin-bottom: 15px;
}

.blog-sidebar ul li a {
    color: #1f2937;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.blog-sidebar ul li a:hover {
    color: #3b82f6;
}

.blog-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.blog-content h1 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 20px;
}

.blog-content img {
 width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
        }
}

.blog-content p {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 20px;
}

.blog-content h2 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
}

.blog-content ol, .blog-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-content li {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 10px;
}

.related-posts {
    margin-top: 40px;
}

.related-posts h2 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* References Section */
.references {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
}

.references h1 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease;
    background: #1d4ed8;
    padding: 20px;
    border-radius: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.references h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.references-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 1;
}

.reference-item {
    background: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.4s ease;
}

.reference-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.reference-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

/* Content Section (Hakkımızda, Blog Detay, vb.) */
.content {
    padding: 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-size: cover;
    z-index: 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content h1 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    background: #1d4ed8;
    padding: 20px;
    border-radius: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.content h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.content h2 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
}

.content p {
	
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #3b82f6, #ffffff);
    color: #1f2937;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,186.7C96,181,192,171,288,160C384,149,480,139,576,149.3C672,160,768,192,864,197.3C960,203,1056,181,1152,176C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center top;
    background-size: cover;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-column {
    background: rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.footer-title-box {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    margin-bottom: 15px;
    text-align: center;
	font-size: 10px;
}

.footer-content h3 {
    font-size: 14px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.footer-content h3:hover {
    transform: scale(1.05);
}

.footer-content h3 i {
    margin-right: 8px;
    font-size: 20px;
    color: #3b82f6;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 12px;
    padding-left: 5px;
}

.footer-content ul li i {
    margin-right: 8px;
    font-size: 14px;
    color: #3b82f6;
    transition: color 0.3s;
}

.footer-content ul li:hover i {
    color: #fb923c;
}

.footer-content ul li a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content ul li a:hover {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        padding: 6px 10px;
        gap: 8px;
    }

    .top-bar span {
        font-size: 11px;
        margin: 0 8px;
    }

    .top-bar span i {
        font-size: 12px;
        margin-right: 4px;
    }

    .top-bar .separator {
        font-size: 10px;
        margin: 0 4px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-box {
        width: 100%;
        height: auto;
        min-height: 400px;
        padding: 20px;

    }

    .hero-box h1 {
        font-size: 24px;
    }

    .hero-title-box {
        padding: 8px;
    }

    .slider-container {
        width: 100%;
        height: 300px;
    }

    .slide {
        width: 100%;
        height: 300px;
    }

    .slider img {
        height: 300px;
    }

    .slider-caption {
        font-size: 12px;
        padding: 6px 12px;
        bottom: 15px;
        right: 15px;
    }

    .services h2, .certification-section h1, .consulting-section h1, .contact-section h1, .blog-section h1, .references h1 {
        font-size: 28px;
    }

    .contact-container {
        flex-direction: column;
    }

    .blog-container {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .reference-item {
        padding: 10px;
    }

    .reference-item img {
        height: 80px;
    }

    .content h1 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-title-box {
        padding: 8px;
    }

    .footer-content h3 {
        font-size: 18px;
    }

    .footer-content h3 i {
        font-size: 18px;
    }

    .footer-content ul li i {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .top-bar {
        flex-direction: column;
        gap: 6px;
    }

    .top-bar .separator {
        display: none;
    }

    .hero-box {
        min-height: 350px;
        padding: 15px;
    }

    .slider-container {
        height: 250px;
    }

    .slide {
        height: 250px;
    }

    .slider img {
        height: 250px;
    }

    .slider-caption {
        font-size: 10px;
        padding: 6px 10px;
        bottom: 10px;
        right: 10px;
    }

    .references-grid {
        grid-template-columns: 1fr;
    }

    .reference-item img {
        height: 70px;
    }

    .mobile-menu {
        width: 100%;
        max-width: 250px;
        top: 60px;
        max-height: 450px;
    }

    .mobile-menu::before {
        font-size: 60px;
    }

    .mobile-menu li {
        width: 85%;
    }
}
/* Mevcut stiller korunuyor, sadece blog-sidebar ve blog-content için güncellemeler */
.blog-container {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.blog-sidebar {
    width: 30%;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-sidebar h2 {
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    margin: -20px -20px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 12px;
}

.blog-sidebar ul li a {
    display: flex;
    align-items: center;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-sidebar ul li a i {
    margin-right: 10px;
    color: #004aad;
}

.blog-sidebar ul li a:hover {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul li a:hover i {
    color: #fff;
}

.blog-content {
    width: 70%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 18px;
    margin: 10px;
    color: #333;
}

.blog-card p {
    font-size: 14px;
    margin: 0 10px 10px;
    color: #666;
}

.blog-card .btn {
    display: block;
    margin: 10px;
    padding: 8px 16px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.blog-card:hover {
    transform: scale(1.05);
}

.related-posts {
    margin-top: 40px;
    padding: 20px;
}

.related-posts h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #004aad;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.reference-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.reference-item img {
    width: 100%;
    height: auto;
    display: block;
}

.reference-item:hover {
    transform: scale(1.05);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }

    .blog-sidebar, .blog-content {
        width: 100%;
    }

    .blog-grid, .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sidebar h2 {
        margin: -20px -20px 20px;
    }
}

@media (max-width: 400px) {
    .blog-grid, .related-grid, .references-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }
}/* Mevcut stiller korunuyor, sadece about bölümü için eklemeler */
.about {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about h1 {
    font-size: 32px;
    color: #004aad;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
  text-align: justify;
            color: #555;
            margin: 15px 0;
            font-size: 1.1rem;
            background-color: #f8f8f8; /* Arka plan rengi */
            border: 2px solid #333; /* Belirgin kenarlık */
            padding: 15px; /* İç boşluk */
            border-radius: 5px; /* Hafif yuvarlatılmış kenarlar */
        }
}

.about-image {
    width: 40%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.about-text ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    color: #004aad;
    margin-right: 10px;
}

.about-text a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.about-text a:hover {
    text-decoration: underline;
}

/* Mevcut blog ve referans stilleri */
.blog-container {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.blog-sidebar {
    width: 30%;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-sidebar h2 {
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    margin: -20px -20px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 12px;
}

.blog-sidebar ul li a {
    display: flex;
    align-items: center;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-sidebar ul li a i {
    margin-right: 10px;
    color: #004aad;
}

.blog-sidebar ul li a:hover {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul li a:hover i {
    color: #fff;
}

.blog-content {
    width: 70%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 18px;
    margin: 10px;
    color: #333;
}

.blog-card p {
    font-size: 14px;
    margin: 0 10px 10px;
    color: #666;
}

.blog-card .btn {
    display: block;
    margin: 10px;
    padding: 8px 16px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.blog-card:hover {
    transform: scale(1.05);
}

.related-posts {
    margin-top: 40px;
    padding: 20px;
}

.related-posts h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #004aad;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.reference-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.reference-item img {
    width: 100%;
    height: auto;
    display: block;
}

.reference-item:hover {
    transform: scale(1.05);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image, .about-text {
        width: 100%;
    }

    .blog-container {
        flex-direction: column;
    }

    .blog-sidebar, .blog-content {
        width: 100%;
    }

    .blog-grid, .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sidebar h2 {
        margin: -20px -20px 20px;
    }
}

@media (max-width: 400px) {
    .blog-grid, .related-grid, .references-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .about h1 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 20px;
    }
}/* Mevcut stiller korunuyor, ISO 9001 yenileme için güncellemeler */
.service-section {
 text-align: justify;
            color: #555;
            margin: 15px 0;
            font-size: 1.1rem;
            background-color: #f8f8f8; /* Arka plan rengi */
            border: 2px solid #333; /* Belirgin kenarlık */
            padding: 15px; /* İç boşluk */
            border-radius: 5px; /* Hafif yuvarlatılmış kenarlar */
        }

.service-section .main-title {
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}





.service-card h2 {
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 10px;
    border-radius: 6px;
    margin: -15px -15px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card .inline-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card .inline-list span {
    font-size: 13px;
    color: #333;
    background: #f5f7fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.service-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin: 10px auto;
    display: block;
}



.service-card .evrak-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card .evrak-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-card .evrak-list li i {
    color: #004aad;
    margin-right: 8px;
    font-size: 12px;
}





.service-card .card-divider {
    width: 100%;
    height: 3px;
    background: #004aad;
    margin-top: 15px;
}





.service-content h3 {
    font-size: 20px;
    color: #333;
    margin: 15px 0 10px;
}



.service-content ul, .service-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-content ul li, .service-content ol li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-content ul li i {
    color: #004aad;
    margin-right: 10px;
}

.service-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.service-content table th, .service-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.service-content table th {
    background: #004aad;
    color: #fff;
}

.service-content a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.service-content a:hover {
    text-decoration: underline;
}

.service-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

/* Mevcut about, blog, referans stilleri */
.about {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about h1 {
    font-size: 32px;
    color: #004aad;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-image {
    width: 40%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.about-text ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    color: #004aad;
    margin-right: 10px;
}

.about-text a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.about-text a:hover {
    text-decoration: underline;
}

.blog-container {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.blog-sidebar {
    width: 30%;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-sidebar h2 {
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    margin: -20px -20px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 12px;
}

.blog-sidebar ul li a {
    display: flex;
    align-items: center;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-sidebar ul li a i {
    margin-right: 10px;
    color: #004aad;
}

.blog-sidebar ul li a:hover {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul li a:hover i {
    color: #fff;
}

.blog-content {
    width: 70%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 18px;
    margin: 10px;
    color: #333;
}

.blog-card p {
    font-size: 14px;
    margin: 0 10px 10px;
    color: #666;
}

.blog-card .btn {
    display: block;
    margin: 10px;
    padding: 8px 16px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.blog-card:hover {
    transform: scale(1.05);
}

.related-posts {
    margin-top: 40px;
    padding: 20px;
}

.related-posts h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #004aad;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.reference-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.reference-item img {
    width: 100%;
    height: auto;
    display: block;
}

.reference-item:hover {
    transform: scale(1.05);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-section .main-title {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
    }

    .service-content {
        padding: 10px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image, .about-text {
        width: 100%;
    }

    .blog-container {
        flex-direction: column;
    }

    .blog-sidebar, .blog-content {
        width: 100%;
    }

    .blog-grid, .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .service-grid, .blog-grid, .related-grid, .references-grid {
        grid-template-columns: 1fr;
    }

    .service-card h2 {
        font-size: 16px;
    }

    .service-card .inline-list span {
        font-size: 11px;
        padding: 3px 6px;
    }

    .service-card p, .service-card .evrak-list li {
        font-size: 13px;
    }

    .service-content h2 {
        font-size: 20px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p, .service-content ul li, .service-content ol li {
        font-size: 14px;
    }

    .blog-sidebar ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .about h1 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 20px;
    }
}/* Mevcut stiller korunuyor, ISO 9001 yenileme için güncellemeler */
.service-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section .main-title {
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}





.service-card h2 {
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 10px;
    border-radius: 6px;
    margin: -15px -15px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card .inline-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card .inline-list span {
    font-size: 13px;
    color: #333;
    background: #f5f7fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.service-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin: 10px auto; /* Ortalandı */
    display: block;
}



.service-card .evrak-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card .evrak-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-card .evrak-list li i {
    color: #004aad;
    margin-right: 8px;
    font-size: 12px;
}





.service-card .card-divider {
    width: 100%;
    height: 3px;
    background: #004aad;
    margin-top: 15px;
}

.service-content {
   text-align: justify;
            color: #555;
            margin: 15px 0;
            font-size: 1.1rem;
            background-color: #f8f8f8; /* Arka plan rengi */
            border: 2px solid #333; /* Belirgin kenarlık */
            padding: 20px; /* İç boşluk */
            border-radius: 5px; /* Hafif yuvarlatılmış kenarlar */
		position: relative;
  overflow: visible; /* test için değiştirin */
}
.service-content {
    

}

.service-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
	   text-align: center;
    font-size: 1.2rempx;
    color: #fff;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.service-content h3 {
    font-size: 20px;
    color: #333;
    margin: 15px 0 10px;
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-content ul, .service-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-content ul li, .service-content ol li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-content ul li i {
    color: #004aad;
    margin-right: 10px;
}

.service-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.service-content table th, .service-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.service-content table th {
    background: #004aad;
    color: #fff;
}

.service-content a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.service-content a:hover {
    text-decoration: underline;
}

.service-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

/* Mevcut about, blog, referans stilleri */
.about {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about h1 {
    font-size: 32px;
    color: #004aad;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-image {
    width: 40%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.about-text ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    color: #004aad;
    margin-right: 10px;
}

.about-text a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.about-text a:hover {
    text-decoration: underline;
}

.blog-container {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.blog-sidebar {
    width: 30%;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-sidebar h2 {
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    margin: -20px -20px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 12px;
}

.blog-sidebar ul li a {
    display: flex;
    align-items: center;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-sidebar ul li a i {
    margin-right: 10px;
    color: #004aad;
}

.blog-sidebar ul li a:hover {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul li a:hover i {
    color: #fff;
}

.blog-content {
    width: 70%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 18px;
    margin: 10px;
    color: #333;
}

.blog-card p {
    font-size: 14px;
    margin: 0 10px 10px;
    color: #666;
}

.blog-card .btn {
    display: block;
    margin: 10px;
    padding: 8px 16px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.blog-card:hover {
    transform: scale(1.05);
}

.related-posts {
    margin-top: 40px;
    padding: 20px;
}

.related-posts h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #004aad;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.reference-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.reference-item img {
    width: 100%;
    height: auto;
    display: block;
}

.reference-item:hover {
    transform: scale(1.05);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-section .main-title {
        font-size: 28px;
		
    }

    .service-card {
        width: 100%;
    }

    .service-content {
        padding: 10px;
    }

    .service-image {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image, .about-text {
        width: 100%;
    }

    .blog-container {
        flex-direction: column;
    }

    .blog-sidebar, .blog-content {
        width: 100%;
    }

    .blog-grid, .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .service-grid, .blog-grid, .related-grid, .references-grid {
        grid-template-columns: 1fr;
    }

    .service-card h2 {
        font-size: 16px;
    }

    .service-card .inline-list span {
        font-size: 11px;
        padding: 3px 6px;
    }

    .service-card p, .service-card .evrak-list li {
        font-size: 13px;
    }

    .service-content h2 {
        font-size: 20px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p, .service-content ul li, .service-content ol li {
        font-size: 14px;
    }

    .blog-sidebar ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .about h1 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 20px;
    }
}/* Mevcut stiller korunuyor, ISO 9001 belgelendirme için güncellemeler */
.service-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section .main-title {
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    background: #fff;
    border: 4px solid #5E37F9;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
	  background-clip: padding-box;
    
    animation: fadeInUp 1.4s ease;
    text-align: center
}

.service-card:hover {
    transform: scale(1.05);
	
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
}

.service-card h2 {
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 10px;
    border-radius: 6px;
    margin: -15px -15px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card .inline-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card .inline-list span {
    font-size: 13px;
    color: #333;
    background: #f5f7fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.service-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin: 10px auto;
    display: block;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-card .evrak-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card .evrak-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-card .evrak-list li i {
    color: #004aad;
    margin-right: 8px;
    font-size: 12px;
}





.service-card .card-divider {
    width: 100%;
    height: 3px;
    background: #004aad;
    margin-top: 15px;
}

.blog-container {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.blog-sidebar {
    width: 30%;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-sidebar h2 {
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 15px 20px;
    border-radius: 8px;
    margin: -20px -20px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 12px;
}

.blog-sidebar ul li a {
    display: flex;
    align-items: center;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-sidebar ul li a i {
    margin-right: 10px;
    color: #004aad;
}

.blog-sidebar ul li a:hover {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-sidebar ul li a:hover i {
    color: #fff;
}

.blog-content {
    width: 70%;
	text-align: justify;
            color: #555;
            margin: 15px 0;
            font-size: 1.1rem;
            background-color: #f8f8f8; /* Arka plan rengi */
            border: 2px solid #333; /* Belirgin kenarlık */
            padding: 15px; /* İç boşluk */
            border-radius: 5px; /* Hafif yuvarlatılmış kenarlar */
}

.blog-content .content-inner {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-content h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
}

.blog-content h3 {
    font-size: 20px;
    color: #333;
    margin: 15px 0 10px;
}

.blog-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-content ul, .blog-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.blog-content ul li, .blog-content ol li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.blog-content ul li i {
    color: #004aad;
    margin-right: 10px;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.blog-content table th, .blog-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.blog-content table th {
    background: #004aad;
    color: #fff;
}

.blog-content a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

/* Mevcut about, blog, referans stilleri */
.about {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about h1 {
    font-size: 32px;
    color: #004aad;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-image {
    width: 40%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.about-text ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    color: #004aad;
    margin-right: 10px;
}

.about-text a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.about-text a:hover {
    text-decoration: underline;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 18px;
    margin: 10px;
    color: #333;
}

.blog-card p {
    font-size: 14px;
    margin: 0 10px 10px;
    color: #666;
}

.blog-card .btn {
    display: block;
    margin: 10px;
    padding: 8px 16px;
    background: #004aad;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.blog-card:hover {
    transform: scale(1.05);
}

.related-posts {
    margin-top: 40px;
    padding: 20px;
}

.related-posts h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #004aad;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.reference-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.reference-item img {
    width: 100%;
    height: auto;
    display: block;
}

.reference-item:hover {
    transform: scale(1.05);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-section .main-title {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
    }

    .blog-container {
        flex-direction: column;
    }

    .blog-sidebar, .blog-content {
        width: 100%;
    }

    .blog-content .content-inner {
        padding: 10px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image, .about-text {
        width: 100%;
    }

    .blog-grid, .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .service-grid, .blog-grid, .related-grid, .references-grid {
        grid-template-columns: 1fr;
    }

    .service-card h2 {
        font-size: 16px;
    }

    .service-card .inline-list span {
        font-size: 11px;
        padding: 3px 6px;
    }

    .service-card p, .service-card .evrak-list li logical-block-size: 13px;
    }

    .blog-content h2 {
        font-size: 20px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content p, .blog-content ul li, .blog-content ol li {
        font-size: 14px;
    }

    .blog-sidebar ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .about h1 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 20px;
    }
}/* Certification kartlarındaki ikonlar için stil */


.certification-icon {
    display: block;
    width: calc(100% - 4px); /* Sağ ve sol 2mm (2px) boşluk */
    height: 200px; /* Yüksekliği sabit tut */
    max-width: 100%; /* Kutudan taşmasını önle */
    margin: 0 auto 2px; /* Resim ile başlık arası 5mm (5px) */
    object-fit: contain; /* Resmin tamamını göster */
    background-color: #f5f5f5; /* Resmin arka planı kutuyla uyumlu */
}

/* Başlık ile metin arasındaki boşluğu optimize et */
.certification-card h3 {
   text-align: center;
    font-size: 1.2rempx;
    color: #fff;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
		
}
.certification-card h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}
.certification-card h2 {
   text-align: center;
    font-size: 1.2rempx;
    color: #fff;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
		
}
.certification-card h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .certification-icon {
        width: calc(100% - 4px); /* Sağ ve sol 2mm (2px) boşluk */
        height: 240px; /* Yüksekliği koru */
        margin-bottom: 5px; /* 5mm boşluk */
    }

    .certification-card {
        padding: 5px 2px; /* Üstte 5mm, sağ/sol 2mm */
		margin: 0 25px;
    }
}

/* Daha küçük ekranlar için ek optimizasyon */
@media screen and (max-width: 400px) {
    .certification-icon {
        width: calc(100% - 4px); /* Sağ ve sol 2mm (2px) boşluk */
        height: 180px; /* Yüksekliği koru */
        margin-bottom: 5px; /* 5mm boşluk */
    }

    .certification-card {
        padding: 5px 2px; /* Üstte 5mm, sağ/sol 2mm */
		margin: 0 25px;
    }
}  zbody {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        .zcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .zheader-section {
            position: relative;
            width: 100%;
            height: 200px; /* Arka plan resmi için uygun yükseklik */
            background-image: url('assets/icons/iso-9001-belgesi.jpeg'); /* Arka plan resmi */
			
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff; /* Metin rengi beyaz */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Metin gölgesi */
        }
        .zheader-section h1 {
            font-size: 2.5rem;
            margin: 0;
            padding: 0 20px;
        }
        .zhero-image {
            width: 100%;
            height: auto;
          
            align-items: center;
          
            margin: 0 auto 30px auto; /* Ortalanmış resim */
			padding: 10px;
			border: 3px solid #1e90ff;
			border-radius: 10px;
        }
        .zcontent h2 {
            text-align: center;
            color: #333;
            margin: 30px 0;
        }
        .zcontent p {
            text-align: justify;
            color: #555;
            margin: 15px 0;
            font-size: 1.1rem;
			
        }
        .zdivider {
            border-top: 2px solid #ccc;
            margin: 40px 0;
        }
        .ztags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .ztag {
            background-color: #f0f0f0;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            color: #333;
        }
        @media (max-width: 768px) {
            .zcontainer {
                padding: 15px;
            }
            .zheader-section {
                height: 150px; /* Mobil için daha küçük yükseklik */
            }
            .zheader-section h1 {
                font-size: 1.8rem; /* Mobil için küçültülmüş font */
            }
            .zhero-image {
                max-width: 100%; /* Mobil cihazlarda resmin tamamı sığar */
                max-height: 200px; /* Mobil için daha küçük yükseklik */
                height: auto;
				margin: 0 5px;
				margin: 0 10px 30px 10px; /* Sol ve sağda 10px boşluk */
    width: calc(100% - 20px); /* Toplam margin'i hesaba katarak genişlik ayarla */
            }
            .zcontent p {
                font-size: 1rem;
            }
        }
		/* Logo stilleri */
.logo-link {
    display: inline-block;
    margin-right: 20px;
    
}
 .logo-small {
        background-image: url(assets/sistemce-logo-small.png); /* Daha küçük logo dosyası */
        background-size: contain; /* Oranı koru */
        background-position: center;
        background-repeat: no-repeat;
}


.logo {
	
	display: block;
    width: 100%;
    height: 100%;
   
    background-size: cover; /* Logoyu 220x80px’e sığdırmak için kırp */
    background-position: center; /* Logonun merkezini göster */
    background-repeat: no-repeat; /* Tekrarlanmasını önle */
  
    width: 300px; /* Logo genişliği */
    height: 80px; /* Logo yüksekliği */
	background-image: url(assets/sistemce-logo.png);
}
/* Karşılaştırma bölümü stilleri */
.comparison-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7); /* Etkileyici arka plan gradyanı */
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

/* Başlık alanı */
.comparison-header {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa); /* Derin mavi gradyan */
    padding: 20px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.comparison-header h2 {
    font-size: 28px;
    margin: 0;
    animation: fadeInUp 1s ease;
}

.comparison-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* İçerik ve tablo alanı */
.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9); /* Hafif şeffaf beyaz arka plan */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Tablo stilleri */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table th {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa); /* Başlık için gradyan */
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.comparison-table td {
    font-size: 1rem;
    color: #1f2937;
}

.comparison-table tr:nth-child(even) {
    background: #f9fafb; /* Çift satır için hafif arka plan */
}

.comparison-table tr:hover {
    background: #e0f2fe; /* Üzerine gelindiğinde renk değişimi */
    transition: background 0.3s;
}

/* Konuşma balonu (speech bubble) */
.speech-bubble {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-style: italic;
    color: #1f2937;
    max-width: 400px;
    margin: 0 auto;
}

.speech-bubble p {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.speech-bubble span {
    display: block;
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: bold;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .comparison-header h2 {
        font-size: 24px;
    }
    .comparison-table th,
    .comparison-table td {
        font-size: 0.9rem;
        padding: 10px;
    }
    .speech-bubble {
        max-width: 100%;
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .comparison-header h2 {
        font-size: 20px;
    }
    .comparison-table {
        font-size: 0.8rem;
    }
    .speech-bubble p {
        font-size: 1rem;
    }
}

/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .logo {
	background-image: url(assets/sistemce-logo.png);
	width: 218px; /* 300px * 0.727 */
	height: 58px; /* 80px * 0.727 (oranı koru) */
	margin-right: 10px;
    }

    .logo-link {
  width: 177px; /* 300px * 0.591 */
        height: 47px; /* 80px * 0.591 (oranı koru) */
        margin-right: 5px;
    }
}

@media screen and (max-width: 400px) {

    .logo-small {
        background-image: url(assets/sistemce-logo-small.png); /* Daha küçük logo dosyası */
        background-size: contain; /* Oranı koru */
        background-position: center;
        background-repeat: no-repeat;
}
/
	/* ISO resmi için özel sınıf */
        .iso-image {
            display: block;
            max-width: 700px;
            height: auto;
            margin: 0 auto 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }
/* Mobil uyumluluk için ek stiller */
@media (max-width: 768px) {
    .iso-image {
        max-width: 100%; /* Mobil cihazlarda tam genişlik */
        height: auto;
        margin: 0 0 20px; /* Kenar boşluklarını sıfırla, sadece alt boşluk bırak */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Mobil için daha hafif gölge */
    }
}

@media (max-width: 400px) {
    .iso-image {
        max-width: 100%; /* Küçük ekranlarda tam genişlik */
        height: auto;
        margin: 0 0 15px; /* Daha küçük alt boşluk */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Daha hafif gölge */
    }
}
	/* Mevcut stiller korundu, sadece yeni eklemeler ve güncellemeler aşağıda */


/* Karşılaştırma bölümü stilleri */
.comparison-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.comparison-header {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    padding: 20px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.comparison-header h2 {
    font-size: 28px;
    margin: 0;
    animation: fadeInUp 1s ease;
}

.comparison-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    margin: 10px auto 0;
    border-radius: 2px;
}

.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table th {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.comparison-table td {
    font-size: 1rem;
    color: #1f2937;
}

.comparison-table tr:nth-child(even) {
    background: #f9fafb;
}

.comparison-table tr:hover {
    background: #e0f2fe;
    transition: background 0.3s;
}

.speech-bubble {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-style: italic;
    color: #1f2937;
    max-width: 400px;
    margin: 20px auto;
}

.speech-bubble p {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.speech-bubble span {
    display: block;
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: bold;
}

/* ISO resmi için özel sınıf */
.iso-image {
    display: block;
    max-width: 700px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .zheader-section {
        height: 150px;
    }

    .zheader-section h1 {
        font-size: 1.8rem;
    }

   

    .zcontent p {
        font-size: 1rem;
    }

    .comparison-header h2 {
        font-size: 24px;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 0.9rem;
        padding: 10px;
    }

    .speech-bubble {
        max-width: 100%;
        padding: 15px;
    }

    .iso-image {
        max-width: 100%;
        height: auto;
        margin: 0 0 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 400px) {
    .zcontainer {
        padding: 15px;
    }

    .zheader-section h1 {
        font-size: 1.5rem;
    }

  
    .comparison-header h2 {
        font-size: 20px;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .speech-bubble p {
        font-size: 1rem;
    }

    .iso-image {
        max-width: 100%;
        height: auto;
        margin: 0 0 15px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
}
.cta-section { text-align: center; background: #e0f2fe; }
	/* Slider Container */
.slider-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

/* Slider */
.slider {
    display: flex;
    height: 100%;
    width: 100%;
    animation: slideAnimation 30s infinite linear;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    z-index: 10;
    user-select: none;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Hero Title Overlay */
.hero-title-box {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 5;
    max-width: 500px;
}
.blog-sectionx {
    padding: 10px 10px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    position: relative;
    overflow: hidden;
    max-width: 1200px;  /* Maksimum genişlik */
    margin: 0 auto;     /* Ortalamak için */
}
@media (max-width: 768px) {
  .intro-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-image img {
    max-width: 100%;
    margin: 20px 0;
  }

  .highlighted-area.with-icons {
    grid-template-columns: 1fr;
  }

  .icon-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-block img {
    margin-bottom: 12px;
	  
  }
