@charset "utf-8";
/* CSS Document */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
}

.slide-left img {
 
  height: 300;
  object-fit: cover;
}

.slide-right {
  padding: 60px;
  max-width: 600px;
	opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.slide.active .slide-right {
  opacity: 1;
  transform: translateY(0);
}
.slide-left img {
  transition: transform 1.2s ease;
}

.slide.active img {
  transform: scale(0.95);
}
	.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
	.prev, .next {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.prev:hover, .next:hover {
  background: #c00000;
}

.left img {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
	/* TEXT ZOOM-IN EFFECT */
.right h1,
.right p {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.slide.active .right h1,
.slide.active .right p {
  opacity: 1;
  transform: scale(1);
}
.prev { left: 20px; }
.next { right: 20px; }
@media (max-width: 992px) {
  .slider {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .slider {
    height: auto;
    min-height: auto;
  }

  .slide {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  .left img {
    height: 300px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #ffffff;
  padding: 50px 60px;
  height: 60vh;
  
  border-radius: 14px;
  text-align: center;
  position: relative;
  animation: fadeZoom 0.5s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.modal-content h1 {
  font-size: 36px;
  margin: 10px 0;
  letter-spacing: 1px;
}

.modal-content h2 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

.modal-content p {
  margin: 20px 0 30px;
  color: #555;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #c00000; /* brand accent */
}

.close {
  position: absolute;
  top: 18px;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close:hover {
  color: #000;
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.launch-section {
  padding: 80px 10%;
}

.launch-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.launch-image img {
  width: 100%;
  border-radius: 15px;
}

.launch-text h2 {
  font-size: 36px;
  margin: 15px 0;
}

.launch-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 25px;
}
.bamixsection {
  margin-top: 10vh;
}

.slidestyle {
    color:#c00000;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 42px;
    font-weight: 600; /* bold */
    text-align: left;
}
.slidestyle1 {
    color:#c00000;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    
}

.p-red,.p-hover-red:hover{color:#f1f1f1!important;background-color:#c00000!important}