/* ===== Temel Reset ve Body Ayarları ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #faf8f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Container ve Genel Layout ===== */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ===== Hero Section ===== */
.hero-section {
  padding-top: 20px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  position: relative;
  z-index: 1;
}

.hero-content-wrap h1 {
  font-weight: 800;
  font-size: 3rem;
  color: #cb1d1e;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content-wrap p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-subscribe-form input[type="submit"] {
  background-color: #cb1d1e;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-subscribe-form input[type="submit"]:hover {
  background-color: #a31719;
}

/* ===== Hero Görselleri ===== */
.hero-img-wrap {
  position: relative;
  max-width: 100%;
}

.phone-screen img,
.mac-screen img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease;
}

.phone-screen img:hover,
.mac-screen img:hover {
  transform: scale(1.05);
}

/* Animasyonlu şekiller için */
.shape-service li img.color-shape-1 {
  top: 10%;
  left: -5%;
  width: 120px;
  opacity: 0.8;
}

.shape-service li img.color-shape-2 {
  bottom: 15%;
  right: 10%;
  width: 100px;
  opacity: 0.7;
  z-index: 5;
}

.shape-service li img.color-shape-3 {
  top: 50%;
  right: 5%;
  width: 90px;
  opacity: 0.5;
}

/* ===== Feature Section ===== */
.bg-avantajlar {
  background-image: linear-gradient(90deg, #c0c0c0 40%, #e2e8f0 0);
  padding: 100px 100px;
  color: #2c3e50;
}

@media screen and (max-width: 600px) {
  .bg-avantajlar {
    background-image: linear-gradient(90deg, #e1e7ef 40%, #e2e8f0 0);
    padding: 60px 15px;
  }
}

.feature-content-wrap h4.text-primary {
  font-weight: 700;
  font-size: 1.1rem;
  color: #cb1d1e;
  margin-bottom: 0.5rem;
}

.feature-content-wrap h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: #111;
}

.feature-content-wrap p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.feature-content-wrap ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: #cb1d1e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.icon-box i {
  color: white;
  font-size: 1.3rem;
}

.icon-content {
  margin-top: 10px;
}

.icon-content h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.icon-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  padding-right: 15px;
}

.icon-box:hover {
  background-color: #a31719;
}

/* ===== Work Process Section ===== */
.work-process {
  padding: 120px 0;
}

.section-heading h4.text-primary {
  color: #cb1d1e;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-heading h2 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.section-heading p {
  font-size: 1.1rem;
  color: #666;
}

.img-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.img-wrap img:hover {
  transform: scale(1.05);
}

.work-process-list {
  list-style: none;
  padding-left: 0;
}

.work-process-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding-left: 0;
}

.process-icon-2 {
  width: 60px;
  height: 60px;
  background-color: #fff;
  color: #cb1d1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  margin-right: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.work-process-list li:hover .process-icon-2 {
  background-color: #cb1d1e;
  color: #787777;
}

.icon-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #2c3e50;
}

.icon-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* ===== Responsive Ayarlar ===== */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-content-wrap h1 {
    font-size: 2.2rem;
  }

  .feature-content-wrap h2 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content-wrap h1 {
    font-size: 1.75rem;
  }

  .hero-content-wrap p,
  .feature-content-wrap p,
  .icon-content p,
  .section-heading p {
    font-size: 0.9rem;
  }

  .feature-content-wrap h2,
  .section-heading h2 {
    font-size: 1.5rem;
  }

  .hero-subscribe-form input[type="submit"] {
    width: 100%;
  }
}

/* ===== Preloader Stil ===== */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-wrap {
  text-align: center;
}

.preloader-icon {
  height: 70px;
  width: auto;
  margin-bottom: 15px;
}

.loading-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #cb1d1e, #a31719);
  animation: loadingBarAnim 1.5s infinite ease-in-out;
  border-radius: 2px;
  margin: 0 auto;
}

@keyframes loadingBarAnim {
  0% {
    transform: scaleX(0.3);
    opacity: 0.7;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.3);
    opacity: 0.7;
  }
}


/* Navbar menü isim renkleri*/
.nav-text {
  color: rgb(91, 90, 90);
}



/* ANA SAYFA SLİDER KISMI KAYAN MENU RESPONSİVE OLMASI İÇİN */

@media (max-width: 768px) {
  .swiper-slide h1 {
    font-size: 1.5rem !important;
  }

  .swiper-slide p {
    font-size: 1rem !important;
  }

  .mini_slide {
    flex-direction: column !important;
    text-align: center;
  }

  .mini_slide img {
    width: 60px !important;
  }

  .mini_slide span {
    font-size: 0.85rem !important;
  }

  .swiper.mySwiper {
    padding-bottom: 10px;
  }
<<<<<<< HEAD
=======
}




/* Footer arka plan rengi*/
.footer-bg {
  background: linear-gradient(135deg, #031a45, #053c9a);
}

/*Ana sayfadaki */
.img-style{
max-width: 70%; 
height: auto;
>>>>>>> 01e11e4 (Yaptığın değişiklk)
}