/* Özelleştirilmiş CSS Stilleriniz */
.logo span {
  display: inline-block;
  font-size: 24px;
  color: #003366;
  font-weight: bold;
  padding: 10px 0;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffff00 !important;
}

.main h1 {
  font-size: 36px;
}

li {
  list-style: none;
}

.oto-cekici-listesi {
  background-color: #ffc107;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 30px 0px;
}

nav {
  background-color: #fff;
  position: sticky;
  top: 0;
  padding: 0 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 5px 80px rgba(0, 0, 0, 0.1);
}

nav .logo,
footer .logo {
  display: flex;
  align-items: center;
}

nav .logo a,
footer .logo a {
  margin-left: 8px;
  font-weight: bold;
  font-size: 24px;
}

nav .logo img,
footer .logo img {
  width: 200px; /* or max-width: 100%; */
  height: auto;
}

nav ul,
footer .top ul {
  display: flex;
  gap: 40px;
}

nav button {
  color: #1c1e53;
  background-color: transparent;
  padding: 12px 16px;
  border-radius: 5px;
  border: 1px solid #1c1e53;
  cursor: pointer;
  transition: all 0.3s ease;
}

nav button:hover {
  background-color: #ddd;
  border-color: #ffc107;
  color: #fff;
}

.button-a {
  text-decoration: none;
  color: #000;
}

.button-a:hover {
  color: #000000;
}

nav button#menuButton {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 7px;
}

.main {
  background-color: transparent;
  border-bottom: 10px solid #ffc107;
  padding: 90px 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.main .left {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 10px;
}

.main .left h2 {
  margin-top: 10px;
  font-weight: bold;
  font-size: 30px;
}

.main .left h2 span {
  background-color: #ffc107;
  color: #000;
}

.main .left p {
  color: #000000;
  font-size: 18px;
  margin-top: 20px;
}

.main .left button {
  margin-top: 40px;
  color: #fff;
  cursor: pointer;
  background-color: #ffc107;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 5px;
}

.main .right img {
  width: 100%; /* or max-width: 100%; */
  height: auto;
}

.skills {
  padding: 110px 85px 0;
}

.skills h3,
.hakkimda .right h3,
.portfolio .header h3,
.feedback h3 {
  font-size: 28px;
  margin-top: 20px;
}

.skills .skill-items {
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

.skills .skill-items .item {
  background-color: #deebee;
  width: 25%;
  border-radius: 10px;
  padding: 32px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skills .skill-items .item:hover {
  border-color: #ffc107;
}

.skills .skill-items .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  margin-bottom: 22px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.skills .skill-items .item .icon i {
  font-size: 26px;
  color: #ffeb3b;
}

.skills .skill-items .item span,
.portfolio .portfo-items .item .info span {
  font-size: 18px;
  font-weight: 600;
}

.skills .skill-items .item p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 22px;
  color: #000;
}

.hakkimda {
  padding: 110px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hakkimda .left {
  background-color: #deebee;
  border-radius: 10px 10px 0 0;
}

.hakkimda .left img {
  width: 100%; /* or max-width: 100%; */
  height: auto;
}

.hakkimda .right p {
  font-size: 16px;
  margin-top: 30px;
}

.portfolio {
  background-color: #deebee;
  padding: 110px 85px;
}

.portfolio .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.portfolio .header button {
  background-color: #ffd600;
  padding: 10px 20px;
  color: #000;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  border: none;
  border-radius: 10px;
}

.portfolio .header button i {
  font-size: 26px;
}

.portfolio .portfo-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio .portfo-items .item {
  width: 30%;
  background-color: #fff;
  border-radius: 10px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  box-shadow: 0 5px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.portfolio .portfo-items .item:hover {
  border-color: #ffd600;
}

.portfolio .portfo-items .item img {
  width: 100%; /* or max-width: 100%; */
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 10px 10px 20px 20px;
}

/* Dropdown menüsü */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff; /* Arka plan rengi */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 160px; /* Minimum genişlik */
}

/* Dropdown menüsü gösterildiğinde */
.show {
  display: block;
}

/* Dropdown bağlantısı stil */
.dropdown-btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 4px; /* Kenar yuvarlatma */
}

/* Dropdown bağlantısının üzerine gelindiğinde stil */
.dropdown-btn:hover {
  color: #fff; /* Hover durumunda metin rengi */
}

/* Dropdown içindeki bağlantıların stil */
.dropdown-content a {
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

/* Dropdown içindeki bağlantıların üzerine gelindiğinde stil */
.dropdown-content a:hover {
  background-color: #ffc107; /* Hover rengi */
  color: #fff; /* Hover durumunda metin rengi */
}

.portfolio .portfo-items .item .info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 32px 42px;
}

.img-responsive,
img {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px 0px;
  margin: 10px 0px;
}

.portfolio .portfo-items .item .info p {
  font-size: 16px;
}

.portfolio .portfo-items .item .info a {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #ffd600;
}

.portfolio .portfo-items .item .info a i {
  margin-left: 2px;
  font-size: 16px;
}

.feedback {
  padding: 110px 85px;
}

.feedback .customers {
  margin-top: 50px;
  display: flex;
  gap: 40px;
}

.feedback .customers .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #006b6a;
  border-radius: 10px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feedback .customers .item .rating {
  color: #006b6a;
  font-size: 22px;
}

.feedback .customers .item:hover {
  border-color: #ffeb3b;
}

.feedback .customers .item p {
  line-height: 22px;
  font-size: 16px;
}

.feedback .customers .item .user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback .customers .item .user img {
  width: 100%; /* or max-width: 100%; */
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}

.feedback .customers .item .user h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}

.feedback .customers .item .user p {
  font-size: 16px;
}

footer {
  background-color: #deebee;
  padding: 85px;
  display: flex;
  flex-direction: column;
}

footer .top,
footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .top .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
}

footer .separator {
  width: 100%;
  height: 1px;
  background-color: #282938;
  margin: 30px 0 20px;
}

footer .bottom p {
  font-size: 16px;
}

footer .bottom .links a {
  font-size: 16px;
  margin-left: 14px;
}

@media screen and (max-width: 1200px) {
  .main .left h1 {
    font-size: 36px;
  }

  .main .left h2 {
    font-size: 36px;
  }

  .main .left p {
    font-size: 18px;
  }

  .main .right img {
    width: 100%; /* or max-width: 100%; */
    height: auto;
  }

  .skills .skill-items {
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .skills .skill-items .item {
    width: 49%;
  }

  .hakkimda .left img {
    width: 100%; /* or max-width: 100%; */
    height: auto;
  }

  .skills h3,
  .hakkimda .right h3,
  .portfolio .header h3,
  .feedback h3 {
    font-size: 28px;
  }

  .hakkimda .right p {
    font-size: 16px;
  }

  .feedback .customers .item .rating {
    font-size: 20px;
  }

  .feedback .customers .item p {
    font-size: 16px;
  }

  footer .top ul {
    gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  nav button {
    display: none;
  }

  nav ul {
    gap: 20px;
  }

  nav ul li a {
    font-size: 18px;
  }

  .main {
    flex-direction: column;
  }

  .hakkimda {
    flex-direction: column;
    justify-content: center;
  }

  .portfolio .portfo-items {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .portfolio .portfo-items .item {
    width: 48%;
  }

  .feedback .customers {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feedback .customers .item {
    width: 48%;
  }

  footer .top ul {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
    padding: 0 42px;
  }

  .oto-cekici-listesi {
    margin: 30px 30px;
    text-transform: uppercase;
  }

  nav ul {
    display: none;
  }

  nav .logo img,
  footer .logo img {
    width: 200px; /* or max-width: 100%; */
    height: auto;
  }

  nav.open .logo {
    display: none;
  }

  nav.open ul {
    display: block;
    position: relative;
    top: 80px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 100px;
  }

  nav button#menuButton {
    display: flex;
  }

  .main {
    padding: 42px;
  }

  .skills {
    padding: 85px 42px 0;
    display: flex;
    flex-direction: column;
  }

  .skills .skill-items {
    gap: 8px;
  }

  .hakkimda {
    padding: 85px 42px;
  }

  .portfolio {
    padding: 60px 42px;
  }

  .portfolio .portfo-items {
    gap: 18px;
  }

  .feedback {
    padding: 85px 42px;
  }

  footer {
    padding: 85px 42px;
  }

  footer .bottom {
    flex-direction: column-reverse;
    gap: 14px;
  }
}

@media screen and (max-width: 576px) {
  nav ul li a {
    font-size: 19px;
  }

  nav .logo a {
    font-size: 18px;
  }

  .main .left h2 {
    font-size: 30px;
  }

  .main .left p {
    font-size: 16px;
  }

  .main .left button {
    width: 100%;
  }

  .skills .skill-items .item {
    width: 100%;
  }

  .portfolio .header button {
    font-size: 16px;
    padding: 8px 14px;
  }

  .portfolio .portfo-items .item {
    width: 80%;
  }

  .feedback .customers .item {
    width: 100%;
  }
}
.call-button {
  background-color: #7D0000;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 1;
}
.fixed-side-menu {
 position: fixed;
 right: 10px; /* Sayfanın sağ kenarından 10px uzaklıkta */
 top: 80%; /* Sayfanın ortasında */
 transform: translateY(-50%); /* Dikey ortalamayı sağlar */
 z-index: 1000; /* Z-index ile diğer öğelerin önüne getir */
}

.whatsapp-button {
 display: block;
 background-color: #075E54; /* WhatsApp'ın resmi koyu renk temasından alınmış daha koyu bir yeşil */
 color: #ffffff; /* Beyaz renk metin yüksek kontrast sağlar */
 padding: 10px 20px; /* İç boşluk */
 border-radius: 25px; /* Daha yuvarlak köşeler */
 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Daha belirgin bir gölge */
 text-align: center; /* Yazıyı ortala */
 text-decoration: none; /* Alt çizgiyi kaldır */
 font-weight: bold; /* Yazıyı kalın yap */
 font-size: 18px; /* Daha büyük yazı boyutu */
 margin: 8px; /* Etrafına boşluk ekle */
 transition: background-color 0.3s ease; /* Arka plan rengi değişim animasyonu */
 cursor: pointer; /* Fare imleci butonun üzerine geldiğinde el şeklini alsın */
}

.whatsapp-button:hover {
 background-color: #128C7E; /* Hover durumu için açık yeşil rengi */
}
.service-areas {
  background-color: #ffffff; /* Arka plan rengi: Beyaz */
  padding: 40px 20px; /* İçerik etrafındaki dolgu */
  margin-top: 40px; /* Üstten boşluk */
  border-radius: 10px; /* Kenar yuvarlama */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Gölgelendirme */
}

.service-areas h2 {
  color: #000000; /* Başlık rengi: Koyu Siyah */
  font-size: 28px; /* Başlık boyutu */
  margin-bottom: 20px; /* Alt boşluk */
}

.service-areas ul {
  list-style-type: none; /* Madde işaretlerini kaldır */
  padding: 0; /* Liste dolgusu */
  margin: 0; /* Liste dış boşluğu */
  display: flex; /* Bağlantıları yatay olarak düzenle */
  flex-wrap: wrap; /* Eğer alan yetersizse bağlantıları alt satıra geçir */
}

.service-areas ul li {
  margin-bottom: 15px; /* Liste öğeleri arasındaki boşluk */
  margin-right: 20px; /* Liste öğeleri arasındaki yatay boşluk */
}

.service-areas ul li:last-child {
  margin-right: 0; /* Son bağlantıyı sağdan boşluk olmadan ayarla */
}

.service-areas ul li a {
  color: #000000; /* Bağlantı rengi: Koyu Siyah */
  text-decoration: none; /* Bağlantı altı çizgisini kaldır */
  font-size: 18px; /* Bağlantı metin boyutu */
  transition: color 0.3s ease; /* Geçiş efekti */
}

.service-areas ul li a:hover {
  color: #333333; /* Üzerine gelindiğinde bağlantı rengi: Gri */
}
.contact {
  background-color: #ffffff; /* Arka plan rengi: Beyaz */
  padding: 40px 20px; /* İçerik etrafındaki dolgu */
  border-radius: 10px; /* Kenar yuvarlama */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Gölgelendirme */
  margin-top: 40px; /* Üstten boşluk */
}

.contact h2 {
  color: #000000; /* Başlık rengi: Koyu Siyah */
  font-size: 28px; /* Başlık boyutu */
  margin-bottom: 20px; /* Alt boşluk */
}

.contact p {
  color: #000000; /* Metin rengi: Koyu Siyah */
  font-size: 18px; /* Metin boyutu */
  line-height: 1.5; /* Satır yüksekliği */
}

.contact p b {
  color: #000000; /* Kalın metin rengi: Mavi */
}

.contact p a {
  color: #000000; /* Bağlantı rengi: Mavi */
  text-decoration: none; /* Bağlantı altı çizgisini kaldır */
  transition: color 0.3s ease; /* Geçiş efekti */
}

.contact p a:hover {
  color: #0056b3; /* Üzerine gelindiğinde bağlantı rengi */
}

.service-brands {
  background-color: #ffffff; /* Arka plan rengi: Beyaz */
  padding: 40px 20px; /* İçerik etrafındaki dolgu */
  margin-top: 40px; /* Üstten boşluk */
  border-radius: 10px; /* Kenar yuvarlama */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Gölgelendirme */
}

.brand-category h3 {
  color: #000000; /* Başlık rengi: Koyu Siyah */
  font-size: 28px; /* Başlık boyutu */
  margin-bottom: 20px; /* Alt boşluk */
}

.brand-category ul {
  list-style-type: none; /* Madde işaretlerini kaldır */
  padding: 0; /* Liste dolgusu */
  margin: 0; /* Liste dış boşluğu */
  display: flex; /* Bağlantıları yatay olarak düzenle */
  flex-wrap: wrap; /* Eğer alan yetersizse bağlantıları alt satıra geçir */
}

.brand-category ul li {
  margin-bottom: 15px; /* Liste öğeleri arasındaki boşluk */
  margin-right: 20px; /* Liste öğeleri arasındaki yatay boşluk */
}

.brand-category ul li:last-child {
  margin-right: 0; /* Son bağlantıyı sağdan boşluk olmadan ayarla */
}

.brand-category ul li a {
  color: #000000; /* Bağlantı rengi: Koyu Siyah */
  text-decoration: none; /* Bağlantı altı çizgisini kaldır */
  font-size: 18px; /* Bağlantı metin boyutu */
  transition: color 0.3s ease; /* Geçiş efekti */
}

.brand-category ul li a:hover {
  color: #333333; /* Üzerine gelindiğinde bağlantı rengi: Gri */
}
/* İzmit Beyaz Eşya Servisi SSS Section Styles */
.izmit-faq {
  background-color: #f5f5f5; /* Arka plan rengi */
  padding: 20px; /* İç boşluk */
  border-radius: 8px; /* Köşe yuvarlaklığı */
  margin: 20px 0; /* Üst ve alt dış boşluk */
}

.izmit-faq h2 {
  color: #333; /* Başlık rengi */
  text-align: center; /* Başlık hizalaması */
  margin-bottom: 15px; /* Başlık altındaki boşluk */
}

.faq-item {
  background-color: #fff; /* Soru arka plan rengi */
  margin-bottom: 10px; /* Sorular arası boşluk */
  padding: 15px; /* Soru iç boşluğu */
  border-radius: 5px; /* Soru köşe yuvarlaklığı */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Gölge efekti */
}

.faq-item h3 {
  color: #007BFF; /* Soru başlığı rengi */
  margin-bottom: 5px; /* Soru başlığı altındaki boşluk */
}

.faq-item p {
  color: #666; /* Paragraf metni rengi */
  line-height: 1.6; /* Satır yüksekliği */
}
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  background-color: #f0f0f0;
}

.contact-info, .contact-form, .social-media {
  flex-basis: 30%;
  margin-bottom: 20px;
}

.contact-method {
  margin-bottom: 15px;
}

.contact-method h3 {
  margin-bottom: 5px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.social-media a {
  display: inline-block;
  margin-right: 10px;
 
