* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0f; /* tam koyu renk */
    color: #fff;
}



/* “Neden Biz” kısmı beyaz başlasın */
.neden-biz {
    background: #fff;
    color: #111;
    position: relative;
}


a {
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 0 300px;
    height: 70px;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    transform: scale(2.); /* 🔥 logo orantılı büyür */
    transform-origin: left center; /* sola hizalı büyüsün */
}

.logo img {
    height: 90%;
    width: auto;
    object-fit: contain;
}


  

.logo h1 {
    font-size: 16px;
    font-weight: 700;
}

.logo span {
    font-size: 12px;
    color: #aaa;
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.menu a:hover,
.menu a.active {
    color: #fff;
}

.admin-btn {
    background: #e32828;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
}

/* Hero Section */
/* Koyu alanı bir tam ekran kadar uzatmak için */
.hero::after {
    content: "";
    display: block;
    height: 50vh; /* 1 tam sayfa koyu alan */
    background: #0a0a0f; body’den biraz daha açık koyuluk
}


.hero {
    text-align: center;
    margin-top: 100px;
}


.tagline span {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #d83434;
    border-radius: 20px;
    color: #d83434;
    font-size: 14px;
    margin-bottom: 20px;
    background: rgba(255, 0, 0, 0.05);
}

.hero h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero h2 span {
    color: #d83434;
}

.hero p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

.buttons {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.call-btn,
.service-btn {
    padding: 25px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.call-btn {
    background: #d83434;
    color: #ff
}



.hero2::after {
    content: "";
    /* display: block; */
    height: 50vh; /* 1 tam sayfa koyu alan */
    background: #0a0a0f; /* body’den biraz daha açık koyuluk */
}


.hero2 {
    text-align: center;
    margin-top: 100px;
}


.tagline2 span {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #d83434;
    border-radius: 20px;
    color: #d83434;
    font-size: 14px;
    margin-bottom: 20px;
    background: rgba(255, 0, 0, 0.05);
}

.hero2 h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero2 h2 span {
    color: #d83434;
}

.hero2 p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

.buttons2 {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.call-btn2,
.service-btn2 {
    padding: 25px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.call-btn2 {
    background: #d83434;
    color: #ff
}





.neden-biz {
    background: #fff;
    color: #111;
    padding: 100px 10%;
    text-align: center;
}

.neden-biz h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.card h3 {
    color: #d83434;
    margin-bottom: 15px;
    font-size: 18px;
}

.card p {
    color: #555;
    font-size: 15px;
}

.card2 {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: 0.3s;
}

.card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.card2 h3 {
    color: #d83434;
    margin-bottom: 15px;
    font-size: 18px;
}

.card p {
    color: #555;
    font-size: 15px;
}

/* Hizmetlerimiz */
.hizmetler {
    background: #fafafa;
    padding: 100px 10%;
    text-align: center;
}

.hizmetler h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service h3 {
    color: #d83434;
    margin-bottom: 12px;
}

.service p {
    color: #444;
    font-size: 15px;
}

footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* --- 2. Scrollbar kırmızı-beyaz tasarımı --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #ff0000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ff0000;
}

.mouseicon {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.mouseicon.hide {
  opacity: 0; /* kaybolma efekti */
}

.mouseicon svg {
  width: 44px;
  height: auto;
}

.scroll {
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}






.about {
  background: #fff;
  color: #111;
  padding: 100px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000000;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #000;
}

.about-image {
  flex: 1 1 45%;
  background: url("../images/stok1.jpg") center center/cover no-repeat;
  border-radius: 20px;
  min-height: 400px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
}



.hizmetler {
  background: #fafafa;
  color: #111;
  padding: 100px 10%;
  text-align: center;
}

.hizmetler h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000000;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #d83434;
}

.service h3 {
  color: #111;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}





.iletisim {
  background: #fff;
  color: #111;
  padding: 100px 10%;
  text-align: center;
}

.iletisim h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #000000;
}

.iletisim-container {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.iletisim-info {
  flex: 1 1 45%;
  text-align: left;
}

.iletisim-info p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #000;
}

.iletisim-info a {
  color: #ff0000;
  text-decoration: none;
}

.iletisim-form {
  flex: 1 1 45%;
}

.iletisim-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.iletisim-form input,
.iletisim-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.iletisim-form button {
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: #ff0000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.iletisim-form button:hover {
  background: #000000;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .iletisim-container {
    flex-direction: column;
  }
  .iletisim-info,
  .iletisim-form {
    flex: 1 1 100%;
    text-align: center;
  }
  .iletisim-info p {
    text-align: center;
  }
}




/* Mobil Destek */



/* ---- HERO BEYAZ PARLAMA EFEKTİ ---- */
.hero {
  position: relative;
  overflow: hidden;
}


/* ---- RESPONSIVE NAVBAR ---- */
.navbar {
  padding: 0 40px;
  height: 70px;
  position: relative;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

@media (max-width: 992px) {
  .navbar {
    padding: 0 20px;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    text-align: center;
    gap: 10px;
    padding: 20px 0;
    z-index: 999;
  }

  .menu a {
    font-size: 1.1rem;
    color: #ccc;
  }

  .menu.active {
    display: flex;
    animation: fadeIn 0.4s ease-in-out;
  }

  .menu-toggle {
    display: flex;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Menü açılınca X işaretine dönüşsün */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


