/* === MODERN BEYAZ/MORUMSU LANDING PAGE === */
html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(120deg, #f8fafd 0%, #eceafd 100%);
  color: #23244a;
  font-family: 'Inter', 'Manrope', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
  font-size: 1.06rem;
  -webkit-font-smoothing: antialiased;
}

.navbar {
  background: #fff;
  box-shadow: 0 4px 32px #e3dcfa55;
  border-bottom: 1.5px solid #eceafd;
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-main);
}
.navbar-logo {
  height: 48px;
  filter: none;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}
.navbar-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center;
}
.navbar-links a {
  position: relative;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.4em 1.1em;
  font-weight: 500;
  transition: color 0.18s;
  z-index: 1;
}
.navbar-links a.active::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.18em;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #bca6f7 0%, var(--primary) 100%);
  transition: all 0.18s;
  z-index: 2;
  opacity: 1;
}


.navbar-links a:hover {
  color: var(--primary);
  background-color: rgba(127, 95, 255, 0.05);
  transform: translateY(-2px);
}
.navbar-actions {
  display: flex;
  gap: 1.1rem;
  flex-direction: column;
}

.landing-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.white-hero {
  background: linear-gradient(120deg, #f7f7fb 60%, #eceafd 100%);
  padding: 5.5rem 0 3.5rem 0;
  text-align: center;
}
.brand-title {
  position: relative;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  overflow: hidden;
  border-radius: 0.3em;
  box-shadow: 0 0 0 0 #bca6f7;
  animation: brand-glow 2.8s infinite alternate;
}
@keyframes brand-glow {
  0% { box-shadow: 0 0 0 0 #bca6f700; }
  100% { box-shadow: 0 0 16px 2px #bca6f744; }
}


.brand-lead {
  font-size: 1.3rem;
  color: #6d42e6cc;
  margin-bottom: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.2rem;
  text-align: center;
  text-shadow: 0 2px 8px #e3dcfa33;
}

.services {
  background: linear-gradient(135deg, #fafbff 0%, #f4f3fb 100%);
  padding: 5rem 0 5rem 0;
  border-radius: 2rem;
  margin: 2rem 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  color: var(--text-main);
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #5e7fff 100%);
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  height: 100%;
}
.service-icon {
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-content {
  flex: 1;
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

.service-card p {
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #5e7fff 100%);
  transition: width 0.3s ease;
}

.service-link:hover {
  color: #5e7fff;
}

.service-link:hover::after {
  width: 100%;
}

.contact {
  background: linear-gradient(120deg, #eceafd 60%, #f7f7fb 100%);
  padding: 3.2rem 0 3.5rem 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.07rem;
  text-shadow: 0 1px 4px #e3dcfa44;
}
.contact-value {
  color: #25213b;
  font-size: 1.08rem;
}
.contact-value a {
  color: #6d42e6;
  text-decoration: none;
  font-weight: 500;
}
.contact-value a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-links a {
  position: relative;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.4em 1.1em;
  font-weight: 500;
  transition: color 0.18s;
  z-index: 1;
}
.navbar-links a.active::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.18em;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #bca6f7 0%, var(--primary) 100%);
  transition: all 0.18s;
  z-index: 2;
  opacity: 1;
}

.navbar-links a:hover::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.18em;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #bca6f7 0%, var(--primary) 100%);
  opacity: 1;
  transition: all 0.18s;
  z-index: 2;
}


.navbar-links a:hover {
  color: var(--primary);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.44,.13,.48,.87), transform 0.7s cubic-bezier(.44,.13,.48,.87);
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

.glass-card {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 32px #bca6f722;
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid #e3dcfa;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .company-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  body { font-size: 0.97rem; }
  .navbar { backdrop-filter: blur(6px); }
  .service-card, .feature-card { min-width: 120px; max-width: 100%; padding: 1.1rem 0.5rem 1rem 0.5rem; }
  section { border-radius: 0.7rem; margin-bottom: 0.7rem; }
  .btn, button { font-size: 0.98rem; padding: 0.5em 1em; }
  
  .company-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .about-feature-item {
    align-items: flex-start;
  }
  
  .feature-icon {
    margin-top: 0.3rem;
  }
}
  .white-hero {
    padding: 2.5rem 0 1.5rem 0;
  }
  .brand-title {
  position: relative;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  overflow: hidden;
  border-radius: 0.3em;
  box-shadow: 0 0 0 0 #bca6f7;
  animation: brand-glow 2.8s infinite alternate;
}
@keyframes brand-glow {
  0% { box-shadow: 0 0 0 0 #bca6f700; }
  100% { box-shadow: 0 0 16px 2px #bca6f744; }
}

  .section-title {
    font-size: 1.3rem;
  }
  .service-card, .feature-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px #e3dcfa22;
    padding: 2.2rem 1.6rem 2rem 1.6rem;
    color: var(--text-main);
    min-width: 220px;
    max-width: 330px;
    flex: 1 1 260px;
    transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
    border: 1.5px solid var(--card-border);
  }
  .service-card, .feature-card {
    min-width: 160px;
    padding: 1.2rem 0.8rem 1.1rem 0.8rem;
  }
  .contact-info {
    gap: 1rem;
  }

.star {
  position: absolute;
  display: block;
  background: linear-gradient(120deg, #fff 60%, var(--primary2) 100%, var(--accent) 120%);
  border-radius: 50%;
  opacity: 0.95;
  box-shadow:
    0 0 16px 6px var(--primary2),
    0 0 32px 10px var(--accent),
    0 0 8px 2px #fff,
    0 0 24px 8px var(--primary);
  filter: blur(0.5px);
  animation: twinkle 3s infinite alternate, moveStar 18s linear infinite;
  transition: box-shadow 0.3s, background 0.3s;
}

.star:nth-child(4)  { left: 10%;  top: 20%;  width: 3px; height: 3px; animation-delay: 0s, 0s; }
.star:nth-child(5)  { left: 30%;  top: 40%;  width: 2px; height: 2px; animation-delay: 0.5s, 2s; }
.star:nth-child(6)  { left: 60%;  top: 15%;  width: 4px; height: 4px; animation-delay: 1s, 4s; }
.star:nth-child(7)  { left: 80%;  top: 60%;  width: 2.5px; height: 2.5px; animation-delay: 0.2s, 1s; }
.star:nth-child(8)  { left: 50%;  top: 80%;  width: 3px; height: 3px; animation-delay: 1.2s, 3s; }
.star:nth-child(9)  { left: 90%;  top: 30%;  width: 2.2px; height: 2.2px; animation-delay: 0.8s, 5s; }
.star:nth-child(10) { left: 70%;  top: 50%;  width: 2.8px; height: 2.8px; animation-delay: 1.5s, 2.5s; }
.star:nth-child(11) { left: 20%;  top: 70%;  width: 2px; height: 2px; animation-delay: 0.7s, 7s; }
.star:nth-child(12) { left: 35%;  top: 65%;  width: 2.5px; height: 2.5px; animation-delay: 1.7s, 8s; }
.star:nth-child(13) { left: 75%;  top: 25%;  width: 3.2px; height: 3.2px; animation-delay: 1.9s, 9s; }
.star:nth-child(14) { left: 55%;  top: 35%;  width: 2.7px; height: 2.7px; animation-delay: 2.1s, 10s; }
.star:nth-child(15) { left: 85%;  top: 80%;  width: 2.4px; height: 2.4px; animation-delay: 2.3s, 11s; }
.star:nth-child(16) { left: 12%;  top: 88%;  width: 2.2px; height: 2.2px; animation-delay: 2.5s, 12s; }
.star:nth-child(17) { left: 40%;  top: 90%;  width: 2.1px; height: 2.1px; animation-delay: 2.7s, 13s; }
.star:nth-child(18) { left: 95%;  top: 10%;  width: 2.5px; height: 2.5px; animation-delay: 2.9s, 14s; }
.star:nth-child(19) { left: 10%;  top: 70%;  width: 2.3px; height: 2.3px; animation-delay: 3.1s, 15s; }
.star:nth-child(20) { left: 60%;  top: 60%;  width: 3.3px; height: 3.3px; animation-delay: 3.3s, 16s; }
.star:nth-child(21) { left: 80%;  top: 20%;  width: 2.7px; height: 2.7px; animation-delay: 3.5s, 17s; }
.star:nth-child(22) { left: 25%;  top: 55%;  width: 2.6px; height: 2.6px; animation-delay: 3.7s, 18s; }
.star:nth-child(23) { left: 45%;  top: 10%;  width: 2.5px; height: 2.5px; animation-delay: 3.9s, 19s; }
@keyframes twinkle {
  0%   { opacity: 0.6; box-shadow: 0 0 8px 2px #fff, 0 0 16px 4px var(--primary2); }
  50%  { opacity: 1;   box-shadow: 0 0 12px 4px #fff, 0 0 24px 8px var(--primary2); }
  100% { opacity: 0.6; box-shadow: 0 0 8px 2px #fff, 0 0 16px 4px var(--primary2); }
}
@keyframes moveStar {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(20px) scale(1.1); }
}

/* Features Section & Cards */
.features-section {
  background: var(--dark-bg2);
  padding: 4.5rem 0 4.5rem 0;
  box-shadow: 0 0 48px 0 var(--glow1) inset;
}
.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.features-section h2, .features-section .lead {
  color: var(--text-main);
}
.features-section .lead {
  color: var(--text-soft);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.feature-card {
  background: linear-gradient(120deg, var(--dark-card) 60%, var(--dark-bg2) 100%);
  border: 1.5px solid var(--border);
  border-radius: 1.6rem;
  box-shadow: 0 8px 40px var(--glow2), 0 1px 2px #0008;
  padding: 2.6rem 1.7rem 2.2rem 1.7rem;
  color: var(--text-main);
  margin: 1.1rem;
  min-width: 240px;
  max-width: 340px;
  transition: box-shadow 0.22s, border 0.22s, background 0.22s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 56px var(--primary)44, 0 1px 2px #0008;
  background: linear-gradient(120deg, #292b4a 60%, var(--dark-card) 100%);
}
.feature-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.feature-card p {
  color: var(--text-soft);
  font-size: 1.08rem;
}

/* Footer */
.site-footer-bottom {
  background: rgba(255,255,255,0.9);
  color: #6d42e6bb;
  border-top: 1.5px solid #eceafd;
  box-shadow: 0 -4px 32px #e3dcfa22;
  padding: 2.2rem 0 1.2rem 0;
  font-size: 1.08rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.footer-social a {
  color: #6d42e6bb;
  font-size: 1.7rem;
  transition: color 0.22s;
}
.footer-social a:hover {
  color: #7f5fff;
}
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer-info a {
  color: var(--primary);
  text-decoration: underline;
  margin: 0 0.5rem;
}
.footer-info a:hover {
  color: #fff;
}

.about-section {
  background: var(--primary-soft);
  padding: 4rem 0 4rem 0;
}
.about-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem;
}

.navbar-links a {
  position: relative;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.4em 1.1em;
  font-weight: 500;
  transition: color 0.18s;
  z-index: 1;
}
.navbar-links a.active::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.18em;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #bca6f7 0%, var(--primary) 100%);
  transition: all 0.18s;
  z-index: 2;
  opacity: 1;
}

.navbar-links a:hover::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.18em;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #bca6f7 0%, var(--primary) 100%);
  opacity: 1;
  transition: all 0.18s;
  z-index: 2;
}


.navbar-links a:hover {
  color: var(--primary);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.44,.13,.48,.87), transform 0.7s cubic-bezier(.44,.13,.48,.87);
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

.glass-card {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 32px #bca6f722;
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid #e3dcfa;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar-container, .container, .footer-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .features-list {
    gap: 1rem;
  }
  .feature-card {
    min-width: 160px;
    padding: 1.2rem 0.8rem 1.1rem 0.8rem;
  }
  .hero-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 340px;
  padding-top: 3.5rem;
  padding-bottom: 2.2rem;
}

  .hero-section .container {
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.19;
    filter: blur(1.5px) saturate(0.95);
    transition: opacity 0.4s, filter 0.4s;
    overflow: hidden;
  }
  .particles-bg,
  .star-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.13;
    filter: blur(1.1px) saturate(0.9);
    transition: opacity 0.4s, filter 0.4s;
    overflow: hidden;
  }
  .hero-section .container,
.hero-content {
  position: relative;
  z-index: 2;
  background: transparent;
}
  /* Blob stilleri kaldırıldı */
  .hero-section h1 {
    font-size: 2.1rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .features-section {
    padding: 2rem 0;
  }
  /* Hero blobs kaldırıldı */

/* Hero blobs kaldırıldı */

/* Hero blobs kaldırıldı */

/* Hero blobs kaldırıldı */

}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #fafbff 0%, #f4f3fb 100%);
  color: #25213b;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}

:root {
  --primary: #6d42e6;
  --primary-light: #ede7fa;
  --primary-soft: #f4f3fb;
  --text-main: #25213b;
  --text-soft: #6d42e6bb;
  --card-bg: #fff;
  --card-border: #eceafd;
  --shadow: 0 4px 24px #e3dcfa33;
  --radius: 1.2rem;
}

/* Koyu tema için genel başlık ve metin renkleri */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  text-shadow: 0 2px 8px #e3dcfa33;
}
p, .lead {
    color: #d1d5e7;
}

/* Navbar koyu ve blur'lu */
.navbar {
  background: #fff;
  box-shadow: 0 4px 32px #e3dcfa55;
  border-bottom: 1.5px solid #eceafd;
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: transparent;
}

section {
    background: linear-gradient(120deg, #f8fafd 0%, #ede7fa 100%) !important;
    position: relative;
    z-index: 1;
    overflow: visible;
    border-radius: 2.2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 32px #e3dcfa11;
    padding-bottom: 0.5rem;
}

/* Glow bloblar */
.star-bg .glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: blob-move 18s ease-in-out infinite alternate;
}
.star-bg .glow-blob.blob1 {
    width: 320px; height: 220px;
    left: -80px; top: -90px;
    background: radial-gradient(circle at 30% 30%, #5e7fff 0%, #b3c7ff 80%, transparent 100%);
    animation-delay: 0s;
}
.star-bg .glow-blob.blob2 {
    width: 260px; height: 180px;
    right: -70px; top: 50px;
    background: radial-gradient(circle at 70% 40%, #a259ff 0%, #7f5fff 80%, transparent 100%);
    animation-delay: 3s;
}
.star-bg .glow-blob.blob3 {
    width: 200px; height: 140px;
    left: 50%; bottom: -80px;
    background: radial-gradient(circle at 50% 80%, #4fd1c5 0%, #7f5fff 80%, transparent 100%);
    transform: translateX(-50%);
    animation-delay: 6s;
}

@keyframes blob-move {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.12) translateY(30px); }
}

.star-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    display: block;
    background: linear-gradient(120deg, #fff 60%, #b3c7ff 100%, #a259ff 120%);
    border-radius: 50%;
    opacity: 0.95;
    box-shadow:
        0 0 16px 6px #b3c7ff,
        0 0 32px 10px #a259ff,
        0 0 8px 2px #fff,
        0 0 24px 8px #7f5fff;
    filter: blur(0.5px);
    animation: twinkle 3s infinite alternate, moveStar 18s linear infinite;
    transition: box-shadow 0.3s, background 0.3s;
}

/* Rastgele konum, boyut ve animasyon için her bir yıldız ayrı ayrı hedefleniyor */
.star:nth-child(1)  { left: 10%;  top: 20%;  width: 3px; height: 3px; animation-delay: 0s, 0s; }
.star:nth-child(2)  { left: 30%;  top: 40%;  width: 2px; height: 2px; animation-delay: 0.5s, 2s; }
.star:nth-child(3)  { left: 60%;  top: 15%;  width: 4px; height: 4px; animation-delay: 1s, 4s; }
.star:nth-child(4)  { left: 80%;  top: 60%;  width: 2.5px; height: 2.5px; animation-delay: 0.2s, 1s; }
.star:nth-child(5)  { left: 50%;  top: 80%;  width: 3px; height: 3px; animation-delay: 1.2s, 3s; }
.star:nth-child(6)  { left: 90%;  top: 30%;  width: 2.2px; height: 2.2px; animation-delay: 0.8s, 5s; }
.star:nth-child(7)  { left: 70%;  top: 50%;  width: 2.8px; height: 2.8px; animation-delay: 1.5s, 2.5s; }
.star:nth-child(8)  { left: 20%;  top: 70%;  width: 2px; height: 2px; animation-delay: 0.7s, 7s; }
.star:nth-child(9)  { left: 35%;  top: 65%;  width: 2.5px; height: 2.5px; animation-delay: 1.7s, 8s; }
.star:nth-child(10) { left: 75%;  top: 25%;  width: 3.2px; height: 3.2px; animation-delay: 1.9s, 9s; }
.star:nth-child(11) { left: 55%;  top: 35%;  width: 2.7px; height: 2.7px; animation-delay: 2.1s, 10s; }
.star:nth-child(12) { left: 85%;  top: 80%;  width: 2.4px; height: 2.4px; animation-delay: 2.3s, 11s; }
.star:nth-child(13) { left: 12%;  top: 88%;  width: 2.2px; height: 2.2px; animation-delay: 2.5s, 12s; }
.star:nth-child(14) { left: 40%;  top: 90%;  width: 2.1px; height: 2.1px; animation-delay: 2.7s, 13s; }
.star:nth-child(15) { left: 95%;  top: 10%;  width: 2.5px; height: 2.5px; animation-delay: 2.9s, 14s; }
.star:nth-child(16) { left: 10%;  top: 70%;  width: 2.3px; height: 2.3px; animation-delay: 3.1s, 15s; }
.star:nth-child(17) { left: 60%;  top: 60%;  width: 3.3px; height: 3.3px; animation-delay: 3.3s, 16s; }
.star:nth-child(18) { left: 80%;  top: 20%;  width: 2.7px; height: 2.7px; animation-delay: 3.5s, 17s; }
.star:nth-child(19) { left: 25%;  top: 55%;  width: 2.6px; height: 2.6px; animation-delay: 3.7s, 18s; }
.star:nth-child(20) { left: 45%;  top: 10%;  width: 2.5px; height: 2.5px; animation-delay: 3.9s, 19s; }

@keyframes twinkle {
    0%   { opacity: 0.6; box-shadow: 0 0 8px 2px #fff, 0 0 16px 4px #b3c7ff; }
    50%  { opacity: 1;   box-shadow: 0 0 12px 4px #fff, 0 0 24px 8px #b3c7ff; }
    100% { opacity: 0.6; box-shadow: 0 0 8px 2px #fff, 0 0 16px 4px #b3c7ff; }
}
@keyframes moveStar {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(20px) scale(1.1); }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}
.hero-section h1 {
    font-size: 2.9rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    color: #222;
    letter-spacing: -0.02em;
}
.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.3rem;
    font-weight: 400;
    line-height: 1.5;
}

.features-section {
  background: #fff;
  padding: 4.5rem 0 4.5rem 0;
  box-shadow: 0 0 48px 0 #e3dcfa22 inset;
}

.features-section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  background: transparent;
}

.card, .modal {
  background: linear-gradient(120deg, #23244a 60%, #191b2e 100%);
  border-radius: 1.3rem;
  border: 1.5px solid #23244a;
  box-shadow: 0 8px 32px #7f5fff22, 0 1px 2px #0008;
  color: #e5e9ff;
  padding: 2rem 1.5rem;
  margin: 1.2rem 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn, button, input[type="button"], input[type="submit"] {
  background: linear-gradient(90deg, #7f5fff 0%, #5e7fff 100%);
  color: #fff;
  border: none;
  border-radius: 2em;
  font-weight: 600;
  font-size: 1.07rem;
  box-shadow: 0 2px 16px #a259ff22, 0 1px 2px #0008;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s, transform 0.18s;
  padding: 0.65em 1.6em;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background: linear-gradient(90deg, #5e7fff 0%, #7f5fff 100%);
  color: #fff;
  box-shadow: 0 4px 32px #7f5fff88;
  transform: scale(1.045);
}
.btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background: linear-gradient(90deg, #5e7fff 0%, #7f5fff 100%);
  color: #fff;
  box-shadow: 0 4px 32px #7f5fff88;
}

input, textarea, select {
  background: #191b2e;
  color: #e5e9ff;
  border: 1.5px solid #23244a;
  border-radius: 0.8em;
  padding: 0.7em 1em;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #7f5fff11;
}
input:focus, textarea:focus, select:focus {
  border-color: #7f5fff;
  box-shadow: 0 0 0 2px #7f5fff33;
  outline: none;
}

.alert, .badge {
  background: linear-gradient(90deg, #7f5fff 0%, #5e7fff 100%);
  color: #fff;
  border-radius: 1em;
  padding: 0.7em 1.3em;
  font-weight: 600;
  box-shadow: 0 2px 12px #7f5fff33;
  margin-bottom: 1.1rem;
  display: inline-block;
}

.table {
  width: 100%;
  background: #fff;
  color: #25213b;
  border-radius: 1em;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 2px 16px #e3dcfa11;
  margin: 1.5rem 0;
}
.table th, .table td {
  padding: 1em 1.2em;
  border-bottom: 1px solid #23244a;
}
.table th {
  background: #23244a;
  color: #b3c7ff;
  font-weight: 700;
}
.table tr:last-child td {
  border-bottom: none;
}

.dropdown-menu {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 16px #e3dcfa22;
  color: #25213b;
}
.dropdown-item {
  color: #e5e9ff;
  padding: 0.7em 1.2em;
  border-radius: 0.7em;
  transition: background 0.2s;
}
.dropdown-item:hover {
  background: #7f5fff33;
  color: #fff;
}

.form-control {
  background: #191b2e;
  color: #e5e9ff;
  border: 1.5px solid #23244a;
  border-radius: 0.8em;
  padding: 0.7em 1em;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #7f5fff11;
}
.form-control:focus {
  border-color: #7f5fff;
  box-shadow: 0 0 0 2px #7f5fff33;
  outline: none;
}

.list-group {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 16px #e3dcfa11;
  padding: 0.7em 0;
}
.list-group-item {
  background: transparent;
  color: #e5e9ff;
  padding: 0.7em 1.2em;
  border-bottom: 1px solid #292b4a;
  transition: background 0.2s;
}
.list-group-item:last-child {
  border-bottom: none;
}
.list-group-item:hover {
  background: #7f5fff22;
  color: #fff;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #23244a;
  box-shadow: 0 2px 12px #7f5fff22;
  object-fit: cover;
}

.divider {
  border: none;
  border-top: 1.5px solid #eceafd;
  margin: 2rem 0;
  opacity: 0.5;
}

.shadow {
  box-shadow: 0 8px 40px #e3dcfa22, 0 1px 2px #e3dcfa11 !important;
}

.code-block, pre, code {
  background: #eceafd;
  color: #6d42e6;
  border-radius: 0.7em;
  padding: 1.1em;
  font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
  font-size: 1em;
  box-shadow: 0 2px 12px #e3dcfa11;
  overflow-x: auto;
}

.features-section h2, .features-section .lead {
    color: #e5e9ff;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
}

.features-container {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 3.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px #e3dcfa22;
  padding: 2.2rem 1.6rem 2rem 1.6rem;
  color: var(--text-main);
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, border 0.18s;
  border: 1.5px solid var(--card-border);
}

.feature-card:hover {
    border-color: #7f5fff;
    box-shadow: 0 12px 56px #7f5fff44, 0 1px 2px #0008;
    background: linear-gradient(120deg, #292b4a 60%, #23244a 100%);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
    font-weight: 700;
}
.feature-card p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .navbar-container {
        padding: 0 1rem;
    }
    .navbar-links {
        gap: 1rem;
    }
    .features-container {
        padding: 0 1rem;
    }
}
@media (max-width: 700px) {
    .navbar-links {
        gap: 0.5rem;
    }
    .navbar-links a {
        padding: 0.4em 0.6em;
        font-size: 0.9rem;
    }
    .navbar-logo {
        height: 40px;
    }
    
    .hero-section {
    position: relative;
    overflow: hidden;
  }
  .hero-blobs {
    height: 340px;
  }
  
  /* Additional responsive styles for very small screens */
  @media (max-width: 480px) {
    .navbar-logo {
      display: none;
    }
    .navbar-links {
      justify-content: center;
      width: 100%;
    }
    .navbar-links a {
      font-size: 0.85rem;
      padding: 0.4em 0.4em;
    }
  }
}
@keyframes blob-move1 {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.1) translateY(24px); }
}
@keyframes blob-move2 {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(0.96) translateY(-18px); }
}

/* === Section Background Adjustments === */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.5rem 0;
  background: linear-gradient(135deg, #fafbff 0%, #f4f3fb 100%);
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Hero blobs kaldırıldı */
