:root {
  --faq-bg-color: #0a0e14; /* Karanlık ama biraz mavimsi alt ton */
  --card-bg-color: #12181f; /* Kartlar için koyu ton */
  --main-bg-color: #090c12; /* Ana arka plan için daha derin bir ton */
  --accent-color: #08fdd8; /* Neon yeşil-mavi (vurgular için) */
  --secondary-accent-color: #ff6f61; /* Neon kırmızı-turuncu (ikincil vurgular) */
  --text-color: #c9d1d9; /* Ana metin için yumuşak beyaz */
  --muted-text-color: #6b7280; /* Açıklama ve alt metinler */
  --border-color: #1f2937; /* Kartlar ve kutular için bölme çizgisi */
  --button-hover-color: #1e293b; /* Buton hover arka plan */
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: 'Roboto', sans-serif;
  background: var(--main-bg-color);
  color: #c9d1d9;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}


.bg-home{
  background: #000;
 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* Navbar */
.navbar {
   
  color: #fff;
  position: sticky; /* Navbar ekrana sabit */
  top: 0;
  z-index: 1000;
  margin: 7px;
}

.header {
  max-width: 66.666667%; /* max-w-7xl değeri (112rem = 1792px) */
  margin: 0 auto; /* Ortalamak için */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px; /* İçerik boşluğu */
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Logo */
.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* Navbar Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
}

.nav-links a:hover {
  background-color: #1e90ff;
  color: #fff;
  transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start; 
    gap: 10px;
    background-color: #121212;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%; /* Tam genişlik */
    padding: 15px; /* İç boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%; /* Linkler tam genişlikte */
  }

  .nav-links a {
    padding: 10px;
    text-align: left; /* Metni sola hizala */
  }
}

@media (max-width: 768px) {
  .header {
    max-width: 100%;
    align-items: flex-start;
  }

  .container {
    max-width: 100%;
    align-items: flex-start;
  }

  .nav ul {
      flex-direction: column;
      gap: 15px;
      margin-top: 10px;
  }

  .nav ul li a {
      font-size: 1rem;
  }
 
}

.main-wrapper {
  position: relative;
  top:-63px;
  width: 100%; /* Full width */
  overflow: hidden; /* Taşmaları engelle */
}

.bg-overlay {
  background-image: url('/frontend/images/01.png'), linear-gradient(to right, #23d5b308, #1354a826);
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;  /*  */
  opacity: 0.9; /*  */
}


.main {
  position: relative; /* İçeriği üstte göstermek için */
  text-align: center;
  padding: 100px 5%;
  background: none; /* Arka planı şeffaf bırak */
  margin-top: 80px;
  max-width: 70%; /* İçerik genişliğini %70'e sınırla */
  width: 100%;
  margin-left: auto;
  margin-right: auto; /* Merkezi hizalama */
  z-index: 1; /* Üstte görünmesi için */
}

.main h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 900;
}

.main p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #8b949e;
}

 
 

/* Responsive Design */
@media (max-width: 768px) {
  .main {
    max-width: 100%; /* Mobilde içeriği %90 yap */
    margin-top: 0; /* Mobilde margin-top kaldır */
  }

  .main h1 {
    font-size: 2rem; /* Daha küçük cihazlarda başlık boyutunu küçült */
  }

  .main p {
    font-size: 1rem; /* Mobil için paragraf boyutunu küçült */
  }

  .cta-button {
    padding: 10px 20px; /* Buton boyutunu mobil cihazlar için küçült */
    font-size: 0.9rem; /* Daha kompakt yazı boyutu */
  }
}

/* features Design */
.features {
 
  background-color: var(--main-bg-color);
}

.features-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features-divider {
  width: 80px;
  height: 4px;
  background-color: #58a6ff;
  margin: 20px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background-color: var(--card-bg-color);;
  border: 1px solid var(--faq-bg-color);;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #58a6ff;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-item p {
  font-size: 1rem;
  color: #8b949e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-title {
    font-size: 2rem;
  }

  .features-grid {
    gap: 20px;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
}

/* dashboard */

.dashboard-section {
  padding: 60px 20px;
  background-color: var(--main-bg-color);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
}

.dashboard-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dashboard-content {
  text-align: left;
}

.dashboard-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.dashboard-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #8b949e;
}

@media (max-width: 768px) {
  .dashboard-content h2 {
    font-size: 2rem;
  }

  .dashboard-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}


/* 
info */

.info-section {
  padding: 60px 20px;
  background-color: var(--main-bg-color);
}

.info-block {
  margin-bottom: 60px;
}

.info-block h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #58a6ff;
  margin: 10px auto 20px;
}

.info-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #8b949e;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-block h2 {
    font-size: 1.6rem;
  }

  .info-block p {
    font-size: 1rem;
    line-height: 1.6;
  }
}


/* pricing  */


.pricing-section {
 
  background-color: var(--main-bg-color);
}

.pricing-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #8b949e;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.pricing-card {
  background-color: var(--card-bg-color);;
  border: 1px solid var(--faq-bg-color);;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.plan-price {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #58a6ff;
}

.plan-price span {
  font-size: 1rem;
  color: #8b949e;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  color: #c9d1d9;
}

.plan-features li {
  margin-bottom: 10px;
}

.plan-features .not-included {
  color: #8b949e;
  text-decoration: line-through;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #58a6ff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #58a6ff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.login-button:hover {
  background-color: #58a6ff;
  color: var(--main-bg-color);
  transform: scale(1.05);
}

.cta-button:hover {
  background-color: #58a6ff;
  color: var(--main-bg-color);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }

  .plan-price {
    font-size: 1.8rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}


/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background-color: var(--main-bg-color);
  color: #c9d1d9;
}
 

.faq-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
}

.faq-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #8b949e;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq-item {
  background-color: var(--card-bg-color);;
  border: 1px solid var(--faq-bg-color);;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  color: #c9d1d9;
  font-size: 1.2rem;
  text-align: left;
  padding: 15px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background-color: var(--faq-bg-color);;
}

.faq-icon {
  font-size: 1.5rem;
  color: #58a6ff;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color:#0000003d;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-size: 1rem;
  margin: 15px 0;
  color: #8b949e;
}

/* Active Styles */
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust height based on content */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}


/* Footer Section */
.footer {
  background-color: var(--main-bg-color);
  color: #8b949e;
  padding: 20px 0;
  text-align: center;
}
 
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-content p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  color: #58a6ff;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.services {
  padding: 80px 20px;
  background-color: #1e2129;
  text-align: center;
}

.services h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.services hr {
  border: 0;
  height: 2px;
  background-color: #fff;
  width: 60px;
  margin: 20px auto;
  border-radius: 1px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-block {
  background-color: #272b33;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 350px;
  width: 100%;
}

.team-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.services-img {
  width: 100%;
  overflow: hidden;
}

.services-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.services-img img:hover {
  transform: scale(1.05);
}

.services-content {
  padding: 20px;
  color: #fff;
  text-align: left;
}

.services-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #fff;
}

.services-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
