/* ============================================================
   FONT IMPORTS & FONT SETTINGS
============================================================ */
@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');

/* Özel font tanımı */
@font-face {
  font-family: 'Hellombah';
  src: url('/assets/fonts/hellombah/Hellombah.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* GLOBAL AYARLAR */
body {
  margin: 0;
  background: #f7f7f7;
  font-family: 'DM Sans', sans-serif;
}




/* ========================================================================
   # NAVBAR (ANA MENÜ ALANI)
   - Masaüstü: ortalanmış nav, hover ile mega menü
   - Mobil: hamburger, dokun-tık ile mega menü
   ======================================================================== */



/* ============================================================
   SLIDER – GENEL
============================================================ */
.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 BUTONLARI
============================================================ */
.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);
}



/* ============================================================
   SLIDER CARD (3D & ANİMASYONLU)
============================================================ */
.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;
}

/* Hover 3D etkisi */
.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);
}

/* Yüzen animasyon */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}



/* ============================================================
   SLIDER 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);
}



/* ============================================================
   SLIDER 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;
}



/* ============================================================
   SLIDER 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;
}



/* ============================================================
   ABOUT PAGE – HERO & SECTIONS
============================================================ */
.about-wrapper {
  max-width: 1180px;
  margin: 140px auto;
  padding: 0 40px;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

/* Bölüm spacing */
.about-wrapper section {
  margin-bottom: 120px;
}

/* HERO */
.hero {
  text-align: center;
  margin: 220px 0 220px 0;
}
.hero h1 {
  font-size: 120px;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 750px;
  margin: auto;
  color: #667085;
}



/* ============================================================
   ABOUT – 2 SÜTUNLU BÖLÜM
============================================================ */
.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin: 220px 0 220px 0;
}
.about-row .col {
  flex: 1;
}
.about-row h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
.about-row p {
  font-size: 18px;
  line-height: 1.75;
  color: #667085;
}

/* Görsel placeholder */
.img-ph {
  width: 100%;
  height: 400px;
  background: #e6e9f0;
  border-radius: 20px;
}
.img-ph img{
  width: 100%;
  height: 400px;
  border-radius: 20px;
}
.img-ph img:hover{
  border: #111 1 solid;
}



/* ============================================================
   PROJECTS
============================================================ */
.projects {
  text-align: center;
  margin: 220px 0 220px 0;
}
.projects h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.proj-desc {
  font-size: 18px;
  max-width: 760px;
  margin: auto;
  color: #667085;
}

.sector-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 22px;
}

.sector-card {
  padding: 22px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}



/* ============================================================
   WHY US
============================================================ */
.why-us h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  margin: 220px 0 220px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

.why-card {
  padding: 30px;
  background: #f1f5f9;
  border-radius: 18px;
  border: 1px solid #dce2eb;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #667085;
}



/* ============================================================
   ANİMASYONLU ARKAPLAN
============================================================ */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #ffffff;
  overflow: hidden;
}

.bubble {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 122, 255, 0.12);
  animation: floatUp 12s infinite ease-in-out;
}

/* Farklı boyut ve hızlar */
.bubble:nth-child(2) {
  width: 180px;
  height: 180px;
  background: rgba(0, 0, 0, 0.08);
  left: 60%;
  animation-duration: 18s;
}

.bubble:nth-child(3) {
  width: 140px;
  height: 140px;
  background: rgba(50, 100, 255, 0.10);
  left: 80%;
  animation-duration: 15s;
}

@keyframes floatUp {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-120px); }
}



/* ============================================================
   HERO BAŞLIK & RESPONSIVE
============================================================ */
.about-wrapper .hero h1 {
  font-size: 120px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
}

.about-wrapper .hero p {
  font-size: 22px;
  margin-top: 18px;
  color: #475569;
}

.about-wrapper h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 24px;
}

.about-wrapper h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .about-wrapper .hero h1 {
    font-size: 42px;
  }
  .about-wrapper h2 {
    font-size: 36px;
  }
}


/* === MOBILE FIXES === */
@media (max-width: 1024px) {
  .about-wrapper {
    margin: 120px auto;
    padding: 0 32px;
  }

  .about-wrapper section {
    margin-bottom: 100px;
  }

  .hero {
    margin: 160px 0;
  }

  .about-row {
    gap: 48px;
    margin: 160px 0;
  }

  .img-ph,
  .img-ph img {
    height: 320px;
  }

  .projects {
    margin: 160px 0;
  }

  .why-us h2 {
    margin: 160px 0 60px;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    margin: 100px auto;
    padding: 0 24px;
  }

  .about-wrapper section {
    margin-bottom: 80px;
  }

  .hero {
    margin: 120px 0;
  }

  .hero p {
    font-size: 16px;
  }

  .about-row {
    flex-direction: column;
    gap: 32px;
    margin: 120px 0;
  }

  .about-row .col {
    width: 100%;
  }

  .about-row h2 {
    font-size: 28px;
  }

  .about-row p {
    font-size: 16px;
  }

  .img-ph,
  .img-ph img {
    height: 240px;
  }

  .projects {
    margin: 120px 0;
  }

  .projects h2 {
    font-size: 28px;
  }

  .proj-desc {
    font-size: 16px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sector-card {
    font-size: 15px;
    padding: 18px;
  }

  .why-us h2 {
    margin: 120px 0 32px;
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    padding: 22px;
  }
}
