:root {

  --primary: #FF5E00;
  --primary-light: #FF8C42;
  --secondary: #2A1A1F;
  --accent: #FFD700;
  --dark: #121212;
  --light: #F8F5F2;
  --text: #E0E0E0;
  --text-dark: #333333;
  --neon-glow: 0 0 10px rgba(255, 94, 0, 0.7);
  --section-gap: 120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  text-decoration: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  position: relative;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--neon-glow);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
}

.section-title {
  margin-top: 10px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--light);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Particle Background */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 94, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* About Section */
/* .about {
    background: url('https://images.unsplash.com/photo-1518492104633-130d0cc84637?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    position: relative;
} */

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background: rgba(18, 18, 18, 0.85); */
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 60px; */
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
  max-width: 90%; /* Reduce the maximum width to 90% */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
}

.about-img img {
  width: 100%;
  height: auto; /* Ensure the image scales proportionally */
  display: block;
}

.about-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 94, 0, 0.3), transparent);
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--light);
  /* Updated to light color */
}

.about-text p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 94, 0, 0.1);
  border-color: var(--primary);
}

.feature-icon {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--light);
}

.feature-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}


/* Products Section */
.products {
  /* background: url('https://images.unsplash.com/photo-1601493700631-2b16ec4b4716?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    position: relative; */
  margin-top: 4rem;
  width: 100%;
  height: 100%;
}

/* .products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.9);
} */

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* Slider Container */
#slider {
  margin: 0 auto;
  width: 80%;
  overflow: hidden;
  border-radius: 20px 20px 0px 0px;
  position: relative;
}

.slides {
  overflow: hidden;
  animation-name: fade;
  animation-duration: 1s;
  display: none;
  position: relative;
}

img {
  width: 100%;
  height: 100%;
}

#dot {
  margin: 0 auto;
  text-align: center;
}

.dot {
  display: inline-block;
  border-radius: 50%;
  background: #d3d3d3;
  padding: 3px;
  margin: 10px 5px;
}

.active {
  background: black;
}

/* Dots (Indicators) */
#dot {
  position: absolute;
  bottom: 20px;
  /* Position the dots above the bottom of the slider */
  left: 10px;
  /* Align dots to the left */
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  /* Add spacing between dots */
  z-index: 10;
  /* Ensure dots are above the images */
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d3d3d3;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary);
  /* Highlight active dot */
}

/* Style for the Explore Button */
.explore-btn {
  position: absolute;
  bottom: 20px;
  /* Position the button near the bottom of the image */
  right: 10px;
  /* Align the button to the right */
  background: var(--primary);
  color: var(--light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
  /* Ensure the button is above the image */
}

.explore-btn:hover {
  background: var(--primary-light);
  transform: scale(1.1);
  /* Add a hover effect */
}

@media (max-width: 567px) {
  #slider {
    width: 100%;
  }
}

/* Quality Section */
/* .quality {
  background: url('https://images.unsplash.com/photo-1518492104633-130d0cc84637?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  position: relative;
} */

.quality::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(18, 18, 18, 0.85); */
}

.quality-content {
  position: relative;
  z-index: 1;
}

.quality-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step-number {
  background: var(--primary);
  color: var(--light);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: var(--neon-glow);
  font-family: 'Orbitron', sans-serif;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--light);
}

.step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Testimonials */
/* .testimonials {
  background: url('https://images.unsplash.com/photo-1518492104633-130d0cc84637?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  position: relative;
} */

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(18, 18, 18, 0.9); */
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  margin-top: 60px;
  position: relative;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  margin: 0 15px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  color: rgba(255, 94, 0, 0.1);
  font-family: serif;
  line-height: 1;
  z-index: -1;
}

.testimonial-text {
  margin-bottom: 30px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--primary);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--light);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info p {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  /* background: linear-gradient(135deg, var(--secondary), var(--dark));  */
  /* padding: 60px 20px;  */
  border-radius: 20px;
  margin-top: 4rem;


}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(18, 18, 18, 0.9); */
}

.contact-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding-right: 40px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--light);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-icon {
  background: var(--primary);
  color: var(--light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--neon-glow);
}

.info-text h4 {
  margin-bottom: 10px;
  color: var(--light);
  font-size: 1.1rem;
}

.info-text p,
.info-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-text a:hover {
  color: var(--primary);
}


/* Adjusted Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  /* Slightly transparent white background */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Softer border */
  border-radius: 15px;
  padding: 20px;
  /* Increased padding for better spacing */
  transition: all 0.4s ease;
  max-width: 450px;
  /* Slightly smaller width */
  margin: 0 auto;
  /* Center the form */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  /* Add subtle shadow */
}

/* Contact Form Heading */
.contact-form h3 {
  font-size: 1.8rem;
  /* Slightly larger font size */
  margin-bottom: 5px;
  /* Adjusted spacing */
  color: var(--light);
  /* Ensure text is readable */
  text-align: center;
  /* Center the heading */
}

/* Form Group Styling */
.form-group {
  margin-bottom: 10px;
  /* Increased spacing between fields */
}

.form-group label {
  font-size: 1rem;
  /* Slightly larger label font size */
  margin-bottom: 4px;
  display: block;
  /* Ensure labels are on their own line */
  color: rgba(255, 255, 255, 0.8);
  /* Softer white color */
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  /* Ensure inputs take full width */
  padding: 4px 2px;
  /* Adjusted padding for better usability */
  font-size: 1rem;
  /* Slightly larger input font size */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Softer border */
  border-radius: 8px;
  /* Rounded corners */
  background: rgba(255, 255, 255, 0.05);
  /* Subtle background */
  color: var(--light);
  /* Text color */
}

.form-group textarea {
  height: 90px;
  /* Slightly taller textarea */
  resize: none;
  /* Disable resizing */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  /* Highlight border on focus */
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
  /* Add glow effect */
}

/* Submit Button */
.contact-form button {
  width: 100%;
  /* Full-width button */
  padding: 6px;
  font-size: 1rem;
  font-weight: bold;
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--primary-light);
  /* Lighter shade on hover */
  box-shadow: 0 5px 15px rgba(255, 94, 0, 0.4);
  /* Add shadow on hover */
}


/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: var(--neon-glow);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-img {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-gap: 80px;
  }

  .section-title h2 {
    font-size: 2.3rem;
  }

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

  .quality-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr; /* Stack content and image vertically */
    text-align: center; /* Center-align content for smaller screens */
  }

  .about-img {
    max-width: 90%; /* Further reduce the image size for smaller screens */
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    margin-bottom: 20px;
    justify-content: center;
  }

  .logo-icon i {
    transform: rotate(-45deg);
    font-size: .8rem;
    color: var(--light);
  }

  .logo-text h1 {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.5rem;
  }

  nav {
    display: none;
    width: 100%;
    margin-top: 20px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 15px 0;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
  }

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

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

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .quality-steps {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-form input {
    border-radius: 8px 8px 0 0 !important;
  }

  .newsletter-form button {
    border-radius: 0 0 8px 8px !important;
    padding: 15px;
  }

  /* Disable hover animations for responsive views */
  .btn:hover,
  .btn-outline:hover,
  .feature-item:hover,
  .about-img:hover,
  .product-card:hover,
  .step:hover,
  .testimonial-card:hover,
  .back-to-top:hover {
    transform: none;
    box-shadow: none;
    background: inherit;
    border-color: inherit;
  }

  .btn::before,
  .btn:hover::before,
  .product-card:hover .product-img img,
  .step:hover::before {
    transform: none;
    box-shadow: none;
  }

  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 0;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: inherit;
  }

  /* Disable animations and effects for responsive views */
  /* Remove hover effects */
  .btn:hover,
  .btn-outline:hover,
  .feature-item:hover,
  .about-img:hover,
  .product-card:hover,
  .step:hover,
  .testimonial-card:hover,
  .back-to-top:hover {
    transform: none;
    box-shadow: none;
    background: inherit;
    border-color: inherit;
  }

  /* Remove transitions */
  .btn,
  .btn-outline,
  .feature-item,
  .about-img,
  .product-card,
  .step,
  .testimonial-card,
  .back-to-top {
    transition: none;
  }

  /* Remove animations */
  .scroll-down {
    animation: none;
  }

  /* Simplify navigation links */
  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 0;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: inherit;
  }

  /* Simplify other elements */
  .step::before,
  .btn::before,
  .product-card:hover .product-img img {
    transform: none;
    box-shadow: none;
  }

}

@media (max-width: 576px) {
  :root {
    --section-gap: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 560px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }

  .testimonial-card {
    padding: 15px;
    /* Reduce padding */
    font-size: 0.9rem;
    /* Smaller font size */
    border-radius: 10px;
    /* Slightly smaller rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
  }

  .testimonial-card h4 {
    font-size: 1rem;
    /* Smaller heading font size */
    margin-bottom: 10px;
    /* Adjust spacing */
  }

  .testimonial-card p {
    font-size: 0.85rem;
    /* Smaller paragraph font size */
    line-height: 1.4;
    /* Adjust line height for readability */
  }

  .author-img {
    width: 50px;
    /* Smaller author image */
    height: 50px;
  }

  .author-info h4 {
    font-size: 0.9rem;
    /* Smaller author name font size */
  }

  .author-info p {
    font-size: 0.8rem;
    /* Smaller author designation font size */
  }

  .explore-btn {
    padding: 8px 15px;
    /* Smaller padding for mobile view */
    font-size: 0.8rem;
    /* Smaller font size */
    border-radius: 4px;
    /* Slightly smaller rounded corners */
  }

  .dot {
    width: 8px;
    /* Smaller width for dots */
    height: 8px;
    /* Smaller height for dots */
    margin: 5px;
    /* Adjust spacing between dots */
  }

  .about-img {
    max-width: 90%; /* Further reduce image size for very small screens */
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
    /* Reduce padding for smaller screens */
  }

  .hero h1 {
    font-size: 1.8rem;
    /* Adjust font size for better fit */
  }

  .hero p {
    font-size: 0.9rem;
    /* Adjust paragraph size */
  }

  .footer-container {
    grid-template-columns: 1fr;
    /* Ensure footer columns stack */
  }

  .btn {
    padding: 10px 20px;
    /* Adjust button padding */
    font-size: 0.8rem;
    /* Adjust button font size */
  }

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    /* Stack columns */
  }

  .newsletter-form {
    flex-direction: column;
    /* Stack input and button */
  }

  .newsletter-form input {
    border-radius: 8px 8px 0 0 !important;
  }

  .newsletter-form button {
    border-radius: 0 0 8px 8px !important;
    padding: 10px;
  }

  .explore-btn {
    padding: 6px 12px;
    /* Even smaller padding for very small screens */
    font-size: 0.7rem;
    /* Smaller font size */
  }

  .dot {
    width: 6px;
    /* Even smaller width for very small screens */
    height: 6px;
    /* Even smaller height for very small screens */
    margin: 4px;
    /* Adjust spacing for very small screens */
  }

  .purchase-contact-box {
    padding: 5px 5px 5px 5px;
    max-width: 70vw;
    margin: 12px auto 0 auto;
    border-radius: 7px;
  }
  .purchase-contact-box p {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  .whatsapp-button {
    font-size: 0.5rem;
    padding: 2px 1px;
    width: 80%;
    border-radius: 12px;
  }
  .whatsapp-button i {
    font-size: 0.7em;
    margin-right: 4px;
  }
}

/* Particle JS Background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}

.purchase-contact-box {
    background: #222;
    border-radius: 16px;
    padding: 32px 20px 24px 20px;
    margin: 40px auto 0 auto;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    border: 1.5px solid #25d366;
}
.purchase-contact-box p {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
    font-weight: 500;
}
.whatsapp-button {
    display: inline-block;
    background: #25d366;
    color: #fff;
    font-size: 0.98rem;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37,211,102,0.15);
    transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-button:hover {
    background: #1ebe57;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.whatsapp-button i {
    margin-right: 8px;
    font-size: 1.3em;
    vertical-align: middle;
}

@media (max-width: 600px) {
  .purchase-contact-box {
    padding: 18px 8px 16px 8px;
    max-width: 98vw;
    margin: 24px auto 0 auto;
    border-radius: 10px;
  }
  .purchase-contact-box p {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .whatsapp-button {
    font-size: 0.95rem;
    padding: 9px 6px;
    width: 100%;
    border-radius: 18px;
  }
  .whatsapp-button i {
    font-size: 1.1em;
    margin-right: 6px;
  }
}