* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Top Bar */
.top-bar {
  background-color: #8b0000;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}

.top-bar a:hover {
  color: #ffd700;
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu ul li {
  position: relative;
}

.menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s;
}

.menu ul li:hover > a {
  background: #f40108;
  color: #fff;
  border-radius: 5px;
}

.menu ul li .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 200px;
}

.menu ul li .submenu li a {
  padding: 10px 20px;
  color: #333;
}

.menu ul li .submenu li a:hover {
  background: #f40108;
  color: #fff;
}

.menu ul li:hover .submenu {
  display: block;
}

/* Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

/* Hizmetler */
.hizmetler {
  padding: 60px 0;
  background-color: #fff;
}

.hizmetler-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hizmetler .card {
  flex: 1 1 calc(25% - 20px);
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.hizmetler .card:hover {
  transform: translateY(-5px);
}

.hizmetler .card i {
  font-size: 40px;
  color: #f40108;
  margin-bottom: 15px;
}

.hizmetler .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.hizmetler .card p {
  font-size: 14px;
  color: #555;
}

/* Ekibimiz */
.crew {
  background: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

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

.crew-member {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 calc(25% - 40px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.crew-member:hover {
  transform: translateY(-5px);
}

.crew-icon {
  font-size: 40px;
  color: #f40108;
  margin-bottom: 10px;
}

.crew-member h4 {
  margin-bottom: 8px;
  color: #111;
  font-size: 18px;
}

.crew-member p {
  color: #555;
  font-size: 14px;
}


.section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}


.crew-member.big {
  flex: 1 1 calc(50% - 40px);
}


.crew-grid + .crew-grid {
  margin-top: 40px;
}


.counter-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.counter-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.counter-box {
  background: #f7f7f7;
  padding: 30px 20px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.counter-box i {
  font-size: 40px;
  color: #f40108;
  margin-bottom: 10px;
}

.counter {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.counter-box p {
  font-size: 16px;
  color: #555;
}


/* === Footer === */
.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 0 30px 0;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 calc(33.333% - 30px);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f40108;
}

.footer-col p,
.footer-col ul {
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-credit {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #aaa;
}

.footer-credit strong {
  color: #fff;
}


/* === Page Content === */
.page-content {
  margin: 60px 0;
  animation: fadeIn 1s ease;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* === Certificates === */
.certificate-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.certificate-box {
  text-align: center;
  max-width: 300px;
}

.certificate-box img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 15px;
}

.certificate-box p {
  font-size: 14px;
  color: #555;
}


/* === HANCIOĞLU'NUN AVANTAJLARI === */
.info-boxes {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.info-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1 1 calc(25% - 30px);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.info-card i {
  font-size: 40px;
  color: #f40108;
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.info-card p {
  font-size: 14px;
  color: #555;
}
