* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.general {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ust-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #6a5acd;
  color: white;
  padding: 0.8rem 2rem;
  flex-wrap: wrap;
}

.logo-alan {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 80px;
  height: 80px;
  background-image: url(images/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.kurum-bilgi .banner {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

.kurum-bilgi .banner2 {
  font-size: 0.9rem;
  color: #e6e6e6;
}

.ust-bilgi-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.ust-bilgi-bar i {
  margin-right: 0.4rem;
}

.konum-bilgi {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.konum-bilgi a {
  color: white;
  text-decoration: underline;
  font-size: 0.9rem;
}

.dil-ve-iconlar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dil {
  font-weight: bold;
  cursor: pointer;
}

.ikonlar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ikonlar a {
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.ikonlar a:hover {
  color: #ccc;
}


.fa-whatsapp  {
    color: #45a049;
    position: fixed;
    top: 30%;
    right: 1rem;
    left: unset;
    z-index: 1000;
}

.menu-icon{
  display: none;
}

.menu {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 8.125rem;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.menu ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  position: relative;
}

.menu ul li a {
  display: block;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.menu ul li a:hover {
  color: rgb(240, 16, 0);
  transition: color 0.3s ease;
}

.menu ul li ul {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  min-width: 10rem;
  display: none;
  flex-direction: column;
  z-index: 1001;
}

.menu ul li:hover > ul {
  display: flex;
}

.menu ul li ul li a {
  padding: 0.8rem 1rem;
  text-align: left;
  color: #000;
  font-weight: normal;
}

.menu ul li ul li a:hover {
  background-color: #f2f2f2;
  color: #f36100;
}


.hero-slider {
  position: relative;
  margin-top: 5rem;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {

  opacity: 1;
  z-index: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 1s ease;
}

.hero-slide:hover img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  bottom: 15%;
  left: 8%;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.hero-slide.active .caption {
  opacity: 1;
  transform: translateY(0);
}

.caption h2 {
  font-size: 2.5rem;
  animation: fadeInDown 1s ease;
}

.caption p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  -webkit-animation: fadeInUp 1s ease 0.4s forwards;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 1rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.prev { left: 1rem; }
.next { right: 1rem; }

@media(max-width: 768px) {
  .caption h2 { font-size: 1.5rem; }
  .caption p { font-size: 1rem; }
  .slider-btn { font-size: 1.5rem; padding: 0.6rem; }
}



.gallery-container {
  margin-top: 6rem;
  width: 100%;
  height: 25rem;
  overflow: hidden;
  position: relative;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.7rem;
  cursor: pointer;
  z-index: 10;
  font-size: 0.7rem;
  transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}


.gallery-container:hover .prev {
    display: block;
}

.gallery-container:hover .next {
    display: block;
}

.nedenbiz {
    position: relative;
    margin-top: 3rem;
    right: 0;
    width: 100%;
    height: 24rem;
    background-color: #c5c5c5;
    text-align: center;
    padding: 1.25rem;
}

.nedenbiz p {
    font-size: 1rem;
    color: #202122; 
    margin-bottom: 2rem;
}
.nedenbiz .icon-box {
    width: 140px;
    height: 140px;
    font-size: 2.5rem;
    display: flex; 
    justify-content: center;
    align-items: center;
    text-align: center;
}

.items {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 2rem;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-wrapper {
    width: 160px;
    height: 160px;
    border: 3px dashed;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-inner {
    width: 120px;
    height: 120px;
    background-color: #6a5acd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-inner i {
    color: white;
    font-size: 2.5rem;
}

.item-text {
    margin-top: 1.2rem;
    font-size: 1.15rem;
    color: #222;
    font-weight: 600;
    max-width: 220px;
}


.tanitim-blok {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 5% 8rem; /* alt boşluk bırakıldı */
  position: relative;
  background-color: #f5f5f5;
  overflow: hidden;
}

.tanitim-blok::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, #a8e063, #f5f5f5);
  z-index: 0;
  pointer-events: none;
}



.tanitim-yazi {
  flex: 1;
  max-width: 50%;
  z-index: 1;
}

.tanitim-yazi h2 {
  font-size: 2rem;
  color: #5e40dc;
  margin-bottom: 1rem;
}

.tanitim-yazi p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.tanitim-btn {
  padding: 0.75rem 1.25rem;
  background-color: white;
  border: 2px solid #5e40dc;
  color: #5e40dc;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.tanitim-btn:hover {
  background-color: #5e40dc;
  color: white;
}

.tanitim-resim {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.tanitim-resim img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}


.neden-secim {
  background-color: #fafafa;
  padding: 4rem 2rem;
  text-align: center;
}

.neden-secim h2 {
  color: #5e40dc;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.neden-secim .alt-baslik {
  color: #777;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.icerik-blok {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.sol-blok, .sag-blok {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 250px;
}

.gorsel-blok {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.gorsel-blok img {
  width: 100%;
  max-width: 470px;
  border-radius: 1rem;
  object-fit: cover;
}

.kart {
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.kart h3 {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: #222;
}

.kart p {
  color: #555;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.ikon {
  font-size: 1.8rem;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  display: inline-block;
  color: white;
}

.daire.mavi { background-color: #5e40dc; }
.daire.turuncu { background-color: #f39c12; }
.daire.yesil { background-color: #2ecc71; }

.video-section {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.video-title {
    font-size: 2rem;
    font-weight: bold;
    color: #e64303;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.video-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #e64303;
    bottom: -8px;
    left: 20%;
    border-radius: 2px;
}

.video-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
    background: black;
}

.video-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: black;
}

.video-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}
#prevBtn { left: 10px; }
#nextBtn { right: 10px; }


.testimonial-slider {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  text-align: center;
  background-color: #000;
}

.testimonial-bg {
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 100%;
  background-image: url('images/ft6.png'); /* ← senin resmin */
  background-repeat: repeat-x;
  background-size: cover;
  animation: slide-bg 60s linear infinite;
  z-index: 0;
  filter: brightness(0.6);
}

@keyframes slide-bg {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-content {
  position: relative;
  max-width: 900px;
  padding: 2rem;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-content .icon {
  font-size: 4rem;
  background-color: white;
  color: orange;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-content .comment {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-content h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: white;
}

.testimonial-content h3 span {
  font-weight: normal;
  font-style: italic;
  color: #ccc;
}



#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 99;
    font-size: 1.125rem;
    border: none;
    outline: none;
    background-color: #fd4221;
    color: white;
    cursor: pointer;
    padding: 0.9375rem;
    border-radius: 0.625rem;
    transition: background-color 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #333;
}

footer {
    background-color: #333;
    color: white;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: 3rem;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 6.25rem;
    padding-left: 25rem;
    padding-right: 25rem;
    text-align: center;
    margin-bottom: 0.625rem;
}

.footer-content h3 {
    margin: 0;
    color: #c5c5c5;
    padding-bottom: 0.625rem;
}

.footer-content li, p {
    color: #aaa;
}

.footer-content p {
    margin: 0;
    padding-bottom: 0.625rem;
}

.footer-content img {
    width: 18.75rem;
}

.socials {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.socials li {
    margin: 0 0.625rem;
}

.socials a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
}

hr {
    height: 0.0625rem;
    border: none;
    background-color: #c5c5c5;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.625rem;
    border-top: 0.0625rem solid #444;
}

.hizli-menuler {
    list-style: circle;
    padding: 0;
    margin: 0;
}

.hizli-menuler li {
    padding: 0.4375rem 0;
}

.hizli-menuler li a {
    text-decoration: none;
    color: #aaa;
}

.hizli-menuler li:hover {
    color: #f36100;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.calisma-saatleri {
    width: 31.25rem;
    height: 6.25rem;
}

.calisma-saatleri ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.calisma-saatleri li {
    display: flex;
    padding: 0.3125rem;
    justify-content: space-between;
}

.bize-ulasin {
    width: 37.5rem;
}

.bize-ulasin ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bize-ulasin li {
    padding: 0.625rem 0;
}


@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  .ust-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .kurum-bilgi .banner {
    font-size: 1.1rem;
  }

  .kurum-bilgi .banner2 {
    font-size: 0.85rem;
  }

  .ust-bilgi-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }

  .dil-ve-iconlar {
    flex-direction: row;
    gap: 0.5rem;
  }

  .ikonlar {
    justify-content: center;
    flex-wrap: wrap;
  }

  .konum-bilgi a {
    font-size: 0.9rem;
  }


  .menu-icon {
    display: block;
    font-size: 2rem;
    position: relative;
    z-index: 2000;
    background-color: #fff;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    width: 3rem;
  }

  .menu {
    top: 1rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: relative;
    display: none;
  }

  .menu.show {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
    list-style: none;
    padding: 0;
  }

  .menu ul li {
    width: 100%;
    border-top: 1px solid #ddd;
    position: relative;
  }

  .menu ul li a {
    display: block;
    padding: 0.5rem;
    text-align: left;
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
  }

  .menu ul li ul {
    position: static;
    max-height: 0;
    overflow: hidden;
    background-color: #f7f7f7;
    transition: max-height 0.4s ease;
  }

  .menu ul li ul.show {
    max-height: 500px;
  }

  .menu ul li ul li a {
    padding-left: 2rem;
    font-weight: normal;
  }

  .gallery-container {
    margin-top: 1rem;
    height: auto;
  }

  .gallery-container .resim {
    height: auto;
  }

  .hero-slider {
    height: 300px;
  }

  .hero-slide img {
    height: 100%;
  }

  .caption h2 {
    font-size: 1.3rem;
  }

  .caption p {
    font-size: 0.9rem;
  }

  .slider-btn {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  .nedenbiz {
    height: auto;
    padding: 2rem 1rem;
  }

  .items {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 1rem;
    }

    .icon-wrapper {
        width: 130px;
        height: 130px;
    }

    .icon-inner {
        width: 100px;
        height: 100px;
    }

    .icon-inner i {
        font-size: 2rem;
    }

    .item-text {
        font-size: 1rem;
        max-width: 100%;
    }

  .tanitim-blok {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .tanitim-yazi, .tanitim-resim {
    max-width: 100%;
    text-align: center;
  }

  .tanitim-resim{
    margin-top: 2rem;
  }

  .tanitim-yazi h2 {
    font-size: 1.5rem;
  }

  .neden-secim .icerik-blok {
    flex-direction: column;
  }

  .gorsel-blok img {
    width: 90%;
  }


    .video-title {
        font-size: 2rem;
    }
    .video-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }

  footer {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0;
  }

  .footer-content img {
    width: 60%;
    margin: 0 auto;
  }

  .calisma-saatleri,
  .bize-ulasin {
    width: 100%;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.8rem;
  }

  #scrollToTopBtn {
    bottom: 1rem;
    right: 1rem;
  }
}

