* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif !important;
}
.bg-warning{
  background-color: #FF9900 !important;
}
.text-warning{
  color: #FF9900 !important;
}
.section-header {
  background: url('/images/background.jpg');
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
  color: white;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-gradient{
  background: rgb(51,51,204) !important;
  background: linear-gradient(-160deg, rgb(60, 60, 209) 0%, rgba(20,74,85,1) 100%) !important;

}

.title{
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 5rem;                
  margin: 0;
  color: #2E465C;                 
  -webkit-text-fill-color: transparent;  
  -webkit-text-stroke: 1px #FF9900;  
  font-weight: 800;
  text-transform: uppercase;  
}

/*-----Home -> pill icon section-----*/
.custom-animated-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: #FF9900;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 0;
  transition: padding-left 0.4s ease, gap 0.4s ease, background-color 0.3s ease;
}

.custom-animated-btn .btn-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  left: 20px;
  font-size: 1.1rem;
}

.custom-animated-btn:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.custom-animated-btn:hover {
  padding-left: 48px;
  gap: 10px;
  background-color: #e68900;
}

.custom-animated-small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background-color: #FF9900;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.8rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 0;
  transition: padding-left 0.4s ease, gap 0.4s ease, background-color 0.3s ease;
}

.custom-animated-small-btn .btn-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  left: 10px;
  font-size: 0.9rem;
}

.custom-animated-small-btn:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.custom-animated-small-btn:hover {
  padding-left: 24px;
  gap: 5px;
  background-color: #e68900;
}
/*-----Home -> pill icon section-----*/


/*-----Home -> pill icon outline section-----*/
.custom-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: transparent;
  color: #FF9900;
  font-weight: 600;
  border: 2px solid #FF9900;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 0;
  transition: padding-left 0.4s ease, gap 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* İkon başlangıçta gizli */
.custom-outline-btn .btn-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  left: 20px;
  font-size: 1.1rem;
}

/* Hover’da ikon görünür */
.custom-outline-btn:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Hover’da padding sola açılır ve renk değişebilir */
.custom-outline-btn:hover {
  padding-left: 48px;
  gap: 10px;
  background-color: #FF9900;
  color: #fff;
}
/*-----Home -> pill icon outline section-----*/

/*-----Home -> hero section-----*/
.carousel-image {
  object-fit: cover;
  border-radius: 20px;
}
/*----- Home -> hero section-----*/


/*-----Home -> about section-----*/
.about{
  background-image: url('/images/bg.jpg');
}
.masked-img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 10%, 90% 100%, 0% 90%);
  transition: clip-path 0.5s ease, transform 0.4s ease;
  border-radius: 16px ;
}

.about-image:hover .masked-img {
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 10% 100%);
  transform: scale(1.03);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
/*-----Home -> about section-----*/

/*-----Home -> gallery section-----*/
.gallery-thumb {
  transition: transform 0.4s ease, filter 0.3s ease;
  border-radius: 12px;
  width: 100%;
  height: 250px; /* sabit yükseklik, ihtiyaca göre ayarla */
  object-fit: cover;
  border-radius: 12px;
}

.gallery-thumb:hover {
  transform: scale(1.05);
  filter: brightness(0.85);
}
/*-----Home -> gallery section-----*/




/*-----Home -> marquee section-----*/
.marquee {
  width: 100%;
  padding: 90px 20px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  text-align: center;
  overflow: hidden;
}

.marquee h3 {
  font-size: 94px;
  font-weight: 700;
  text-transform: uppercase;
}

.marquee .marquee-wrapper {
  width: 100000px;
  animation: marqueeAnimation 38s linear 0s infinite running;
}

.marquee h3 .marquee-title {
  margin-right: 20px;
  float: left;
}

.text-stroke-black {
  color: transparent;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: #FF9900;
}

@keyframes marqueeAnimation {
  100% {
    transform: translateX(-4600px);
  }
}

@media (max-width: 992px) {
  .marquee h3 {
    font-size: 60px;
  }
}

@media (max-width: 549px) {
  .marquee h3 {
    font-size: 50px;
  }
}
/*-----Home -> marquee section-----*/

/*----- Products -> product section-----*/
.product-card {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Görsel arka planlı header alanı */
.product-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}

.product-image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2) 50%, transparent);
  padding: 1rem;
  display: flex;
  opacity: 1;
  transition: background 0.3s ease;
}

.overlay-content h5 {
  font-size: 1.2rem;
}

.overlay-content p {
  font-size: 0.9rem;
}

.product-detail {
  background-color: #f9f9f9;
}

.detail-image-wrapper img {
  transition: transform 0.4s ease;
}

.detail-image-wrapper:hover img {
  transform: scale(1.03);
}

/*----- Products -> product section-----*/


/*----- About -> about section-----*/
.btn-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #FF9900;
  color: #FF9900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.5);
}

.btn-play:hover {
  background-color: #FF9900;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
}

.btn-play i {
  transition: transform 0.4s ease;
}

.btn-play:hover i {
  transform: rotate(90deg);
}
/*----- About -> about section-----*/


/*----- About -> value section-----*/
.modern-card {
  border: none;
  border-radius: 16px;
  transition: all 0.4s ease;
  background-color: rgba(214, 214, 214, 0.3);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #f8f9fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.icon-wrapper img {
  max-width: 60%;
  transition: transform 0.4s ease;
}

.modern-card:hover .icon-wrapper img {
  transform: scale(1.1) rotate(4deg);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
/*----- About -> value section-----*/


/*----- Contact -> contact section-----*/
.form-control {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  padding: 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-bottom: 2px solid #FF9900;
  outline: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
}

.form-control::placeholder {
  color: #aaa;
}

/*----- Contact -> contact section-----*/


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  animation: shake 4s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Shake (hafif titreşim efekti) */
@keyframes shake {
  0%, 100% { transform: translate(0); }
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(2px); }
  30%, 70% { transform: translateX(-1px); }
  40%, 60% { transform: translateX(1px); }
  50% { transform: translateX(0); }
}


/* Tablet (<= 768px) */
@media (max-width: 768px) {
  .title {
    font-size: 4rem;
    -webkit-text-stroke: 0.5px #FF9900;
  }
}

/* Mobil (<= 576px) */
@media (max-width: 576px) {
  .title {
    font-size: 2.5rem;
    -webkit-text-stroke: 0.5px #FF9900;
  }
}