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;
}


/* 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 */
  }
}
/* Section Styling */
.explore-universe {
  text-align: center;
  padding: 50px 20px;
}

/* Slider Container */
.slider-container {
  width: 100%; /* Full width of the parent container */
  max-width: 900px; /* Limit the width for better visuals */
  overflow: hidden; /* Hide extra images */
  margin: 0 auto; /* Center the container */
  position: relative;
}

/* Slider Images */
.slider-images {
  display: flex;
  width: calc(300px * 3 + 20px * 2); /* Total width = 3 images + gaps */
  transition: transform 0.8s ease-in-out; /* Smooth sliding */
  gap: 20px; /* Space between images */
}

.slider-images img {
  width: 300px; /* Consistent width for all images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded corners */
}

#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;
}
/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, #4a90e2, #e94057, #a148e2);
    padding: 60px 20px;
    color: white;
}

.roadmap .phase {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.roadmap .phase img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 15px;
}
.scroll{
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 15px;
}