@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Chivo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  font-family: sans-serif;
  background-color: #f9f9f9;
}

/* Üst Menü */
.uppermenu {
  background-color: #041F42;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}
.navbar {

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 220px;
  background-color: #041F42; /* Arka plan kaldırıldı */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}


.logo h1 {
  font-size: 24px;
  color: #fff;
}

.alt-logo {
  font-size: 12px;
  color: #bE995F;
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0.5px;
}


.nav-links a {
  text-transform: uppercase;
  position: relative;
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}
.infoBtn button{
   background-color: #00264d;
   color: #fff;
   padding: 10px 25px;
   margin-top: 0;
   border: none;
   width: 100%;
   border-radius: 10px;
   font-size: 18px;
}


/* Alt çizgi efekti */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #f15a24;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover olunca çizgi gelsin */
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: #f15a24;
}
/* Menü ikonu */
.title-icon {
  font-size: 28px;
  color: #f15a24; /* turuncu */
  margin-right: 8px;
  vertical-align: middle;
}
.menu-icon {
  display: none;
  cursor: pointer;
}

/* Mobil Menü */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100%;
  background-color: #fff;
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  font-size: 35px;
  cursor: pointer;
}

.mobile-menu a {
  font-family: 'Poppins', sans-serif;
  display: block;
  margin: 25px 0;
  color: #222;
  font-size: 1rem;
  text-decoration: none;
}

/* Arka plan bulanıklığı */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
}

#overlay.active {
  display: block;
}
@media (max-width: 768px) {
  .ust-bilgilendirme {
    display: none !important;
  }
}


/* Responsive */
@media (max-width: 1400px) {
  .desktop-only {
    display: none;
  }

  .menu-icon {
    display: block;
    color: #fff;
  }

  .logo h1 {
    font-size: 20px;
  }

  .alt-logo {
    font-size: 11px;
  }
  .navbar{
    padding: 15px 30px;
  }
}
/* HERO SLIDER STİLİ */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 70vh;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide .content {
  position: absolute;
  top: 30%;
  padding: 15px 220px;
  color: white;
  text-align: left; 
  z-index: 2;
  max-width: 70%;
  border-radius: 10px;
}

.slide .content h2 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.slide .content p {
  font-family: Poppins, sans-serif;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;  
}

.slide .btn {
  background-color: #004080;
  color: white;
  padding: 10px 35px;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 21px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: bold;
}
.slide .btn:hover{
    background-color: #002e5b;
  transform: scale(1.1); /* Buton biraz büyür */
}
.hizmetlerPart {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.hizmetler-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.sol-cizgi {
  width: 4px;
  height: 70px;
  background-color: #f15a24;
}

@media (max-width: 1400px) {
 .sol-cizgi{
  display: none;
 }
  .hizmetler-title {
    justify-content: center;
    text-align: center;
  }

  .hizmetler-title h1 {
    text-align: center;
  }
}

.hizmetler-title h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin: 0;
  color: #1c2b52;
}
/* === İLKELERİMİZ BÖLÜMÜ === */
.principles {
  padding: 60px 20px;
  background: #f9f9f9;
}

.principles h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #1c2b52;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.principles h2 .title-icon {
  font-size: 32px;
  color: #f15a24;
}

/* grid yapısı */
.principles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* kutular */
.principle-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.principle-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* icon + başlık satırı */
.principle-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.principle-header .icon {
  font-size: 28px;
  color: #f15a24;
}

.principle-header h3 {
  font-size: 18px;
  font-weight: bold;
  color: #1c2b52;
  margin: 0;
}

/* açıklama yazısı */
.principle-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.icon {
  font-size: 32px;
  margin-bottom: 10px;
  transition: 0.3s;
  color: #f15a24; /* Varsayılan lacivert */
}
.hizmetler-title p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #444;
}



.parts {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.part-item {
  text-align: center;
  padding: 10px;
}

@media (max-width: 1400px) {
 .parts{
  flex-direction: column;
 }
}
.part-item button {
  border: 1px solid #BE995F;
  background-color: transparent;
  color: #BE995F;
    transition: background-color 0.3s ease, color 0.3s ease;

  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.part-item button:hover {
  border: 1px solid #BE995F;
  background-color: #966c29;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.morebtn button{
  cursor: pointer;
  padding: 10px 15px;
  border: 2px solid #BE995F;
  border-radius: 0;
  background-color: white;
  color: #BE995F;
      transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 18px;
  max-width: 150px;
}
.morebtn button:hover{
  padding: 10px 15px;
  border: 2px solid #BE995F;
  border-radius: 0;
  background-color: #966c29;
  color: white;
  font-size: 18px;
  max-width: 150px;
}
.morebtn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
}
.morebtn button a{
    color: #BE995F;
}
.morebtn button a:hover{
    color: #fff;
}

.dikey-cizgi {
  width: 1px;
  height: 80px;
  background-color: #222;
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .hero-slider {
  position: relative;
  overflow: hidden;
  height: 70vh;
}
.hizmetlerPart h1{
  margin: 0;
  margin-top: 50px;
  text-align: center;
}

.slide .content {
  position: absolute;
  top: 8%;
  max-width: 85%;
  padding: 20px;
  left: 7.5%;
  color: white;
  text-align: center; 
  z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah kutu */
  backdrop-filter: blur(8px); /* Arka planı bulanıklaştır */
}
 .slide{
    position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
 }
}


.navigation span {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s;
}

.navigation span:hover {
  transform: scale(1.2);
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
  .slide .content h2 {
    font-size: 1.8rem;
  }

  .slide .content p {
    font-size: 1rem;
  }

  .slide .content .btn {
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .slide .content {
    padding: 15px;
  }

  .slide .content h2 {
    font-size: 2rem;
  }

  .slide .content p {
    font-size: 0.9rem;
  }
}

/* HERO */
.service-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* DETAYLAR */
.service-details {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  gap: 40px;
  align-items: center;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 18px;
  line-height: 1.7;
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.features li {
  font-size: 16px;
  margin-bottom: 10px;
}

.features i {
  color: #004080;
  margin-right: 8px;
}

.content .btn {
  display: inline-block;
  margin-top: 30px;
  font-size: 18px;
  padding: 10px 15px;
  margin-left: 10px;
  background-color: #004080;

  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.conten.btn:hover {
  background-color: #002e5b;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
}

/* NEDEN BİZ */
.service-benefits {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.service-benefits h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 300px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 40px;
  color: #004080;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* SSS */
.faq-section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  background: #f2f7ff;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-left: 5px solid #004080;
  border-radius: 10px;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #003366;
}

/* CTA */
.cta-section {
  text-align: center;
  margin: 100px auto;
  padding: 60px 20px;
  background-color: #004080;
  color: white;
}

.cta-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.btn-cta {
  background: white;
  color: #004080;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #003366;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .service-details {
    flex-direction: column;
  }

  .benefit-list {
    flex-direction: column;
  }
}
.subscribe {

  max-width: 1170px;
  margin: 50px auto;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 10px 10px 20px rgb(0 0 0 / 0.1);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-top: 40px;
  color: #333;
}

.subscribe-pretitle {
  font-size: 18px;
  font-weight: 600;
  color: #777;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.subscribe-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.subscribe-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  outline-offset: 3px;
  transition: border-color 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  border-color: #004080;
  box-shadow: 0 0 6px rgba(0, 64, 128, 0.3);
}

.subscribe-form button {
  background-color: #004080;
  color: white;
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #003366;
}

@media (max-width: 1400px) {
  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
}
/* ====== DİKEY VİDEO GALERİ (Sade) ====== */

.full-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;     /* İstersen kaldır: tamamen full genişlik olur */
  height: 100%;         /* Masaüstü için sabit yükseklik */
  overflow: hidden;
  margin: 40px auto;
}

/* Slider hattı */
.gallery-slider {
  display: flex;
  align-items: center;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* Kartlar: masaüstünde en fazla 2 öğe görünür, araya boşluk */
.gallery-slide {
  flex: 0 0 calc(50% - 10px); /* 2 yan yana */
  margin-right: 20px;         /* aradaki mesafe */
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slide:last-child {
  margin-right: 0;
}

/* Videolar: dikey oranı koru; genişlik otomatik, yükseklik alana sığsın */
.gallery-slide video {
  max-height: 100%;
  width: auto;          /* genişliği elleme */
  height: auto;
  display: block;
}

/* --- Ok butonları --- */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  line-height: 1;
  background-color: rgba(0,0,0,0.45);
  color: #fff;
  border: 0;
  padding: 10px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 12px;
  transition: background-color 0.25s ease;
  user-select: none;
}

.gallery-arrow:hover { background-color: rgba(0,0,0,0.75); }
.gallery-arrow.left  { left: 0px; }
.gallery-arrow.right { right: 0px; }

/* --- Noktalar --- */
.gallery-dots {
  position: absolute;
  bottom: -10 px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}

.gallery-dots span {
  width: 20px;
  height: 8px;
  background-color: #ddd;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.gallery-dots span.active { background-color: #333; }

/* ====== Mobil Düzen ====== */
@media (max-width: 768px) {
  .full-gallery {
    height: auto;      /* yükseklik videoya göre */
    margin: 24px auto;
  }

  .gallery-slide {
    flex: 0 0 100%;    /* tek video */
    margin-right: 0;
  }

  /* Videoyu genişliğe oturt, oranı koru */
  .gallery-slide video {
    width: 100%;
    height: auto;
  }

  .gallery-arrow {
    font-size: 24px;
    padding: 6px 8px;
    background-color: rgba(0,0,0,0.35);
  }

  .gallery-dots span {
    width: 14px;
    height: 6px;
  }
  
.gallery-arrow:hover { background-color: rgba(0,0,0,0.75); }
.gallery-arrow.left  { left: 10px; }
.gallery-arrow.right { right: 10px; }

}

/* Hareketi azalt tercihine saygı */
@media (prefers-reduced-motion: reduce) {
  .gallery-slider { transition: none; }
  .gallery-arrow { transition: none; }
  .gallery-dots span { transition: none; }
}

/* Konteyner sınıfı */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Neden Biz Bölümü */
.nedenbiz-section {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  padding: 80px 0;
}

.nedenbiz-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  text-align: center;
  color: #222;
  margin-bottom: 50px;
}

.nedenbiz-title span {
  color: #0077ff;
}

.nedenbiz-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.nedenbiz-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  max-width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nedenbiz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.nedenbiz-card img {
  width: 60px;
  margin-bottom: 20px;
}

.nedenbiz-card h3 {
  font-size: 20px;
  color: #0077ff;
  margin-bottom: 10px;
}

.nedenbiz-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1400px) {
  .nedenbiz-card {
    max-width: 100%;
  }

  .nedenbiz-content {
    flex-direction: column;
    align-items: center;
  }
}
.hakkimizda-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.about-title {
  text-align: center;
}

.about-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 20px;
  color: white;
}

.line {
  width: 60px;
  height: 4px;
  background-color: #e67e22;
  margin: 20px auto;
  border-radius: 2px;
}

.about-title p {
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
}

@media (max-width: 1400px) {
  
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.about-left,
.about-right {
  flex: 1 1 500px;
}
@media (max-width: 1400px) {
  .about-left,
  .about-right {
    flex: 0;
    margin-top: 15px;
  }
}


.about-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-right h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.about-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

/* 📱 Mobil için optimize */
@media (max-width: 1400px) {
  .hakkimizda-section {
    padding: 30px 15px;
  }

  .about-title {
    margin-bottom: 25px;
  }

  .about-title h2 {
    font-size: 26px;
  }

  .about-content {
    flex-direction: column;
    gap: 20px;
  }

  .about-right h3 {
    font-size: 22px;
  }

  .about-right p {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.footer {
  background-color: #1d2a35;
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1170px;
  margin: auto;
  padding: 0 20px;
}

.footer-about h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0077ff;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #0077ff;
}

.footer-social .social-icons a {
  margin-right: 12px;
  display: inline-block;
}

.footer-social .social-icons img {
  width: 24px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer-social .social-icons img:hover {
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(190deg) saturate(4);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 1400px) {
  .footer-container {
    align-items: left ;
    text-align: left;
  }

  .footer-about p {
    max-width: 100%;
  }
}
.nedenbiz-section {
  padding: 100px 0;
}

.nedenbiz-title {
  text-align: center;
  font-size: 38px;
  color: #1d2a35;
  margin-bottom: 60px;
  font-family: 'Poppins', sans-serif;
}

.nedenbiz-title span {
  color: #0077ff;
}

.nedenbiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nedenbiz-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s ease;
}

.nedenbiz-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.nedenbiz-item img {
  width: 60px;
  margin-bottom: 20px;
}

.nedenbiz-item h3 {
  font-size: 20px;
  color: #0077ff;
  margin-bottom: 10px;
}

.nedenbiz-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
    /* Reset */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0; 
      background: #f9fafb;
      color: #333;
      line-height: 1.6;
    }
    a {
      color: #0077ff;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    a:hover {
      color: #004bb5;
    }

    /* Container */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 0;
    }

    /* Başlık */
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      font-size: 36px;
      font-weight: 700;
      color: #00264d;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }
    .section-title h2::after {
      content: "";
      width: 60px;
      height: 4px;
      background: #0077ff;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }
    .section-title p {
      color: #555;
      max-width: 600px;
      margin: 15px auto 0;
      font-size: 18px;
    }

    /* Hizmet Kartları */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 30px;
    }
    .service-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      padding: 30px 25px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 60px;
      color: #0077ff;
      margin-bottom: 20px;
    }
    .service-title {
      font-size: 24px;
      font-weight: 600;
      color: #00264d;
      margin-bottom: 12px;
    }
    .service-desc {
      font-size: 16px;
      color: #555;
      flex-grow: 1;
    }
    .service-link {
      margin-top: 20px;
      font-weight: 600;
      color: #0077ff;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease;
    }
    .service-link:hover {
      border-color: #0077ff;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .section-title h2 {
        font-size: 28px;
      }
      .service-card {
        padding: 25px 15px;
      }
    }
    .stats-section {
      background-color: #c4d2e6;
      padding: 100px 20px;
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
    }

    .stat-box {
      text-align: center;
      color: white;
      width: 220px;
      margin: 20px;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .stat-box i {
      font-size: 50px;
      color: #1e2d4e;
      background-color: white;
      padding: 20px;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      margin-bottom: 15px;
    }

    .stat-box:hover i {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .stat-box h2 {
      font-size: 36px;
      margin: 10px 0;
      font-weight: bold;
    }

    .stat-box p {
      font-size: 18px;
      color: gray;
    }

    .stat-box.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Mobil uyum */
    @media (max-width: 1400px) {
      .stat-box {
        width: 45%;
      }
    }

    @media (max-width: 1400px) {
      .stat-box {
        width: 100%;
      }
    }
    .cards-section {
  padding: 100px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f5f5f5;
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cards-grid {
    margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #004080;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}
.cards-section .line{
    width: 60px;
  height: 4px;
  background-color: #e67e22;
  margin: 20px auto;
  border-radius: 2px; 
}
.mm-bolum {
  padding: 100px 20px;
}

.mm-icerik {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
}

.mm-sol {
  flex: 1 1 40%;
  border-left: 5px solid #004080;
  padding-left: 20px;
}

.mm-buyuk-baslik {
  font-size: 60px;
  font-weight: 800;
  color: #222;
  line-height: 1.1;
}

.mm-sag {
  flex: 1 1 50%;
}

.mm-aciklama {
  font-size: 20px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1400px) {
  .mm-icerik {
    flex-direction: column;
  }

  .mm-sol {
    border-left: none;
    border-top: 5px solid #004080;
    padding-left: 0;
    padding-top: 20px;
  }

  .mm-buyuk-baslik {
    font-size: 38px;
    text-align: center;
  }

  .mm-sag {
    text-align: center;
  }
}
.genelKapsayici {
  display: flex;
  flex-direction: row;
  background: white;
  width: 90%;
  max-width: 1170px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 30px;
  gap: 40px;
  margin: 50px auto;
  transition: all 0.3s ease;
}

@media (max-width: 1400px) {
  .genelKapsayici {
    flex-direction: column;
    padding: 20px;
  }
}

.solKutu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.03);
  min-height: 250px;
}

.imgWrapper {
  width: 100%;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgWrapper img {
  border-radius: 40px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sagAlan {
  flex: 2;
}

.sagAlan h2 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #00264d;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .sagAlan h2 {
    font-size: 20px;
  }
}

.acilirKutu {
  margin-bottom: 15px;
  position: relative;
}

.acilirKutu input {
  display: none;
}

.etiket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background-color: #e5ebff;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
  user-select: none;
}

.etiket:hover {
  background-color: #00264d;
  color: #fff;
}

.okIcon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Ok döndürme efekti */
.acilirKutu input:checked + .etiket .okIcon {
  transform: rotate(180deg);
}

/* İçerik alanı */
.icerik {
  max-height: 0;
  overflow: hidden;
  background-color: #f0f4ff;
  transition: all 0.4s ease;
  padding: 0 18px;
  border-left: 3px solid #00264d;
  margin-top: 6px;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
}

.acilirKutu input:checked ~ .icerik {
  max-height: 200px;
  padding: 12px 18px;
}

/* Buton */
.maviButon {
  margin-top: 30px;
  background-color: #00264d;
  color: white;
  padding: 13px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.maviButon:hover {
  background-color: #004080;
}

.altYazi {
  margin-top: 18px;
  font-size: 13px;
  color: #666;
  text-align: right;
}
.navbarIcons {
  position: absolute;
  bottom: 5px; /* Artık biraz daha yukarıda */
  left: 20px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.navbarIcons .icon {
  font-size: 22px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, color 0.2s ease;
  margin: 0;
  padding: 0;
}

.navbarIcons .icon:not(:last-child) {
  margin-bottom: 6px;
}

.navbarIcons .icon:hover {
  transform: scale(1.2);
  color: #004080;
}
.bolum-projelerimiz {
  background: #f9f9f9;
  padding: 80px 20px;
}

.kapsayici-kutu {
  max-width: 1200px;
  margin: 0 auto;
}

.baslik-proje {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
  font-weight: bold;
  position: relative;
}

.liste-projeler {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.kutu-proje {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kutu-proje:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.projeler-bolumu {
  padding: 100px 20px;
  background: #f4f6fa;
}

.icerik-kapsayici {
  max-width: 1200px;
  margin: 0 auto;
}

.bolum-baslik {
  font-size: 36px;
  margin-bottom: 40px;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.proje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;  
  margin-bottom: 80px;
}

.proje-karti {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

.proje-karti.visible {
  opacity: 1;
  transform: translateY(0);
}

.proje-karti:hover img {
  transform: scale(1.05);
}

.proje-karti img {
  width: 100%;
  height: auto; /* Yükseklik arttı */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.proje-karti h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px; /* Daha kalın yazı alanı */
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 22px; /* Daha büyük yazı */
  text-align: center;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.contactcontainer{
  position: relative;
  width: 100%;
  padding: 2rem;
  min-height: 70vh;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form{
  width: 100%;
  max-width: 1200px;

  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px #00264d;
  z-index: 900;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-form{
  background-color: #00264d;
  position: relative;
}
.circle{
   width: 100px;
   height: 100px;
   border-radius: 50%;
   background: linear-gradient(135deg, transparent 20%, rgb(45, 79, 192));
   position: absolute;
}
.circle.one{
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}
.circle.two{
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}
.contact-form:before{
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #00264d; 
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}
form{
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}
.title{
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 0.7rem;

}
.kurumsal-hizmetler{
  max-width: 1200px;
  align-items: center;
  margin: 70px 365px;
}
.title-block{
  color: white;
  text-align: center;
  align-items: center;
  font-size: 25px;
}
@media (max-width: 1400px) {
.kurumsal-hizmetler {
    margin: 80px 20px;
  }
  .title-block{
    font-size: 18px;
  }
}
.input-container{
  position: relative;
  margin: 1rem 0;

}

.input{
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}
textarea.input{
  padding: 0.8rem 1.2rem;
  border-radius: 22px;
  min-height: 150px;
  resize: none;
  overflow-y: auto;
}
.input-container label{
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}
.input-container.textarea label{
  top: 1rem;
  transform: translateY(0);
}
.sendbtn{
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #003366;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}
.sendbtn:hover{
  background-color: transparent;
  color: #fff;
}
.input-container span{
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
  background-color: #00264d;
}
.input-container span:before,
.input-container span:after{
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #00264d;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before{
  left: 50%;

}
.input-container span:after{
  right: 50%;
  
}
.input-container.focus label{
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}
.input-container.focus span:before,
.input-container.focus span:after{
  width: 50%;
  opacity: 1;
}
.contact-info{
  padding: 2.3rem 2.2rem;
  position: relative;
}
.contact-info .title{
  color: #00264d;
}
.text{
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information{
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}
@media (max-width: 1400px) {
  .information {
    flex-direction: column;
  }
}
.icon{
  margin-right: 0.7rem;
}
.social-media{
  padding: 2rem 0 0 0;
}
.social-media p{
  color: #333;
}
.social-icon{
  display: flex;
  margin-top: 0.5rem;
}
.social-icon a{
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #004080, #003366 );
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}
.social-icon a:hover{
  transform: scale(1.05);
}

.contact-info:before{
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
}
@media (max-width: 960px) {
  .form {
    grid-template-columns: 1fr;
  }
  .contactcontainer {
    padding: 1rem;  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-animate {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

/* Banner */
.detay-banner {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.detay-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.detay-baslik {
  position: absolute;
  bottom: 30px;
  left: 50px;
  color: white;
  font-size: 48px;
  z-index: 2;
}

/* İçerik Kutusu */
.detay-icerik {
  max-width: 1200px;
  margin: -30px auto 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 5;
}

/* Başlık ve Açıklama */
.detay-icerik h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0077ff;
}

.detay-icerik p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

/* Özet Bilgiler */
.ozet-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.ozet-item {
  background: #f2f7ff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ozet-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.ozet-item span {
  font-size: 16px;
  color: #0077ff;
  font-weight: bold;
}

/* Geri Dön Butonu */
.back-button {
  margin-top: 50px;
  text-align: center;
}

.back-button a {
  padding: 12px 30px;
  background: #0077ff;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.back-button a:hover {
  background: #005acc;
}
/* FEATURE BLOKLARI */
.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 120px auto 60px auto; /* ortalamak için */
  padding: 20px;
  max-width: 1200px; /* maksimum genişlik */
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-row .feature-img {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-row .feature-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.feature-row .feature-img img:hover {
  transform: scale(1.05);
}

.feature-row .feature-text {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-row .feature-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.feature-row .feature-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
  .feature-row {
    flex-direction: column;
    text-align: center;
  }

  .feature-row.reverse {
    flex-direction: column;
  }
}


/* Öne Çıkan Özellikler */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.feature-box {
  flex: 1 1 200px;
  background: #eaf3ff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-box:hover {
  background: #d4e7ff;
}

.feature-box i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0077ff;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}

/* Galeri */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.galeri-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.galeri-grid img:hover {
  transform: scale(1.05);
}

/* Harita */
.harita iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 50px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .detay-baslik {
    font-size: 32px;
    left: 20px;
    bottom: 20px;
  }

  .detay-icerik {
    padding: 20px;
  }
}
.homepageprojects {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.homepageprojects h2 {
  font-size: 26px;
  color: #0e2b5c;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
  position: relative;
}

.homepageprojects h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #be995f;
  margin: 10px auto 0;
}

.project-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.project-card {
  width: 300px;
  height: 400px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(0,0,0,0.4);
  color: white;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid white;
}
@media (max-width: 768px) {
  .project-cards {
    flex-direction: column;
    align-items: center;
  }
}
.vizyon{
  padding: 15px 365px;
}
.vizyon h1{
  margin-top: 60px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.vizyon p{
  margin-top: 20px;
  color: gray;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
}
.misyon {
  padding: 15px 365px;
  text-align: right;
}
.misyon h1{
  margin-top: 60px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.misyon p{
  margin-top: 20px;
  color: gray;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
}
.ekyazi {
  padding: 15px 365px;
  text-align: left;
}
.ekyazi h1{
  margin-top: 60px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.ekyazi p{
  margin-top: 20px;
  color: gray;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
}
@media (max-width: 1000px) {
 .vizyon{
  padding: 15px 20px;
}
.misyon{
  padding: 15px 20px;
  text-align: left;
}
.ekyazi{
  padding: 15px 20px;
}
}

.underline{
    width: 70px;
  height: 5px;
  background-color: #BE995F;
  transform: rotate(90deg);
  margin: 50px auto 60px auto; /* ortalama + aşağı boşluk */
}
.backImg {
  background: none; /* çünkü ::before'da zaten görsel var */
  position: relative;
  height: 20vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backImg h1{
      font-family: "Chivo", sans-serif;
}
.backImg h2{
      font-family: "Chivo", sans-serif;
}
.backImg p{
    font-family: "Dancing Script", cursive;
}
@media (max-width: 1000px) {
  .backImg{
    height: 30vh;
  }
}
.backImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/slide1.png); /* senin görselin */
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
}
/* Loader full ekran */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #1a2a6c, #16222a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #cfd8dc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

/* Loader içindeki hareketli barlar */
.loader-container {
  display: flex;
  gap: 8px;
}

.bar {
  width: 8px;
  height: 40px;
  background-color: #90a4ae;
  animation: loadingBar 1.2s infinite ease-in-out;
  border-radius: 3px;
}

/* Her bar farklı animasyon gecikmesi ile yukarı aşağı hareket ediyor */
.bar1 { animation-delay: 0s; }
.bar2 { animation-delay: 0.15s; }
.bar3 { animation-delay: 0.3s; }
.bar4 { animation-delay: 0.45s; }
.bar5 { animation-delay: 0.6s; }

@keyframes loadingBar {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    background-color: #90a4ae;
  }
  20% {
    transform: scaleY(1);
    background-color: #eceff1;
  }
}

/* Yükleniyor yazısı */
.loading-text {
  margin-top: 25px;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1.1px;
  color: #cfd8dc;
}

/* İçerik başlangıçta gizli */
#content {
  opacity: 0;
  transition: opacity 1s ease;
  padding: 2rem;
  font-family: Arial, sans-serif;
  color: #263238;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
/* Hero */
.service-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: white;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

/* İçerik */
.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  align-items: center;
}

.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h2 {
  color: #0056b3;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.features i {
  color: #28a745;
  margin-right: 8px;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* Buton */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: rgba(115, 136, 255, 0.3);
}

/* Animasyonlar */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-details {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}