body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f9fafb;
  color: #222;
}
html, body {
  overflow-x: hidden !important;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-slider,
.slider-container {
  width: 100% !important;
  overflow-x: hidden !important;
}
.container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}
.main-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #222;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.main-nav a {
  margin-right: 16px; /* linkler arasında boşluk */
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border-radius: 999px;
  background: #000;               /* Hep siyah arka plan */
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.lang-switcher select {
  background: transparent;
  color: #e53935;                    /* Dil hep kırmızı */
  border: none;
  border-radius: 999px;
  padding: 6px 32px 6px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Ok ikonu da beyaza yakın kalsın */
.lang-switcher::after {
  content: '▾';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  pointer-events: none;
  color: #fff;
}

.banner-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px; /* bannerlar arası boşluk */
  margin: 20px 0;
}
.banner-link img {
  width: 1400;      /* resimlerin genişliği */
  height: 700px;     /* resimlerin yüksekliği */
  object-fit: cover; /* düzgün ölçekleme */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.banner-link img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}


.nav-left {
  flex: 0 0 auto;
}
.nav-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.nav-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.logo-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.logo-ikon {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 0;
}
.site-name-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.site-name {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.1;
}
.site-slogan {
  font-size: 1.05rem;
  color: #c7c7c7;
  letter-spacing: 2px;
  margin-top: 2px;
}
.brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: #e53935;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #e53935;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-links a:hover {
  color: #e53935;
}
.nav-links a:hover::after {
  width: 100%;
}
.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.hero-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 30, 0.48);
  z-index: 2;
}
.hero-center-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-center-content h1 {
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.22);
}
.hero-center-content p {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 36px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.main-btn {
  background: #e53935;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(229,57,53,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
  display: inline-block;
}
.main-btn:hover {
  background: #b71c1c;
  box-shadow: 0 8px 32px rgba(229,57,53,0.18);
}
.hero-robot-img-wrap {
  flex: 1 1 500px;
  min-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 32px 16px 0;
}
.hero-robot-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #fff;
  z-index: 1;
}
/* Dot’lar mutlak, yüzde ile konumlanacak */
.pulse-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff4d4f;
  transform: translate(-50%, -50%); /* merkezden hizala */
  cursor: pointer;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(189,189,189,0.4);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 16px rgba(189,189,189,0);
    opacity: 0.6;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(189,189,189,0);
    opacity: 1;
  }
}
.dot-arka-kamera { top: 18%; left: 8%; }
.dot-hoparlor { top: 28%; left: 18%; }
.dot-bacak {
  bottom: 42%;
  left: 56%;
}
.dot-anten { top: 8%; left: 62%; }
.dot-picatinny { top: 13%; left: 54%; }
.dot-kestamid { top: 38%; left: 48%; }
.dot-mikrofon { top: 48%; left: 80%; }
.dot-led { top: 62%; left: 88%; }
.dot-on-kamera { top: 78%; left: 92%; }
.advantages {
  background: #fff;
  border-radius: 32px;
  max-width: 1200px;
  margin: 48px auto;
  padding: 48px 0 32px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.advantages h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #e53935;
  font-weight: 900;
  margin-bottom: 32px;
}
.advantages-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.advantage-box {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 28px;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.advantage-box:hover {
  box-shadow: 0 8px 32px rgba(229,57,53,0.10);
  transform: translateY(-6px) scale(1.04);
}
.adv-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.advantage-box h3 {
  color: #1a4fa0;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.advantage-box p {
  color: #444;
  font-size: 1.05rem;
}
.applications {
  background: #fff;
  width: 100%;    
  border-radius: 0;
  max-width: none;
  margin: 80px 0 0 0;
  padding: 100px 0;
  display: flex;   
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  box-shadow: none;
}
.applications h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #080000;
  font-weight: 900;
  margin-bottom: 48px;
}
.applications-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 1400px;         /* İçerik çok yayılmasın diye isteğe bağlı */
  margin: 0 auto;
}
.app-box {
  background: #e3e8ee;
  color: #2b2c2e;
  border-radius: 12px;
  padding: 1.3rem 2.2rem;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.app-box:hover {
  box-shadow: 0 8px 32px rgba(26,79,160,0.10);
  transform: translateY(-6px) scale(1.04);
}
.testimonials {
  background: #fff;
  border-radius: 32px;
  max-width: 1200px;
  margin: 48px auto;
  padding: 48px 0 32px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.testimonials h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #e53935;
  font-weight: 900;
  margin-bottom: 32px;
}
.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.testimonial-box {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 28px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: center;
  font-style: italic;
  color: #222;
  font-size: 1.1rem;
}
.testimonial-box span {
  display: block;
  margin-top: 18px;
  color: #1a4fa0;
  font-weight: 700;
  font-size: 1rem;
  font-style: normal;
}
.main-footer {
  background: #1a4fa0;
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 48px;
  border-radius: 32px 32px 0 0;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #e53935;
}
.footer-contact {
  font-size: 1.05rem;
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .main-nav { flex-direction: column; gap: 12px; padding: 0 8px; }
  .hero-center-content h1 { font-size: 2.2rem; }
  .hero-center-content p { font-size: 1.1rem; }
  .main-btn { font-size: 1.05rem; padding: 12px 24px; }
  .feature-cards { gap: 24px; }
}
@media (max-width: 900px) {
  .advantages-row, .applications-row, .testimonials-row, .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .main-footer { padding: 2rem 0 1rem 0; }
  .hero-center-content h1 { font-size: 2.2rem; }
  .hero-center-content p { font-size: 1.1rem; }
  .main-btn { font-size: 1.05rem; padding: 12px 24px; }
}
@media (max-width: 1200px) {
  .features-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    max-width: 98vw;
  }
  .features-image img {
    width: 98vw;
    max-width: 98vw;
    min-width: 0;
    max-height: 340px;
    min-height: 0;
  }
  .features-list-block {
    width: 100%;
    align-items: center;
  }
  .features-list-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .features-list {
    max-width: 98vw;
    min-width: 0;
    align-items: stretch;
  }
}
.features-section a > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.features-title {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a4fa0;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: 1px;
  position: absolute;
  top: -56px;
  left: 0;
  right: 0;
  z-index: 2;
}
.features-row {
  position: relative;
  padding-top: 56px;
}
@media (max-width: 1200px) {
  .features-title {
    font-size: 2rem;
    margin-bottom: 16px;
    top: -40px;
  }
  .features-row {
    padding-top: 40px;
  }
}
.robot-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  width: 100%;
  margin-top: 40px;
}
.robot-image-animated {
  max-width: 700px;
  width: 90%;
  height: auto;
  /* filter: blur(8px) brightness(0.8); */
  opacity: 0;
  transform: scale(0.92);
  animation: robotInNoBlur 1.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes robotInNoBlur {
  0% {
    opacity: 0;
    /* filter: blur(16px) brightness(0.7); */
    transform: scale(0.92);
  }
  60% {
    opacity: 1;
    /* filter: blur(2px) brightness(1); */
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    /* filter: blur(0) brightness(1); */
    transform: scale(1);
  }
}
.robot-diagram-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.robot-diagram-img {
  width: 100%;
  display: block;
}
.label {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a4fa0;
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 6px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  opacity: 0;
  transform: translateY(30px);
  animation: labelIn 1.2s cubic-bezier(.22,1,.36,1) forwards;
}
.label .arrow {
  width: 48px;
  height: 2px;
  background: #e53935;
  margin-left: 12px;
  position: relative;
}
.label .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -5px;
  border: solid #e53935;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg);
}
@keyframes labelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.label-arka-kamera { top: 18%; left: 2%; animation-delay: 0.2s; }
.label-hoparlor { top: 28%; left: 10%; animation-delay: 0.4s; }
.label-bacaklar { top: 60%; left: 7%; animation-delay: 0.6s; }
.label:hover {
  background: #e53935;
  color: #fff;
  box-shadow: 0 6px 24px rgba(229,57,53,0.15);
}
.arrow-dot {
  position: absolute;
  right: -12px; /* Okun ucuna göre ayarlayın */
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #e53935;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #e53935;
  animation: pulseDot 1.2s infinite;
  z-index: 2;
  border: 3px solid #fff;
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 #e53935aa;
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 16px #e5393500;
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 0 0 #e5393500;
    opacity: 1;
  }
}
.dot-bacak {
  bottom: 42%;
  left: 56%;
}
.dot-picatinny {
  top: 14%;
  right: 18%;
}
.dot-kapak {
  top: 8%;
  left: 48%;
}
.feature-cards {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin: -96px auto 64px auto;
  max-width: 1400px;
  position: relative;
  z-index: 5;
  padding: 0 32px;
  margin-top: 64px;
}
.feature-card {
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
  padding: 56px 40px 40px 40px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-wrapper {
  width: 100%;          /* fill feature-card width */
  max-width: 560px;     /* optional max */
  position: relative;
  margin: 0 auto;       /* center horizontally */
  /* 16:9 ratio: height = width * 9/16 */
  padding-top: 56.25%;  /* 9 / 16 * 100 */
}

.yt-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}
.feature-card:hover {
  box-shadow: 0 24px 64px rgba(229,57,53,0.22);
  transform: translateY(-12px) scale(1.045);
}
.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-radius: 50%;
  font-size: 2.6rem;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: #bdbdbd;
}
.feature-card h3 {
  color: #1a4fa0;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #fff, 0 1px 2px #fff;
}
.feature-card p {
  color: #444;
  font-size: 1.13rem;
  font-weight: 500;
  text-shadow: 0 2px 8px #fff, 0 1px 2px #fff;
}
@media (max-width: 1200px) {
  .feature-cards {
    gap: 24px;
    max-width: 98vw;
    padding: 0 8px;
  }
  .feature-card {
    min-width: 220px;
    max-width: 70vw;
    padding: 40px 18px 32px 18px;
  }
}
@media (max-width: 900px) {
  .feature-cards {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
    margin: 16px auto 32px auto;
    align-items: center;
  }
  .feature-card {
    flex: 0 0 calc(50% - 24px); /* 2 kart / satır */
    min-width: 220px;
    max-width: 98vw;
    margin-bottom: 12px;
  }
}
@media (max-width: 700px) {
  .feature-cards {
    flex-direction: column;
    gap: 18px;
    margin: 8px auto 18px auto;
    align-items: center;
    padding: 0 2vw;
  }
  .feature-card {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 98vw;
    padding: 32px 8vw 24px 8vw;
  }
}
.industries-section {
  max-width: 1400px;
  margin: 64px auto 0 auto;
  padding: 0 32px;
  text-align: center;
}
.industries-section h2 {
  font-size: 2.4rem;
  color: #e53935;
  font-weight: 900;
  margin-bottom: 40px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  justify-items: center;
}
.industry-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  min-width: 400px;
  max-width: 700px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  position: relative;
  background: #fff;
}
.fade-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  filter: none;
  transition: filter 0.5s, opacity 0.5s;
  display: block;
}
.fade-img.blur-on-video {
  filter: blur(2.5px);
  opacity: 0.7;
}
.fade-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s;
  display: block;
}
.fade-video.fade-in {
  opacity: 1;
}
.industry-content {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 0 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
}
.industry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a4fa0;
  padding: 18px 0 16px 0;
  background: #fff;
  width: 100%;
}
.industry-card:hover {
  box-shadow: 0 16px 48px rgba(229,57,53,0.18);
  transform: translateY(-8px) scale(1.04);
}
.industry-icon {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-size: 1.7rem;
  color: #7bb0c7;
  opacity: 0.8;
  transition: color 0.2s;
  cursor: pointer;
}
.industry-card:hover .industry-icon {
  color: #e53935;
  opacity: 1;
}
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .industry-card img { height: 120px; }
}
@media (max-width: 600px) {
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card img { height: 90px; }
}
.hero-slider {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.slider-media {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.slider-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.slider-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  transform: translateY(-12vh);
}
.slider-video {
  width: 100%;
  height: 100%;
  border: 0;
}
  object-fit: cover;
  display: block;
}
.slider-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 30, 0.48);
  z-index: 2;
}
.slider-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.slider-content h1 {
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.22);
}
.slider-content p {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 36px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20,20,30,0.48);
  color: #fff;
  border: none;
  font-size: 2.8rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  display: none !important;
}
.slider-arrow:hover {
  background: #e53935;
  color: #fff;
  opacity: 1;
}
.slider-arrow-left { left: 32px; }
.slider-arrow-right { right: 32px; }
@media (max-width: 900px) {
  .slider-content h1 { font-size: 2.2rem; }
  .slider-content p { font-size: 1.1rem; }
  .main-btn { font-size: 1.05rem; padding: 12px 24px; }
  .slider-arrow { font-size: 2rem; width: 40px; height: 40px; left: 8px; right: 8px; }
}
.split-cards-section {
  width: 100vw;
  background: linear-gradient(90deg, #7a742a 0%, #b1a94b 100%);
  padding: 64px 0;
  display: flex;
  justify-content: center;
}
.split-cards-row {
  display: flex;
  gap: 48px;
  max-width: 1400px;
  width: 100%;
  justify-content: center;
}
.split-card {
  flex: 1 1 0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 400px;
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  position: relative;
  background: #fff;
}
.split-card-dark {
  background: #181818;
  color: #fff;
}
.split-card-light {
  background: #fff;
  color: #222;
}
.split-card-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #222;
}
.split-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-card-content {
  padding: 36px 32px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.split-card-content h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.split-card-content p {
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 0;
}
.split-card-icon {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-size: 1.7rem;
  color: #7bb0c7;
  opacity: 0.8;
  transition: color 0.2s;
  cursor: pointer;
}
.split-card:hover .split-card-icon {
  color: #e53935;
  opacity: 1;
}
@media (max-width: 1100px) {
  .split-cards-row { flex-direction: column; gap: 32px; align-items: center; }
  .split-card { min-width: 0; max-width: 98vw; }
  .split-card-img-wrap { height: 180px; }
}
/* INDUSTRIES - mobil iyileştirme */
.industries-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
/* Kartların temel görünümü */
.industry-card {
  flex: 1 1 0;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
}
.industry-card-dark {
  background: #181818;
  color: #fff;
  border: 8px solid #181818;
}
.industry-card-light {
  background: #fff;
  color: #222;
  border: 8px solid #fff;
  margin-right: 48px;
}
@media (max-width: 1100px) {
  .industries-split { flex-direction: column; gap: 32px; align-items: center; }
  .industry-card { min-width: 0; max-width: 98vw; }
  .industry-img-wrap { height: 180px; }
  .industry-card-light {
    margin-right: 0;
  }
}
.industries-bg {
  width: 100vw;
  min-height: 100vh;
  background: rgba(20,20,20,0.55);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: -180px;
  z-index: 5;
}
@media (max-width: 1100px) {
  .industries-bg { margin-top: -90px; }
}
.industries-header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 64px 0 32px 0;
}
.industries-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.industries-line {
  flex: 1;
  height: 2px;
  background: #fff;
  opacity: 0.3;
  border-radius: 2px;
}
.advantages {
  background: #fff;
  border-radius: 32px;
  max-width: 1600px;
  margin: 48px auto;
  padding: 64px 0 96px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  min-height: 600px;
}
.advantages-description {
  max-width: 1200px;
  margin: 0 auto 32px auto;
  font-size: 1.25rem;
  color: #333;
  text-align: center;
  line-height: 1.7;
}
.advanced-features-media-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}
.industry-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  min-width: 400px;
  max-width: 700px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  position: relative;
  background: #fff;
}
.industry-card-dark {
  background: #181818;
  color: #fff;
  border: 8px solid #181818;
}
.industry-card-light {
  background: #fff;
  color: #222;
  border: 8px solid #fff;
  margin-right: 48px;
}
.industry-img-wrap, .fade-video-wrap {
  width: 100%;
  height: 30vw;
  max-height: 320px;
  min-height: 180px;
  overflow: hidden;
  background: #222;
  position: relative;
}

.fade-video-wrap {
  position: relative;
  overflow: hidden;
}

.fade-img,
.fade-video {
  width: 100%;
  display: block;
}

/* Başlangıçta sadece resim görünür */
.fade-img {
  opacity: 1;
  transition: opacity .3s ease;
}

.fade-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* Hover'da video görünür, resim hafif blur olabilir */
.fade-video.fade-in {
  opacity: 1;
}

.blur-on-video {
  filter: blur(3px);
}

.fade-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  filter: none;
  transition: filter 0.5s, opacity 0.5s;
  display: block;
}
.fade-img.blur-on-video {
  filter: blur(2.5px);
  opacity: 0.7;
}
.fade-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s;
  display: block;
}
.fade-video.fade-in {
  opacity: 1;
}
.industry-content {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 0 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
}
.industry-content h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.industry-content p {
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 0;
}
.industry-icon {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-size: 1.7rem;
  color: #7bb0c7;
  opacity: 0.8;
  transition: color 0.2s;
  cursor: pointer;
}
.industry-card:hover .industry-icon {
  color: #e53935;
  opacity: 1;
}
@media (max-width: 1100px) {
  .industries-split { flex-direction: column; gap: 32px; align-items: center; }
  .industry-card { min-width: 0; max-width: 98vw; }
  .industry-img-wrap { height: 180px; }
  .industry-card-light {
    margin-right: 0;
  }
}


/* Başlık/paragraf mobilde küçükçe */
@media (max-width: 800px) {
  .industry-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .industry-content p {
    font-size: 0.98rem;
  }
  .industry-icon {
    right: 20px;
    bottom: 20px;
    font-size: 1.4rem;
  }

  .industry-card {
    max-width: 96vw;
  }

  .industry-img-wrap {
    height: 190px;
  }
}
.robot-video-card.ghost-style {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 32px 0;
  min-height: 400px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px auto;
}
.robot-img-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.robot-img-absolute-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-width: 400px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.robot-img-main {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.robot-video-block {
  max-width: 420px;
  min-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0 32px 32px 0;
  flex-shrink: 0;
  align-self: flex-end;
}
.robot-video-main {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #000;
  object-fit: cover;
  display: block;
}
@media (max-width: 1100px) {
  .robot-video-card.ghost-style {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 98vw;
  }
  .robot-img-absolute-container,
  .robot-video-block {
    max-width: 98vw;
  }
}

.pulse-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff7a00;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255,122,0,0.6);
  animation: pulse 1.6s infinite;
}

.pulse-dot2 {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #e0e0e0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(189, 189, 189, 0.4);
  animation: pulse 1.5s infinite;
  border: 2px solid #bdbdbd;
  z-index: 2;
}

@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 rgba(189,189,189,0.4);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 16px rgba(189,189,189,0);
    opacity: 0.6;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(189,189,189,0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,0,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(255,122,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); }
}



.feature-card.highlight {
  border: 3px solid #1a4fa0;
  box-shadow: 0 0 20px rgba(26, 79, 160, 0.5);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.pulse-dot.active {
  box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.4);
  background: #ff9900;
}

.dot-picatinny1 {
  top: 18%;
  left: 54%;
}
.dot-picatinny2 {
  top: 22%;
  left: 62%;
}
.dot-picatinny3 {
  top: 26%;
  left: 70%;
}
@media (max-width: 900px) {
  .dot-picatinny1 { top: 18%; left: 54%; }
  .dot-picatinny2 { top: 22%; left: 62%; }
  .dot-picatinny3 { top: 26%; left: 70%; }
}
.dot-description-box {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: rgba(30,30,30,0.97);
  color: #fff;
  border-radius: 14px;
  padding: 18px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  max-width: 340px;
  font-size: 1.13rem;
  font-weight: 500;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media (max-width: 700px) {
  .dot-description-box {
    bottom: 12px;
    left: 8px;
    padding: 12px 14px;
    font-size: 0.98rem;
    max-width: 90vw;
  }
}
.arrow-label {
  position: absolute;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.arrow-line {
  width: 70px;
  height: 6px;
  background: #888;
  border-radius: 3px;
  margin-right: 0;
}
.arrow-dot-red {
  width: 22px;
  height: 22px;
  background: #ff2222;
  border-radius: 50%;
  margin-left: -12px;
  box-shadow: 0 0 0 0 #ff2222, 0 0 16px 4px #ff2222aa;
  animation: pulseDotRed 1.2s infinite;
  border: 4px solid #fff;
  z-index: 2;
}
@keyframes pulseDotRed {
  0% {
    box-shadow: 0 0 0 0 #ff2222aa, 0 0 16px 4px #ff2222aa;
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 24px #ff222200, 0 0 16px 4px #ff2222aa;
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 0 0 #ff222200, 0 0 16px 4px #ff2222aa;
    opacity: 1;
  }
}
.arrow-bacak {
  top: 44%;
  left: 60%;
}
.arrow-picatinny {
  top: 16%;
  left: 38%;
}
.arrow-kapak {
  top: 8%;
  left: 28%;
}
@media (max-width: 900px) {
  .arrow-bacak { top: 44%; left: 60%; }
  .arrow-picatinny { top: 16%; left: 38%; }
  .arrow-kapak { top: 8%; left: 28%; }
}
.arrow-mikrofon {
  top: 63%;
  left: 87%;
}
@media (max-width: 900px) {
  .arrow-mikrofon {
    top: 63%;
    left: 87%;
  }
}
.ghost-section {
  background: #fafbfc;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  width: 100vw;
  box-sizing: border-box;
  margin: 0;
}

.ghost-card {
  display: flex;
  align-items: flex-end;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 48px 56px;
  width: 100vw;
  min-width: 100vw;
  min-height: 480px;
  margin: 0 calc(-1 * ((100vw - 100%) / 2));
  box-sizing: border-box;
}

.ghost-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.robot-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;      /* istediğin genişlik */
  margin: 0 auto;
}

/* Görüntü container’ı tamamen doldursun, aspect ratio korunacaksa object-fit */
.robot-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;   /* resim kırpılmasın istiyorsan */
}

.ghost-right {
  flex: 1.2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
}

.ghost-video {
  width: 100%;
  max-width: 1000px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: #000;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.ghost-step {
  background: #ececec;
  color: #333;
  font-size: 1.1rem;
  padding: 6px 18px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
}
@media (max-width: 1300px) {
  .ghost-card {
    max-width: 98vw;
    padding: 32px 8px;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .ghost-card {
    padding: 16px 0;
    gap: 16px;
    border-radius: 0;
  }
}
.feature-list {
  list-style: disc inside;
  margin: 0;
  padding: 0 0 0 12px;
  color: #444;
  font-size: 1.13rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.hero-slider::-webkit-scrollbar,
.slider-container::-webkit-scrollbar {
  display: none !important;
}
.hero-slider,
.slider-container {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow-x: hidden !important;
}
.advanced-features-bd {
  position: relative;
  background: #363940;
  padding: 96px 0 0.5rem 0;
  color: #fff;
  margin-bottom: 0;
}
.applications {
  margin-top: 0;
}
.bd-feature-title {
  color: #fff;
}
.bd-feature-desc {
  color: #e0e0e0;
}
.bd-feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Hepsini yukarıdan başlatır */
  align-items: center;
  margin: 0;
  padding: 0;
}
.bd-feature-title {
  /* 
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 2.2rem;
  font-weight: 900;
  */
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px; 
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd-feature-desc { 
  min-height: 60px; /* Boş açıklama bile olsa sabit alan kaplar */
  }

.bd-feature-card.merdiven-modu {
  /*
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  */
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;  
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  /* Ortala */
  align-items: center;
}

.bd-feature-card.merdiven-modu img,
.bd-feature-card img[alt="Tırman Modu Resmi"] {
  max-width: 500px;
  width: 500px;
  height: 400px;
  object-fit: contain;
  display: block;
  margin: -20px 0 0 -300px; /* Sol margin'i artırarak daha fazla sola kaydırıyorum */
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.merdiven-video {
  display: block;
  max-width: 400px;
  width: 100%;
  margin-left: 20%;
  transform: translateX(-100%);
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .merdiven-video {
    position: absolute;
    top: 0;
    left: calc(75% - 200px);
    max-width: 400px;
    width: 100%;
    margin-bottom: 32px;
    z-index: 2;
  }
}
.advanced-features-bd .bd-features-row {
  margin-top: 60px;
}
.bd-features-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;  /* Hepsini yukarı hizalar */
  text-align: center;
  gap: 40px;
  height: auto;
}
.capabilities-section {
  background: #b0b0b0;
  padding: 80px 0 80px 0;
  color: #222;
  text-align: center;
  margin-bottom: 0;
}

.capabilities-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #111;
  margin-top: -60px;   /* Başlığı yukarı alır */
  margin-bottom: 20px; /* Kartlara daha yakın yapar */
}
.feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
  text-align: center;
}

.feature-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 30px 20px;
  box-sizing: border-box;

  /* Satır başına en fazla 4 kart: yaklaşık %25 */
  flex: 0 0 23%;          /* 4 kart için yeter, gap'le beraber */
  min-width: 220px;       /* Ekran daralınca 3–2–1 karta düşebilir */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-weight: 700;
  font-size: 28px;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card video {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.feature-item {
  font-weight: bold;
  font-size: 28px;
  margin: 0;
  padding: 0;
}
/* Tüm boşlukları sıfırla */
.video-placeholder {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merdiven-video {
  max-width: 400px;
  width: 100%;
  margin-right: 0px; /* Burayı artırıp azaltarak hassas ayar yapabilirsiniz */
}
.video-flex-hiza {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 32px auto;
  padding-right: 5%; /* Yüzdeyle de hassas ayar yapabilirsiniz */
}
.merdiven-video {
  max-width: 400px;
  width: 100%;
  margin-bottom: 18px;
  margin-right: 0;
  display: block;
}
.bd-features-titles {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 16px;
  font-size: 2.2rem;
  font-weight: 900;
  color: #222;
  text-align: center;
  gap: 32px;
}
.bd-features-titles > div {
  flex: 1 1 0;
}
.bd-feature-card .bd-feature-title {
  min-height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tirman-container {
  display: flex;
  flex-direction: column;    /* Video üstte, yazı altta */
  align-items: center;
  justify-content: center;
}

.tirman-video {
  max-width: 260px;          /* Video boyutu */
  margin-bottom: 12px;       /* Kart başlığı ile aralık */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.extra-cards-section {
  width: 100vw;
  overflow-x: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  background: #e0e0e0;
}
.extra-cards-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* Taşarsa yatay scroll olur, isterseniz wrap bırakabilirsiniz */
}

.extra-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  width: 260px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.extra-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  align-self: flex-start;
  width: 100%;
  text-align: left;
  font-size: 2rem;
}

.extra-card img {
  margin-bottom: 16px;
  order: 2;
}

.extra-card p {
  margin-top: 8px;
  text-align: left;
  width: 100%;
}

.extra-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.teknolus-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.teknolus-logo {
  width: 180px;
  margin-bottom: 20px;
}

.gif-and-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.kayist-gif {
  width: 80px;   /* Buradan boyutu küçültebilirsiniz */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gif-text {
  text-align: left;
  max-width: 250px;
}

.gif-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.1em;
  color: #222;
}

.gif-text p {
  margin: 0;
  color: #444;
  font-size: 0.98em;
}

/* --- Proje Bilgi Kutusu --- */
.proje-bilgi-kutusu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 32px 28px;
  margin: 48px auto 32px auto;
  max-width: 900px;
  width: 95%;
}
.kucuk-gif {
  width: 90px;
  min-width: 60px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.proje-bilgi-yazi {
  text-align: left;
  max-width: 600px;
  font-size: 1.08em;
  color: #222;
}
.proje-bilgi-yazi p {
  margin-bottom: 12px;
  line-height: 1.6;
}
.daha-fazlasi-link {
  color: #1a4fa0;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #1a4fa0;
  transition: color 0.2s, border 0.2s;
}
.daha-fazlasi-link:hover {
  color: #0d2c5a;
  border-bottom: 2px solid #0d2c5a;
}
@media (max-width: 700px) {
  .proje-bilgi-kutusu {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    gap: 18px;
  }
  .proje-bilgi-yazi {
    max-width: 98vw;
    font-size: 1em;
  }
  .kucuk-gif {
    width: 60px;
  }
}

.kadin-vizyon-blok {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px auto 0 auto;
  max-width: 900px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 24px 32px;
}

.kadin-vizyon-gorsel {
  width: 110px;   /* Küçültülmüş hali */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.kadin-vizyon-yazi {
  max-width: 600px;
  text-align: left;
}

.kadin-vizyon-baslik {
  font-size: 1.2em;
  font-weight: bold;
  color: #b04a7c;
  margin-bottom: 8px;
}

.kadin-vizyon-aciklama {
  font-size: 1.05em;
  color: #222;
  margin-bottom: 12px;
}

.kadin-vizyon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.kadin-vizyon-list li {
  background: #f9cbe7;
  color: #222;
  border-radius: 18px;
  padding: 6px 18px;
  font-size: 0.98em;
  font-weight: 600;
  margin-bottom: 4px;
}
@media (max-width: 700px) {
  .kadin-vizyon-blok {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8px;
    gap: 16px;
  }
  .kadin-vizyon-gorsel {
    width: 70px;
  }

/* ========== GENEL KART GRID DÜZENİ (3 veya 4 kart / satır) ========== */

/* Özellik kartları (dinamik sayfa) */
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 16px;
}

.feature-card {
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* Masaüstü: 3 kart / satır */
  flex: 0 0 calc(33.333% - 24px);  /* 3 kart / satır */
  min-width: 260px;
}


/* 900px altı: 2 kart / satır */
@media (max-width: 900px) {
  .feature-card {
    flex: 0 0 calc(50% - 24px);
  }
}

/* 600px altı: 1 kart / satır */
@media (max-width: 600px) {
  .feature-card {
    flex: 0 0 100%;
  }
}

/* İçerik */
.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-radius: 50%;
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a4fa0;
  margin-bottom: 12px;
}

.feature-list {
  list-style: disc inside;
  margin: 0;
  padding: 0 0 0 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ========== KABİLİYETLER VİDEO KARTLARI (4 kart / satır, sonra alt satır) ========== */

.capabilities-section {
  background: #b0b0b0;
  padding: 80px 0;
  text-align: center;
  color: #222;
}

.capabilities-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 20px 0;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.feature-row .feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Masaüstü: en çok 4 kart / satır */
  flex: 0 0 calc(25% - 24px);
  min-width: 220px;
}

.feature-row .feature-card video,
.feature-row .feature-card iframe {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.feature-item {
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
}

/* 900px altı: 2 kart / satır */
@media (max-width: 900px) {
  .feature-row .feature-card {
    flex: 0 0 calc(50% - 24px);
  }
}

/* 600px altı: 1 kart / satır */
@media (max-width: 600px) {
  .feature-row .feature-card {
    flex: 0 0 100%;
  }
}

/* ========== INDUSTRY CARD HOVER VİDEO (RESİM ÜSTÜNE GELİNCE VİDEO) ========== */

.fade-video-wrap {
  position: relative;
  width: 100%;
  height: 30vw;
  max-height: 320px;
  min-height: 180px;
  overflow: hidden;
  background: #222;
}

.fade-img,
.fade-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Başlangıçta sadece resim */
.fade-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  filter: none;
  transition: filter .3s ease, opacity .3s ease;
}

.fade-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* JS ile ekleniyor */
.fade-video.fade-in {
  opacity: 1;
}

.fade-img.blur-on-video {
  filter: blur(3px);
  opacity: 0.7;
}

}