*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
/* Başlangıçta gizli */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Göründüğünde uygulanacak */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* YAZI FONTLARI  */
@font-face {
    font-family: 'Nactado';
    src: url('font/NOCTADO.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Lost Emerald';
    src: url('font/Lost\ Emerald.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  /* Genel Stiller */
.hero-section {
    background: radial-gradient(circle at 10% 20%, #0f172a 0%, #020617 100%);
    padding: 4rem 1rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Metin İçeriği */
.text-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Buton Tasarımı */
.modern-cta {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.hover-effect {
    position: absolute;
    width: 120%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.2) 100%);
    transform: translateX(-100%) rotate(15deg);
    transition: transform 0.4s ease;
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.spark {
    position: absolute;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: sparkle 1.2s infinite;
}

.modern-cta:hover {
    transform: translateY(-3px);
}

.modern-cta:hover .hover-effect {
    transform: translateX(100%) rotate(15deg);
}

@keyframes sparkle {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Görsel Alanı */
.hero-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: translateZ(0);
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(56, 189, 248, 0.1) 0%,
        rgba(129, 140, 248, 0.1) 100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.glow-effect {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.2) 0%,
        rgba(56, 189, 248, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: glow-pulse 4s infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.2; }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .modern-cta {
        padding: 1rem 2rem;
    }
}
.contact-section {
    padding: 4rem 1rem;
    background: #0f172a;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.floating-label label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

input, textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    border: none;
    background: transparent;
    border-bottom: 1px solid #334155;
    color: #fff;
    transition: all 0.3s ease;
}

textarea {
    height: 120px;
    resize: none;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #38bdf8;
}

input:focus ~ label,
input:valid ~ label,
textarea:focus ~ label,
textarea:valid ~ label {
    transform: translateY(-180%);
    font-size: 0.9rem;
    color: #38bdf8;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: width 0.3s ease;
}

input:focus ~ .underline,
textarea:focus ~ .underline {
    width: 100%;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.submit-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:hover .submit-icon {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    input, textarea {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

  @font-face {
    font-family: 'Batusa';
    src: url('font/Batusa.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Grenda';
    src: url('font/Grenda.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

/* YAZI FONTLARI BİTİŞ KODU  */

/* Header ve nav düzeni */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    
  
}

/* Navbar menüsünü yatay yerleştirme */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.5s;
    font-family: 'Batusa', sans-serif;
}

nav ul li a:hover {
    color: #00b7ff;
}

/* Fiyat al butonunun yerleşimi */
/* Genel buton stil ayarları */
.navbarfiyatkısmı {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  
  .navbarfiyatkısmı a {
    text-decoration: none;
  }
  
  .navbarfiyatkısmı .blob-btn {
    position: relative;
    padding: 12px 30px;
    font-family: 'Lost Emerald', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: #0505A9;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1;
    border-radius: 30px;
  }
  
  .blob-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #0505A9;
    border-radius: 30px;
    z-index: 1;
  }
  
  .blob-btn::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
    z-index: -2;
  }
  
  .blob-btn:hover {
    color: #FFFFFF;
  }
  
  .blob-btn:hover::after {
    top: 0;
    left: 0;
  }
  
  .blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #ffffff;
  }
  
  .blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
  }
  
  .blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #0505A9;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.4);
    transition: transform 0.45s;
  }
  
  .blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
  }
  
  .blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
  }
  
  .blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
  }
  
  .blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
  }
  
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
  
/* BUTON STİLİ KOD BİTİŞİ  */

.ilkkutu {
    background-image: url('ilkresim.png');
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row; /* Yanyana olmasını istiyorsan row, alt alta ise column */
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}

.ilkkutu-contentino {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.anabaslık {
    margin-bottom: 2em;
    font-size: 42px;
    font-family: 'Nactado', sans-serif;
}

.ilkkutu p {
    font-size: 17px;
    margin: 0;
    line-height: 1.5;
    font-family: 'Batusa', sans-serif;
}

.ilkkutuicindekiresim {
    width: 1000px;
    height: 400px;
    margin-right: 50px;
    margin-top: 50px;
    object-fit: cover;
}

/* İLK KUTU BUTON TASARIMI BAŞLANGIÇ */
/* Yeni wrapper: hizalama bozulmasın diye */
.ilkkutu-btn-wrapper {
    margin-top: 25px;
  }
  
  /* Buton boyutu ve yazı tipi navbar’dakiyle birebir aynı */
  .blob-btn {
    padding: 15px 45px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Lost Emerald', sans-serif;
    text-transform: uppercase;
    color: #0505A9;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 30px;
    z-index: 1;
  }
  
  .blob-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #0505A9;
    border-radius: 30px;
    z-index: 1;
  }
  
  .blob-btn::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
    z-index: -2;
  }
  
  .blob-btn:hover {
    color: #FFFFFF;
  }
  
  .blob-btn:hover::after {
    top: 0;
    left: 0;
  }
  
  .blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #ffffff;
  }
  
  .blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
  }
  
  .blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #0505A9;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.4);
    transition: transform 0.45s;
  }
  
  .blob-btn__blob:nth-child(1) { left: 0%; transition-delay: 0s; }
  .blob-btn__blob:nth-child(2) { left: 30%; transition-delay: 0.08s; }
  .blob-btn__blob:nth-child(3) { left: 60%; transition-delay: 0.16s; }
  .blob-btn__blob:nth-child(4) { left: 90%; transition-delay: 0.24s; }
  
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
  
/* BİTİŞ */

/* HAKKIMIZDA KISMI KOD BAŞLANGICI */
/* Hakkımızda Başlığı */
.Hakkımızdatittle {
    text-align: center;
    font-family: 'Nactado', sans-serif;
    font-size: 3.9rem;
    color: white;
    margin-top: 50px;
    margin-bottom: 40px; /* Başlık ve altındaki içerik arasında boşluk bırak */
}



.Hakkımızdakutusu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px; /* Kutular arasındaki yatay boşluk */
  margin: 0;
  padding: 100px;
}

@font-face {
  font-family: 'Moodboard';
  src: url('font/Moodboard_PERSONAL_USE_ONLY.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.sol-dizilimi {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Kutular arasındaki dikey boşluk */
  font-family: "Moodboard", sans-serif;
  font-size: 1.3rem;
}

.small-box {
  width: 450px;
  height: 70px;
  background-color: #8bc0fd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);

  display: flex;
  align-items: center;   /* dikey ortalama */
  justify-content: center;  /* yatay ortalama */

  color: black;
  font-size: 16px;
  font-weight: bold;
  gap: 5px;  /* Buton ve kelime arası boşluk için  */
}
.small-box .okbuton {
  background-color: white;
  color: #4A90E2;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.small-box .okbuton:hover {
  background-color: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.large-box {
  width: 500px;
  height: 500px;
  background-color: rgb(0, 9, 17) ;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.699);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Yukarıdan başlasın */
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.large-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 52px; /* ↓ Azalttık */
  color: white;
}
.large-box.animated {
  transform: scale(1.05);
  opacity: 0.8;
}
.large-paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  color: white;
  margin-bottom: 120px; /* ↓ Burayı da azalttık */
  max-width: 90%;
}


/* HAKKIMIZDA KOD BİTİŞİ  */
/* HİZMETLER BÖLÜMÜ KOD BAŞLANGICI */

/* Hizmetler başlığı */
.hizmetler-baslik {
    text-align: center;
    margin-top: 30px; /* Daha yukarıya taşı */
    margin-bottom: 50px; /* Div'lerle arasına mesafe ekle */
    font-size: 3.9rem;
    color: white;
    font-family: 'Nactado', sans-serif;
}

.hizmetler-kutusu {
    padding: 0 20px; /* Sol ve sağ kenarlarda 20px boşluk */
}

.hizmetlerkısmı {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden; /* Taşma var mı kontrol edin */
}

.hizmet-item {
    display: flex; /* Flexbox ile hizalama */
    flex-direction: row; /* Elemanları yatay olarak sırala */
    align-items: flex-start; /* Elemanları üstten hizala */
    width: 48%; /* sabit genişlik, %100'e iki kutu + boşluk sığar */
    padding: 10px;
    gap: 15px; /* Elemanlar arasındaki boşluk */
    border-radius: 10px;
    border: 3px solid;
    border-color: #ff00ff;
    animation: glow-border 2s infinite alternate;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    text-align: left;
    background-color: #222; /* Arka plan */
    color: white; /* Yazı rengi */
}

@keyframes glow-border {
    0% {
        border-color: #ff00ff;
    }
    50% {
        border-color: #00ffff;
    }
    100% {
        border-color: #ff00ff;
    }
}

.hizmet-item img {
    max-width: 80px; /* Resim genişliği */
    height: auto;
    animation: büyümeAnimasyonu 3s infinite ease-in-out; /* Animasyonu sürekli çalıştır */
}

/* Büyüme ve küçülme animasyonu */
@keyframes büyümeAnimasyonu {
    0% {
        transform: scale(1); /* Başlangıçta normal boyut */
    }
    50% {
        transform: scale(1.2); /* Yavaşça büyür */
    }
    100% {
        transform: scale(1); /* Sonra geri normal boyuta döner */
    }
}


.hizmet-item-content {
    display: flex;
    flex-direction: column; /* İçerikleri dikey olarak sırala */
    gap: 8px; /* Elemanlar arasındaki dikey boşluk */
    flex: 1; /* İçerik alanına daha fazla yer ver */
}

.hizmet-item h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Nactado', sans-serif;
}

.hizmet-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
    font-family: 'Batusta', sans-serif;
}
.hizmet-item:nth-child(3) {
    margin-left: 15px; /* Soldan uzaklaştır */
}

.hizmet-item:nth-child(4) {
    margin-right: 0px; /* Sağdan uzaklaştır */
}

/* HİZMETLER KISMINDA Kİ BUTON TASARIMI KOD BAŞLANGICI */

.learn-more {
    display: inline-flex;
    align-items: center;
    font-family: "Lost Emerald", sans-serif;
    font-size: 12px; /* Font boyutunu kucultuyoruz */
    letter-spacing: 1px; 
    text-transform: uppercase;
    padding: 6px 12px; /* Padding'i azaltıyoruz */
    background: transparent;
    border: 2px solid #00b7ff;
    color: #00b7ff;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    max-width: 160px; /* Butonun genişliğini sınırlıyoruz */
    white-space: nowrap; /* Yazı tek satırda kalacak şekilde */
    transition: all 0.3s ease;
  }
  
  .learn-more .circle {
    width: 18px; 
    height: 18px;
    border-radius: 50%;
    background-color: #00b7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px; 
    transition: transform 0.3s ease;
  }
  
  .learn-more .icon.arrow {
    width: 6px;
    height: 6px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  
  .learn-more .button-text {
    transition: color 0.3s ease;
  }
  
  .learn-more:hover .circle {
    transform: translateX(4px);
  }
  
  .learn-more:hover .icon.arrow {
    transform: rotate(45deg) translate(1px, -1px);
  }
  
  .learn-more:hover {
    background-color: #00b7ff;
    color: black;
  }
  
  .learn-more:hover .button-text {
    color: black;
  }

  /* HİZMETLER KISMINDA Kİ BUTON TASARIMI KOD BİTİŞİ */

  
/* PANEL AÇ- BAŞLANGICI  */

/* Bulanıklaşma arka planı */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Arka plan karartması */
    backdrop-filter: blur(5px); /* Bulanık efekt */
    z-index: 99; /* Panelin arkasında kalması için uygun z-index */
}

/* Panel */
.panel {
    display: none;
    background-color: #f1f1f1;
    padding: 20px;
    margin-top: 10px;
    border: none !important; /* İç öğeler için kenarlık kaldırıldı */    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100; /* Panelin en önde görünmesi için yüksek bir z-index */
    box-shadow: none !important;    transition: all 0.3s ease; /* Yumuşak açılma animasyonu */
}

/* Panelin içeriği */
.panel-content {
    position: relative;
    border: none !important; /* İç öğeler için kenarlık kaldırıldı */
    box-shadow: none !important;
}

.panelbaslık {
  font-size: 1.9rem;
  font-weight: bold;
  font-family: 'Moodboard', sans-serif;
}

/* Kapanma butonu */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    
}

.close-btn:hover {
    color: red;
    transform: scale(2.2);
}

/* Paragraf */
.panelparagrafı {
  font-size: 1.3rem;
  font-family: 'Lost-Emerald', sans-serif;
  color: #333;
  margin-top: 10px;
  margin: 25px;

}


/* HİZMETLER BÖLÜMÜ KOD BİTİŞ */

/* MÜŞTERİ YORUM BAŞLIK  KOD BAŞLANGICI */
.yorumlar-container {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}

.yorumlar-baslik {
  font-size: 3.9rem;
  margin-bottom: 20px;
  color: white;
  margin-top: 90px;
}

.yorumlar-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.yorumlar {
  display: flex;
  transition: transform 0.5s ease;
}

.yorum-kutusu {
  width: 25%;
  padding: 20px;
  background-color: #fff;
  margin-right: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.simge {
  width: 40px; /* SVG simgesinin genişliği */
  height: 40px; /* SVG simgesinin yüksekliği */
  margin-bottom: 10px;
  display: inline-block;
  text-align: center; /* İçerideki öğeleri ortalamak için */
}

.simge> svg {
  width: 100%;
  height: 100%;
  fill: #007BFF; /* Simgenin rengi, değiştirebilirsiniz */
}
.isim {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.yorum {
  font-size: 14px;
  color: #666;
}

.nav-butunleri {
  margin-top: 20px;
}

.nav-butonu {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.nav-butonu> svg {
  width: 20px;
  height: 20px;
  fill: white; /* Rengi değiştirebilirsin */
}

.nav-butonu:hover {
  background-color: #0056b3;
}

/* MÜŞTERİ YORUMLARI KISMI KOD BİTİŞ */



.altbaslık {
  text-align: left;
  font-size: 0.9rem;
  padding-top: 24px;
  font-family: "Grenda",sans-serif;
}


.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: radial-gradient(#00f0ff 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  animation: moveStars 60s linear infinite;
}

@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: 1000px 1000px; }
}

.holo-bbox {
  position: relative;
  width: 400px; /* Kutunun genişliğini artırdım */
  max-width: 90%; /* Ekranda çok fazla yayılmaması için */
  padding: 50px; /* İç boşlukları dengeli şekilde korudum */
  font-size: 18px;

  z-index: 1;
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px #00f0ff77, 0 0 60px #00f0ff22;
  padding: 40px;
 
  text-align: center;
  transform: perspective(1000px) rotateX(8deg);
  animation: floatBox 6s ease-in-out infinite;
}
input, textarea {
  width: 100%; /* Giriş alanlarının genişliğini kutuya tam uyacak şekilde ayarladım */
  font-size: 18px;
  padding: 15px;
}
@keyframes floatBox {
  0%, 100% { transform: perspective(1000px) rotateX(8deg) translateY(0); }
  50% { transform: perspective(1000px) rotateX(8deg) translateY(-10px); }
}

.iletisimformubaslik {
  color: #00f0ff;
  margin-bottom: 30px;
  font-size: 22px;
  text-shadow: 0 0 10px #00f0ff88;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 10px;
  color: #00f0ff;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 0 8px #00f0ff44;
}

input::placeholder {
  color: #00f0ffaa;
}

.gonderbutonu {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: linear-gradient(90deg, #00f0ff, #0fffc3);
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  font-family: "Lost Emerald", sans-serif;
  cursor: pointer;
  box-shadow: 0 0 20px #00f0ffaa;
  transition: transform 0.3s ease;
}

.gonderbutonu:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #0fffc3, #00f0ff);
}

textarea{
width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 10px;
  color: #00f0ff;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 0 8px #00f0ff44;
}


  /* İLETİŞİM FORM KISMI BİTİŞ */

.kutu {
    width: 300px;
    height: 400px;
    border: 2px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #E3EDF1;
    border-radius: 8%;
  }

  .satir {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .satir .sosyalmedyailetisim {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
  }

  .medyalink {
    text-decoration: none;
    color: black;
    font-family: "Moodboard",sans-serif;

  }
  .satir>p {
    margin: 0;
    font-size: 14px;
    font-family: "Lost-Emerald",sans-serif;
    color: #333;
  }
/* İLETİŞİM KISMI KOD BİTİŞİ */
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'DM Sans', sans-serif;
  border-top: 1px solid #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-about h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0af;
}

.footer-links h3, .footer-contact h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0af;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #0af;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact i {
  margin-right: 8px;
  color: #0af;
}

.footer-social a {
  margin-right: 12px;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #0af;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}
@media (max-width: 768px) {
    .blog-posts {
        flex-direction: column;
        ali
		@media (max-width: 480px) {
    /* Blog başlıklarını küçük ekranlar için uyumlu hale getir */
    .blog-header h1 {
        font-size: 28px;
    }

    /* Menü elemanlarını dikey yap */
    nav ul {
        padding: 0;
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    /* Blog postlarını bir sütuna indirin */
    .blog-post {
        width: 100%;
        margin: 10px 0;
    }

    /* Butonları daha büyük yap */
    .blob-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
gn-items: center;
    }

    .blog-post {
        width: 80%;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) and (min-width: 481px) {
    /* Blog başlıklarını daha küçük yap */
    .blog-header h1 {
        font-size: 32px;
    }

    /* Blog postlarını iki sütuna yerleştir */
    .blog-post {
        width: 48%;
    }
}
.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-post {
    width: 32%; /* 3 sütun düzeni */
    margin-bottom: 20px;
}

/* Mobil için her blog postunu tam genişlikte göster */
@media (max-width: 768px) {
    .blog-post {
        width: 100%;
    }
}
/* İletişim kısmı */
.contact-info {
    background-color: #1e1e1e;
    padding: 50px 0;
    text-align: center;
}

/* Başlık */
.contact-info .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

/* İletişim simgeleri */
.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Aralarındaki mesafe */
    flex-wrap: wrap; /* Küçük ekranlar için simgeler alt satıra geçebilir */
}

/* Her bir simge kutusu */
.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease-in-out;
}

.contact-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.contact-icon span {
    font-size: 1rem;
}

/* Hover efektleri */
.contact-icon:hover {
    transform: scale(1.1);
    color: #ff00ff; /* Hoverda renk değişimi */
}

/* Küçük ekranlarda simgeleri daha büyük yapalım */
@media (max-width: 768px) {
    .contact-icon img {
        width: 50px;
        height: 50px;
    }
    .contact-icon span {
        font-size: 1.2rem;
    }
}






.contact-section {
    background-color: #1e1e1e;
    color: #fff;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 800px;
    width: 100%;
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}


/* Footer Stil Ayarları */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
}

/* Mobilde Footer Yazı Boyutunu Küçült */
@media screen and (max-width: 768px) {
    footer p {
        font-size: 12px;
    }
}
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111827;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  background-color: #000;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  padding: 16px 24px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Menü Ortalanmış */
.nav-center ul {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
}

.nav-center a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

/* Logo Sol Tarafa Yerleştirme */
.navbar-container {
  display: flex;
  justify-content: space-between; /* Menüyü ortalar, logo sola */
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Menüleri Sağ Tarafa Al */
.nav-center {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 18px;
  font-weight: 700;
  justify-content: flex-end; /* Sağ tarafa yerleştir */
  margin-left: auto; /* Menüleri sağa itmek için kullanılır */
}

/* Logo Sol Tarafa Yerleştirildi */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #3B82F6;
  margin-left: 10px;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: white;
}

/* Mobil Uyumlu */
@media (max-width: 768px) {
  .nav-center ul {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .nav-center.open ul {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


/* Mobil Uyumlu */
@media (max-width: 768px) {
  .nav-center ul {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .nav-center.open ul {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Mobil için genel stiller */
@media screen and (max-width: 768px) {
    /* Navbar düzenlemesi */
    nav {
        padding: 15px 20px !important;
    }
    
    .logo {
        font-size: 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    /* Hero section */
    .ilkkutu {
        flex-direction: column;
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .ilkkutu-contentino {
        max-width: 100%;
    }

    .ilkkutuicindekiresim {
        width: 100%;
        height: auto;
        margin: 30px 0 0;
    }

    /* Hakkımızda bölümü */
    .Hakkımızdakutusu {
        flex-direction: column;
        padding: 30px 20px !important;
    }

    .sol-dizilimi {
        width: 100%;
        margin-bottom: 30px;
    }

    .small-box {
        width: 100%;
        height: 60px;
        font-size: 14px;
    }

    .large-box {
        width: 100%;
        height: auto;
        padding: 25px;
    }

    /* Hizmetler bölümü */
    .hizmetlerkısmı {
        flex-direction: column;
    }

    .hizmet-item {
        width: 100% !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 10px 0 !important;
    }

    .hizmet-item img {
        margin-bottom: 15px;
    }

    /* Müşteri yorumları */
    .yorumlar {
        flex-direction: column;
    }

    .yorum-kutusu {
        width: 100% !important;
        margin: 0 0 20px;
    }

    /* İletişim formu */
    .contact-form {
        padding: 20px;
    }

    .contact-icons {
        flex-direction: column;
        gap: 30px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    /* Küçük ekranlar için ek ayarlar */
    .anabaslık {
        font-size: 28px;
    }

    .Hakkımızdatittle, 
    .hizmetler-baslik, 
    .yorumlar-baslik {
        font-size: 2.5rem !important;
    }

    .ilkkutu p {
        font-size: 15px;
    }

    .large-title {
        font-size: 1.8rem;
    }

    .large-paragraph {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-icon img {
        width: 50px;
        height: 50px;
    }
}
/* CSS */
.about-section {
    padding: 80px 20px;
    background: #0a0e17;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 50px;
    font-family: 'Nactado', sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    background: #151a25;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.accordion-item {
    border-bottom: 1px solid #2a2f3d;
    margin-bottom: 15px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    opacity: 1;
    padding-top: 15px;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    gap: 15px;
}

.accordion-header span {
    font-size: 1.2rem;
    color: #00a3ff;
    font-weight: 700;
}

.accordion-header h3 {
    font-size: 1.3rem;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    color: #a0a8b3;
    line-height: 1.6;
}

.about-content {
    background: #151a25;
    border-radius: 15px;
    padding: 30px;
}

.content-box h3 {
    color: #00a3ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: #1d232e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-item h4 {
    color: #00a3ff;
    font-size: 2rem;
    margin: 0 0 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(45deg, #00a3ff, #0066ff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
    }

    .content-box h3 {
        font-size: 1.4rem;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        padding: 15px 0;
    }
}
/* CSS Güncellemeleri */
.hizmetler-kutusu {
    padding: 6rem 2rem;
    background: radial-gradient(circle at top, #0f172a, #020617);
}

.hizmetler-baslik {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hizmet-kart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.hizmet-kart:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.ikon-kutusu {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 2rem auto;
}

.hizmet-ikon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.ikon-efekt {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #38bdf8, #818cf8);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    animation: ikon-parlaklik 3s infinite;
}

@keyframes ikon-parlaklik {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hizmet-baslik {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 1rem 0;
    padding: 0 1rem;
}

.hizmet-aciklama {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1.5rem;
    min-height: 60px;
}

.kart-detay {
    position: relative;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.detay-btn {
    color: #38bdf8;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.dalga-efekt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    animation: dalga 2s infinite;
}

@keyframes dalga {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Panel Stilleri */
.hizmet-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 1000;
}

.panel-icerik {
    position: relative;
    max-width: 800px;
    margin: 5% auto;
    background: #0f172a;
    border-radius: 20px;
    padding: 2rem;
    animation: panel-acilis 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes panel-acilis {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.panel-kapat {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.panel-kapat:hover {
    color: #38bdf8;
    transform: rotate(90deg);
}

.panel-baslik {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.panel-ikon {
    width: 50px;
    height: 50px;
}

.ozellik-listesi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.ozellik {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ozellik:hover {
    background: rgba(56, 189, 248, 0.1);
}

.ozellik-ikon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: bold;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hizmetler-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-icerik {
        margin: 10% 5%;
        padding: 1.5rem;
    }
    
    .ozellik-listesi {
        grid-template-columns: 1fr;
    }
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding: 0 15px;
}

.accordion-item.active .accordion-content {
    padding: 15px;
    max-height: 500px; /* İçerik yüksekliğine göre ayarlanabilir */
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}
  /* Genel Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        body {
            background: #0f172a;
            color: #fff;
            line-height: 1.6;
        }

        /* Hakkımızda Bölümü */
        .about-section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Accordion Stilleri */
        .accordion {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1rem;
        }

        .accordion-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .accordion-header {
            width: 100%;
            padding: 1.2rem;
            background: none;
            border: none;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .accordion-header span {
            color: #38bdf8;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .accordion-header h3 {
            font-size: 1.1rem;
            flex-grow: 1;
            text-align: left;
        }

        .accordion-header i {
            transition: transform 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 1.2rem;
            transition: all 0.3s ease-out;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 1.2rem;
            opacity: 1;
        }

        .accordion-item.active .accordion-header i {
            transform: rotate(180deg);
        }

        /* Sağ Taraf İçerik */
        .about-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }

        .stat-item h4 {
            color: #38bdf8;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #38bdf8, #818cf8);
            color: #fff;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }

        /* Responsive Ayarlar */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .accordion-header {
                padding: 1rem;
            }
        }
		   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        nav {
            background: #ffffff;
            padding: 20px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 999;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            text-decoration: none;
            transition: 0.3s;
        }

        .logo span {
            color: #007bff;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #007bff;
            bottom: -5px;
            left: 0;
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #007bff;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 5px;
            transition: 0.3s;
        }

        @media screen and (max-width: 768px) {
            nav {
                padding: 20px 30px;
            }
            
            .hamburger {
                display: block;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background: #ffffff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                padding: 15px 0;
            }
        }
		
:root {
  --navy-blue: #2A3F54;
  --steel-blue: #35495E;
  --sky-blue: #4A90E2;
  --off-white: #F5F7FA;
  --text-gray: #CBD5E1;
}

.blue-footer {
  background-color: var(--navy-blue);
  color: var(--text-gray);
  padding: 4rem 0 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.footer-logo {
  font-size: 2.2rem;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--sky-blue);
  font-weight: 300;
}

.footer-slogan {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--sky-blue);
  width: 20px;
  text-align: center;
}

.links-title, .social-title {
  color: var(--off-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.links-title::after, .social-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--sky-blue);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--sky-blue);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.8rem;
  color: var(--sky-blue);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
  transition: 0.3s;
}

.social-icon:hover {
  background: var(--sky-blue);
  color: var(--off-white);
  transform: translateY(-3px);
}

.newsletter {
  margin-top: 2rem;
  position: relative;
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--steel-blue);
  border-radius: 4px;
  background: var(--steel-blue);
  color: var(--off-white);
}

.newsletter button {
  padding: 0.8rem 1.2rem;
  background: var(--sky-blue);
  border: none;
  border-radius: 4px;
  color: var(--off-white);
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #357ABD;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--steel-blue);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.legal-links a:hover {
  color: var(--sky-blue);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .links-title::after, .social-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}