body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(to right, #0a1a2f, #1c2e46);
  border-bottom: 1px solid #002060;
  position: relative;
}

.brand img {
  height: 60px;
}

.socialIcon ul,
.navigator ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.socialIcon i {
  font-size: 28px;
  transition: transform 0.2s;
}

.socialIcon i:hover {
  transform: scale(1.2);
}

.navigator a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.2s;
}

.navigator a:hover {
  color: #4aa3ff;
}

/* Hamburger menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
/* hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 26, 47, 0.6), rgba(10, 26, 47, 0.6)),
    url("../images/hero.jpg") center/cover no-repeat; /* buraya kendi görselini koy */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 35px;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  background: #4aa3ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: #0a1a2f;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #0a1a2f;
}
/* wp iconu */
/* WhatsApp Sabit Buton */
/* WhatsApp Sabit Buton */
/* Genel sabit ikonlar */
.whatsapp-float,
.instagram-float {
  position: fixed;
  left: 20px;
  font-size: 28px;
  text-align: center;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WhatsApp ikonu */
.whatsapp-float {
  bottom: 20px;
  background: #25d366;
}

/* Instagram ikonu */
.instagram-float {
  bottom: 80px; /* WhatsApp'ın biraz üstünde */
  background: linear-gradient(45deg, #f58529, #d52a6e, #8134af, #515bd4);
}

/* hizmetler */
.hizmetler {
  padding: 80px 20px;
  background: #eef2f7;
  text-align: center;
}

.section-title {
  font-size: 34px;
  margin: 0 auto 50px auto;
  color: #0a1a2f;
  font-weight: 700;
  position: relative;
  display: block;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #0a1a2f, #4aa3ff);
  margin: 10px auto 0;
  border-radius: 2px;
}

.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 sütun */
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.hizmet-kutu {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e6eaf0;
}

.hizmet-kutu:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
  border-image: linear-gradient(45deg, #0a1a2f, #4aa3ff) 1;
}

.hizmet-foto {
  width: 100%;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 12px; /* hafif oval */
  overflow: hidden; /* taşma olmasın */
  border: 1px solid #ddd;
  background: #fff;
}

.hizmet-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* görsel kutuyu doldursun */
}

.hizmet-kutu h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0a1a2f;
  font-weight: 600;
}

.hizmet-kutu p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* hakkımızda */
.about {
  padding: 100px 20px;
  background: #f9fbfd;
  font-family: "Segoe UI", sans-serif;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fotoğraf alanı */
.about-images {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
}

.about-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

/* Fotoğraflar arası ince çizgi */
.about-img:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 1px;
  height: 80%;
  background: #ccc;
}

/* Metin alanı */
.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: 38px;
  color: #0a1a2f;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #555;
}

/* Highlight kutuları */
.about-highlights {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: center; /* Desktop görünümde ortala */
  width: 100%;
}

.highlight-box {
  background: linear-gradient(135deg, #4aa3ff, #6ec1ff);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  color: #fff;
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlight-box i {
  font-size: 36px;
  margin-bottom: 15px;
}

.highlight-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 15px;
  line-height: 1.6;
}
/* referanslar */
.references {
  padding: 80px 20px;
  background: #f4f8fb;
  font-family: "Segoe UI", sans-serif;
}

.references h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  margin-left: 60px;
  color: #0a1a2f;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.reference-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.reference-card img {
  max-width: 150px;
  height: auto;
}
/* footer */
.footer {
  background: linear-gradient(to right, #0a1a2f, #1c2e46);
  color: #fff;
  padding: 40px 20px 20px;
}
.social2 {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-about img {
  height: 50px;
  margin-bottom: 10px;
}

.footer h3 {
  margin-bottom: 10px;
  color: #4aa3ff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  text-decoration: none;
  color: #fff;
  transition: color 0.2s;
}

.footer a:hover {
  color: #4aa3ff;
}

.footer-social a {
  font-size: 22px;
  margin-right: 10px;
  color: #fff;
}

.footer-social a:hover {
  color: #4aa3ff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #002060;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
}
