@import url('https://fonts.cdnfonts.com/css/satoshi');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

@import url('../fonts/Amazed.otf');

:root {
  --font-heading: 'Rubik', 'Satoshi', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-ui: 'Satoshi', 'DM Sans', 'Inter', system-ui, sans-serif;
}

body {
  margin: 0;
  background: #f7f7f7;
  font-family: var(--font-body);
  line-height: 1.6;
  color: #0f172a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: #0b1021;
  margin: 0 0 12px;
}

p, li, a, button, input, textarea {
  font-family: var(--font-body);
}

.ui-text, .nav-links a, .primary-btn, .secondary-btn, .contact-btn, .login, .signup-btn {
  font-family: var(--font-ui);
  letter-spacing: -0.01em;
}

html {
  scroll-behavior: smooth;
}

/* ================= NAV BAR ================= */

/* ================= NAV BAR ================= */

/* ================= NAV BAR ================= */






/* ================= HERO ================= */

/* ============== HERO GENEL ============== */

.hero {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #050816; /* çok koyu lacivert / gece tonu */
  
}

/* Canvas arkada dursun */
#hero-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* İçerik her zaman üstte */
.hero-container {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 900px;
  display: flex;
  justify-content: center;
}

/* Başlık ve paragraf (istersen aynen bırakabilirsin) */

.hero-center h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: #f9fafb;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-center h1 span {
  
  padding-bottom: 4px;
  
}

.hero-center p {
  max-width: 600px;
  margin: 0 auto 34px auto;
  font-size: 26px;
  color: #d1d5db;
}

/* Butonlar (sen zaten kullanıyordun) */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: 'Satoshi Bold' , sans-serif;
}

.primary-btn,
.secondary-btn {
  font-size: 15px;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.primary-btn {
  background: #f9fafb;
  border: none;
  color: #111827;
}
.primary-btn:hover {
  background: #ffffff;
}

.hero .primary-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-family: 'Space Grotesk', 'Rubik', 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero .primary-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -40%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 45%, transparent 100%);
  transform: translateX(-30%);
  opacity: 0.6;
  transition: transform 0.5s ease;
}

.hero .primary-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, #dbe5f6 100%);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero .primary-btn:hover::before {
  transform: translateX(120%);
}

.hero .primary-btn:focus-visible {
  outline: 3px solid rgba(148, 197, 255, 0.55);
  outline-offset: 3px;
}

.secondary-btn {
  background: transparent;
  border: 1px solid #4b5563;
  color: #e5e7eb;
}
.secondary-btn:hover {
  background: rgba(15,23,42,0.6);
}

/* Responsive ufak dokunuş */

@media (max-width: 768px) {
  .hero {
    padding-top: 180px;
    padding-bottom: 120px;
  }

  .hero-center h1 {
    font-size: 36px;
  }

  .hero-center p {
    font-size: 16px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(247,247,247,0) 0%,
    rgba(247,247,247,0.20) 25%,
    rgba(247,247,247,0.50) 55%,
    rgba(247,247,247,0.85) 80%,
    rgba(247,247,247,1) 100%
  );
  z-index: 10;
}
.tech-stack {
  background: #f7f7f7;
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.typed-wrapper {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
}

#typed-text {
  display: inline-block;
  min-width: 100px;
}

.typed-cursor {
  display: inline-block;
  margin-left: 6px;
  font-weight: 700;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}







/* ========================================================= */
/*   INFINITE LOGO CAROUSEL — FINAL OPTIMIZED VERSION        */
/* ========================================================= */

.logo-carousel {
  width: 100%;
  background: #f7f7f7;
  overflow: hidden;
  padding: 26px 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 24s linear infinite;
  will-change: transform;
  margin: 0 auto;
}

.logo-carousel-track img {
  height: 52px;
  opacity: 0.8;
  transition: opacity 0.22s ease, transform 0.22s ease;
  filter: grayscale(100%);
}

.logo-carousel-track img:hover {
  opacity: 1;
  transform: scale(1.07);
  filter: grayscale(0%);
}

/* infinite scrolling animasyonu */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================= */
/*  AI SUITE SECTION STYLING     */
/* ============================= */

/* ========================= */
/*  SECTION                  */
/* ========================= */

.ai-cards-section {
  padding: 120px 0;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.ai-cards-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-left: 5%;
  margin-bottom: 24px;
  color: #0b1021;
  
}

/* ========================= */
/*  WRAPPER — SCROLLABLE     */
/* ========================= */

.ai-cards-wrapper {
  display: flex;
  gap: 20px;
  padding: 12px 6% 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 6%;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}
.ai-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* ========================= */
/*  CARD                     */
/* ========================= */

.ai-card {
  flex: 0 0 320px;
  background: linear-gradient(160deg, #ffffff 0%, #f2f5ff 100%);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.ai-card:hover {
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
  transform: translateY(-6px);
  border-color: rgba(37,99,235,0.2);
}

.ai-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  opacity: 0.6;
}

/* ========================= */
/*  ICON                     */
/* ========================= */

.ai-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f1f5ff;
  border: 1px solid rgba(15,23,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.ai-card-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-bottom: 0;
}

/* ========================= */
/*  TITLE                    */
/* ========================= */

.ai-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: #0b1021;
  min-height: 44px;
  display: flex;
  align-items: flex-end;
}

/* ========================= */
/*  BADGES                   */
/* ========================= */

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  background: #f8fafc;
  color: #1f2937;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  align-self: flex-start;
}

.card-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(15,23,42,0.06);
}

.card-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.card-badge.neutral {
  background: #f3f4f6;
  color: #374151;
}

.card-badge.addon {
  background: #e8f1ff;
  color: #1f4aa8;
}

.card-badge.start {
  background: #f0eaff;
  color: #5a2ddb;
}

.card-badge.paid {
  background: #ffe9e1;
  color: #b84319;
}

/* ========================= */
/*  TEXT                     */
/* ========================= */

.ai-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 22px;
}

/* ========================= */
/*  LEARN MORE LINK          */
/* ========================= */

.card-link {
  font-size: 12px;
  font-weight: 700;
  color: #0b1021;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5ff;
  border: 1px solid rgba(15,23,42,0.08);
}

.card-link .arrow {
  display: none;
}

.card-link:hover .arrow {
  transform: none;
}

.card-link::after {
  content: ">";
  font-weight: 700;
}

.card-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15,23,42,0.12);
}
/* ============================= */
/*  AI SUITE SECTION STYLING     */
/* ============================= */

.ai-suite-section {
  background: #f7f7f7;
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

.ai-suite-container {
  width: 70%;
  max-width: 900px;
  text-align: center;
}

/* küçük başlık etiketi */


/* ana başlık */
.ai-title {
  font-size: 54px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  font-family: 'Rubik', sans-serif;
}

/* açıklama */
.ai-desc {
  font-size: 22px;
  color: #545454;
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto;
}
.ai-cards-wrapper {
  cursor: grab;
}
.ai-cards-wrapper.active {
  cursor: grabbing;
}
.ai-cards-wrapper {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.ai-card, 
.ai-card * {
  user-select: none;
}
.ai-cards-wrapper {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.ai-cards-title{
  font-size: 34px;
  font-family:'Space Grotesk',sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
}


/* Cardların sonu */

/* ============= sonsuz yazıların css'i =====*/


.mega-text-slider {
  width: 100%;
  overflow: hidden;
  background: #111;
  padding: 225px 0 50px 0;
  border-radius: 55px 55px 0 0;
}

.mega-text-track {
  display: flex;
  gap: 120px;
  white-space: nowrap;
}

.mega-text-track span {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 82px;
}

.filled {
  color: #fff;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

/* 1. satır - sola doğru */
.track-left {
  animation: marqueeLeft 28s linear infinite;
}

/* 2. ve 3. satır - sağa doğru */
.track-right {
  animation: marqueeRight 34s linear infinite;
}

/* left → right */
@keyframes marqueeLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* right → left */
@keyframes marqueeRight {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ====== İÇ İÇE GEÇEN KARTLAR CSS ====== */


/* === TEXT SLIDER === */

.mega-text-slider {
  width: 100%;
  overflow: hidden;
  background: #111;
  padding: 160px 0 050px 0;
  position: relative;
  z-index: 1;
}

.mega-text-track {
  display: flex;
  gap: 120px;
  white-space: nowrap;
}

.mega-text-track span {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 82px;
}

.filled { color: #fff; }
.outline { color: transparent; -webkit-text-stroke: 2px #fff; }

.track-left  { animation: marqueeLeft 28s linear infinite; }
.track-right { animation: marqueeRight 34s linear infinite; }

@keyframes marqueeLeft  { 0% { transform: translateX(-50%);} 100% {transform: translateX(0);} }
@keyframes marqueeRight { 0% { transform: translateX(0);}     100% {transform: translateX(-50%);} }



/* ======== Yorum Kısmı ======*/

/* ===============================================
   REVIEW BRICK WALL
   =============================================== */

.brick-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #111;
  padding: 130px 0;
}

/* SATIR */
.brick-row {
  display: flex;
  width: 90%;
  margin: 0 auto;
  gap: 26px;
  opacity: 1;
  transition: opacity .45s ease;
}

/* Sola hizalı satır */
.brick-row.left {
  justify-content: flex-start;
}

/* Sağa hizalı satır */
.brick-row.right {
  justify-content: flex-end;
}

/* ================================
   3. & 4. satır için gizleme
   ================================ */
.row-hidden {
  opacity: 0;
  display: none;
}

/* ================================
   CARD
   ================================ */

.brick-card {
  width: 333px;
  background: linear-gradient(155deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 46px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  animation: brickFloat 7s ease-in-out infinite;
}

/* hover efekti */
.brick-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.24);
  background: linear-gradient(155deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
}
.brick-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.16), transparent 55%);
  opacity: 0.35;
  pointer-events: none;
}
.brick-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.brick-card:hover::after {
  opacity: 0.6;
}

/* ===============================================
   ICON STYLING
   =============================================== */

.review-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.review-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.15);
  opacity: 0.9;
  transition: transform .25s ease, opacity .25s ease;
}

/* icon büyüme efekti */
.brick-card:hover .review-icon img {
  transform: scale(1.15);
  opacity: 1;
}

/* yıldızlar */
.review-stars {
  font-size: 17px;
  color: #f8d27a;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* başlık */
.review-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

/* yorum metni */
.brick-card p {
  font-size: 15px;
  opacity: 0.92;
}

/* kullanıcı adı */
.review-name {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.2px;
}

.brick-row .brick-card:nth-child(1) { animation-delay: 0s; }
.brick-row .brick-card:nth-child(2) { animation-delay: 0.4s; }
.brick-row .brick-card:nth-child(3) { animation-delay: 0.8s; }
.brick-row .brick-card:nth-child(4) { animation-delay: 1.2s; }

@keyframes brickFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .brick-card {
    animation: none;
  }
}

/* ================================
   LOAD MORE BUTTON
   ================================ */
.load-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

#loadMoreBtn {
  background: #7c4dff;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s ease;
}

#loadMoreBtn:hover {
  background: #9a6dff;
  transform: translateY(-2px);
}

/* ================================
   RESPONSIVE
   ================================ */

@media(max-width: 1200px) {
  .brick-card {
    width: 260px;
  }
}

@media(max-width: 900px) {
  .brick-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }

  .brick-card {
    width: 46%;
  }
}

@media(max-width: 600px) {
  .brick-card {
    width: 100%;
  }

  .review-icon {
    width: 44px;
    height: 44px;
    padding: 6px;
  }

  .review-title {
    font-size: 16px;
  }

  .brick-wrapper {
    gap: 26px;
  }
}


/* logo carousel-2 Nin css kısmı */

/* ===============================
   LOGO CAROUSEL #3 (BAĞIMSIZ)
   ===============================*/

.logo-carousel-3 {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  background-color: #111;

}

.logo-carousel-track-3 {
  display: flex;
  align-items: center;
  gap: 90px;
  animation: logoScroll3 19s linear infinite;
  will-change: transform;
}

.logo-carousel-track-3 img {
  height: 62px;
  width: auto;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: .25s ease;
}



/* scroll yönü sağa → sola */
@keyframes logoScroll3 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}








/* ANA SECTION */
.ui-components-section {
  width: 100%;
  padding: 110px 0;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-radius: 54px 54px 0 0;
  margin-top: -50px;
  scroll-margin-top: 120px;
}

/* =========================
   ÜST METİN BÖLÜMÜ
   ========================= */
.ui-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ui-title {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #0f172a;
  margin-bottom: 18px;
}

.ui-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .ui-title {
    font-size: 34px;
  }
  .ui-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}



/* =========================
   KAYDIRMALI CARDS
   ========================= */
.ui-cards-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 20px;
  padding-left: 120px;
  padding-right: 120px;
}

.ui-cards-scroll::-webkit-scrollbar {
  display: none;
}

.ui-card {
  flex: 0 0 auto;
  padding: 18px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e7e7e7;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  transition: .2s ease;
}

.ui-card:hover {
  background: #f2f2f2;
  transform: translateY(-3px);
}

/* =========================
   BLOG CARDS GRID
   ========================= */
.ui-blog,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  width: 1290px;
}

.blog-card {
  background: linear-gradient(145deg, #ffffff, #f6f8fb);
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 14px;
  min-height: 220px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.08);
  border-color: #d9e2ff;
}

.blog-thumb {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  background: #edf2ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -0.2px;
}

.blog-card p {
  margin: 0 0 4px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.blog-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px rgba(15,23,42,0.18);
}

.blog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15,23,42,0.22);
  background: #111827;
}
.blog-feature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: #fff;
  border-radius: 32px;
  padding: 68px;
  margin: 120px auto;
  width: 1290px;
  max-width: 100%;
  box-shadow: 0px 14px 38px rgba(0,0,0,0.06);
}

.bf-left {
  width: 45%;
}

.bf-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.bf-left p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.bf-link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: opacity .25s ease;
}

.bf-link:hover {
  opacity: 0.5;
}

.bf-right {
  width: 55%;
  display: flex;
  justify-content: center;
}

.bf-right img {
  width: 200px;
  border-radius: 14px;
  object-fit: cover;
}




/* ==== FOOTER MENÜ =====*/



/* =====================
   SLIDER WRAPPER
===================== */
.ai-slider-section {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 80px 0;
  
}

.ai-slider-wrapper {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.ai-slider {
  display: flex;
  gap: 26px;
  transition: transform 0.4s ease;
}

/* =====================
   SLIDER ARROWS
===================== */
.ai-slider-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: 22px;
  transition: 0.25s;
}

.ai-slider-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.12);
}

/* =====================
   CARD
===================== */
.ai-slide-card {
  min-width: 260px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
  transform-style: preserve-3d;
  animation: floatCard 4s ease-in-out infinite;
}

/* 3D Hover Tilt Effect */
.ai-slide-card:hover {
  transform: translateY(-8px) rotateY(10deg);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* Floating animation */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* =====================
   ICON
===================== */
.card-icon {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(1.3);
}

/* =====================
   TEXTS
===================== */
.ai-slide-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 700;
}

.ai-slide-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* =====================
   BUTTON
===================== */
.card-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  color: #fff;
  background: #3b82f6;
  text-decoration: none;
  transition: 0.25s;
}

.card-btn:hover {
  background: #5a96ff;
}



/* SİLİNEBİLİR */


 /* ===== AI CARD COVERFLOW STYLING ===== */

/* =====================
   SLIDER WRAPPER
===================== */
.ai-slider-section {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 80px 0;
  background-color: #f7f7f7; /* Yeni arkaplan */
  padding: 50px 0;
}

.ai-slider-wrapper {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.ai-slider {
  display: flex;
  gap: 26px;
  transition: transform 0.4s ease;
}

/* =====================
   SLIDER ARROWS
===================== */
.ai-slider-btn {
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #222;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.ai-slider-btn:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: scale(1.1);
}

/* =====================
   CARD
===================== */
.ai-slide-card {
  min-width: 260px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 24px;
  border-radius: 18px;
  text-align: center;
  color: #111;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  transform-style: preserve-3d;
  animation: floatCard 4s ease-in-out infinite;
}

/* Hover effect (3D tilt) */
.ai-slide-card:hover {
  transform: translateY(-8px) rotateY(8deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Floating animation */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* =====================
   ICON
===================== */
.card-icon {
  width: 58px;
  height: 58px;
  background: #f1f1f1;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(1);
}

/* =====================
   TEXTS
===================== */
.ai-slide-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #111;
}

.ai-slide-card p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 20px;
  color: #333;
}

/* =====================
   BUTTON
===================== */
.card-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  color: white;
  background: #3b82f6; /* Mavi buton */
  text-decoration: none;
  transition: 0.25s ease;
}

.card-btn:hover {
  background: #2563eb;
}





















.product-card-section {
  width: 100%;
  padding: 80px 0;
  background: #0e0e0e;
  display: flex;
  justify-content: center;
}

.product-grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  padding: 28px;
  border-radius: 20px;
  text-align: left;
  color: #fff;
  transition: 0.35s ease;
  transform-style: preserve-3d;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.35);
}

/* ICON */
.product-icon {
  font-size: 40px;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* TITLE */
.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.product-card p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.55;
}

/* BUTTON */
.product-btn {
  display: inline-block;
  background: #007bff;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.product-btn:hover {
  background: #3395ff;
}

/* HIGHLIGHT PRODUCT */
.product-card.highlight {
  border: 1px solid rgba(0,123,255,0.4);
}

.product-btn.special {
  background: #00c3ff;
}

.product-btn.special:hover {
  background: #3ad7ff;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(1,1fr);
  }
}



.p3d-hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 80px;
    background: #f7f7f7;
    overflow: hidden;
}

/* ================================ MAIN CAROUSEL CONTAINER ================================ */
.p3d-container {
    width: 100%;
    max-width: 1600px;
    height: 650px;
    position: relative;
    perspective: 1200px;
    cursor: grab;
    touch-action: pan-y;
}
.p3d-container.is-dragging {
    cursor: grabbing;
}

/* ================================ TRACK ================================ */
.p3d-track {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* ================================ ITEM ================================ */
.p3d-item {
    position: absolute;
    width: 400px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    
    
}

/* ================================ CARD ================================ */
.p3d-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.p3d-card,
.p3d-card * {
    user-select: none;
}
    

.p3d-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}

/* ================================ TEXT ELEMENTS ================================ */
.p3d-card h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.p3d-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 20px;
}

.p3d-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 4px;
}

.p3d-badge {
    padding: 6px 12px;
    background: #f2f2f2;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 12px;
}

/* ================================ CTA BUTTON ================================ */
.p3d-cta {
    margin-top: auto;
    padding: 12px 20px;
    background: #111;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    align-self: flex-start;
}

/* ================================ CONTROLS ================================ */
.p3d-controls {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.p3d-btn {
    width: 55px;
    height: 55px;
    background: #111;
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 26px;
}

/* ================================ INDICATORS ================================ */
.p3d-indicators {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.p3d-dot {
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.p3d-dot.active {
    background: #111;
    transform: scale(1.3);
}

/* ================================================ SECTION BACKGROUND ================================================ */
.product-carousel-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 80px;
    background: #f7f7f7;
}

/* ================================================ CONTAINER ================================================ */
.product-carousel-container {
    width: 100%;
    max-width: 1600px;
    height: 650px;
    position: relative;
    perspective: 1400px;
}

/* ================================================ CAROUSEL WRAPPER ================================================ */
.product-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* ================================================ PRODUCT CARD WRAPPER ================================================ */
.product-carousel-item {
    position: absolute;
    width: 420px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

/* ================================================ CARD DESIGN ================================================ */
.product-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08),
                inset 0 1px 0 rgba(255,255,255,0.5);
    overflow: hidden;
}

/* ================================================ CARD IMAGE ================================================ */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
    transition: 0.4s ease;
}

.product-carousel-item:hover img {
    transform: scale(1.08);
    filter: contrast(1.1);
}

/* ================================================ TEXTS ================================================ */
.product-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.product-card-description {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    margin: 10px 0 14px;
}

/* ================================================ TAGS ================================================ */
.product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-tag {
    padding: 6px 12px;
    background: #f2f2f2;
    border-radius: 16px;
    border: 1px solid #ddd;
    font-size: 12px;
}

/* ================================================ BUTTON (ANIMATED) ================================================ */
.product-card-btn {
    margin-top: auto;
    padding: 14px 34px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;
}

.product-card-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.25) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: 0.5s;
}

.product-card-btn:hover::before {
    left: 120%;
}

.product-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* ================================================ CONTROLS (BUTTONS) ================================================ */
.product-carousel-controls {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
}

.product-carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}

.product-carousel-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 18px rgba(0,0,0,0.28);
}

/* ================================================ INDICATORS ================================================ */
.product-carousel-indicators {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.product-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
    transition: 0.25s;
}

.product-indicator.active {
    background: #111;
    transform: scale(1.3);
}









/* ====================== ANIMATION ====================== */

@keyframes brandSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* === UI BLOG CARDS (HOME) OVERRIDE === */
.ui-blog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: 90%;
  max-width: 1290px;
  margin: 0 auto;
}

.ui-blog-header {
  width: 90%;
  max-width: 1290px;
  margin: 0 auto 26px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #0f172a;
  font-family: 'DM Sans', sans-serif;
}

.ui-blog-title {
  font-size: 36px;
  font-style: normal;
  color: #0f172a;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: -0.3px;
}
.ui-blog-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: #2563eb;
  border-radius: 999px;
}

.ui-blog-link {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 26px rgba(15,23,42,0.22);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ui-blog-link::after {
  content: "→";
  font-weight: 800;
}

.ui-blog-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15,23,42,0.26);
}

.ui-blog-link::after {
  content: ">";
  font-weight: 700;
}

.ui-blog-link::after {
  content: "→";
  font-weight: 700;
}

.ui-blog .blog-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(145deg, #ffffff, #f3f6ff);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 22px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
  min-height: 130px;
}

.ui-blog .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(15,23,42,0.14);
  border-color: rgba(37,99,235,0.18);
  background: linear-gradient(145deg, #ffffff, #eef3ff);
}

.ui-blog .blog-date {
  display: block;
  font-size: 11px;
  color: #5b6474;
  margin-bottom: 6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}

.ui-blog .blog-tag {
  display: none;
}

.ui-blog .blog-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #0b1021;
  line-height: 1.3;
  letter-spacing: -0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ui-blog .blog-card p {
  margin: 0 0 6px 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #4a5568;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ui-blog .blog-thumb {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff, #f6f7ff);
  align-self: flex-start;
  padding: 8px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 44%;
  order: 1;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.ui-blog .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: transform .25s ease;
  border-radius: 16px;
}

.ui-blog .blog-card:hover .blog-thumb img {
  transform: scale(1.02);
}

.ui-blog .blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2px 2px 2px 0;
  order: 2;
}

@media (max-width: 900px) {
  .ui-blog {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .ui-blog .blog-card {
    flex-direction: column;
    min-height: auto;
  }

  .ui-blog .blog-thumb {
    width: 100%;
    height: 180px;
    flex: 0 0 auto;
  }

  .ui-blog .blog-content {
    flex: 0 0 auto;
    padding: 6px 0 0 0;
  }
}

/* ====================== SLIDER CONTAINER ====================== */

/* ===================== SLIDER WRAPPER ===================== */

/* ===================== SLIDER WRAPPER ===================== */

.brand-slider {
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
  position: relative;
}

/* Kenarlardaki fade efekt */
.brand-slider:before,
.brand-slider:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.brand-slider:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255,255,255));
}

.brand-slider:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255,255,255));
}

/* ====================== TRACK ====================== */

.brand-track {
  display: inline-block;
  animation: brandSlide 34s linear infinite;
}

/* Hover'da durur */
.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

/* ====================== LOGO STYLING ====================== */

.brand-track img {
  height: 60px;        /* Logo boyutu kucultuldu */
  margin: 0 22px;     /* 🔥 GENİŞ ARALIK EKLEDİM */
  opacity: 0.85;
  transition: 0.2s ease;
}

.brand-track img:hover {
  opacity: 1;
  transform: scale(1.08); /* küçük boyuta uygun hover efekti */
}

/* ====================== ANIMATION ====================== */

@keyframes brandSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
