* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    background: #E8E2DA;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #455763;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .nav-links a:hover {
    color: #d3dadc;
  }

  .banner {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
  }
  
  .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; 
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
  }
  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
  }
  
  .banner-text h1 {
    font-size: 3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  }
  
  .content {
    padding: 3rem 2rem;
    background: #f9f9f9;
  }
  .showcase-posters {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
        margin-top: 40px;
}


.showcase-posters img {
    width: 100%;
    height: auto;
}


  .My.role {
    text-align: center; 
    max-width: 800px;
    margin: 0 auto; 
    padding: 20px; 
    line-height: 1.6;
    font-size: 1.1rem; 
}

.My.role p {
    margin-bottom: 20px;
    text-align: left; 
}

.Capyskills {
  text-align: center; 
  max-width: 800px;
  margin: 0 auto; 
  padding: 20px; 
  line-height: 1.6;
  font-size: 1.1rem; 
}

.Capyskills p {
  margin-bottom: 20px;
  text-align: left; 
}

.description {
  text-align: center; 
  max-width: 800px;
  margin: 0 auto; 
  padding: 20px; 
  line-height: 1.6;
  font-size: 1.1rem; 
}

.description p {
  margin-bottom: 20px;
  text-align: left; 
}

.Final {
  text-align: center; 
  max-width: 900px; 
  margin: 0 auto;
  padding: 20px;
}

.Final h1, .Final h3 {
  margin-bottom: 20px; 
  text-align: center;
}


.showcase-video {
  color: white;
  background-color: #2c3e50;
  text-align: center;
  margin-top: 40px;
}

.showcase-video iframe {
width: 80%;
max-width: 800px;
  height: 450px;
  border: none;
}