body {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}


/* Navbar linkleri */
.navbar .nav-link {
  position: relative;
  color: #1D283D !important;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 6px; /* alt çizgi için boşluk */
  transition: color 0.3s ease;
}
.top-bar
{
	color:#fff;
}
.top-bar  span  a
{
	color:#fff;
	text-decoration: none;
	transition: all 0.5s ease, left 0.5s ease;
}
.top-bar  span  a:hover
{
	color:#BEA91D;
	text-decoration: underline;
	
	
}

/* Alt çizgi pseudo-element */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #61090B;
  transition: width 0.5s ease, left 0.5s ease;
}

/* Hover, focus, active durumları */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #61090B !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  width: 100%;
  left: 0;
}
/* Navbar Toggler (Mobil Menü Butonu) */
.navbar-toggler {
  border: none; /* default border kaldır */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%231D283D' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2361090B' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar {
    background-color: #FFF;
    padding: 10px;
    color: #1D283D;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
/* Neden Biz bölümü */
#neden-biz {
  background-color: #1D283D;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

#neden-biz h2 {
  color: #fff;
  margin-bottom: 40px;
}

#neden-biz .col-md-4 h4 {
  color: #fff;
  margin-bottom: 15px;
}

#neden-biz .col-md-4 p {
  color: #f0f0f0;
}

#neden-biz .col-md-4 i {
  font-size: 2rem;
  color: #fff; /* istersen #61090B da olabilir */
  margin-bottom: 15px;
}
/* Mobilde Neden Biz kolonları arasında ayırıcı çizgi */
@media (max-width: 767.98px) {
  #neden-biz .row > .col-md-4:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* yarı şeffaf beyaz */
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}


/* Neler Dediler? Bölümü */
#neler-dediler {
  background-color: #f8f9fa;
  color: #333;
}

.testimonial {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: bold;
  color: #1D283D;
}



/* Testimonial wrapper */
.testimonials-wrapper {
  gap: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  display: flex;
  overflow-x: auto;
}

.testimonial-card {
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px #1D283D;
  padding: 20px;
	margin:10px;
  background-color: #fff;
  text-align: center;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 1rem;
  color: #333;
}

.testimonial-card strong {
  display: block;
  margin-top: 5px;
  color: #1D283D;
}
/* Butonları dışarıya taşı */
  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.6);
  }
/* Mobilde sadece tek kart görünür */
@media (max-width: 767.98px) {
  .carousel-item .col-md-4.d-none.d-md-block {
    display: none !important;
  }
  .carousel-item .col-12.col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  
}
@media (min-width: 780px) {
  .carousel-item {
	height:90vh;
	width: 100%;
  }

  
}

/* FOOTER*/
footer {
  font-size: 1rem;
	background-color: #1D283D;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #E0CF0D;
  text-decoration: underline;
}

footer h5 {
  color: #ffffff;
  margin-bottom: 15px;
}

footer i {
  color: #ffffff;
}

/*Whatsapp */

.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50px;
  padding: 0 20px 0 15px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  text-decoration: none;
}

.whatsapp-button i {
  font-size: 2rem;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.05);
}

.whatsapp-text {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Basit yukarı-aşağı animasyon */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Mobilde biraz daha küçük ve ikon-only yapabiliriz */
@media (max-width: 575px) {
  .whatsapp-button {
    padding: 0;
    width: 60px;
    border-radius: 50%;
    justify-content: center;
  }
  .whatsapp-text {
    display: none;
  }
}

/*Hizmetlerimiz */ 
.service-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.service-box i {
  color: #0a2a66; /* senin lacivert tonun */
}
.service-img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

/* Navbar başlangıç yüksekliği ve geçiş */
.navbar {
  transition: all 0.3s;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar.shrink {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  /*border-bottom:2px #1D283D solid;*/
  box-shadow: 0px 0px 5px 2px #1D283D !important;
}

/* Logo geçişi */
.navbar-brand img {
  transition: all 0.3s;
  max-height: 60px; /* başlangıç */
}

.navbar.shrink .navbar-brand img {
  max-height: 30px !important; /* %50 küçülme */
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  background-color: #1D283D; /* Tekin Express lacivert rengi */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9999;
}

#scrollTopBtn:hover {
  background-color: #61090B; /* Hover rengi */
  transform: translateY(-5px);
}

/* sosyal ikonların ayarları */
.social-icon
{
	
}
.social-icon:hover
{
	color: #1D283D !important;
	text-shadow:0 0 10px white;
}