/* Genel ayarlar */
body {
  margin: 0;
  padding: 0;
  font-family: 'Tahoma', sans-serif  ;
  background-color: #eaf2f7;
  min-height: 1500px;
}

/* Üst menü */
.top-nav {
  position: fixed;
  top: 40px !important;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1000;
 
}

.top-nav a {
  text-decoration: none;
  font-size: 15px;
  color: #1f1f1f;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.top-nav a:hover {
  color: #0066aa;
  transform: scale(1.05);
}

/* sol üst logo */
.logo-top-right {
  position: fixed;
  top: 5px;
  right: 1400px;
  z-index: 999;
  padding-top: 15px;
}

.logo-top-right img {
  width: 85px;
  height: height ;
}

/* Ana içerik */
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 80px 100px;
  align-items: center;
  min-height: 100vh;
}

.text-section {
  flex: 1;
  max-width: 50%;
}

.text-section h1 {
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.text-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.analyze-button {
  display: inline-block;
  background-color: #007acc;
  color: white;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 122, 204, 0.3);
}

.analyze-button:hover {
  background-color: #005f9e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 122, 204, 0.4);
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-section img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 5px;
}

/* Hizmetlerimiz bölümü */
.services-section {
  background-color: #CED4DA;
  padding: 80px 100px;
  text-align: center;
}

.services-section h2 {
  font-size: 50px;
  margin-bottom: 60px;
  color: #1f1f1f;
}

.service-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-buttons button {
  width: 350px;
  padding: 15px 25px;
  font-size: 17px;
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Düz renkli butonlar */
.btn1 { background-color: #007acc; }
.btn2 { background-color: #28a745; }
.btn3 { background-color: #6f42c1; }
.btn4 { background-color: #e83e8c; }
.btn5 { background-color: #fd7e14; }
.btn6 { background-color: #20c997; }

/* Hover renkleri */
.btn1:hover { background-color: #005f9e; }
.btn2:hover { background-color: #218838; }
.btn3:hover { background-color: #5a32a3; }
.btn4:hover { background-color: #c82368; }
.btn5:hover { background-color: #e8590c; }
.btn6:hover { background-color: #17a589; }

/* Örnek Analiz butonları (koyu gri) */
.example-buttons button {
  background-color: #808080;
}
.example-buttons button:hover {
  background-color: #333;
}

/* Buton içindeki ikon stilleri */
.service-buttons i {
  font-size: 18px;
}

/* Duman efekti */
.smoke {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  border-radius: 50%;
  animation: smokeFade 1s ease-out forwards;
  z-index: 9999;
}

@keyframes smokeFade {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(3); }
}

@keyframes nefes {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Sohbet butonu */
.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #007acc;
  color: white;
  border-radius: 50%;
  font-size: 26px;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s ease;
}

.chat-button:hover { background-color: #005f9e; }

/* Sohbet kutusu */
.chat-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding: 15px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.chat-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #007acc;
  text-align: center;
}

.chat-box textarea {
  width: 100%;
  height: 80px;
  resize: none;
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
}

.chat-box button {
  background-color: #007acc;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.chat-box button:hover { background-color: #005f9e; }

/* İletişim bölümü */
.contact-section {
  background-color: #bbbbcd !important ;         
  padding: 80px 100px;
  text-align: center;
}

.contact-section h2 {
  font-size: 45px;
  margin-bottom: 50px;
  color: #1f1f1f;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-container input,
.contact-container textarea {
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
}

.contact-container button {
  background-color: #007acc;
  color: white;
  font-size: 18px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.contact-container button:hover { background-color: #005f9e; }

/* Mesaj başarıyla gönderildi kutusu */
#formMessage {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #565F6B;
  color: white;
  padding: 20px 40px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  z-index: 2000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  animation: fadeInOut 5s ease-in-out forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  10% { opacity: 1; transform: translate(-50%, -50%); }
  90% { opacity: 1; transform: translate(-50%, -50%); }
  100% { opacity: 0; transform: translate(-50%, -60%); }
}

/* Görsel */
.statistik-gorsel {
  position: relative;
  margin-top: 450px;
  margin-left: 50px;
  max-width: 420px;
  z-index: 1;
  animation: nefes 4s ease-in-out infinite;
}

.statistik-gorsel img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
  background-color: #002D72 !important;
  color: white;
  padding: 20px;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-left img {
  width: 200px !important;
  height: auto !important;
  object-fit: contain;
  margin-top: -60px;
  margin-left: 40px;
}

.footer-slogan {
  margin: 0;
  font-size: 20px !important;
  font-weight: bold;
  color: #293133;
  font-family: Trebuchet MS, sans-serif !important;
}

.footer-right {
  order: 0;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-left: 100px;
}

footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  footer { flex-direction: column; text-align: center; }
  .footer-left, .footer-right { justify-content: center; }
}

@media (max-width: 600px) {
  .footer-right { align-items: center; margin-left: 0; }
}

/* FOOTER ÜST BUTONLAR */
.footer-top-buttons {
  flex-basis: 100%;
  order: -1;
  display: flex;
  justify-content: flex-start;
  gap: 120px !important;
  margin-left: 100px;
  margin-bottom: 15px;
}

.footer-top-buttons a {
  background-color: transparent !important;
  color: #fff !important;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: transform .2s ease, color .2s ease;
  position: relative;
}

.footer-top-buttons a:hover {
  background-color: transparent !important;
  color: #ddd !important;
}

.footer-top-buttons a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -64px;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 1.5px;
  background-color: rgba(255, 255, 255, 0.7);
}

.footer-right {
  flex-direction: column;
  align-items: flex-start;
  margin-top: -40px;
  margin-left: 50px;
}

/* HİZMETLERİMİZ: 2 SÜTUN */
.services-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-left: 375px;
}

.services-section .service-buttons {
  width: 350px;
}

@media (max-width: 820px) {
  .services-grid { gap: 24px; }
  .services-section .service-buttons { width: 100%; max-width: 420px; }
}

/* MODAL / GALERİ */
.modal { position: fixed; inset: 0; display: none; z-index: 2000; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.modal-content {
  position: relative;
  margin: 5vh auto 0;
  max-width: 1000px;
  width: 92%;
  background: #fff;
  border-radius: 14px;
  padding: 20px 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.modal-close {
  position: absolute; right: 12px; top: 10px;
  border: none; background: transparent; font-size: 28px; cursor: pointer;
}
#modalTitle { margin: 0 0 14px; font-size: 22px; color:#1f1f1f; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  min-height: 160px;
  align-items: start;
  border: 1px dashed #d7d7d7; border-radius: 10px; padding: 14px;
}
.gallery img {
  width: 100%; height: 180px; object-fit: cover; border-radius: 10px; display: block;
}

@media (max-width: 520px) {
  .modal-content { margin-top: 4vh; padding: 16px; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); }
  .gallery img { height: 140px; }
}

.footer-right {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  order: 2;
}

.footer-right {
  position: absolute;
  top: 65px;
  left: 43%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

footer {
  position: relative;
}

footer span {
  display: block;
  text-align: center;
  margin-top: 20px;
  order: 3;
  width: 100%;
}

/* Footer'daki "HİZMETLERİMİZ" başlığının altına metinler */
.footer-top-buttons a:first-child::before {
  content: "Hızlı Analiz\A Güvenli\00a0Ödeme\AKolay\00a0İletişim\A Ekip\00a0Çalışması";
  white-space: pre-line;
  position: absolute;
  top: calc(100% + 8px);
  left: 40%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 2.0;
  color: #fff;
  opacity: 0.95;
  text-align: center;
  margin-left: 21px;
}

/* Footer'daki "VİZYONUMUZ" başlığının altına metinler */
.footer-top-buttons a:nth-child(3)::before {
  content: "Yenilikçilik\A Güvenilirlik\A Müşteri\00a0Odaklılık\A Kalite\A Uzmanlık";
  white-space: pre-line;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  opacity: 0.95;
  text-align: center;
}

/* Footer'daki "BİLGİ" başlığının altına metinler */
.footer-top-buttons a:nth-child(4)::before {
  content: "Hakkımızda\A Sıkça\00a0Sorulan\00a0Sorular\A Gizlilik\00a0Politikası\A Kullanım\00a0Şartları\A Çerez\00a0Politikası";
  white-space: pre-line;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  opacity: 0.95;
  text-align: center;
}

.footer-top-buttons {
  margin-bottom: 64px;
} 

/* === Hoşgeldiniz açılır menü (dropdown) === */
.top-nav .menu-item{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Hoşgeldiniz linki, mevcut top-nav link stiliyle aynı davransın */
.top-nav .menu-item > a.has-sub{
  text-decoration: none;
  font-size: 17px;
  color: #1f1f1f;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
.top-nav .menu-item > a.has-sub:hover{
  color: #0066aa;
  transform: scale(1.05);
}

/* Alt menü: başlangıçta gizli */
.top-nav .submenu{
  position: absolute;
  top: calc(100% + 8px);   /* linkin hemen altına */
  left: 0;                 /* Hoşgeldiniz metninin solundan hizala */
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: #062b63;     /* koyu mavi */
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1500;           /* diğer ögelerin üzerinde kalsın */
}

.top-nav .submenu li{ padding: 0; }
.top-nav .submenu a{
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  text-align: center;      /* görseldeki gibi ortalı */
  font-family: 'Century', serif;
  white-space: nowrap;
}
.top-nav .submenu a:hover{
  background: #0d47a1;
}

/* Hover ile aç */
.top-nav .menu-item:hover .submenu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
                      
.fixed-header-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #5C83B4;
  z-index: 1; /* arka planda kalması için düşük */
}

header, nav, .logo {
  position: relative;
  z-index: 2; /* önde görünmesi için yüksek */
}

/* Üst menü için tek fonta kilitle */
.top-nav,
.top-nav * {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif !important;
  font-size: 17px !important;   /* tek boy */
  line-height: 1.2 !important;
  font-weight: 300 !important;
  letter-spacing: 0.2px;        /* istersen 0 yapabilirsin */
  font-variant-ligatures: none; /* optik sapmayı azaltır */
}

/* Hover büyütmesini kapat (isteğe bağlı) */
.top-nav a:hover { transform: none !important; }

.fixed-header-bg {
  
  border-bottom: 2px solid #000; /* siyah şerit */
}

/* ==== 1) Üst sabit bar: her şeyin ÜSTÜNDE kalsın, siyah şeritli ==== */
.fixed-header-bg{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100px;                /* sen zaten 100px kullanıyorsun */
  background: #5C83B4;
  border-bottom: 2px solid #000;/* siyah şerit */
  z-index: 900;                 /* içeriklerin üstünde */
}

/* 2) Menü ve logo: barın da üstünde */
.top-nav,
.logo-top-right{
  position: fixed;
  z-index: 1000;
}

/* 3) İçeriği bar kadar aşağı it (yoksa görseller barın altına girer) */
.fixed-header-spacer{ height: 100px; }  /* HTML’de <div class="fixed-header-spacer"></div> kullan */

/* 4) Statik görsel ve diyagonal arka plan barın ALTINDA kalsın */
.statistik-gorsel{ position: relative; z-index: 10; }
.container .diagonal-bg{ position: absolute; z-index: 0; pointer-events: none; }

/* 5) Menüde font/punto farkını tamamen kapat: dropdown içi de aynı fontu kullansın */
.top-nav, .top-nav *{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  font-variant-ligatures: none;
}
.top-nav .submenu a{ font-family: inherit !important; }

/* 6) Hover’da büyütmeyi kapat (istersen) */
.top-nav a:hover{ transform: none !important; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

footer, footer * {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

html, body { height: 100%; margin: 0; }
body { min-height: 100vh; display: flex; flex-direction: column; }
footer { margin-top: auto; }

/* Footer'dan sonra kalan HER ŞEYİ gizle 
footer ~ * {
  display: none !important;
}*/


/* === SABİT ÜST BAR RENK ŞERİDİ === */
.fixed-header-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px; /* istediğin yüksekliği ayarla */
  background: #5C83B4;
  border-bottom: 2px solid #000; /* siyah şerit */
  z-index: 1; /* menünün altında ama en alttaki içerikten yukarıda */
  pointer-events: none; /* tıklamaları engellemesin */
}

/* ÜST MENÜ */
.top-nav,
.logo-top-right {
  position: fixed;
  z-index: 1000; /* renk şeridinin üstünde */
}

/* İçeriği aşağı itme (yoksa menü ve renk içerik üstüne biner) */
.fixed-header-spacer {
  height: 100px; /* .fixed-header-bg ile aynı yükseklik olmalı */
}

/* FOOTER — beyaz boşluk engelleme */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

footer, footer * {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Sabit üst bar tıklamayı engellemesin */
.fixed-header-bg {
  pointer-events: none;
}

/* Üst menü ve diğer tıklanabilir alanlar çalışsın */
.top-nav, 
.logo-top-right {
  pointer-events: auto;
}

/* Modal pencereler her şeyin üstünde gözüksün */
.modal, 
.modal.open {
  z-index: 99999 !important;
}

/* Modal arka planı (kapatmak için tıklanabilir) */
.modal-backdrop {
  z-index: 99998 !important;
}

footer span {
  margin-top: 8px !important; /* 20px yerine 8px ile daha yukarı */
}

/* --- FOOTER alt liste metinleri yukarı al ve görünür yap --- */
footer { 
  padding-bottom: 40px !important;   /* altta nefes alanı */
  position: relative;                /* z-index referansı */
}

/* Tüm kolonların alt metinlerini biraz yukarı al */
.footer-top-buttons a:first-child::before,
.footer-top-buttons a:nth-child(3)::before,
.footer-top-buttons a:nth-child(4)::before {

  line-height: 1.55 !important;      /* satırlar sıkılsın */
  z-index: 5 !important;             /* başka şeylerin altında kalmasın */
}

/* Emniyet: başlık linkleri kesinlikle konum referansı olsun */
.footer-top-buttons a { 
  position: relative !important;
}

/* (İsteğe bağlı) Başlıklar ile metinler arası boşluğu azalt */
.footer-top-buttons {
  margin-bottom: 30px !important;
}

/* Modal içinde metin tek satıra sıkışmasın, kesilmesin */
.modal-content,
.modal-content * {
  white-space: normal !important;    /* nowrap'ı iptal et */
  overflow: visible !important;       /* hidden'ı iptal et */
  text-overflow: clip !important;     /* ... (ellipsis) iptal */
  word-break: break-word;             /* çok uzun kelimeleri kır */
  line-height: 1.6;
}

/* İçerik uzun olursa pencere taşmadan scroll çıksın */
.modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
/* === MODAL: metni tek satıra kitleyen her şeyi iptal et === */
.modal-content {
  display: block !important;
  max-height: 80vh !important;   /* içerik uzun olursa kaydır */
  overflow-y: auto !important;
  padding: 20px !important;
  line-height: 1.6 !important;
  word-break: break-word;         /* uzun kelimeleri kır */
  white-space: normal !important;
}

.modal-content, 
.modal-content * {
  white-space: normal !important;     /* nowrap iptal */
  overflow: visible !important;        /* hidden iptal */
  text-overflow: clip !important;      /* ellipsis iptal */
  -webkit-line-clamp: unset !important;/* çok satır kısaltma iptal */
  -webkit-box-orient: initial !important;
}

/* Sık görülen sınıfları da özellikle ezelim */
.modal-content .truncate,
.modal-content .text-truncate,
.modal-content .line-clamp,
.modal-content .clamp {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: block !important;
}

/* Paragraflar kesin blok olsun */
.modal-content p,
.modal-content span,
.modal-content div {
  display: block !important;
}

/* Modal için temel stiller */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 12000;
}
.modal.is-open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.0);
}
.modal-content {
  position: relative;
  background: #fff;
  width: min(92vw, 900px);
  max-height: 85vh;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: auto;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}
.gallery img {
  display: block;
  max-width: 100%;
  height: auto;
}


#modalGallery img {
  width: 80% !important;
  height: auto;
  max-height: 72vh;
  display: block;
  margin: auto;
  object-fit: contain;
}


.logo-top-right {
  display: flex;          /* logo + yazıyı yan yana dizer */
  align-items: center;    /* dikeyde ortalar */
  gap: 12px;              /* araya boşluk */
  position: fixed;        /* zaten fixed idi */
  top: 0;
  left: 20px;             /* logonun sola uzaklığı */
  z-index: 9999;
}

.logo-top-right::after {
  content: "AKILLI İSTATİSTİK" ;  /* yazıyı ekler */
  font-size: 25px;
  font-weight: bold ;
  color: rgb(43, 40, 40);    /* menü arka planına göre değiştir */
  white-space: normal ;
  font-family: 'Raleway', serif ;  /* yazı tipi */
}

.image-section img {
  border: 2px solid #5C83B4;   /* sitenin mavi rengi */
  border-radius: 12px;         /* köşeleri yuvarlat */
  padding: 6px;                /* resim ile çerçeve arası boşluk */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* gölge efekti */
}


#iletisim {
  max-width: 1500px !important ;          /* genişlik */
  margin: 40px auto;         /* ortala */
  padding: 30px;             /* iç boşluk */
  border: 2px solid #333;    /* çerçeve */
  border-radius: 12px;       /* köşeleri yuvarlat */
  background: #808fd2;       /* arka plan rengi */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* gölge efekti */
}

#iletisim {
  width: 40%;           /* ekranın %80’ini kaplar */
  max-width: 700px;     /* en fazla 900px genişler */
  margin: 40px auto;    /* ortalanır */
  padding: 30px;
  border: 2px solid #333;
  border-radius: 12px;
  margin: 70px auto 40px;   /* üstten 60px boşluk, sağ-sol auto, alttan 40px boşluk */
  
}
body {
  background-color: #babec1; /* istediğin rengi yaz */        
}

