/* Header Kısmı*/
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.main-header {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  padding: 0 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: visible; /* BU SATIRI EKLE */
  z-index: 1000;      /* Gerekirse bu da */
  height: 100px  ; /* Yüksekliği artırdık */
}

.logo img {
  height: 150px;
  width: auto;
}

.navbar {
  position: static;
  transform: none;
  flex: 1;
  display: flex;
  justify-content: center;
}


.navbar ul {
  flex-wrap: wrap;
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  
}



.navbar a {
  position: relative;
  text-decoration: none;
  color: rgb(14, 101, 162);
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 8px;
  overflow: hidden;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background-color: rgb(14, 101, 162);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.navbar a:hover::after {
  width: 80%; /* Alt çizgi genişliği */
}

.navbar a:hover {
  color: #0c74b5;
}


.logo img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}
/* Tablet ve küçük ekranlar için */
@media (max-width: 1024px) {
  .main-header {
    padding: 0 20px; /* Daha dar padding */
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo img {
    max-height: 120px;
  }

  .navbar {
    position: static; /* Mutlak pozisyon kaldır */
    transform: none;  /* Translate kaldır */
    width: 100%;      /* Menü tam genişlik */
    margin-top: 10px;
  }

  .navbar ul {
    flex-wrap: wrap;  /* Satırlar taşıyınca alt satıra geç */
    justify-content: center; /* Ortala */
    gap: 10px;
  }

  .navbar a {
    font-size: 16px;
    padding: 8px 12px;
  }
}

/* Dropdown menü ayarları */
#navbar7 .dropdown {
  position: relative;
}

#navbar7 .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  min-width: 360px; /* Genişliği artırdık */
  z-index: 999;
  flex-direction: row; /* Yatay düzen */
  flex-wrap: wrap; /* İçerik sığmazsa alt satıra geçer */
}

#navbar7 .dropdown-menu li {
  list-style: none;
  border-bottom: none;
  border-right: 1px solid #eee; /* Sağa border ekledik */
  flex: 1; /* Eşit genişlikte olmaları için */
  min-width: 180px; /* Her sütunun minimum genişliği */
}

#navbar7 .dropdown-menu li:last-child {
  border-right: none; /* Son elemanın sağ borderını kaldırdık */
}

#navbar7 .dropdown-menu li a {
  padding: 12px 16px;
  display: block;
  color: rgb(14, 101, 162);
  text-decoration: none;
  font-size: 16px;
  background-color: white;
  transition: background-color 0.3s ease;
}

#navbar7 .dropdown-menu li a:hover {
  background-color: #f2f9ff;
  color: #0c74b5;
}

/* Hover olduğunda menüyü göster */
#navbar7 .dropdown:hover .dropdown-menu {
  display: flex;
}

/* VAR OLAN STİLLERİN ÜSTÜNE EKLENEBİLİR VEYA EN ALTA EKLENMELİ */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: rgb(14, 101, 162);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Mobil Uyum - 768px ve altı */
@media screen and (max-width: 768px) {
  .main-header {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
  }

  .navbar {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    padding: 10px 0;
    margin-top: 10px;
    align-items: center;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}


/* Header Kısmı*/

/*PANEL GİRİŞ*/
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;  /* buraya ekle */
  justify-content: flex-end;
}

.panel-button {
  background-color: rgb(14, 101, 162);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
  /* display: inline-block; */  /* Kaldır */
  flex-shrink: 0;   /* küçülmesini engelle */
  /* margin-left: 20px; */  /* Kaldır, gap kullan */
}

/* Hover efekti */
.panel-button:hover {
  background-color: #0c74b5;
}

/* Tablet ve mobil için media query */
@media screen and (max-width: 1024px) {  /* Tablet sınırı */
  .header-right {
    justify-content: center;  /* ortala */
  }

  .panel-button {
    font-size: 15px;
    width: auto;
    margin: 10px 0 0 0; /* Üstten boşluk */
  }
}

@media screen and (max-width: 768px) {
  .panel-button {
    display: block;
    margin: 10px auto 0 auto;
    font-size: 15px;
    width: fit-content;
  }
}





/*PANEL GİRİŞ*/


/* FOOTER AYARLARI */

footer {
  background: white;
  color: rgb(19, 99, 159);
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
}

.footer-menu .container {
  max-width: 1200px;
  margin: 0 auto;
 
}

.footer-flex {
  display: flex;
  flex-wrap: wrap; /* Bu önemli! Satır altına geçebilmesi için */
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);;
}


.footer-logo {
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  padding-left: 255px; /* Logo için soldan boşluk */
}

.footer-logo img {
  max-height: 150px;
  width: auto;
  display: block;
  margin-top: 50px;
}

.footer-section {
  flex: 1;
  min-width: 150px;
}

.footer-section h6 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  color: rgb(19, 99, 159);
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  position: relative;
  color: rgb(19, 99, 159);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;  /* Yazının hemen altına */
  left: 0;
  background-color: rgb(11, 102, 167);
  transition: width 0.3s ease;
}

.footer-section ul li a:hover {
  color: rgb(11, 102, 167);
}

.footer-section ul li a:hover::after {
  width: 100%;  /* Çizgi tam genişlikte */
}


.footer-section p {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgb(19, 99, 159);
}

.footer-section p a {
  color: rgb(19, 99, 159);
  text-decoration: none;
}

.footer-section p a:hover {
  text-decoration: underline;
  color: rgb(11, 102, 167);
}

.footer-contact i {
  margin-right: 8px;
}

.social a {
  color: rgb(19, 99, 159);
  margin-right: 12px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social a:hover {
  color: rgb(11, 102, 167);
}

.copyright1 {
  text-align: center;
  padding: 15px 0 0;
  font-size: 13px;
  color: rgb(19, 99, 159);
  border-top: 1px solid rgb(220, 220, 220);
  margin-top: 20px;
}

/* Responsive (mobil) için istersen ekleyebilirim */
@media (max-width: 768px) {
  .footer-flex {
    flex-wrap: wrap;
  }
  .footer-section {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }
  .footer-logo {
    flex: 0 0 100%;
    justify-content: center;
    margin-bottom: 20px;
  }
 
}


footer {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: rgb(19, 99, 159);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 20px 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.footer-section h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
  color: rgb(19, 99, 159);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 2px solid rgb(19, 99, 159);
  padding-bottom: 6px;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgb(19, 99, 159);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-section ul li a:hover {
  color: rgb(11, 102, 167);
  text-shadow: 0 0 5px rgb(11, 102, 167);
  text-decoration: none;
  cursor: pointer;
}

.footer-section p {
  font-size: 15px;
  font-weight: 500;
  color: rgb(19, 99, 159);
  margin-bottom: 12px;
}

.footer-section p a {
  color: rgb(19, 99, 159);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-section p a:hover {
  color: rgb(11, 102, 167);
  text-shadow: 0 0 4px rgb(11, 102, 167);
}

.social a {
  color: rgb(19, 99, 159);
  margin-right: 18px;
  font-size: 35px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social a:hover {
  color: rgb(11, 102, 167);
  transform: scale(1.2);
  cursor: pointer;
}

.copyright {
  text-align: left;
  padding: 15px 0 0;
  font-size: 14px;
  color: rgb(19, 99, 159);
  border-top: 1px solid rgb(220, 220, 220);
  margin-top: 0px;
  font-style: italic;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);;
}
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
  }

  .footer-logo {
    justify-content: center;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  /* İletişim kısmı içinde sıralamayı değiştir */
  .footer-contact {
    display: flex;
    flex-direction: column;
  }

  .footer-contact h6,
  .footer-contact p,
  .footer-contact .social {
    order: 1; /* Üste al */
  }

  .footer-contact .app-badges {
    order: 2; /* Alta al */
    margin-top: 20px;
    margin-right: 10px; /* Sağdan boşluk */
  }

  .footer-contact .app-badges img {
    max-width: 150px;
    margin-bottom: 10px;
  }

  .footer-contact p {
    font-size: 14px;
    line-height: 1.5;
  }

  .social a {
    font-size: 28px;
    margin-right: 14px;
  }
}
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column !important;
    align-items: center !important;   /* Tüm bölümleri yatayda ortala */
    gap: 20px !important;              /* Aralarına boşluk koy */
  }

  .footer-logo,
  .footer-section {
    flex: 0 0 auto !important;         /* Genişliği içeriğe göre */
    width: 100% !important;             /* Mobilde tüm genişliği kapla */
    max-width: 400px !important;        /* Maksimum genişlik belirle */
    text-align: center !important;      /* Metinleri ortala */
    margin: 0 auto !important;           /* Kutu kendisi ortada */
  }

  .footer-logo img {
    margin: 0 auto !important;           /* Logo da ortada */
    display: block !important;
    max-width: 150px !important;         /* Maksimum logo genişliği */
    height: auto !important;
  }

  /* Sosyal ikonlar ve linkler için de ortalama */
  .social {
    justify-content: center !important;
    display: flex !important;
    gap: 15px !important;
  }
}
/* DENEME*/
/* === Mobil (600px ve altı) === */
@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo,
  .footer-section {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo img {
    margin: 0 auto;
    display: block;
    max-width: 150px;
    height: auto;
  }

  .social {
    justify-content: center;
    display: flex;
    gap: 15px;
  }
}

/* === Tablet (601px - 1024px) === */
@media (min-width: 601px) and (max-width: 1024px) {
  .footer-flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-logo {
    flex: 0 0 150px;
    padding-left: 50px;
  }

  .footer-section {
    flex: 1 1 200px;
    margin-bottom: 20px;
  }

  .social {
    justify-content: flex-start;
  }
}




/* burası gövde section kısmı*/
.image-text-section {
  background-image: url('photos/your-image.jpg'); /* Kendi resmini buraya koy */
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin: 40px auto;
  width: 95%; /* %90'dan %95'e çıkarıldı */
  max-width: 1400px; /* İsteğe göre genişletildi */
  height: 650px; /* Yukarıdan zaten büyütmüştük */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* burası gövde section kısmı*/

/*resim koymak için */
.image-overlay-section {
  position: relative;
  width: 95%;
  max-width: 1400px;
  height: 400px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(33, 36, 41);
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.overlay-content h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

.overlay-content p {

  max-width: 700px;
  line-height: 1.6;
  margin: 20px auto 0;
  margin-left: 95px;
  margin-right: 95px;
}
/* Başlangıçta sadece masaüstü içeriği görünür */
.overlay-mobile {
  display: none;
}
.overlay-desktop {
  display: block;
}

/* Mobil görünümde içerikleri değiştir */
@media screen and (max-width: 768px) {
  .overlay-mobile {
    display: block;
  }
  .overlay-desktop {
    display: none;
  }
}


/* Mobil Uyum */
@media screen and (max-width: 768px) {
  .image-overlay-section {
    max-height: 800px;
    aspect-ratio: 16 / 9;
  }
 
  .background-image {
    width: 100%;
    height: 110%;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
  }

  .overlay-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
  }

  .overlay-content h2 {
    font-size: 1.8rem;
  }

  .overlay-content p {
    font-size: 1rem;
    width: 270px; /* Satır genişliği sınırlanır */
    line-height: 1;
    margin: 50px auto 0;
    text-align: center;
  }
}






/*resim koymak için */

/*LOGO 6 TANE*/
.logo-section {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-row img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.logo-row span {
  font-weight: 500;
  color: #333;
}

.logo-row.left {
  justify-content: flex-start;
  text-align: left;
}

.logo-row.right {
  justify-content: flex-end;
  text-align: right;
}
.logo-row img {
  transition: transform 0.3s ease;
}

.logo-row img:hover {
  transform: translateY(-5px);
}
/*İLETİŞİM*/

.iletisim-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.harita {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.iletisim-formu {
  flex: 1;
  min-width: 300px;
}

.iletisim-formu h2 {
  text-align: center;
  margin-bottom: 20px;
}

.iletisim-formu form {
  display: flex;
  flex-direction: column;
}

.iletisim-formu label {
  margin: 10px 0 5px;
}

.iletisim-formu input,
.iletisim-formu textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.iletisim-formu button {
  margin-top: 20px;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.iletisim-formu button:hover {
  background-color: #0056b3;
}

/*İLETİŞİM*/

/*HAKKIMIZDA KISMI*/
/* hakkimizda.css */

.about-section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding: 10px 0;
  }
}






/*HAKKIMIZDA KISMI*/

/*BLOG KISMI*/
.blog-section20 {
  padding: 40px 20px;
  background-color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(10, 102, 168);
}

.blog-section20 h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: rgb(10, 102, 168);
  letter-spacing: 1.2px;
}

.blog-section20 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card20 {
  background-color: white;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 500px; /* Burayı artırdık - önceki değerden daha uzun */
}


.blog-image20 {
  height: 45%; /* Resmin kaplayacağı alanın oranı */
  overflow: hidden;
}

.blog-image20 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content20 {
  height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
}


.blog-content20 h3 {
  font-size: 20px;
  color: rgb(10, 102, 168);
  margin-bottom: 10px;
}

.blog-content20 p {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: auto;
}

.read-more-btn20 {
  background-color: rgb(10, 102, 168);
  color: white;
  border: none;
  padding: 10px 16px;
  margin-top: 15px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  user-select: none;
  margin-bottom: 10px; /* Butonun altına biraz boşluk ekledik */
}

.read-more-btn20:hover {
  background-color: rgb(7, 71, 118);
}

/* Responsive */
/* MOBİL UYUMLU DÜZENLEME */
@media (max-width: 768px) {
  .blog-section20 {
    padding: 30px 15px;
    grid-template-columns: 1fr;
  }

  .blog-section20 h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .blog-card20 {
    height: auto;
  }

  .blog-image20 {
    height: 200px;
  }

  .blog-content20 h3 {
    font-size: 18px;
  }

  .blog-content20 p {
    font-size: 13px;
  }

  .read-more-btn20 {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/*BLOG KISMI*/

/*REFERANSLAR*/
.referanslar {
  padding: 80px 20px;
  background: white;
  text-align: center;
  height: 304px;
}

.referans-baslik {
  font-size: 38px;
  color: #0f5b99; /* RENK BURADA AYARLANDI */
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  text-align: center;
}

.referans-baslik::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background-color: #0f5b99;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}


.referans-kutular {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  justify-items: center;
}

.referans-kare {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.referans-kare img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.referans-kare:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.referans-kare:hover img {
  transform: scale(1.1);
}

/* REFERANSLAR*/


/*HİZMETLER*/
.feature-section {
  padding: 80px 60px;
  background: #f5f8ff;
}

.feature-content {
  max-width: 1500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.feature-text {
  flex: 1;
  min-width: 320px;
}

.feature-text h2 {
  font-size: clamp(28px, 5vw, 48px);
  color: #003366;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.feature-text p {
  font-size: clamp(16px, 2vw, 20px);
  color: #333;
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.feature-image img {
  max-width: 40%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/*başlık büyük*/
.baslik-arka-gorsel6 {
  background-image: url('photos/başlık6.jpg'); /* Buraya kendi resminizin yolunu yazın */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px; /* Dilersen daha büyük yapabilirsin */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.baslik-arka-gorsel6 h2 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* Yazının arka planda kaybolmaması için */
}
/*başlık büyük*/

/*hizmetler web sayfası*/
.feature-section7 {
  padding: 80px 60px;
  background: #f5f8ff;
}

.feature-content7 {
  max-width: 1500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.feature-text7 {
  flex: 1;
  min-width: 320px;
}

.feature-text7 h2 {
  font-size: clamp(28px, 5vw, 48px);
  color: #003366;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.feature-text7 p {
  font-size: clamp(16px, 2vw, 20px);
  color: #333;
  line-height: 1.6;
}

.feature-image7 {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.feature-image7 img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.feature-image7 img:hover {
  transform: scale(1.6); /* 1.6 kat büyütür */
  z-index: 10;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .feature-content7 {
    flex-direction: column;
    text-align: center;
  }

  .feature-image7 img {
    max-width: 80%;
    transform: none !important;
    cursor: default;
  }

  .feature-image7 img:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}

/*hizmetler web sayfası*/


/*BLOG1*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.sidebar40 {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background-color: #f4f4f4;
  border-right: 1px solid #ccc;
  padding: 25px;
  box-sizing: border-box;
  overflow-y: auto;
  padding-top: 150px;
  transition: transform 0.3s ease;
}

.main-content40 {
  margin-left: 25%;
  margin-right: 10%;
  padding: 40px;
  box-sizing: border-box;
}

/* Küçük blog kartları */
.small-blog-card40 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: white;
  border: 1px solid #ddd;
  padding: 12px;
  text-decoration: none;
  color: black;
  transition: background-color 0.2s;
  border-radius: 6px;
}

.small-blog-card40:hover {
  background-color: #eaeaea;
}

.small-blog-card40 img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 4px;
}

.small-blog-card40 h4 {
  margin: 0;
  font-size: 15px;
}

/* ✅ Mobil uyum - 768px ve altı */
@media screen and (max-width: 768px) {
  .sidebar40 {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 20px;
    padding-top: 100px;
  }

  .main-content40 {
    margin: 0;
    padding: 20px;
  }

  .small-blog-card40 {
    flex-direction: row;
    align-items: center;
  }

  .small-blog-card40 img {
    width: 50px;
    height: 50px;
  }

  .small-blog-card40 h4 {
    font-size: 14px;
  }
}

/*BLOG1*/

.blog-hero50 {
  background-image: url('photos/insan kaynakları.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  margin-left: 27%;  /* Masaüstü için */
  margin-right: 12%;
}

.blog-hero50::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.blog-hero-content50 {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero-content50 h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.blog-hero-content50 p {
  font-size: 18px;
}

/* ✅ Mobil uyum için media query */
@media screen and (max-width: 768px) {
  .blog-hero50 {
    margin: 0; /* Mobilde sidebar yokmuş gibi tam genişlik */
    padding: 60px 15px;
  }

  .blog-hero-content50 h1 {
    font-size: 28px;
  }

  .blog-hero-content50 p {
    font-size: 16px;
  }
}

/*İOS VE ANDROİD UYGULAMA BAĞLANTILARI*/
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px 0;
}

.app-badge {
  max-width: 180px;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}

.app-badge:hover {
  transform: scale(1.05);
}

.google-play {
  margin-top: 6px;
}

/* Mobil uyum - 768px altı cihazlar için */
@media screen and (max-width: 768px) {
  .app-badges {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .app-badge {
    max-width: 240px;
  }
}

.footer-contact {
  position: relative;
  padding-right: 419px; /* Sağdan biraz boşluk bırak */
}
/*alt iletişim yanı*/
.app-badges {
  position: absolute;
  top: 13px; /* Önceden 0’dı, şimdi 90px aşağı kaydırdık */
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(-20px);
  margin-right: 273px; /* Sağdan biraz boşluk bırak */

}

.app-badge {
  max-width: 109px;
  height: auto;
  transition: transform 0.2s ease;
}

.app-badge:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .app-badges {
    position: static !important;
    flex-direction: row;
    transform: none;
    margin-top: 15px;
    gap: 12px;
  }
  .footer-contact {
    padding-right: 0;
  }
}
/*alt iletişim yanı*/

/*yukarı panel yanı*/
.app-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 28px;
  color: #333;
}

.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.app-icon:hover {
  transform: scale(1.2) rotate(-10deg);
  color: #007bff; /* hover renk */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px; /* aralarındaki mesafe */
}

.panel-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0066ff;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
 
}

.panel-button:hover {
  background-color: #004ecc;
}

.app-icons {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 36px; /* ikonları büyüttük */
  color: #333;
}

.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #333;
}

.app-icon:hover {
  transform: scale(1.3) rotate(-10deg);
  color: #007bff;
}
@media (max-width: 768px) {
  .header-right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 93%;
    margin-top: 10px;
    margin-left: -10px; /* Sola biraz kaydır */
  }

  .panel-button {
    width: 100%;
    text-align: center;
  }

  .app-icons {
    font-size: 32px;
    gap: 20px;
  }
}

/*yukarı panel yanı*/
/*İOS VE ANDROİD UYGULAMA BAĞLANTILARI*/

/*referanslarım sekmesi*/
.referanslar10 {
  padding: 60px 20px;
  background-color: #f7f9fc;
  text-align: center;
}

.referans-metin10 {
  margin-bottom: 40px;
}

.referans-metin10 h3 {
  font-size: 28px;
  color: #0e659f;
  margin-bottom: 10px;
}

.referans-metin10 p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: auto;
}

.referans-kutular10 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 100px; /* Bu satır eklendi */
}

.referans-kare10 {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 16px;
  width: 160px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.referans-kare10:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.referans-kare10 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.referans-kare10:hover img {
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .referans-kutular10 {
    justify-content: center;
  }

  .referans-kare10 {
    width: 45%;
    height: 120px;
  }
}
/*referanslarım sekmesi*/