* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #151b3b;
  color: white;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(21, 27, 59, 0.9);
  padding: 15px 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  font-size: 16px;
}

.nav-links a:hover {
  color: #ffd700;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Section 1: Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

.subtitle {
  font-size: 1.2rem;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.scroll-prompt {
  position: absolute;
  bottom: 30px;
  color: white;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: scrollPromptAnim 1s ease forwards;
  animation-delay: 1.5s;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-prompt:hover {
  transform: translateY(5px);
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPromptAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* Section 2: What is BUKSU SAVE PARKING */
.about-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 120px;
}

.container {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.content {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 50px;
  line-height: 1.2;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #ffd700;
}

.description {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  text-align: justify;
}

.image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-grow:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Section 3: Features Section */
.features-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.features-container {
  max-width: 1000px;
  width: 100%;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
}

.feature-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffd700;
  min-width: 60px;
  text-align: center;
}

.feature-content {
  flex: 1;
  position: relative;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: white;
}

.feature-description {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  text-align: justify;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.feature:hover .feature-description {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
}

.feature-description::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
}

/* Section 4: Tech Stack */
.techstack-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 100px;
}

.techstack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.tech-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.tech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
  background-color: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

.tech-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.tech-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffd700;
}

.tech-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Section 5: Who is it for? */
.audience-section {
  min-height: 120vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 150px;
}

.highlight {
  color: #ffd700;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.highlight:hover {
  transform: translateY(-2px);
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.highlight:hover::after {
  width: 100%;
}

/* Section 6: Why Use It? */
.benefits-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
}

.cta {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

.tagline {
  font-style: italic;
  margin-bottom: 30px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  gap: 8px;
}

.download-btn:hover {
  background-color: rgba(6, 170, 91, 0.993);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(6, 170, 91, 0.4);
}
.docs-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-right: 300px;
}

.docs-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.docs-link:after {
  content: '';
  position: absolute;
  width: 34%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #ffd700;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.docs-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Section 7: Meet the Developers */
.team-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
  margin: 0 15px;
}

.profile-img-container {
  width: 200px;
  height: 200px;
  border: 4px solid #2944bc;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.profile-img-container:hover {
  transform: scale(1.05);
  border-color: #ffd700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.profile-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-img-container:hover img {
  transform: scale(1.1);
}

.member-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.profile-img-container:hover + .member-name {
  color: #ffd700;
}

.member-role-primary {
  color: #ffd700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px 0;
  text-align: center;
  transition: all 0.3s ease;
}

footer:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  transition: transform 0.3s ease;
}

footer:hover .logo {
  transform: scale(1.05);
}

.copyright {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

footer:hover .copyright {
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .title {
    font-size: 2.2rem;
  }

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

  .container {
    flex-direction: column;
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-number {
    margin-bottom: 10px;
  }

  .techstack-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .techstack-grid {
    grid-template-columns: 2fr;
  }

  .title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }
/* Section X: App Screenshots */
.screenshot-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
}

.screenshot-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.screenshot-content {
  margin-bottom: 40px;
  text-align: center;
}

.screenshot-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 50px;
  text-align: center;
}

.screenshot-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 images per row */
  gap: 30px;
  width: 100%;
}

.screenshot-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.screenshot-item:hover img {
  transform: scale(1.05);
}

.screenshot-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
  .screenshot-gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row on smaller screens */
  }
}

@media (max-width: 480px) {
  .screenshot-gallery {
    grid-template-columns: 1fr; /* 1 image per row on mobile */
  }
}

}