﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  background: radial-gradient(circle at center, #221385, #0e0e0e);
  color: #f9f9f9;
  font-family: 'Inter', sans-serif;
  padding-top: 130px; /* navbar boşluğu */
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.logo {
  font-size: 32px;
  font-weight: 700;
  color: #221385;
}

.logo span {
  color: #ffffff;
  font-size: 22px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* HERO */
.hero {
  height: 100vh;
  background:
    linear-gradient(
      rgba(14,14,14,0.75),
      rgba(14,14,14,0.9)
    ),
    url("images/at-800.jpeg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  animation: slideDown 1s ease forwards;
}

.hero-content p {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  width: 60%;
  margin-left: 20%;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
}

.hero h1 span {
  color: #221385;
}

.hero p {
  margin: 20px auto;
  text-align: center;
  max-width: 600px;
  color: #aaa;
  font-size: 18px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.btn:hover {
  color: #fff;
  background: linear-gradient(135deg, rgb(12, 10, 101), rgb(37, 29, 158));
  box-shadow: 0 14px 30px rgba(0, 198, 255, 0.35);
}

/* SERVICES */
.services h2 {
  font-size: 40px;
  margin-bottom: 60px;
}

.card:hover {
  transform: translateY(-10px);
  background: #737197;
}

.card h3 {
  margin-bottom: 15px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 0;
  background: #111;
  color: #777;
}

.features {
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  border-radius: 12px;
  background: #080808;
  text-align: center;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card i {
  font-size: 40px;
  margin-bottom: 20px;
}

.why-us {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.why-text {
  text-align: center;
}

.why-image {
  display: flex;
  justify-content: center;
}

.why-text ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.why-text li {
  margin-bottom: 10px;
}
.cta {
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(900px circle at 80% 0%, rgba(59, 46, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #121724, #0f141c 60%, #151b26);
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  background-color: #ffff;
  color: #000;
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.cta-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, rgb(12, 10, 101), rgb(37, 29, 158));
  box-shadow: 0 14px 30px rgba(0, 198, 255, 0.35);
}

.stats {
  padding: 100px 0;
  background: #000;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  position: relative;
  padding: 40px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0,198,255,0.15);
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #00c6ff, #3b2eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-box .suffix {
  font-size: 32px;
  font-weight: 700;
  color: #00c6ff;
  margin-left: 4px;
}

.stat-box p {
  margin-top: 10px;
  color: #aaa;
}

.process {
  padding: 90px 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.process-step span {
  font-size: 32px;
  font-weight: 700;
  opacity: 0.3;
}

.footer {
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer ul li:hover {
  color: #100d65;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* NAVBAR */
.navbar {
  position: fixed;
  top: 40px; /* topbar yüksekliği */
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  padding: 2px 0;
  transition: 0.3s;
}

.navbar.navbar-up {
  top: 0;
}


.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo a {
  font-size: 32px;
  font-weight: 700;
  color: #221385;
}

.logo span {
  color: #fff;
  font-size: 22px;
}

.navbar nav {
  display: flex;
  align-items: center;
}

.navbar nav a {
  margin-left: 30px;
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #221385;
  font-weight: 600;
}
/* NAVBAR SCROLL */
.nav-scroll {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0px;
}
/* SECTIONS */
section {
  padding: 100px 0;
  box-shadow:
    inset 0 40px 40px -40px rgba(0,0,0,0.55),
    inset 0 -40px 40px -40px rgba(0,0,0,0.55);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* CARDS */
.card {
  background: #161616;
  padding: 35px;
  border-radius: 18px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* STATS */
.stats h3 {
  font-size: 42px;
}

/* FOOTER */
footer {
  padding: 60px 0 20px;
  border-top: 1px solid #222;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  opacity: 0.6;
}

/* FORM */
form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
}

form label {
  color: #ccc;
}
/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* OFFER POPUP */
.offer-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.offer-popup.show {
  opacity: 1;
  pointer-events: auto;
}
.offer-box {
  background: #111;
  padding: 40px;
  border-radius: 15px;
  color: white;
  width: 400px;
}

.services {
  background: #111;
}

.features {
  background: radial-gradient(circle at top, #111, #0e0e0e);
}

.why-us {
  background:
    radial-gradient(900px circle at 80% 0%, rgba(59, 46, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #121724, #0f141c 60%, #151b26);
}


.stats {
  background: radial-gradient(circle at top, #1a1a1a, #0e0e0e);
}

.card img {
  width: 50px;
  margin-bottom: 20px;
  filter: brightness(0.9);
}

.card:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}
.card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 18px;
  transition: 0.3s;
}


.page {
  padding: 140px 0 80px;
  background: #0e0e0e;
}

.page h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.page p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.8;
}

.contact-page {
  padding: 40px 0 80px;
  text-align: center;
}

.contact-page h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* FORM */
form {
  max-width: 500px;
  margin: auto;
}

.form-group {
  position: relative;
  margin-bottom: 35px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 12px;
  color: #fff;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

/* FOCUS EFFECT */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #221385;
  box-shadow: 0 0 0 3px rgba(34,19,133,0.3);
}

/* FLOATING LABEL */
.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #777;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  background: #0e0e0e;
  padding: 0 6px;
}

.form-group textarea + label {
  top: 20px;
}

/* LABEL MOVE */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #221385;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #221385, #3b2eff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34,19,133,0.4);
}

/* MESSAGE */
.form-msg {
  margin-top: 20px;
  font-size: 14px;
}



.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: flex-start;
}

/* SAĞ TARAF */
.contact-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 35px;
  border-radius: 18px;
}

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 20px;
  font-size: 16px;
}

.info-item span {
  font-size: 22px;
}

/* MAP */
.map-box {
  margin-top: 80px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.info-item {
  background: rgba(255,255,255,0.04);
  padding: 14px 18px;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

.info-item:hover {
  transform: translateX(6px);
  box-shadow: 0 0 25px rgba(34,19,133,0.4);
  background: rgba(255,255,255,0.07);
}
.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  z-index: 9999;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}
.map-box {
  position: relative;
}

.map-box::after {
  content: "Haritayı Görüntüle";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  opacity: 1;
  transition: 0.4s;
  pointer-events: none;
}

.map-box:hover::after {
  opacity: 0;
}

.map-box iframe {
  transition: transform 0.6s ease;
}

.map-box:hover iframe {
  transform: scale(1.05);
}
/* SERVICES PAGE */
.services-page {
  padding: 100px 10%;
  background: #0b0b0b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-box {
  background: #111;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid #1f1f1f;
}

.service-box i {
  font-size: 40px;
  color: #00c6ff;
  margin-bottom: 20px;
}

.service-box h3 {
  margin-bottom: 10px;
  color: #fff;
}

.service-box p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 198, 255, 0.15);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.section-head p {
  color: #b9c1d6;
}

.catalog-section {
  padding: 110px 0;
  background:
    radial-gradient(900px circle at 10% 10%, rgba(0, 198, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #111723, #0f141c 60%, #141b28);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.catalog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 198, 255, 0.18);
}

.catalog-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.6s ease;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 198, 255, 0.85);
  color: #001015;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-badges {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.spec-pill {
  background: rgba(15, 20, 28, 0.8);
  color: #cfe9ff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.catalog-body {
  padding: 24px;
}

.catalog-body h3 {
  margin-bottom: 10px;
}

.catalog-body p {
  color: #c5ccde;
  margin-bottom: 16px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #8fd9ff;
  font-weight: 600;
  font-size: 14px;
}

.repairs-section {
  padding: 110px 0;
  background:
    radial-gradient(800px circle at 90% 0%, rgba(59, 46, 255, 0.2), transparent 55%),
    linear-gradient(135deg, #0f141c, #0e1218 60%, #141a24);
}

.repairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.repair-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.repair-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(59, 46, 255, 0.2);
}

.before-after {
  position: relative;
  height: 240px;
  overflow: hidden;
  --pos: 50%;
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.before-after img.fit-contain {
  object-fit: contain;
  background: #0b0f16;
}

.after-layer {
  position: absolute;
  inset: 0;
  right: 0;
  left: auto;
  width: calc(100% - var(--pos));
  overflow: hidden;
}

.after-layer .after-image {
  left: auto;
  right: 0;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: var(--pos);
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 20px rgba(0,198,255,0.6);
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0f141c;
  border: 2px solid rgba(0,198,255,0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0,198,255,0.6);
}

.slider-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.repair-body {
  padding: 22px 24px 26px;
}

.repair-body h3 {
  margin-bottom: 10px;
}

.repair-body p {
  color: #c7cee0;
}

@media (max-width: 768px) {
  .catalog-section,
  .repairs-section {
    padding: 90px 0;
  }

  .section-head h2 {
    font-size: 30px;
  }
}

.eyalogo {
  border-radius: 25px;
}
/* .btn:hover {
  background: #221385;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(34,19,133,0.4);
  transition: 0.3s ease;
} */
/* TOP BAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  z-index: 10000;
}

.topbar.hide {
  transform: translateY(-100%);
  opacity: 0;
}



.topbar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* WORK TIME */
.work-time {
  color: #ccc;
  font-size: 14px;
}

.work-time strong {
  color: #ff4d4d;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 25px;
}

.social {
  background: rgba(255,255,255,0.08);
  transition: 0.35s ease;
}

/* FACEBOOK */
.social.facebook:hover {
  background: #1877f2;
  box-shadow: 0 0 15px #1877f2, 0 0 30px rgba(24,119,242,0.7);
}

/* INSTAGRAM */
.social.instagram:hover {
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
  box-shadow: 0 0 20px #dd2a7b, 0 0 40px rgba(221,42,123,0.6);
}

/* MAIL */
.social.mail:hover {
  background: #221385;
  box-shadow: 0 0 20px #221385, 0 0 40px rgba(34,19,133,0.8);
}

.pulse {
  color: #ff4d4d;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255,77,77,0);
  }
  50% {
    opacity: 0.6;
    text-shadow: 0 0 12px rgba(255,77,77,0.8);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255,77,77,0);
  }
}
/* ABOUT HERO */
.about-hero {
  height: 100vh;
  background: url("images/robot2.webp") center/cover no-repeat fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.6)
  );
}

.about-hero-content {
  position: relative;
  text-align: center;
}

.about-hero h1 {
  font-size: 56px;
}

.about-hero h1 span {
  color: #221385;
}

.about-hero p {
  margin-top: 20px;
  font-size: 18px;
  color: #ccc;
}

/* STORY */
.about-story {
  padding: 120px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.story-text {
  font-size: 22px;
}
/* VALUES */
/* ===== MANYAK VALUE CARD ===== */
.value-card {
  margin-left: 70px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 200px;
  cursor: pointer;
  isolation: isolate;
  width: 1000px;
}

/* IMAGE */
.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

/* DARK OVERLAY */
.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
  transition: 0.5s;
}

/* NEON BORDER */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(0,198,255,0.25);
  opacity: 0;
  transition: 0.5s;
  z-index: 3;
}

/* CONTENT */
.value-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  z-index: 2;
  transform: translateY(40px);
  transition: 0.5s cubic-bezier(.25,.8,.25,1);
}

.value-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffffff, #1316ab);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}


.value-content p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
  opacity: 0.85;
}
.value-card:hover img {
  transform: scale(1.18);
}

.value-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.98),
    rgba(0,0,0,0.35)
  );
}

.value-card:hover::before {
  opacity: 1;
  box-shadow:
    0 0 25px rgba(0,198,255,0.4),
    0 0 60px rgba(0,198,255,0.25);
}

.value-card:hover .value-content {
  transform: translateY(0);
}
.value-card .light-sweep {
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.8s;
  z-index: 2;
}

.value-card:hover .light-sweep {
  top: 100%;
}
.value-card:hover h3 {
  animation: glitch 0.6s linear;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 #00c6ff, -2px 0 #ff004c; }
  20% { text-shadow: -2px 0 #00c6ff, 2px 0 #ff004c; }
  40% { text-shadow: 2px 0 #00c6ff, -2px 0 #ff004c; }
  60% { text-shadow: -1px 0 #00c6ff, 1px 0 #ff004c; }
  100% { text-shadow: none; }
}

/* VISION */
.about-vision {
  padding: 120px 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.vision-image img {
  width: 100%;
  border-radius: 20px;
}

/* CTA */
.about-cta {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(circle at top, #221385, #0e0e0e);
}

.about-cta h2 {
  font-size: 40px;
  background-color: #00c6ff;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .story-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 42px;
  }
}
.story-cross {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Ortak stiller */
.cross-item {
  padding: 30px;
  border-radius: 16px;
  transition: all 0.4s ease;
}

/* Yazı alanı */
.cross-item.text {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  line-height: 1.8;
  backdrop-filter: blur(6px);
}
#tecrubeimg {
  width: 250px;
  height: 130px;
  margin-left: 655px; 
  border-radius: 10px 10px / 12px 10px;
  margin-top: 80px;
}
#tecrube {
  color: rgb(255, 255, 255);
  padding-left: 70vh;
  padding-top: 20px;
  font-size: large;
  text-decoration: overline;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Resim alanı */
.cross-item.image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

/* Hover efektleri */
.cross-item.text:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-6px);
}

.cross-item.image:hover img {
  transform: scale(1.05);
}

/* Mobilde alt alta düşsün */
@media (max-width: 768px) {
  .story-cross {
    grid-template-columns: 1fr;
  }
}
.span {
  color: #00c6ff;
}
#yerli {
  background: rgba(208, 126, 0, 0.6);
  color: #fff;
  line-height: 1.8;
  backdrop-filter: blur(6px);
}
/* PARTNERS */
.partners {
  padding: 120px 0;
  background: radial-gradient(circle at top, #111, #0e0e0e);
  overflow: hidden;
}

.partners .section-title span {
  color: #00c6ff;
}

/* SLIDER */
.partners-slider {
  margin-top: 60px;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: none;
  will-change: transform;
}


/* CARD */
.partner-card {
  min-width: 200px;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.partner-card img {
  width: 180px;
  height: 70px;
  object-fit: contain;
  background: transparent;
  filter: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER MANYAKLIK */
.partner-card:hover {
  transform: none;
  box-shadow: none;
}

.partner-card:hover img {
  filter: none;
  transform: translateY(-6px) scale(1.06);
  box-shadow: none;
}

/* ANIMATION */
@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .partner-card {
    min-width: 160px;
  }

  .partner-card img {
    width: 140px;
    height: 56px;
  }
}
.partner-card::after {
  content: none;
}
