* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Urbanist', sans-serif;
  background-color: white;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Top Header */
.top-header {
  background-color: #061b37;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.top-header .left-info i {
  margin-right: 6px;
  color: #f7b100;
}

.top-header .left-info span {
  margin-right: 20px;
}

.top-header .right-social a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.top-header .whatsapp-btn {
  background-color: #25D366;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
  margin-left: 20px;
  font-weight: bold;
}

.top-header .right-social a:hover {
  color: #f7b100;
}

/* Main Nav */
.main-nav {
  position: relative; /* veya hiç verme */
  top: auto; /* veya hiç verme */
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0,0,0,0.05);
  padding: 15px 0;
  z-index: 100;
}

.main-nav .logo {
  display: flex;
  align-items: center;
}

.main-nav .logo img {
  width: 50px;
  margin-right: 15px;
}

.main-nav .logo h1 {
  font-size: 20px;
  color: #061b37;
}

.main-nav .logo h1 span {
  font-weight: 400;
  font-size: 14px;
  display: block;
  color: #666;
}

.main-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav .nav-links li a {
  text-decoration: none;
  color: #061b37;
  font-weight: 600;
  transition: 0.3s;
}

.main-nav .nav-links li a:hover {
  color: #f7b100;
}

/* Responsive */
@media(max-width: 992px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-header {
    text-align: center;
  }

  .main-nav .nav-links {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }

  .main-nav .logo {
    margin-bottom: 10px;
  }
}
/* Dropdown Menü için */
.nav-links .dropdown {
  position: relative;
}
.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 5px;
  display: none;
  min-width: 250px;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #061b37;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  
}

.dropdown-menu li a:hover {
  background-color: #f7b100;
  color: #fff;
}

.swiper {
      width: 100%;
      height: 100vh;
      position: relative;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .slide1 { background-image: url('resimler/slider1.jpg'); }
    .slide2 { background-image: url('resimler/slider2.jpg'); }
    /* İstersen farklı resimler için slide2, slide3... ekleyebilirsin */

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1;
    }

    .content {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 2;
    }

    .content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .btn-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 24px;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn.yellow {
      background-color: #f7b100;
      color: #fff;
    }

    .btn.white {
      background-color: #fff;
      color: #061b37;
      border: 2px solid #fff;
    }

    .btn:hover {
      transform: scale(1.05);
    }

    .swiper-button-next, .swiper-button-prev {
      color: #fff;
      z-index: 3;
    }

    @media(max-width: 768px) {
      .content h2 {
        font-size: 1.5rem;
        padding: 0 15px;
      }
    }
    @keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.content h2, .btn-group {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.content h2 {
  animation-delay: 0.3s;
}

.btn-group {
  animation-delay: 0.6s;
}

.parallax-section {
  background-image: url('resimler/kepce.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* solukluk ayarı */
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.text-column {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.text-column h2 {
  font-size: 32px;
  font-weight: 700;
  color: #061b37;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #061b37;
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background-color: #0c2d5c;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.image-column {
  flex: 1;
  text-align: center;
}

.image-column img {
  max-width: 400px;
  width: 100%;
}

/* Responsive */
@media(max-width: 768px) {
  .parallax-section .container {
    flex-direction: column;
    text-align: center;
  }

  .text-column {
    padding-right: 0;
  }

  .image-column {
    margin-top: 30px;
  }
}
.hizmetler-bolumu {
  padding: 80px 20px;
  background-color: #fff;
}

.hizmetler-ust {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.sol-kisim span {
  color: #f7b100;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.sol-kisim h2 {
  font-size: 32px;
  color: #061b37;
  margin-top: 5px;
}

.sag-kisim {
  max-width: 600px;
}

.sag-kisim p {
  margin-bottom: 20px;
  color: #333;
}

.hizmet-btn {
  background-color: #f7b100;
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.hizmet-btn:hover {
  background-color: #d99800;
}

.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hizmet-kutu {
  display: block;
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.hizmet-kutu:hover {
  transform: scale(1.02);
}

.kutu-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  transition: background 0.3s ease;
}

.hizmet-kutu:hover .kutu-overlay {
  background: linear-gradient(to top, rgba(247,177,0,0.7), rgba(247,177,0,0));
}

.kutu-overlay span {
  font-size: 13px;
  color: #f7b100;
  display: block;
  margin-bottom: 5px;
}

.kutu-overlay h3 {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

/* Mobil */
@media(max-width: 768px) {
  .hizmetler-ust {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.istatistik-bolumu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 500px;
}

.istatistik-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.istatistik-left,
.istatistik-right {
  flex: 1;
  min-width: 300px;
  padding: 60px 40px;
  color: white;
}

.istatistik-left {
  background: url('resimler/kepce.jpg') center center no-repeat;
  background-size: cover;
  position: relative;
}

.istatistik-left::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,50,0.8);
  z-index: 1;
}

.istatistik-left .istatistik-content {
  position: relative;
  z-index: 2;
  color: white;
}

.istatistik-right {
  background-color: #061b37;
}

.istatistik-content .etiket {
  color: #f7b100;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.istatistik-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.istatistik-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.btn-sari {
  display: inline-block;
  background-color: #f7b100;
  color: white;
  padding: 14px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-sari i {
  margin: 0 5px;
}

.btn-sari:hover {
  background-color: #d99800;
}

.istatistik-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  margin-top: 30px;
}

.istatistik-box {
  text-align: left;
  color: white;
}

.istatistik-box i {
  font-size: 30px;
  color: #f7b100;
  margin-bottom: 10px;
}

.istatistik-box h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

.istatistik-box p {
  margin: 5px 0 0;
  color: #f7b100;
}

/* Mobil */
@media(max-width: 768px) {
  .istatistik-grid {
    grid-template-columns: 1fr;
  }

  .istatistik-bolumu {
    flex-direction: column;
  }
}
.cozumler-section {
  background: url("img/bg.jpg") no-repeat left center;
  background-size: cover;
  padding: 80px 20px;
  color: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.cozumler-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1d3557;
}

.cozumler-section .description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-box {
  background-color: rgba(255, 255, 255, 0.92);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.service-box img {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(1) sepia(1) hue-rotate(-20deg) saturate(10) contrast(1);
}

.service-box h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
  color: #333;
  min-height: 80px;
}

.service-box a {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #f39c12;
  text-decoration: none;
}

.service-box a:hover {
  text-decoration: underline;
}
.page-banner {
  background-image: url('resimler/kepce.jpg'); /* senin görselin buraya */
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 27, 55, 0.85); /* lacivert overlay */
  z-index: 0;
}

.page-banner .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-banner h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 16px;
}

.page-banner p a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.page-banner p span {
  color: #f7b100;
  font-weight: bold;
}
.hakkimizda {
  padding: 60px 20px;
  background-color: #fff;
  color: #061b37;
  font-family: 'Urbanist', sans-serif;
}

.hakkimizda-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hakkimizda .alt-baslik {
  color: #f7b100;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hakkimizda h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #061b37;
}

.hakkimizda h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.hakkimizda p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.hakkimizda ul {
  margin-left: 20px;
  list-style: none;
  padding-left: 0;
}

.hakkimizda ul li {
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.hakkimizda ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #f7b100;
}
.iletisim-bolumu {
  padding: 60px 20px;
  font-family: 'Urbanist', sans-serif;
  background: #fff;
  color: #061b37;
}

.iletisim-kapsayici {
  max-width: 1300px;
  margin: auto;
}

.iletisim-kutular {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.iletisim-kutu {
  flex: 1;
  background-color: #061b37;
  color: white;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
  min-width: 250px;
}

.iletisim-kutu i {
  font-size: 28px;
  color: #f7b100;
  margin-bottom: 10px;
  display: block;
}

.iletisim-kutu h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.iletisim-kutular p {
  font-size: 15px;
  line-height: 1.5;
}

.iletisim-form-kapsam {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.iletisim-form {
  flex: 1;
  min-width: 300px;
}

.iletisim-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}

.iletisim-form .ciftli {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.iletisim-form input,
.iletisim-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background: #f7f7f7;
  border-radius: 5px;
  font-size: 14px;
}

.iletisim-form textarea {
  resize: vertical;
}

.iletisim-form button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #061b37;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.iletisim-form button:hover {
  background: #f7b100;
  color: #061b37;
}

.harita {
  flex: 1;
  min-width: 300px;
}
