* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  background: #f4f4f4;
  margin: 0;
  overflow-x: hidden;
}


.hero {
  background-image: url("images/pngtree-printer-with-several-color-prints-on-it-picture-image_2771318.jpg"); /* put your image file name here */
  background-size: cover;       /* makes image cover whole area */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* prevents repeating */
  color: pink;
  clear: both;                  /* prevents floated image from overlapping */
  padding: 80px;
  text-align: center;
}

.hero h1{

  font-size: 2.1rem;
  text-shadow: 0 0 10px #ff00ff, 0 0 40px #4400ff;
}
.hero p{
  font-size: 1rem;
 text-shadow: 0 0 10px #000000, 0 0 40px #c411c4;
}

.pricing {
  max-width: 600px;
  margin: 50px auto;
  perspective: 1000px; /* enables 3D depth for accordion hover */
}

.accordion {
  background: white;
  margin-bottom: 17px;
  border-radius: 45px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
  transform-style: preserve-3d; /* allow children to render in 3D */
  opacity: 0;                     /* start hidden for animation */
  transform: translateY(20px) scale(0.96);
  animation: accordionIn 0.6s ease-out forwards;
}

/* Staggered animation delays for accordions */
.accordion:nth-child(1) { animation-delay: 0.1s; }
.accordion:nth-child(2) { animation-delay: 0.2s; }
.accordion:nth-child(3) { animation-delay: 0.3s; }
.accordion:nth-child(4) { animation-delay: 0.4s; }
.accordion:nth-child(5) { animation-delay: 0.5s; }
.accordion:nth-child(6) { animation-delay: 0.6s; }
.accordion:nth-child(7) { animation-delay: 0.7s; }
.accordion:nth-child(8) { animation-delay: 0.8s; }
.accordion:nth-child(9) { animation-delay: 0.9s; }
.accordion:nth-child(10) { animation-delay: 1.0s; }
.accordion:hover {
  transform: rotateX(3deg) rotateY(-3deg) translateZ(20px) scale(1.02);
  box-shadow: 0 4px 5px rgba(255, 0, 255, 0.5), 0 0 60px rgba(252, 5, 198, 0.6);
}
.accordion input {
  display: none;
}

.accordion-label {
  display: block;
  padding: 18px;
  font-size: 1.1rem;
  background: #222;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s;
  transform-style: preserve-3d;  /* preserves 3D perspective */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* subtle depth */
}

/* Hover 3D Pop Effect */
.accordion-label:hover {
  transform: translateZ(20px) scale(1.05) rotateX(3deg) rotateY(3deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6); /* stronger shadow for pop */
  color: black;
  background: pink;
}

.accordion input:checked + .accordion-label {
  background: linear-gradient(135deg, #ff00ff, #ff7b00);
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 0 0 30px rgba(255, 123, 0, 0.7);
  animation: accordionGlow 0.7s ease-out;
}

.content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  background: #fafafa;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height .4s ease, padding .4s ease, opacity .4s ease, transform .4s ease;
}


.accordion input:checked ~ .content {
  max-height: 500px;
  padding: 18px;
  opacity: 1;
  transform: translateY(0);
}

@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes accordionGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 0, 255, 0.0);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8), 0 0 35px rgba(255, 123, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), 0 0 25px rgba(255, 123, 0, 0.4);
  }
}

@keyframes contactIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-us {
  max-width: 450px;
  margin: 50px auto;
  padding: 10px;
  background: #222;
  color: white;
  border-radius: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: contactIn 0.8s ease-out 1.2s forwards;
}

.contact-us h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ff00ff; /* Neon Pink */
  text-shadow: 0 0 10px #ff00ff, 0 0 40px #00ffff;
}

.contact-us p {
  margin-bottom: 15px;
  color: #fafafa;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
}

.contact-info a {
  color: #00ffff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 60px;
  background: radial-gradient(circle at top left, #ff00ff 0, #222 45%, #000 100%);
  color: #fdfdfd;
  padding: 30px 20px 15px;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 0, 255, 0.3);
  border-top: 2px solid rgba(255, 0, 255, 0.7);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-section {
  min-width: 220px;
  flex: 1;
}

.footer-brand h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 10px #ff00ff, 0 0 30px #00ffff;
}

.footer-brand p {
  margin: 0;
  color: #f7e7ff;
}

.footer-section h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #ffb3ff;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.8);
}

.footer-section p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #f5f5f5;
}

.footer-section a {
  color: #00ffff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 900px;
  margin: 20px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: #e0e0e0;
}

/* Chat Bot Styles */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: #222;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 255, 0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  animation: chatbotSlideIn 0.5s ease-out;
  overflow: hidden;
}

@keyframes chatbotSlideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.chatbot-header {
  background: linear-gradient(135deg, #ff00ff, #ff7b00);
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(255, 0, 255, 0.5);
}

.chatbot-header:hover {
  background: linear-gradient(135deg, #ff7b00, #ff00ff);
}

.chatbot-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.chatbot-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chatbot-body {
  display: flex;
  flex-direction: column;
  height: 400px;
  background: #1a1a1a;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #2a2a2a;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #ff00ff;
  border-radius: 3px;
}

.chat-user {
  background: linear-gradient(135deg, #ff00ff, #ff7b00);
  color: white;
  padding: 10px 15px;
  border-radius: 18px 18px 4px 18px;
  align-self: flex-end;
  max-width: 80%;
  word-wrap: break-word;
  animation: messageSlideIn 0.3s ease-out;
  box-shadow: 0 2px 8px rgba(255, 0, 255, 0.4);
}

.chat-bot {
  background: #333;
  color: #fafafa;
  padding: 10px 15px;
  border-radius: 18px 18px 18px 4px;
  align-self: flex-start;
  max-width: 80%;
  word-wrap: break-word;
  animation: messageSlideIn 0.3s ease-out;
  border-left: 3px solid #ff00ff;
}

@keyframes messageSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-input-container {
  display: flex;
  padding: 15px;
  background: #2a2a2a;
  border-top: 2px solid #ff00ff;
  gap: 10px;
}

#chat-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #444;
  border-radius: 25px;
  background: #1a1a1a;
  color: #fafafa;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#chat-input:focus {
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

#chat-send {
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff00ff, #ff7b00);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(255, 0, 255, 0.4);
}

#chat-send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.6);
}

#chat-send:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .pricing {
    margin: 30px 15px;
    max-width: none;
    padding: 0 10px;
  }

  .accordion {
    margin-bottom: 12px;
    border-radius: 20px;
  }

  .accordion-label {
    padding: 14px 16px;
    font-size: 1rem;
    touch-action: manipulation;
  }

  .accordion input:checked ~ .content {
    max-height: 400px;
    padding: 14px 16px;
  }

  .content {
    padding: 0 16px;
  }

  .contact-us {
    margin: 40px 15px;
    padding: 20px 15px;
    max-width: none;
    border-radius: 25px;
  }

  .contact-us h2 {
    font-size: 1.5rem;
  }

  .contact-us p,
  .contact-info p {
    font-size: 0.9rem;
  }

  .site-footer {
    margin-top: 40px;
    padding: 25px 15px 15px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-section {
    min-width: 0;
  }

  .footer-brand h3 {
    font-size: 1rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .chatbot-container {
    width: calc(100% - 24px);
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
    max-height: 70vh;
  }

  .chatbot-body {
    height: 300px;
  }

  .chatbot-input-container {
    padding: 12px;
  }

  #chat-input {
    padding: 10px 12px;
    font-size: 16px; /* prevents zoom on iOS */
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 1.15rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .pricing {
    margin: 25px 10px;
  }

  .accordion {
    border-radius: 16px;
  }

  .accordion-label {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .contact-us {
    margin: 30px 10px;
    padding: 18px 12px;
  }

  .contact-us h2 {
    font-size: 1.3rem;
  }

  .chatbot-container {
    width: calc(100% - 20px);
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
}