/* GENEL YAPI */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9fb;
  color: #222;
  line-height: 1.7;
}

/* KAPSAYICI ALAN */
.container {
  max-width: 1250px;
  margin: auto;
  padding: 40px 20px;
}




/* HİKAYE BÖLÜMÜ */
.kurumsal-story {
  margin-top: 60px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.kurumsal-story h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2d2d2d;
}

.kurumsal-story p {
  font-size: 1.1rem;
  color: #444;
}

/* KART YAPISI */
.hakkimizda-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
}

.card {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 50%;
  object-fit: cover;
  height: 450px;
}

.card-content {
  padding: 40px;
  width: 50%;
}

.card-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #1e1e1e;
}

.card-content p {
  font-size: 1rem;
  color: #555;
}

/* SOL-SAĞ YAPISI */
.card-left {
  flex-direction: row;
}

.card-right {
  flex-direction: row-reverse;
}

/* DETAY LİSTESİ */
.kurumsal-detay {
  margin-top: 80px;
  background-color: #ffffff;
  padding: 40px;
  border-left: 6px solid #3e8ef7;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.kurumsal-detay h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.kurumsal-detay ul {
  list-style-type: none;
  padding-left: 0;
}

.kurumsal-detay li {
  margin-bottom: 12px;
  color: #444;
}

.kurumsal-detay strong {
  color: #1e1e1e;
}

/* GALERİ */
.kurumsal-galeri {
  margin-top: 60px;
  background-color: #f4f6f8;
  padding: 40px;
  border-radius: 12px;
}

.kurumsal-galeri h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.kurumsal-galeri p {
  font-size: 1rem;
  color: #4d4d4d;
}

/* RESPONSIVE */
@media screen and (max-width: 991px) {
  .card,
  .card-left,
  .card-right {
    flex-direction: column;
  }

  .card img,
  .card-content {
    width: 100%;
  }

  .card-content {
    padding: 25px;
  }
}


.news-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.news-header .see-all {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
  text-decoration: none;
}

.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.news-card {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
}

.news-card img {
  width: 320px;
  height: 240px;
  display: block;
  margin-bottom: 20px;
}

.news-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 992px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .news-cards {
    justify-content: center;
  }

  .news-card {
    max-width: 100%;
  }

  .news-card img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .news-header h2 {
    font-size: 24px;
  }

  .news-header .see-all {
    font-size: 13px;
  }

  .news-card h3 {
    font-size: 14px;
  }

  .news-card p {
    font-size: 13px;
  }
}









/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 20%,
        rgba(255,255,255,0) 100%
    );
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    overflow: visible;
}

/* Scroll sonrası header */
.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header iç container */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    overflow: visible;
}

/* Logo */
.logo img {
    height: 70px;
    transition: height 0.3s ease;
}
.site-header.scrolled .logo img {
    height: 60px;
}

/* Navigation */
.main-nav {
    position: relative;
    overflow: visible;
}

/* Navigation listesi */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Her bir menü öğesi */
.nav-list li {
    position: relative;
    height: 100%;
}

/* Menü linkleri */
.nav-list a {
    text-decoration: none;
    color: #1c2230;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2e7d68;
}

/* Dropdown ok simgesi */
.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.has-dropdown > a {
    display: inline-block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 500;
    color: #1c2230;
    line-height: 1.2;
    transition: color 0.3s ease;
    height: 100%;
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.6rem;
    margin-left: 4px;
    vertical-align: middle;
}

.has-dropdown > a:hover {
    color: #2e7d68;
}

/* Dropdown menü */
.dropdown {
    position: absolute; /* FIXED değil */
    top: 100vh;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-radius: 4px;
    display: none;
    min-width: 220px;
    z-index: 999;
    list-style: none;
    margin: 0;
}

/* Dropdown iç linkler */
.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #1c2230;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.dropdown li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #2e7d68;
    transition: width 0.3s ease;
}

.dropdown li a:hover {
    color: #2e7d68;
}
.dropdown li a:hover::after {
    width: 100%;
}

/* Dropdown hover ile gösterilir */
.has-dropdown:hover .dropdown {
    display: block;
}



.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0); /* yukarı kaymasını engeller */
  z-index: 9999; /* sayfa üzerindeki her şeyin üstünde */
}


/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1c2230;
    transition: all 0.3s ease;
}

/* Mobil Logo */
/* Desktop'ta gizle */
.mobile-logo {
  display: none;
}

/* Mobilde görünür yap */
@media (max-width: 992px) {
  .mobile-logo {
    display: flex; /* flex veya block olabilir */
    justify-content: center;
    padding: 1.5rem 0 1rem 0;
    border-top: 1px solid #ddd; /* İstersen altına ince çizgi */

    /* Görsel ayarları */
  }

  .mobile-logo img {
    width: 80px; /* İstediğin genişlik */
    height: 80px; /* Kare yapısı */
    object-fit: contain;
    border-radius: 50%; /* Yuvarlak logo için */
    opacity: 0.95;
  }
}






.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
footer{
    background-color: #111010;
    margin-top: 20px;
    
}
.f-item-con{
    padding: 1.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 2rem;
}
footer .app-name{
    color: white;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}
.app-name .app-initial{
    color: var(--theme-col);
}
footer .app-info p{
    color: white;
    padding-left: 1.65rem;
}

footer .footer-title{ 
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: white;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    height: fit-content;
}
footer ul{ 
    padding-left: 1.75rem;
    color: white;
    font-size: 0.875rem/* 14px */;
    line-height: 1.25rem;
    margin-top: .5rem;
}
footer ul li{ 
    margin: .25rem 0;
    cursor: pointer;
    color: #d4d4d4;
    width: fit-content;
}
footer ul li:hover{
    color: white;
}
footer .help-sec{
    grid-column-start: 2;
}
footer .cr-con{
    background-color: #232127;
    color: white;
    padding: 1rem 4rem;
    text-align: center;
}
.g-i-t{
    display: grid;
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.g-i-t form{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
form .g-inp{
    padding: .25rem .5rem;
    font-size: 16px;
}
.g-inp textarea{
    height: 150px;
}
.f-btn{
    padding: .25rem 1rem;
    background-color: var(--theme-col);
    border-radius: .25rem;
    font-size: 16px;
    color: white;
    font-weight: 500;
}
:root{
  --theme-col: #017E90; /* TekSöz rengi */
}

footer .app-name{
  color: white;
  border-left: 4px solid var(--theme-col);
  padding-left: 1.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.app-name .app-initial{
  color: var(--theme-col);
}













/* Vizyon & Misyon Bölümü */
.vizyonmisyon-section {
  background-color: #f8f9fc;
  padding: 80px 20px;
}

.vizyonmisyon-header {
  text-align: center;
  margin-bottom: 60px;
}

.vizyonmisyon-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e1e1e;
}

.vizyonmisyon-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 15px auto 0;
}

.vizyonmisyon-block {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Satır düzeni */
.vizyonmisyon-row {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.vizyonmisyon-row.reverse {
  flex-direction: row-reverse;
}

.vizyonmisyon-image {
  flex: 1 1 45%;
}

.vizyonmisyon-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vizyonmisyon-text {
  flex: 1 1 50%;
}

.vizyonmisyon-text h2 {
  font-size: 1.8rem;
  color: var(--theme-col);
  margin-bottom: 15px;
}

.vizyonmisyon-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

/* Değerlerimiz */
.vizyonmisyon-extra {
  margin-top: 80px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.vizyonmisyon-extra h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--theme-col);
}

.vizyonmisyon-extra ul {
  list-style: none;
  padding-left: 0;
}

.vizyonmisyon-extra li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.vizyonmisyon-extra strong {
  color: #111;
}

/* Alıntı */
.vizyonmisyon-quote {
  margin-top: 60px;
  text-align: center;
  padding: 30px;
  font-style: italic;
  background: linear-gradient(120deg, #f2f2f2, #fafafa);
  border-left: 5px solid var(--theme-col);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  color: #444;
  font-size: 1.1rem;
}

@media screen and (max-width: 1200px) {
  .vizyonmisyon-header h1 {
    font-size: 2.2rem;
  }

  .vizyonmisyon-text h2 {
    font-size: 1.6rem;
  }

  .vizyonmisyon-text p,
  .vizyonmisyon-extra li {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 992px) {
  .vizyonmisyon-row,
  .vizyonmisyon-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .vizyonmisyon-image,
  .vizyonmisyon-text {
    flex: 1 1 100%;
  }

  .vizyonmisyon-image img {
    max-width: 100%;
    height: auto;
  }

  .vizyonmisyon-text h2 {
    font-size: 1.5rem;
  }

  .vizyonmisyon-text p {
    font-size: 1rem;
  }

  .vizyonmisyon-extra {
    padding: 30px 20px;
  }

  .vizyonmisyon-extra h2 {
    font-size: 1.4rem;
  }

  .vizyonmisyon-extra li {
    font-size: 0.95rem;
  }

  .vizyonmisyon-quote {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .vizyonmisyon-section {
    padding: 60px 16px;
  }

  .vizyonmisyon-header h1 {
    font-size: 1.8rem;
  }

  .vizyonmisyon-header p {
    font-size: 1rem;
  }

  .vizyonmisyon-text h2 {
    font-size: 1.3rem;
  }

  .vizyonmisyon-text p {
    font-size: 0.95rem;
  }

  .vizyonmisyon-quote {
    padding: 20px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .vizyonmisyon-header h1 {
    font-size: 1.6rem;
  }

  .vizyonmisyon-header p {
    font-size: 0.95rem;
  }

  .vizyonmisyon-text h2 {
    font-size: 1.2rem;
  }

  .vizyonmisyon-text p,
  .vizyonmisyon-extra li {
    font-size: 0.9rem;
  }

  .vizyonmisyon-extra {
    padding: 20px 15px;
  }

  .vizyonmisyon-quote {
    font-size: 0.9rem;
    padding: 16px;
  }
}












.kalitepolitikasi-section {
  background-color: #f9fafc;
  padding: 80px 20px;
}

.kalitepolitikasi-header {
  text-align: center;
  margin-bottom: 60px;
}

.kalitepolitikasi-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1d1d1d;
}

.kalitepolitikasi-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 850px;
  margin: 15px auto 0;
  line-height: 1.8;
}

/* Grid yapısı */
.kalitepolitikasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Kart yapısı */
.kalite-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
}

.kalite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* İkon alanı */
.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.value-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Başlık ve metin */
.kalite-card h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--theme-col);
}

.kalite-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
}

/* Alıntı */
.kalitepolitikasi-quote {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  font-style: italic;
  background: linear-gradient(to right, #f1f3f6, #ffffff);
  border-left: 5px solid var(--theme-col);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  font-size: 1.1rem;
  color: #333;
}

/* Tema rengi */
:root {
  --theme-col: #017E90;
}

/* Responsive detay */
@media screen and (max-width: 768px) {
  .kalitepolitikasi-header h1 {
    font-size: 2.2rem;
  }

  .kalitepolitikasi-header p {
    font-size: 1rem;
  }

  .kalite-card h2 {
    font-size: 1.2rem;
  }

  .kalitepolitikasi-quote {
    font-size: 1rem;
    padding: 30px;
  }
}


.value-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  color: var(--theme-col);
}



.intro-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  text-align: center;
}


.intro-title span {
  background: linear-gradient(120deg, #006290 0%, #00acc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.intro-divider {
  width: 60px;
  height: 4px;
  background: #00acc1;
  border-radius: 4px;
  margin: 0.6rem auto 1rem auto;
}


.intro-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 auto;
  max-width: 850px;
  text-align: center;
}


.hakkimizda-section {
    margin-top: 50px;
}








.footer-left {
  position: relative;
  margin-top: 50px;
  padding: 30px 15px 20px;
  text-align: center;
  max-width: 100%;
  background: #1e1e1e; /* Gri arka plan */
  isolation: isolate;
  color: #bbb; /* Yazı rengi */
}

/* Modern çizgi efekti */
.footer-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  z-index: 1;
}

/* İç yazılar için */
.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0;
  z-index: 2;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-left {
    padding: 25px 10px 15px;
  }

  .footer-left p {
    font-size: 13px;
  }
}

.kodem-link {
  color: #bbb;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, #2ecc71, #a9f7cd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: kodemParlama 12s ease-in-out infinite;
}

@keyframes kodemParlama {
  0%, 10% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.kodem-link:hover {
  opacity: 0.85;
}


.neas-text-wrapper {
  display: inline-block;
  font-weight: 600;
  color: #bbb;
  position: relative;
}

.neas-text-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #4a6580;
  animation: underlineSweep 10s ease-in-out infinite;
}

@keyframes underlineSweep {
  0%, 10%, 100% {
    width: 0;
    opacity: 0;
  }
  30%, 60% {
    width: 100%;
    opacity: 1;
  }
  80% {
    width: 0;
    opacity: 0;
  }
}

.neas-text-wrapper:hover {
  color: #4a6580;
}




