.header-transparent {
    background-color: transparent !important;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1030;
}

.nav-logo {
    filter: brightness(100);
    z-index: 999;
}
.nv-link {
  filter: brightness(100);
}

.video-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

/* Responsive text positioning */
.video-section .position-absolute {
    top: 75vh;
    left: 5vw;
    transform: none;
    text-align: left;
    width: auto;
    max-width: 90%;
}



/* Gradual video height adjustments */
@media (max-width: 1250px) {
    .video-section {
        height: 80vh;
    }
    .video-section .position-absolute {
        top: 45vh;
        left: 4vw;
    }
}

@media (max-width: 767px) {
    .video-section {
        height: 60vh;
    }
    .video-section .position-absolute {
        top: 50vh;
        left: 3vw;
    }
}

@media (max-width: 575px) {
    .video-section {
        height: 50vh;
    }
    .video-section .position-absolute {
        top: 45vh;
        left: 3vw;
    }
}

.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  
  .minimal-text h1 {
    font-weight: 600;
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
  }
  
  .minimal-text p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }

  .portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
  }

  .portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  }

  .portfolio-card img {
    border-radius: 8px;
  }

  .portfolio-card h6 {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
  }

  /* about us page */
  
  .benefits-section {
    text-align: center;
    padding: 50px 20px;

  }
  .benefits-section .container {
    overflow: visible;
    position: relative;
  }
  
  .image-wrapper {
    overflow: visible;
    position: relative;
    display: inline-block;
    padding: 100px 100px 80px; 
  }
  
  .main-image {
    width: 100%;
    border: 10px solid white;
    box-sizing: border-box;
  }
  
  .bar-group p {
    font-size: 14px;
    color: #444;
    margin: 10px 0 4px;
    display: flex;
    justify-content: space-between;
  }
  
  .bar {
    width: 100%;
    height: 6px;
    background: #d6dceb;
    border-radius: 3px;
  }
  
  .bar-fill {
    height: 6px;
    background: #b2b9cc;
    border-radius: 3px;
  }
  
  /* Overlay Card Style */
  .overlay-photo {
    position: absolute;
    border: 8px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  
  .overlay-photo img {
    width: 180px;
    height: auto;
    display: block;
  }
  
  .tape {
    position: absolute;
    top: -15px;
    left: 50px;
    width: 60px;
    height: 25px;
    background: #f0f0f0;
    transform: rotate(-5deg);
    z-index: 1;
  }
  
  /* Unique corner positions + default rotation */
  .top-left {
    top: 65px;
    left: -61px;
    transform: rotate(19deg);
  }
  
  .top-right {
    top: -15px;
    right: -75px;
    transform: rotate(15deg);
  }
  
  .bottom-left {
    bottom: -60px;
    left: -50px;
    transform: rotate(336deg);
  }
  
  .bottom-right {
    bottom: 80px;
    right: -20px;
    transform: rotate(20deg);
  }

  
  
  /* 🔄 Hover effect - straighten + zoom */
  .overlay-photo:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 5;
  }
  

/* Responsive scaling */
@media (max-width: 1200px) {
  .overlay-photo img {
    width: 140px;
  }

  .top-left { left: -160px; }
  .top-right { right: -160px; }
  .bottom-left { left: -140px; }
  .bottom-right { right: -140px; }

  .image-wrapper::before {
    left: 10%;
    width: 80%;
  }
}

@media (max-width: 991px) {
  .overlay-photo img {
    width: 120px;
  }

  .top-left { left: -120px; }
  .top-right { right: -120px; }
  .bottom-left { left: -100px; }
  .bottom-right { right: -100px; }
}

@media (max-width: 767px) {
  .overlay-photo img {
    width: 100px;
  }

  .top-left { left: -100px; }
  .top-right { right: -100px; }
  .bottom-left { left: -80px; }
  .bottom-right { right: -80px; }

  .image-wrapper::before {
    left: 5%;
    width: 90%;
  }

  .tape {
    width: 45px;
    height: 18px;
    left: 35px;
  }
}
@media (max-width: 575px) {
  .overlay-photo img {
    width: 80px;
  }

  .top-left { left: -80px; }
  .top-right { right: -80px; }
  .bottom-left { left: -60px; }
  .bottom-right { right: -60px; }

  .tape {
    width: 35px;
    height: 14px;
    left: 25px;
  }
}

.image-with-tape {
  padding-top: 40px; /* extra top space for tape */
}

.image-with-tape img {
  width: 100%;
  border: 8px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: block;
  border-radius: 6px;
}

.image-with-tape .tape {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 60px;
  height: 22px;
  background: #e2e2e2;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 2;
}

  
  
	  
.parallax-banner {
  
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
	  
.parallax-sm-banner {
  
  min-height: 60vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* index */
.object-fit-cover {
  object-fit: cover;
}

