/* Reset margins and padding */
body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* Scroll Progress Indicator */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #3498db;
  z-index: 1001;
  width: 0;
}

/* Navigation Bar 
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
}

#navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

#navbar ul li {
  margin: 0 15px;
}

#navbar ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  transition: background 0.3s;
}

#navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}*/

/* Full-height sections */
.thesection {
  height: 80vh; /* Full viewport height */
  padding:20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30px;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Center content within sections */
.thesection .content {
  z-index: 1; /* Ensure content is above any background elements */
}

/* Section-specific backgrounds */
#thesection1 { background-color: #3498db; }
#thesection2 { background-color: #2ecc71; }
#thesection3 { background-color: #e74c3c; }
#thesection4 { background-color: #9b59b6; }
#thesection5 { background-color: #f1c40f; }

/* Style for section icons */
.thesection-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

/* Option 4: Responsive Styles for Mobile Devices */
@media (max-width: 768px) {
  #navbar ul {
    flex-direction: column;
    align-items: center;
  }

  #navbar ul li {
    margin: 10px 0;
  }

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

  .thesection p {
    font-size: 1rem;
  }

  .thesection-icon {
    width: 80px;
    height: 80px;
  }
}