/* General Styling */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #001f3f, #0074D9);
  color: #fff;
}

h1, h2, h3 {
  text-align: center;
}

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

a {
  color: #1c9dea;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Section */
.header {
  text-align: center;
  padding: 50px 20px;
}
/* Header Styling */
.header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #001f3f, #0074D9);
  color: white;
}

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

.header-image {
  width: 150px; /* Adjust as needed */
  height: auto;
  border-radius: 50%; /* Rounded image */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-image:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

h1 {
  font-size: 2.5em;
  font-weight: 600;
  margin: 0;
}

p {
  font-size: 1.2em;
  margin: 10px 0;
  max-width: 600px;
}

.buy-btn {
  padding: 10px 20px;
  background: linear-gradient(45deg, #0074D9, #00BFFF);
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.buy-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #00BFFF, #0074D9);
}

.buy-btn {
  padding: 10px 20px;
  background: linear-gradient(45deg, #0074D9, #00BFFF);
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  color: white;
  cursor: pointer;
}

.buy-btn:hover {
  background: linear-gradient(45deg, #00BFFF, #0074D9);
  transform: scale(1.05);
}

/* Our Vision Section */
.our-vision {
  padding: 50px 20px;
  text-align: center;
}

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

/* Explore the Universe Section */
.explore-universe {
  padding: 50px 20px;
}

.slider {
  display: flex;
  align-items: center;
  position: relative;
}

.slider-images {
  display: flex;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}

.slider-images img {
  width: 100%;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.arrow {
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
  position: absolute;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 50px 20px;
}

.cube-icon {
  width: 50px;
  height: 50px;
  background: url('cube-icon.png') no-repeat center;
  margin: 20px auto;
}

.reasons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.reason {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.reason .icon {
  font-size: 2em;
  margin-bottom: 10px;
}

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

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.contact form input, .contact form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
}

.contact form button {
  padding: 10px;
  background: linear-gradient(45deg, #0074D9, #00BFFF);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1.2em;
  cursor: pointer;
}

.contact form button:hover {
  background: linear-gradient(45deg, #00BFFF, #0074D9);
  transform: scale(1.05);
}

/* Smooth movement transition */
h1, h2, .icon-eye, .reason, .slider-images img {
  transition: transform 1s ease-in-out;
}

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

.cube-icon {
  width: 50px;
  height: 50px;
  background: url('cube-icon.png') no-repeat center;
  margin: 20px auto;
}

.reasons {
  display: flex;
  flex-direction: column; /* Arrange reasons vertically */
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.reason {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px; /* Set max width for consistency */
}

.reason .icon {
  font-size: 2em;
  margin-bottom: 10px;
}

/* Explore the Quantum Universe Section */
.explore-universe {
  padding: 50px 20px;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Prevent images from spilling out */
  width: 80%;
  margin: 0 auto;
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease; /* Smooth transition effect */
  gap: 10px; /* Spacing between images */
}

.slider-images img {
  width: 300px;
  height: auto;
  border-radius: 10px;
}

.arrow {
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.left-arrow {
  left: -30px;
}

.right-arrow {
  right: -30px;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* General Styling for Text Alignment */
h1, h2, p, .reason, .slider-images img {
  text-align: center; /* Default alignment */
}

/* Media Query for Desktop View */
@media (min-width: 768px) {
  .why-choose-us, 
  .explore-universe {
    text-align: center; /* Center-align text in these sections for desktop */
  }

  .reason {
    margin: 0 auto; /* Center reason cards horizontally */
  }

  .slider-container {
    justify-content: center; /* Center slider within the section */
  }
}