<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html {
  scroll-behavior: smooth;
}

  html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: "Segoe UI", sans-serif;
  }
  body {
  padding-top: 0;
}
a {
  text-decoration: none !important; /* AltÄ± Ã§iziliÄŸi kaldÄ±rÄ±r */
  color: inherit !important; /* VarsayÄ±lan metin rengini korur */
}




.cta {
      background: linear-gradient(to right, #0f1a2b, #1f3556);
      color: #fff;
      padding: 5vh 4vw;
      border-radius: 10px;
       text-align: center;
       margin-top: 3vh;
    }

    .cta h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      color: #f1c40f;
      margin-bottom: 1rem;
       text-align: center;
    }

    .contact-form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
      
      padding: 1rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      width: 100%;
    }

    .contact-form button {
      text-align: center;
      background-color: #e0c063;
      color: #0f1a2b;
      padding: 0.75rem;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #f1c40f;
      color: #fff;
    }

.slideshow {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  filter: blur(3px);
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.slide-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-wrapper.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.slide-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 26, 43, 0.3); 
  z-index: 999;
}

.slideshow-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fdf5e6;
  z-index: 2;
  padding: 0;
  margin: 0;
  gap: 0.3rem;
  background: linear-gradient(
    to top,
    rgba(15, 26, 43, 0.8),
    rgba(15, 26, 43, 0.3),
    rgba(15, 26, 43, 0)
  );
}

.slideshow-overlay h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #e0c063;
  margin: 0;
}

.slideshow-overlay h2 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #fefae0;
  margin: 0;
}

.slideshow-overlay button {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  background-color: #e0c063;
  color: #0f1a2b;
  border: none;
  padding: clamp(0.3rem, 1vh, 0.7rem) clamp(1rem, 4vw, 1.5rem);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0;
}

.slideshow-overlay button:hover {
  background-color: #f1c40f;
  color: #fff;
}

.dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 0;
  padding: 0.3rem 0;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #e0c063;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #e0c063;
}

.arrow-down {
  font-size: clamp(1.3rem, 3vw, 2rem);
  animation: bounce 2s infinite;
  cursor: pointer;
  color: #fdf5e6;
  margin-bottom: 0.3rem;
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .slideshow-overlay button {
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
  }
}

@keyframes slowZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.slide-wrapper.active.zooming {
  animation: slowZoomIn 5s linear forwards;
}




  .content {
  display: flex;
  width: 100vw;
  height: 85vh;
}

.content.reverse {
  flex-direction: row-reverse;
}

.left, .right {
  width: 50%;
  height: 100%;
}

.left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7%;
}

.right {
  padding: 40px;
  background-color: #fdfaf5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1a1a1a;
}

.right h1 {
  font-size: 2em;
  text-align: center;
  margin-bottom: clamp(30px, 50px, 75px);
  color:#1f3556;
}

.right p {
  line-height: 1.6;
}


@media (max-width: 768px) {
  .content,
  .content.reverse {
    flex-direction: column;
    height: auto;
  }

  .left, .right {
    width: 100%;
    height: auto;
  }

  .left img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }

  .right {
    padding: 20px;
    align-items: center;
  }

  .photo-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .photo-gallery img {
    width: 100px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
  }
}


  .content2 {
    display: flex;
    width: 100vw;
    height: 25vh;
  }

  .left2, .right2 {
    width: 50%;
    height: 100%;
  }

  .left2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: RGBa(15, 26, 43,0.1);
  }

  .left2 img {
    max-width: 50%;
    height: 100%;
    object-fit: contain;
  }

  .right2 {
    padding: 40px;
    background-color: RGBA(191, 161, 68, 0.5);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .right2 h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .right2 p {
    line-height: 1.6;
  }


  .sahiplik-icerik {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdfaf5;
  height: auto;
  padding: 2vh 5vw;
  flex-direction: column;
}

.istatistikler {
  display: flex;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: nowrap; 
  justify-content: center;
  text-align: center;
  width: 100%;
}

.item {
  flex: 1 1 0; 
  max-width: clamp(100px, 20vw, 200px); 
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vh 1vw;
  border-radius: 10px;
  box-sizing: border-box;
}

.sayi {
  font-size: clamp(1.0rem, 4vw, 3rem);
  font-weight: bold;
  color: #bfa144;
  transition: all 0.5s ease-in-out;
}

.aciklama {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  color: rgb(0, 0, 0);
  margin-top: 1vh;
}



    .header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background-color: #fdfaf5;;
      backdrop-filter: blur(10px);
      padding: clamp(0.5rem, 1vh, 2rem) clamp(1rem, 2vw, 3rem);

    }

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

    .logo img {
      height: clamp(50px, 5vw, 120px);
      display: block;
    }

    .nav-links {
      display: flex;
      gap: clamp(1rem, 5vw, 5rem);
      list-style: none;
      margin-right: 1vw;
      padding: 0;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-links li a {
      text-decoration: none;
      font-size: clamp(0.8rem, 1.3vw, 1.3rem);
      color: #0f1a2b;
      font-weight: 500;
      transition: color 0.3s ease;
      white-space: nowrap;
    }

    .nav-links li a:hover {
      color: #bfa144;
    }
.dropdown-parent {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fdfaf5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 4px;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #0f1a2b;
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown li a:hover {
  background-color: #f0ede6;
  color: #bfa144;
}

.dropdown-parent:hover .dropdown {
  display: block;
}


  .footer {
    background-color: #0f1a2b;
    color: #fdfaf5;
    padding: 3vh 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    gap: 1vw;
    box-sizing: border-box;
  }

  .footer-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1vh 1vw;
    box-sizing: border-box;
  }

  .footer-section.logo-section {
    align-items: flex-start;
    text-align: left;
  }

  .footer-section.logo-section .logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    max-width: clamp(100px, 8vw, 125px);
    height: auto;
    margin-bottom: 1vh;
  }

  .footer-section h3,
  .footer-section h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #bfa144;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 5px;
  }

  .footer-section ul li a {
    text-decoration: none;
    color: #fdfaf5;
    transition: color 0.3s;
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  }

  .footer-section ul li a:hover {
    color: #bfa144;
  }

  .footer-section.contact-section {
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    margin-top: 2vh;
    text-align: center;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    color: #bbbbbb;
    border-top: 1px solid #444;
    padding-top: 1vh;
    width: 100%;
  }

  .footer-section p {
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    line-height: 1.4;
    margin: 0.3rem 0;
    color: #dddddd;
  }
  

  .yatay-gorsel {
  width: 100%;
  height: 30vh;
  background-image: url('anasayfa/tarih.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


@media (max-width: 768px) {
  .content {
    flex-direction: column;
    height: auto; 
  }

  .left, .right {
    width: 100%;
    height: auto;
  }

  .left img {
    height: auto;
    max-height: 50vh; 
  }
}

.photo-gallery {
  display: flex;
  gap: clamp(5px, 2vw, 20px);
  margin-top: clamp(50px, 20vw, 100px);
  justify-content: center;
  flex-wrap: wrap;
  
}

.photo-gallery img {
  width: clamp(100px, 25vw, 200px); 
  height: clamp(100px, 25vw, 200px);
  border: 2px solid #ddd;
  border-radius: 25%;
  object-fit: cover;
  transition: transform 0.3s;
}

.photo-gallery img:hover {
  transform: scale(1.05);
}


.timeline-container {
  display: flex;
  justify-content: space-evenly; 
  align-items: center;
  flex-wrap: nowrap;
  margin: 20px;
  padding: 0 20px;
  position: relative;
  margin-bottom: 20px;
}

.timeline-item {
  flex: 1 1 clamp(80px, 10vw, 150px); 
  max-width: clamp(100px, 12vw, 180px);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 clamp(8px, 1.5vw, 20px); 
}
.timeline-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.timeline-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}



.timeline-item:last-child::after {
  display: none;
}

.timeline-item h3 {
  font-size: clamp(12px, 1.4vw, 18px);
  margin: 5px 0;
  font-weight: 600;
}

.timeline-item p {
  font-size: clamp(10px, 1.2vw, 16px);
  margin: 0;
  color: #666;
  margin-top: 8px;
}



.ismail {
  background-color: #fdf5e6; 
  padding: 40px;
  border-radius: 20px;
  display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}


.bilal {
    width: 50%;
    height: 100%;
    padding: 0px;
    background-color: #fdfaf5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #1a1a1a;
  }
.contact-form {
  background-color: #0f1a2b; 
  color: #ffffff; 
  width: 90%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(15, 26, 43, 0.1);
  font-size: 1rem;
}

.contact-form h2 {
  text-align: center;
  color: #f1c40f; 
  font-size: 1.5em;
  margin-bottom: 10px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95em;
}

.contact-form input,
.contact-form textarea {
  background-color: #ffffff;
  color: #0f1a2b;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  padding: 12px 15px;
  font-size: 1em;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f1c40f;
  outline: none;
}

.contact-form button {
  background-color: #f1c40f;
  color: #0f1a2b;
  padding: 12px;
  font-size: 1em;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #d4ac0d;
  color: #ffffff;
}



@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .ismail, .bilal {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  iframe {
    width: 100% !important;
    height: 300px !important;
  }
}


#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  text-decoration: none;
}


#scrollToTopBtn:hover {
  opacity: 1;
}




.galeri-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1c40f;
  background: url('path_to_your_image.webp') no-repeat center center;
  background-size: cover;
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 2rem);
  padding: 20px;
  position: relative; 
}

.galeri-hero h1 {
  position: relative;
  z-index: 1; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
}

.galeri-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: -1; 
}


.galeri-text-container {
  padding: 4vh 5vw;
  text-align: center;
  background-color: #fdfaf5;
}

.galeri-baslik {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1f3556;
  margin-bottom: 1vh;
}

.galeri-aciklama {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #333;
  max-width: 800px;
  margin: auto;
}

.galeri-filtreler {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2vh 0;
  flex-wrap: wrap;
}

.galeri-filtre-btn {
  background-color: #1f3556;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.galeri-filtre-btn.active,
.galeri-filtre-btn:hover {
  background-color: #4475bd;
  color: white;
}

.galeri-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  padding: 3vh 5vw;
  background-color: #fdfaf5;
}

.galeri-item {
  width: clamp(200px, 25vw, 300px);
  aspect-ratio: 1 / 1;
  background-color: #fdfaf5;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.galeri-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.galeri-item:hover {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .galeri-hero h1 {
    font-size: 2rem;
  }

  .galeri-filtreler {
    gap: 0.5rem;
  }

  .galeri-filtre-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}




.galeri-ozellikler {
  margin-top: 2vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 3vw, 30px);
}

.galeri-ozellik {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: #1f3556;
  background-color: #fdf5e6;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.galeri-ozellik i {
  color: #bfa144;
  font-size: 1.2em;
}
.galeri-ozellik {
  color: #000000 !important; 
  background-color: #cadfff !important;
}
.galeri-ozellik i {
  color: #f1c40f !important; 
}

</pre></body></html>