* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #111120ff, #310d83ff);
  padding: 20px;
  color: white;
}

/* HEADER */
.main-header {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  padding: 14px;
  color: white;
  background: linear-gradient(to right, #3a0ca3, #7209b7);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* WELCOME SECTION */
.welcome-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 40px 30px;
  margin: 30px auto;
  border-radius: 20px;
  max-width: 1100px;
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.welcome-heading {
  font-size: 2.3rem;
  color: #f2f2f2;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 6px #000000a0;
}

.welcome-subtext {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 28px;
}

.info-images {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.info-box {
  width: 100%;
  max-width: 500px;
  text-align: center;
  perspective: 1000px; /* Enables 3D effect */
  transition: transform 0.4s ease;
}

.info-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}

.info-image:hover {
  transform: scale(1.03);
}
.info-box:hover .info-image {
  transform: rotateY(2deg) rotateX(2deg) scale(1.05);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(128, 0, 255, 0.6);
}
.info-caption {
  margin-top: 12px;
  font-size: 1rem;
  color: #e6e6e6;
  font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin: 30px 0;
  font-size: 2rem;
  color: #cccccc;
  text-shadow: 1px 1px 3px rgba(83, 79, 79, 0.4);
}

/* PRODUCT LISTING */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;     /* ⬅️ Center horizontally */
  align-items: center;        
}

.product {
  width: 1100px; /* Reduced from previous larger size */
  height: 250px; /* Adjust height for tighter layout */
  
  display: flex;
  align-items: center;
  justify-content: center;     /* ⬅️ Center horizontally */
  
  padding: 20px;
  border-radius: 16px;
  background: rgba(167, 163, 163, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid #8c0ae3ff;
  box-shadow: 0 10px 20px rgba(16, 188, 236, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  overflow: hidden;
}

.product:hover {
  transform: scale(1.015);
  box-shadow: 0 18px 28px rgba(18, 182, 231, 0.3);
}

.product:active {
  transform: scale(0.97) translateZ(-4px);
  box-shadow: 0 6px 12px rgba(240, 243, 189, 0.1);
}


/* IMAGE */
.product img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 25px;
  transition: transform 0.5s ease;
}

/* TEXT */
.product-content {
  flex: 1;
}

.product-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.product-desc {
  color: #b7b0b0ff;
  font-size: 1rem;
  line-height: 1.6;
}

/* FOOTER */
/* Footer Container */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px 0;
  backdrop-filter: blur(12px);
  background: transparent;
  margin-top: 1px;
}

.footer-box {
  background: rgba(255, 255, 255, 0);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 217, 0, 0);
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 600px;
  border: 1px solid rgba(255, 217, 0, 0);
}

/* Contact Line */
.contact-line {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: gold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Phone Icon */
.icon {
  font-size: 1.3rem;
}

/* Phone Number */
.phone-number {
  font-weight: bold;
}

/* Social Line */
.social-line {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.social-icon {
  font-size: 1.6rem;
  color: gold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.3);
  
}

/* Copyright */
.footer-box .copyright {
  color: #aaa;
  font-size: 0.95rem;
  opacity: 0.8;
}


/* BOUNCE BUTTON */
.bounce-btn {
  animation: bounce 2s infinite;
  background: linear-gradient(to right, #4895ef, #7209b7);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin-top: 14px;
  transition: background 0.3s ease;
}

.bounce-btn:hover {
  background: linear-gradient(to right, #4361ee, #3a0ca3);
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(-5px);
  }
}

/* IMAGE ZOOM */
.product img:hover,
.product-image:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  .product {
    flex-direction: column;
    width: 90%;
    height: auto;
    padding: 16px;
    text-align: center;
  }

  .product img {
    margin: 0 0 15px 0;
    width: 90px;
    height: 90px;
  }

  .product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .product-desc {
    font-size: 0.95rem;
  }

  .product-price {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
  }
}
