/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  width: 100%;
  scroll-behavior: smooth;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER - TERMINAL STİL */
.terminal-header {
  background-color: #0f172a;
  border-bottom: 1px solid #1e293b;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(56, 189, 248, 0.1);
}

.header-terminal-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.terminal-logo {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: bold;
  color: #38bdf8;
  display: flex;
  align-items: center;
}

.terminal-symbol {
  color: #22c55e;
  margin-right: 8px;
  font-weight: bold;
}

.cursor-blink {
  display: inline-block;
  width: 8px;
  height: 20px;
  background-color: #38bdf8;
  margin-left: 2px;
  animation: blinkCursor 1s steps(2, start) infinite;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.language-selector img {
  width: 28px;
  height: 20px;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.language-selector img:hover {
  transform: scale(1.1);
  border-color: #38bdf8;
}


@keyframes blinkCursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav ul li {
  position: relative;
}

.main-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  transition: color 0.3s, background 0.3s, border-radius 0.3s;
  border-radius: 6px;
}

.main-nav a:hover {
  background-color: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    background-color: #1e293b;
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    top: 70px;
    right: 20px;
    display: none; /* Menü açma özelliği istenirse aktif edilir */
  }
}



/* HERO TERMINAL STYLE */
.hero-terminal {
  padding: 80px 20px 60px;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: auto;
}

.hero-terminal-box {
  background-color: #1e293b;
  color: #38bdf8;
  border-radius: 8px;
  padding: 20px;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}

.terminal-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.red { background-color: #ef4444; }
.yellow { background-color: #facc15; }
.green { background-color: #22c55e; }

.terminal-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #e2e8f0;
}

.prompt {
  margin-right: 8px;
  color: #38bdf8;
}

.typed-text {
  font-weight: 600;
  color: #f8fafc;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: #38bdf8;
  animation: blink 0.8s infinite;
}

.hero-subtext {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-terminal {
  display: inline-block;
  background-color: #38bdf8;
  color: #0f172a;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-terminal:hover {
  background-color: #0ea5e9;
  color: white;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

@media (max-width: 600px) {
  .terminal-content {
    font-size: 14px;
  }

  .hero-subtext {
    font-size: 14px;
  }
}



/* NEDEN BİZ */
.neden-biz {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 60px 20px;
  margin-top: 40px;
  margin-left: 20px;
  margin-right: 20px;
}


.neden-kartlar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.neden-kart {
  background-color: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 30px 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neden-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.neden-kart .icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.neden-biz {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 60px 20px;
  margin: 60px 20px 0; /* üst, sağ-sol, alt boşluk */
  text-align: center;
}

.neden-biz h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #38bdf8;
  text-align: center;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}


.neden-kart p {
  font-size: 15px;
  color: #94a3b8;
}

.neden-biz ul {
  list-style: none;
  margin-top: 20px;
  padding: 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


/* Responsive */
@media (max-width: 768px) {
  .neden-kart {
    width: 100%;
    max-width: 300px;
  }
}


/* KULLANDIĞIMIZ TEKNOLOJİLER */
.teknolojiler-bolumu {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 60px 20px;
  margin: 60px 20px 0;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.1);
}

.teknolojiler-bolumu h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #38bdf8;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.tech-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.tech-card {
  background-color: #0f172a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #334155;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

.tech-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.tech-card:hover img {
  filter: grayscale(0%);
}

.tech-card span {
  color: #cbd5e1;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}




/* İSTATİSTİKLER */
.istatistikler-bolumu {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 60px 20px;
  margin: 60px 20px 0;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.1);
}

.istatistikler-bolumu h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #38bdf8;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.istatistikler-kutu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 10px;
  margin-top: 20px;
}

.istatistik-kart {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.08);
  transition: all 0.3s ease;
}

.istatistik-kart:hover {
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
  transform: translateY(-5px);
}

.istatistik-kart h3 {
  font-size: 36px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.istatistik-kart p {
  font-size: 16px;
  color: #cbd5e1;
}


/* HABERDAR OL */
.haberdar-ol {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 60px 20px;
  margin: 60px 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.haberdar-ol h2 {
  font-size: 26px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.haberdar-ol p {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 30px;
}

.abonelik-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.abonelik-form input {
  padding: 14px 18px;
  width: 320px;
  max-width: 100%;
  border: 1px solid #334155;
  border-radius: 8px;
  background-color: #0f172a;
  color: #e2e8f0;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.abonelik-form input:focus {
  outline: none;
  border-color: #38bdf8;
}

.abonelik-form button {
  padding: 14px 30px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0f172a;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.abonelik-form button:hover {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}



/* FOOTER */
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 30px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 22px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: #f1f5f9;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #94a3b8;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  font-size: 14px;
  color: #64748b;
}
.footer-tagline {
  font-style: italic;
  color: #94a3b8;
  margin-top: 10px;
  font-size: 14px;
}

.footer-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.footer-cta:hover {
  background: #0ea5e9;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero h2 {
    font-size: 28px;
  }

  .tech-logos img {
    width: 45px;
    height: 45px;
  }

  .abonelik-form {
    flex-direction: column;
  }

  .abonelik-form input {
    width: 100%;
  }

  .stat {
    width: 100%;
    max-width: 250px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* TYPEWRITER EFFECT */
.typewriter {
  text-align: center;
  margin-bottom: 30px;
}

.typed-text {
  color: #38bdf8;
  font-size: 32px;
  font-weight: bold;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 30px;
  background-color: #38bdf8;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* KOD GÖRÜNÜMLÜ ALAN */
.code-intro {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 40px 20px;
  font-family: 'Courier New', monospace;
  border-left: 5px solid #38bdf8;
  margin: 60px auto;
  max-width: 800px;
  overflow-x: auto;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
  font-size: 16px;
}
.code-intro .blue { color: #38bdf8; }
.code-intro .orange { color: #facc15; }

/* GEZEGEN ARKA PLAN ANİMASYONU */
.galaxy-bg {
  position: fixed;
  z-index: -1;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom, #0f172a 0%, #0a0f2a 100%);
}

.planet {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float infinite ease-in-out;
}

.planet1 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #38bdf8, #0ea5e9);
  top: 20%;
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.planet2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #facc15, #ca8a04);
  top: 50%;
  left: 70%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.planet3 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #c084fc, #9333ea);
  top: 75%;
  left: 30%;
  animation-duration: 15s;
  animation-delay: 4s;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.code-intro-minimal {
  background: #0f172a;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.code-box {
  background: #1e293b;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
  font-family: 'Courier New', monospace;
  color: #38bdf8;
  position: relative;
}

.code-header {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.red {
  background-color: #ef4444;
}

.yellow {
  background-color: #facc15;
}

.green {
  background-color: #22c55e;
}

.code-content {
  white-space: pre-wrap;
  font-size: 14px;
  color: #94a3b8;
}

/* SSS BÖLÜMÜ */
.sss-bolumu {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 60px 20px;
  margin: 60px 20px 0;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.1);
}

.sss-bolumu h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #38bdf8;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.sss-kutu {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.sss-soru {
  background-color: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.05);
  transition: all 0.3s ease;
}

.sss-soru:hover {
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
  transform: translateY(-3px);
}

.sss-soru h3 {
  font-size: 18px;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.sss-soru p {
  color: #94a3b8;
  font-size: 15px;
}


/* Aktif class */
.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 0 20px 15px;
}

/* ZİYARETÇİ BİLGİ */
.ziyaretci-bilgi {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 60px 20px;
  margin: 60px 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);  
}

.ziyaretci-kart {
  margin-top: 30px;
  padding: 20px;
  background-color: #1e293b;
  border-radius: 10px;
  display: inline-block;
  color: #cbd5e1;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}


.ziyaretci-bilgi h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.ziyaretci-bilgi p {
  font-size: 16px;
  color: #94a3b8;
  margin: 6px 0;
}

#visitor-count {
  font-weight: bold;
  color: #38bdf8;
}



.duyurular {
  background-color: #1e293b;
  padding: 60px 20px;
  margin: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.duyurular h2 {
  font-size: 28px;
  color: #38bdf8;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.etkinlik-listesi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  text-align: left;
}

.etkinlik-karti {
  background-color: #0f172a;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #334155;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etkinlik-karti:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.2);
}

.etkinlik-karti h3 {
  font-size: 20px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.etkinlik-karti p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 6px;
}


.is-ortaklari {
  background-color: #1e293b;
  padding: 60px 20px;
  margin: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.is-ortaklari h2 {
  font-size: 28px;
  color: #38bdf8;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.logo-grid img {
  max-height: 40px;
  max-width: 120px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.teklif-formu {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 60px 20px;
  margin: 60px 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.teklif-formu h2 {
  font-size: 28px;
  color: #38bdf8;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.teklif-aciklama {
  color: #94a3b8;
  margin-bottom: 30px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-alani {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

.form-alani input,
.form-alani textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background-color: #1e293b;
  color: #e2e8f0;
  font-size: 15px;
  resize: none;
}

.form-alani textarea {
  height: 120px;
}

.form-alani button {
  padding: 14px;
  background-color: #38bdf8;
  color: #0f172a;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-alani button:hover {
  background-color: #0ea5e9;
  color: white;
}


.blog-alani {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 60px 20px;
  margin: 60px 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-alani h2 {
  font-size: 28px;
  color: #38bdf8;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.blog-kutulari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-kutu {
  background-color: #1e293b;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-kutu:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

.blog-kutu h3 {
  color: #f1f5f9;
  font-size: 18px;
  margin-bottom: 12px;
}

.blog-kutu p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-kutu a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s;
}

.blog-kutu a:hover {
  color: #0ea5e9;
}
.blog-kutulari button {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0f172a;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.blog-kutulari button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(14, 165, 233, 0.6);
}

.blog-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
}

.blog-modal-content {
  background-color: #1e293b;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  color: #f8fafc;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #f87171;
}

.blog-modal-content h3 {
  margin-top: 0;
  color: #38bdf8;
}







.projeler {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 60px 20px;
  margin: 60px 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.projeler h2 {
  font-size: 28px;
  color: #38bdf8;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

.proje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.proje-kart {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.proje-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

.proje-kart h3 {
  color: #f1f5f9;
  margin-bottom: 10px;
  font-size: 20px;
}

.proje-kart p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 15px;
}

.etiketler {
  margin-bottom: 15px;
}

.etiketler span {
  display: inline-block;
  background-color: #0ea5e9;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.proje-link {
  display: inline-block;
  text-decoration: none;
  color: #38bdf8;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

.proje-link:hover {
  border-bottom: 1px solid #38bdf8;
}

/* NASIL ÇALIŞIYORUZ */
.surec {
  padding: 60px 0;
  margin: 60px 20px;
}

.section-box {
  background-color: #1e293b;
  border-radius: 16px;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-box h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #38bdf8;
}

.surec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.surec-kart {
  background-color: #0f172a;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.08);
}

.surec-kart:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.surec-kart .icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.surec-kart h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f1f5f9;
}

.surec-kart p {
  font-size: 15px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-box h2 {
    font-size: 24px;
  }
  .surec-kart {
    padding: 20px;
  }
}


/* YORUMLAR */
.yorumlar {
  margin: 60px 20px;
}

.section-box h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #38bdf8;
}

.yorum-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  height: 220px;
}

.yorum-kart {
  min-width: 100%;
  transition: transform 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
  text-align: center;
  padding: 30px 20px;
  background-color: #0f172a;
  border-radius: 12px;
  border: 1px solid #334155;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.08);
  position: absolute;
  top: 0;
  left: 0;
}

.yorum-kart.aktif {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.yorum-kart p {
  font-style: italic;
  color: #94a3b8;
  margin-bottom: 15px;
}

.yorum-kart h4 {
  color: #f1f5f9;
  margin-bottom: 5px;
}

.yorum-kart span {
  color: #38bdf8;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.rating {
  color: gold;
  font-size: 20px;
}


/* WHATSAPP BUTONU */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  font-size: 14px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
}

.kilavuzlar {
  background-color: #1e293b;
  padding: 60px 20px;
  margin: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
  text-align: center;
}

.kilavuzlar h2 {
  color: #38bdf8;
  font-size: 28px;
  margin-bottom: 40px;
}

.kilavuz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.kilavuz-kart {
  background-color: #0f172a;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kilavuz-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

.kilavuz-kart h3 {
  font-size: 20px;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.kilavuz-kart p {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #1e293b;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  color: #f1f5f9;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #f87171;
}

.btn-kilavuz {
  margin-top: 10px;
  background-color: #38bdf8;
  color: #0f172a;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-kilavuz:hover {
  background-color: #0ea5e9;
}







#developer-vibes h2 {
  text-align: center;
  color: #38bdf8;
  font-size: 26px;
  margin-top: 60px;
}



/* hakkımızda sayfa */
.about-page {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  color: #f8fafc;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #cbd5e1;
}

.about-intro .highlight {
  color: #38bdf8;
  font-weight: bold;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-box {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.08);
  transition: all 0.3s ease;
}

.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.2);
}

.about-box h3 {
  color: #38bdf8;
  font-size: 20px;
  margin-bottom: 15px;
}

.about-box p,
.about-box li {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

.about-box ul {
  padding-left: 20px;
}


/* hizmetler sayfa */
.hizmetler-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  color: #f8fafc;
}

.bolum-baslik {
  text-align: center;
  font-size: 30px;
  color: #38bdf8;
  margin-bottom: 15px;
}

.bolum-aciklama {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #94a3b8;
  font-size: 16px;
}

.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.hizmet-kart {
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.08);
}

.hizmet-kart:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

.hizmet-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.hizmet-kart h3 {
  font-size: 20px;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.hizmet-kart p {
  font-size: 14px;
  color: #cbd5e1;
}


/* proje sayfa */
.projeler-bolumu {
  padding: 100px 20px;
  background: radial-gradient(ellipse at center, #0f172a, #1e293b);
  color: #f1f5f9;
}

.bolum-baslik {
  text-align: center;
  font-size: 28px;
  color: #38bdf8;
  margin-bottom: 50px;
}

.projeler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.proje-kart {
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.proje-kart:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

.proje-kart img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.proje-icerik {
  padding: 20px;
}

.proje-icerik h3 {
  color: #38bdf8;
  margin-bottom: 10px;
  font-size: 20px;
}

.proje-icerik p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.etiketler span {
  display: inline-block;
  background-color: #1e3a8a;
  color: #e2e8f0;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 5px;
}



/* iletişim sayfa */
.iletisim-yeni {
  padding: 100px 0;
  background: radial-gradient(ellipse at top left, #1e293b, #0f172a);
}

.iletisim-kapsayici {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.iletisim-kart {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  color: #e2e8f0;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

.iletisim-kart h2 {
  color: #38bdf8;
  margin-bottom: 20px;
  font-size: 24px;
}

.iletisim-kart input,
.iletisim-kart textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background-color: #1e293b;
  color: #f1f5f9;
  font-size: 14px;
}

.iletisim-kart button {
  background-color: #38bdf8;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  color: #0f172a;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.iletisim-kart button:hover {
  background-color: #0ea5e9;
  color: white;
}

.iletisim-kart.info p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #cbd5e1;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.social-icons img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .iletisim-kapsayici {
    flex-direction: column;
    align-items: center;
  }
}




.oyun-alani {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 20px;
  margin: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.12);
}

.oyun-kapsayici {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.oyun-baslik h2 {
  font-size: 24px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.oyun-baslik p {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.oyun-kutu {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

canvas#squareGame {
  background-color: #0f172a;
  border: 2px solid #38bdf8;
  border-radius: 8px;
}

.oyun-panel {
  min-width: 200px;
  background-color: #1e293b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.15);
  text-align: left;
}

.oyun-skormetre p {
  margin: 8px 0;
  color: #cbd5e1;
  font-size: 15px;
}

#startGameBtn {
  margin-top: 15px;
  padding: 10px 15px;
  background-color: #38bdf8;
  color: #0f172a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#startGameBtn:hover {
  background-color: #0ea5e9;
}

.mobile-controls {
  margin-top: 20px;
}

.mobile-controls button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  background-color: #334155;
  color: white;
  border-radius: 6px;
}



.kariyer-staj {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  padding: 40px 20px;
  margin: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.05);
  color: #cbd5e1;
}

.kariyer-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.kariyer-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #38bdf8;
}

.kariyer-box p {
  font-size: 15px;
  margin-bottom: 25px;
}

.kariyer-staj-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}

.kariyer-staj-form input,
.kariyer-staj-form select,
.kariyer-staj-form textarea {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  background-color: #1e293b;
  color: #f8fafc;
}

.kariyer-staj-form textarea {
  resize: vertical;
  min-height: 80px;
}

.kariyer-staj-form button {
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background-color: #38bdf8;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.3s ease;
}

.kariyer-staj-form button:hover {
  background-color: #0ea5e9;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}


/* 3D BASKI HİZMETİ */
.custom-section {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin: 60px 20px;
  padding: 40px 20px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
  text-align: center;
}

.custom-section h2 {
  font-size: 24px;
  color: #38bdf8;
  margin-bottom: 20px;
}

.custom-section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.custom-section-text {
  flex: 1;
  min-width: 250px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

.custom-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #38bdf8;
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #0ea5e9;
}

.custom-section-image {
  flex: 1;
  min-width: 250px;
}

.custom-section-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}



/* Ortak Kullanım */
.custom-section {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  margin: 60px 20px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

.custom-section h2 {
  font-size: 26px;
  color: #38bdf8;
  margin-bottom: 20px;
}

.custom-section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.custom-section-text {
  flex: 1;
  min-width: 260px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.custom-section-image {
  flex: 1;
  min-width: 260px;
}

.custom-section-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
  background-color: #1e293b;
  color: white;
  font-size: 14px;
}

.contact-form textarea {
  height: 100px;
  resize: vertical;
}

.custom-btn {
  background-color: #38bdf8;
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #0ea5e9;
}
