

.hizmet-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 100px auto;
  background: linear-gradient(to bottom right, #ffffff, #f6f8fc);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hizmet-sol-kutu {
  flex: 0 0 340px;
  background-color: #1e6e5c;
  color: #fff;
  padding: 60px 30px;
  display: flex;
  align-items: center;
}

.hizmet-sol-icerik {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hizmet-sol-icerik h2 {
  font-size: 24px;
  font-weight: 700;
}

.hizmet-sag-icerik {
  flex: 1;
  padding: 60px 40px;
  box-sizing: border-box;
}

.hizmet-sag-icerik h1 {
  font-size: 36px;
  color: #1e6e5c;
  margin-bottom: 30px;
}

.hizmet-sag-icerik p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.hizmet-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hizmet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.hizmet-card i {
  font-size: 32px;
  color: #1e6e5c;
  margin-bottom: 15px;
}

.hizmet-card h3 {
  font-size: 18px;
  color: #1e6e5c;
  margin-bottom: 10px;
}

.hizmet-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .hizmet-wrapper {
    flex-direction: column;
  }

  .hizmet-sol-kutu {
    padding: 40px 20px;
    text-align: center;
  }

  .hizmet-sag-icerik {
    padding: 40px 24px;
  }

  .hizmet-sag-icerik h1 {
    text-align: center;
  }
}












/* ANAHTAR TESLİM CSS */


.anahtar-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin-bottom: 110px;
  margin: 80px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.anahtar-sol-kutu {
  flex: 0 0 350px;
  background: #1e6e5c;
  color: #fff;
  padding: 60px 30px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.anahtar-sol-icerik h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.anahtar-sol-icerik p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

.anahtar-sag-icerik {
  flex: 1;
  padding: 60px 50px;
  box-sizing: border-box;
  background: linear-gradient(to bottom right, #ffffff, #f6f8fc);
}

.anahtar-sag-icerik h1 {
  font-size: 38px;
  color: #12394b;
  margin-bottom: 24px;
}

.anahtar-sag-icerik h2 {
  font-size: 28px;
  margin-top: 60px;
  color: #1e6e5c;
  border-left: 5px solid #1e6e5c;
  padding-left: 16px;
  margin-bottom: 20px;
}

.anahtar-sag-icerik p,
.anahtar-sag-icerik ul {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.anahtar-sag-icerik ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.anahtar-sag-icerik ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}

.anahtar-sag-icerik ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #1e6e5c;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.hizmet-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hizmet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.hizmet-card i {
  font-size: 42px;
  color: #1e6e5c;
  margin-bottom: 16px;
}

.hizmet-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #12394b;
}

.hizmet-card p {
  font-size: 15px;
  color: #555;
}

@media (max-width: 768px) {
  .anahtar-wrapper {
    flex-direction: column;
  }
  .anahtar-sol-kutu {
    clip-path: none;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .anahtar-sag-icerik {
    padding: 40px 24px;
  }
  .anahtar-sag-icerik h1 {
    text-align: center;
  }
}





.yapi-danisman-wrapper {
      display: flex;
      max-width: 1400px;
      margin: 80px auto;
      background: linear-gradient(to bottom right, #ffffff, #f8fafc);
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      flex-wrap: wrap;
    }
    .yapi-danisman-sol-kutu {
      flex: 0 0 360px;
      background: #1e6e5c;
      color: #fff;
      clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
      padding: 60px 30px;
    }
    .yapi-danisman-sol-icerik {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .yapi-danisman-sol-icerik h2 {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.5;
    }
    .yapi-danisman-sol-icerik p {
      font-size: 15px;
      line-height: 1.8;
      opacity: 0.95;
    }
    .yapi-danisman-sag-icerik {
      flex: 1;
      padding: 60px 40px;
      box-sizing: border-box;
    }
    .yapi-danisman-sag-icerik h1 {
      font-size: 38px;
      color: #12394b;
      margin-bottom: 24px;
    }
    .yapi-danisman-sag-icerik h2 {
      font-size: 24px;
      color: #1e6e5c;
      margin-top: 50px;
      margin-bottom: 20px;
      border-left: 4px solid #1e6e5c;
      padding-left: 12px;
    }
    .yapi-danisman-sag-icerik p,
    .yapi-danisman-sag-icerik ul {
      font-size: 16px;
      color: #333;
      line-height: 1.7;
    }
    .yapi-danisman-sag-icerik ul {
      list-style: disc;
      padding-left: 24px;
      margin-bottom: 30px;
    }
    .yapi-danisman-card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }
    .yapi-danisman-card {
      flex: 1 1 280px;
      background: #ffffff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      text-align: center;
    }
    .yapi-danisman-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .yapi-danisman-card i {
      font-size: 40px;
      color: #1e6e5c;
      margin-bottom: 14px;
    }
    .yapi-danisman-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #12394b;
      margin-bottom: 10px;
    }
    @media (max-width: 991px) {
      .yapi-danisman-wrapper {
        flex-direction: column;
      }
      .yapi-danisman-sol-kutu {
        clip-path: none;
        border-radius: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
      }
      .yapi-danisman-sag-icerik {
        padding: 40px 24px;
      }
      .yapi-danisman-sag-icerik h1 {
        text-align: center;
      }
    }















 /* disyapi-style.css */

.disyapi-wrapper-outer {
  display: flex;
  max-width: 1400px;
  margin: 80px auto;
  background: linear-gradient(to bottom right, #ffffff, #f8fafc);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  flex-wrap: wrap;
}

.disyapi-wrapper {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

.disyapi-hero {
  text-align: center;
  margin-bottom: 60px;
}

.disyapi-hero h1 {
  font-size: 36px;
  color: #0d6e74;
  margin-bottom: 16px;
}

.disyapi-hero p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.disyapi-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  .disyapi-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .disyapi-card-container {
    grid-template-columns: 1fr;
  }
}

.disyapi-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid #0d6e74;
}

.disyapi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.disyapi-card i {
  font-size: 40px;
  color: #1e6e5c;
  margin-bottom: 20px;
}

.disyapi-card h3 {
  font-size: 20px;
  color: #12394b;
  margin-bottom: 12px;
}

.disyapi-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.disyapi-footer-note {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  border-radius: 24px;
  background: #1e6e5c;
  color: #fff;
  margin-top: 60px;
}

.yapi-danisman-sol-kutu {
  flex: 0 0 360px;
  background: #1e6e5c;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  padding: 60px 30px;
}

.yapi-danisman-sol-icerik {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yapi-danisman-sol-icerik h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.yapi-danisman-sol-icerik p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

.disyapi-footer-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.disyapi-footer-note ul li {
  padding-left: 1.5em;
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
}

.disyapi-footer-note ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

.disyapi-footer-note a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .disyapi-footer-note {
    flex-direction: column;
    text-align: center;
  }
  .yapi-danisman-sol-kutu {
    clip-path: none;
    border-radius: 20px;
  }
}








/* teknik-kesif-style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f9fc;
  color: #1f1f1f;
}

.teknik-wrapper-outer {
  display: flex;
  max-width: 1400px;
  margin: 80px auto;
  background: linear-gradient(to bottom right, #ffffff, #f8fafc);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  flex-wrap: wrap;
}

.teknik-sol-kutu {
  flex: 0 0 360px;
  background: #0d6e74;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  padding: 60px 30px;
  box-sizing: border-box;
}

.teknik-sol-icerik {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.teknik-sol-icerik h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.teknik-sol-icerik p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

.teknik-sag-icerik {
  flex: 1;
  padding: 80px 40px;
  box-sizing: border-box;
}

.teknik-sag-icerik h1 {
  font-size: 36px;
  color: #1e6e5c;
  margin-bottom: 24px;
}

.teknik-sag-icerik p,
.teknik-sag-icerik ul {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.teknik-sag-icerik ul {
  list-style: none;
  padding-left: 0;
}

.teknik-sag-icerik ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
}

.teknik-sag-icerik ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e6e5c;
  font-weight: bold;
}

.teknik-sag-icerik a {
  color: #1e6e5c;
  text-decoration: underline;
  font-weight: 600;
}

.teknik-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0 60px;
}

.teknik-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  padding: 40px 24px;
  text-align: center;
  border-bottom: 4px solid #0d6e74;
  transition: all 0.3s ease;
}

.teknik-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.teknik-card i {
  font-size: 36px;
  color: #1e6e5c;
  margin-bottom: 16px;
}

.teknik-card h3 {
  font-size: 20px;
  color: #12394b;
  margin-bottom: 12px;
}

.teknik-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .teknik-wrapper-outer {
    flex-direction: column;
  }

  .teknik-sol-kutu {
    clip-path: none;
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .teknik-sag-icerik {
    padding: 40px 24px;
  }
}







