@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}


/* Navbar */
#navbar {
    transition: all 0.5s ease;
}

.navbar {
    justify-content: space-between;
}


.navbar-nav {
    flex-direction: row;
    justify-content: center;
}

.nav-link {
    font-size: 18px !important;
}
.logo {
    width: 89px;

}


.language-select img {
    width: 35px;
    
}

.language-select {
    display: flex;
    margin-right: 2rem;
    align-items: center;
}

.alibaba-logo {
    color: rgba(255, 90, 0) !important;
}

.alibaba-logo:hover {
    transition: .3s all;
    color: rgba(0, 0, 0) !important;
}

/* Slider */
#carouselExampleIndicators {
    margin-top: 5rem;
}

/* Content */
.icon-text {
    font-size: .9rem;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgb(255 255 255) !important;
}


/* Popular Category */

.banner-button {
  position: absolute;
  top: 85%; 
  left: 50%;
  transform: translate(-50%, -50%);
}

.category-card {
    padding: 20px;
    border-radius: 8px;
    /* background-color: beige; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  .category-card img {
    max-width: 50px;
    margin-right: 15px;
  }
  .category-text h5 {
    font-weight: bold;
    margin: 0;
  }
  .category-text p {
    margin: 0;
  }



    /* Box */
    .feature-box {
        background: linear-gradient(90deg, rgb(126, 172, 181) 0%, #7EACB5 100%);
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .feature-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
      }
      .feature-box h5 {
        color: #fff;
        font-weight: bold;
      }

      .border-2x {
        border: 2px solid rgba(255, 255, 255,.4);
        border-radius: 8px;
      }

      .centered-text {
        margin: 0 auto; 
        max-width: 800px; 
        text-align: justify; 
        padding: 20px;  
        line-height: 1.6; 
      }


      body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
      }


      html {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }
    
    .banner {
        background-image: url('your-image.jpg'); /* Buraya arka plan resmi ekle */
        background-size: cover;
        background-position: center;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .overlay {
        background-color: rgba(0, 0, 0, 0.5); 
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .h1 {
        color: white;
        font-size: 36px;
        text-align: center;
        padding: 20px;
        line-height: 1.4;
    }
    

 .form-image {
    position: relative;
    top: -140px;
    left: 530px;
 }




 /* About Us */
 .fs-about {
    font-size: 5rem !important;
 }
 .contact-section h2 {
    font-size: 2.5rem;
}
.contact-section p {
    font-size: 1.1rem;
}
.contact-section .form-label {
    font-size: 1.1rem;
}
.social-icons a {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #007bff;
}

 
 .about-primary {
    padding: 9rem 0;
    background: url(assets/about-us.png) no-repeat center center; 
    background-size: cover; /* Arka planın tam görünmesi için */
    color: #fff;
}

 
 
 .about-secondary {
    padding: 9rem 0;
    background: url(assets/AndHome_Icon_2.png) no-repeat;
    background-size: 100%;
 }

 
 .about-third {
    padding: 9rem 0;
    background: url(assets/AndHome_Icon_1.png) no-repeat;
    background-size: 100%;
 }

 .about-fourth {
    padding: 9rem 0;
 }


 /* Product */
 .product-bg {
    background: url(assets/product-bg.png);
    background-size: 100%;
 }


.card:hover {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
}


.card-img-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  text-align: center;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}


.buttons{
  display:flex;
  gap:5px;
}

.card .btn{
  display:inline-flex;          /* flex'e geç */
  align-items:center;           /* dikey ortala */
  justify-content:center;       /* yatay ortala */
  /* width:100px;  <- KALDIR */
  /* height:40px;  <- KALDIR (veya tutacaksan padding'i sıfırla) */
  line-height:1;                /* metin taşmasını önler */
  white-space:nowrap;
}

/* İstersen daha kompakt görünüm için sadece padding ayarla */
.btn-outline-dark{
  font-weight:500;
  border-radius:50px;
  padding:8px 16px;             /* genişliği padding belirlesin */
}

/* Kartı dikey akış: içerik normal genişlikte kalsın */
.product-card .card{
  display:flex;
  flex-direction:column;
  align-items:stretch  !important;        /* center DEĞİL */
  height:100%;
}

/* Başlık alanı esnesin, butonları alta itsin */
.product-card .overlay{
  flex:1 1 auto;
}

/* Buton satırı (TEK sürüm) */
.product-card .buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  align-items:center;
  margin-top:auto;           /* her zaman kartın altında kalsın */
  padding:.5rem 0;
  width:100%;
}
.product-card .buttons .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  line-height:1.1;
  padding:.5rem 1rem;
  border-radius:50px;
  font-weight:500;
}
/* px-5 py-1 kullanıldıysa taşmayı önlemek için normalize et */
.product-card .buttons .btn.px-5.py-1{padding:.5rem 1rem!important}


/* md ve üzeri: yana diz, otomatik genişlik */
@media (min-width: 768px){
  .product-card .buttons .btn{
    flex:0 0 auto;       /* içeriğe göre */
  }
}


@media (max-width: 992px) {
    .language-select {
        display: none;
    }

    .navbar-nav .language-select {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}


@media (min-width:1280px) and (max-width:1300px) {
    .form-image {
      top: -140px;
      left: 220px;
   }
  
   }
  
   @media (min-width:1300px) and (max-width:1500px) {
    .form-image {
      top: -100px;
      left: 252px;
   }
   }

   @media (min-width:2100px) {
    .form-image {
      display: none;
   }
   }





