html {
font-family: 'Poppins', serif;
background-color:#020202;
margin: 0;
min-height: 100vh;
}
nav{
  background-color: black;
}
.nav-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
    }

    .sidenav-trigger {
      display: flex;
      align-items: center;
    }

    @media (min-width: 993px) {
      .sidenav-trigger {
        display: none !important;
      }
    }
.waves-effect {
  border-radius: 12px;
}
canvas {
  display: block;
  filter: brightness(1.1) contrast(1.1);
}
.hit-the-floor {
  color: #fff;
  font-size: 12em;
  font-weight: bold;
  text-shadow: 
    0 1px 0 #ccc, 
    0 2px 0 #c9c9c9, 
    0 3px 0 #bbb, 
    0 4px 0 #b9b9b9, 
    0 5px 0 #aaa, 
    0 6px 1px rgba(0,0,0,.1), 
    0 0 5px rgba(0,0,0,.1), 
    0 1px 3px rgba(0,0,0,.3), 
    0 3px 5px rgba(0,0,0,.2), 
    0 5px 10px rgba(0,0,0,.25), 
    0 10px 10px rgba(0,0,0,.2), 
    0 20px 20px rgba(0,0,0,.15);
}

.hit-the-floor {
  text-align: center;
}

.about {
  background-image: url(asset/bdparallax1.jpg);
}

.services {
  background-image: url(asset/bdparallax2.jpg);
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg{
  border-radius: 3%;
}

.blck1{
  opacity: 0.5; 
  background-size: cover;
  width: 1920px;
  object-fit: cover;
}

.project-slide {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 20px;
}

.carousel {
  height: 320px;
}

.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reel-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;   /* KEY FIX */
  object-fit: contain;   /* SHOW FULL VIDEO */
  background: black;
  border-radius: 10px;
}

/* Center row content with flexbox */
.row.justify-center {
  display: flex;
  justify-content: center;
}

/* Limit width on bigger screens */
.website-wrapper {
  max-width: 600px;  /* controls max width */
  margin: 0 auto;    /* center horizontally */
}

.website-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.website-card:hover {
  transform: translateY(-6px);
}

.website-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.website-action {
  padding: 15px;
}

.website-link {
  font-weight: 600;
  text-decoration: none;
  color: #2196f3;
}

.website-link:hover {
  text-decoration: underline;
}

html {
  scroll-behavior: smooth;
}

