* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigasyon Menüsü */
.navbar {
  background-color: #093265;
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 70px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
}

.nav-links a:hover {
  color: #5ce1e6;
}

.nav-links .btn {
  background-color: #5ce1e6;
  padding: 8px 16px;
  border-radius: 4px;
  color: #093265;
  font-weight: bold;
}

.nav-links .btn:hover {
  background-color: #4bc0c0;
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 2px 0;
}

/* Hero Bölümü (Slider) */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  top: 80px;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slide.active {
  display: flex;
}

.slide-content {
  padding: 30px;
  border-radius: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Metin gölgesi */
}

.slide h1 {
  font-size: 45px;
  margin-bottom: 8px;
}

.slide p {
  font-size: 16px;
  margin-bottom: 70px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #5ce1e6;
}

/* Hakkında Bölümü */
.about {
  padding: 70px 0;
  background-color: white;
  text-align: center;
}

.about h2 {
  color: #093265;
  margin-bottom: 30px;
  font-size: 36px;
}

.about p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: #555;
}

/* Hizmetler Bölümü */
.services {
  padding: 70px 0;
  background-color: #f4f4f4;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #093265;
}

.services h3 {
  text-align: center;
  margin: 30px 0 20px;
  color: #093265;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: #5ce1e6;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
  margin-bottom: 10px;
  color: #093265;
  font-size: 18px;
}

.service-item p {
  font-size: 16px;
  color: #666;
}

/* Projeler Bölümü */
.projects {
  padding: 70px 0;
  background-color: white;
}

.projects h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #093265;
}

.project-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-row {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-row:hover {
  transform: translateY(-5px);
}

.project-row.production {
  border-left: 5px solid #4bc0c0;
}

.project-row.hr {
  border-left: 5px solid #ffce56;
}

.project-row.web {
  border-left: 5px solid #36a2eb;
}

.project-row h3 {
  font-size: 20px;
  color: #093265;
  margin-bottom: 10px;
  text-align: center;
}

.project-row p {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 15px;
}

.project-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.project-item {
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-image:hover {
  transform: scale(1.1);
}

/* Modal Stilleri */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #5ce1e6;
}

/* İletişim Bölümü */
.contact {
  padding: 70px 0;
  background-color: #f4f4f4;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #093265;
}

.contact-info {
  display: grid;
  grid-template-columns: max-content;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item i {
  font-size: 24px;
  color: #093265;
  margin-right: 15px;
}

.contact-item p {
  margin: 0;
  font-size: 16px;
}

.contact-item a {
  color: #5ce1e6;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #093265;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #093265;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .slide h1 {
    font-size: 32px;
  }

  .slide p {
    font-size: 16px;
  }

  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 16px;
  }

  .project-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-image {
    height: 120px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}