/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #4CAF50, #81C784);
  color: #fff;
}

h1, h2 {
  text-align: center;
}

p {
  text-align: center;
  margin: 0 20px;
}

/* Header Section */
.header {
  text-align: center;
  padding: 20px;
}

.buy-button {
  background: linear-gradient(to right, #2E7D32, #66BB6A);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 25px;
  transition: transform 0.2s, background-color 0.2s;
}

.buy-button:hover {
  transform: scale(1.1);
  background: #43A047;
}

/* Vision Section */
.vision {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px;
  border-radius: 15px;
}

.icon-eye {
  width: 50px;
  height: 50px;
  background: url('eye-icon.png') no-repeat center/contain;
  margin: 0 auto;
}

/* Explore Section */
.explore {
  padding: 50px 20px;
  text-align: center;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-wrapper {
  display: flex;
  overflow-x: hidden;
  width: 80%;
}

.gallery-wrapper img {
  width: 200px;
  margin: 0 10px;
}

.arrow {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Why Us Section */
.why-us {
  padding: 50px 20px;
  text-align: center;
}

.reasons {
  display: flex;
  justify-content: space-around;
}

.reason {
  text-align: center;
  width: 30%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
}

.icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-link {
  color: #81C784;
  text-decoration: none;
  margin: 10px;
  font-weight: bold;
}
/* Header Section */
.header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #4CAF50, #81C784);
  color: white;
}

.header-content {
  position: relative;
}

.header-image {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
  margin: 0 auto 20px;
}

h1 {
  font-size: 2.5rem;
  margin: 10px 0;
}

p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.buy-button {
  background: linear-gradient(to right, #2E7D32, #66BB6A);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 25px;
  transition: transform 0.2s, background-color 0.2s;
}

.buy-button:hover {
  transform: scale(1.1);
  background: #43A047;
}
/* Explore Section */
.explore {
  padding: 50px 20px;
  text-align: center;
}

.gallery {
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}

.gallery-wrapper {
  display: flex;
  gap: 20px;
  animation: slide 20s linear infinite;
}

.gallery-wrapper img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Keyframe Animation for Smooth Scrolling */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* Why Choose Us Section */
.why-us {
  padding: 50px 20px;
  text-align: center;
}

.reasons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reason {
  text-align: center;
  width: 80%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reason h3 {
  margin-top: 15px;
  font-size: 1.5rem;
}

.reason p {
  font-size: 1rem;
  margin-top: 10px;
}

.icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
#contact {
  padding: 50px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

#contact img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
}

#contact span {
  display: inline-block;
  margin: 5px;
}

#contact a {
  color: #FF4500;
  /* Orange-Red */
  text-decoration: none;
  font-size: 1.1em;
  display: inline-block;
  margin-top: 10px;
}

#contact a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}