/* journey.css */

/* 🔧 Base Section Styling */
.journey-section {
  text-align: center; /* 👉 All text center aligned */
  padding: 100px 20px; /* 👉 Responsive spacing */
  background-color: #fdfdfd; /* 👉 Light neutral background */
  min-height: 100vh; /* 👉 Full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 🧭 Top Pill Button */
.contact-pill {
  background: #e9e9e9;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-pill:hover {
  background: #d6d6d6;
}

/* 📝 Main Heading */
.journey-title {
  font-size: 3rem;
  font-weight: 600;
  color: #2e2f35;
  margin-bottom: 20px;
  line-height: 1.3;
}
.highlight {
  color: #111;
}

/* 🔖 Subheading */
.journey-subtitle {
  font-size: 18px;
  color: #5e5e5e;
  margin-bottom: 40px;
}

/* 🚀 CTA Button */
.cta-button {
  background: #3d00ff;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.cta-button:hover {
  background: #000;
  transform: translateY(-3px);
}
.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.cta-button:hover .arrow {
  transform: translateX(4px) rotate(15deg);
}

/* 📱 Responsive Behavior */
@media (max-width: 768px) {
  .journey-title {
    font-size: 2.2rem;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .journey-title {
    font-size: 1.8rem;
  }
  .journey-subtitle {
    font-size: 16px;
  }
}
