body {
  box-sizing: border-box;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-pulse-custom {
  animation: pulse 2s ease-in-out infinite;
}

.animate-rotate {
  animation: rotate 20s linear infinite;
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.section-visible {
  opacity: 0;
}

.section-visible.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

ul button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-transform: capitalize;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 5px;
  transition: 0.4s;
}

ul button:hover {
  opacity: 0.8;
  scale: 0.9;
}

.more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #000; */
}

.more button {
  text-transform: capitalize;
  font-weight: bold;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8px 20px;
  border-radius: 4px;
  color: white;
  transition: 0.4s ease-in;
}
#prod{
  animation: pro 5s infinite;
}

.des{
  animation: akk 0.8s infinite;
}

@keyframes akk {
  0%{


  }

  100%{
  color: #6a5acd;
  background: whitesmoke;
  outline: 3px dotted #764ba2;
  }
  
}

.more button:hover {
  opacity: 0.4;
  scale: 0.9;
}

#dwn {
  background: white;
  color: #764ba2;
  padding: 7px 10px;
  border-radius: 5px;
  transition: 0.2s ease-in;
}

#dwn:hover {
  background: #764ba2;
  color: white;
}

.open-btn {
  width: 10%;
  height: 200px;
  position: fixed;
  bottom: 10px;
  z-index: 1;
  right: 10px;
  cursor: pointer;
}

.open-btn img {
  width: 100%;
  height: 100%;
}

.open-btn:hover {
  scale: 0.8;
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 99999;
}

/* POPUP BOX */
.popup-box {
  width: 90%;
  max-width: 700px;
  background: white;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #ff4d4d;
  color: white;
  border: none;
  font-size: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hm{
  color: #5848c7;
}

.popup-title {
  margin-bottom: 20px;
  font-size: 22px;
  color: #6a00ff;
  font-weight: 700;
}
.chat-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #6a5acd;
    color: #fff;
    border: none;
    padding: 14px 22px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
    z-index: 9999;
}

.chat-btn:hover {
    transform: scale(1.05);
}

/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

/* Popup Box */
.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 380px;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.3);
    z-index:99999;
    display: none;
    transition: 0.3s;
}

.popup-box h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #6a5acd;
    font-weight: 600;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

/* Form Styles */
.popup-box input,
.popup-box textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.submit-btn {
    width: 100%;
    background: #6a5acd;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #5848c7;
}

/* Success Message */
.success-msg {
    display: none;
    margin-top: 15px;
    text-align: center;
    color: green;
    font-weight: 600;
}

/* RESPONSIVE */
@media screen and (max-width: 480px) {
    .popup-box {
        width: 92%;
        padding: 20px;
    }

    .chat-btn {
        padding: 12px 18px;
        font-size: 16px;
    }
  
}
