        body {
            background-color: #000;
            color: #fff;
            font-family: 'Poppins', sans-serif;
        }






/* === Navbar Base === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 10rem;
  transition: all 0.3s ease;
  background: transparent;
  height: 100px;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9); /* black with transparency */
  backdrop-filter: blur(5px);     /* adds blur effect */
}

.offcanvas{
    background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);

}

.dropdown-toggle::after {
  display: none !important;
  content: none !important;
}




.navbar .container {
  max-width: 1200px;
  padding: 0 15px;
}

.nav-logo {
  height: 80px;
  object-fit: contain;
  mix-blend-mode: screen;
  background-color: transparent;
  padding-left: 15px;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.navbar-brand small {
  font-size: 0.6rem;
  display: block;
  letter-spacing: 2px;
  margin-top: -5px;
}

/* Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
  margin-right: 15px;
}
.menu-toggle:hover {
  transform: scale(1.1);
}
.menu-toggle.active {
  transform: rotate(90deg);
}


.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  transition: right 0.4s ease;
  padding: 100px 30px 50px 30px;
  overflow-y: auto;
}
.offcanvas-menu.active {
  right: 0;
}


.menu-item {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
  /* margin: 10px 0; */
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}



.dropdown-toggle,
.dropdown-toggle:focus,
.dropdown-toggle:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important; /* optional */
}

.m{
  margin: 10px 0;

}

.ser{
  margin:  0px !important;
}
.menu-item:hover {
  color: #ccc;
}

.dropdown-item {
  position: relative;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 300;

  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}
.dropdown-arrow {
  font-size: 1.2rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.dropdown-arrow.active {
  transform: rotate(180deg);
}
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
  padding-left: 20px;
}
.dropdown-content.active {
  max-height: 500px;
}
.dropdown-item {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 1.4rem;
  margin: 10px 0;
  transition: color 0.3s ease;
}
.dropdown-item:hover {
  color: #fff;
}

.offcanvas-header .btn-close {
  filter: invert(1) !important;    
  width: 1.5rem !important;        
  height: 1.5rem !important;
  opacity: 1 !important;  
  float: right;         
}

.offcanvas-header .btn-close:focus {
  box-shadow: none !important;     
}




/* === Responsive === */
@media (max-width: 768px) {
  .navbar {
    height: 80px;
  padding: 1rem 1rem;

  }
  .nav-logo {
    height: 60px;
    padding-left: 10px;
  }
  .menu-item {
    font-size: 1.6rem;
  }
  .dropdown-toggle {
    font-size: 1.6rem;
  }
  .dropdown-item {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 70px;
  }
  .nav-logo {
    height: 40px;
    margin-left: 15px;
  }
  .menu-item {
    font-size: 1.4rem;
  }
  .dropdown-item {
    font-size: 1rem;
  }
}













.project-info-section {
  /* background-color: #000; */

  font-family: 'Baskervville', serif;
}

.project-info-box {
  background: url("../images/3d-contemporary-empty-room.jpg") no-repeat center center;
  background-size: cover; /* Optional for full coverage */
  padding: 40px 30px;
  color: #e6e1e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 120px;
}


.project-info-box h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fcfafa;
  text-align: center;

}

.project-info-box p {
  font-size: 1.1rem;
  color: #fdfcfc;
  margin-bottom: 20px;
  text-align: center;
}


@media (max-width: 567px) {
  .project-info-box {
    margin-top: 100px;

  }
}







        .back-button {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .back-button:hover {
            color: #ccc;
        }

        .gallery-section {
            padding: 60px 0;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            /* border-radius: 8px; */
            cursor: pointer;
            background-color: #111;
            margin-bottom: 40px;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        .plus-icon {
            width: 60px;
            height: 60px;
            background-color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .plus-icon {
            transform: scale(1.1);
        }

        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-container {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* border-radius: 8px; */
            width: 100%;
            height: 100%;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .lightbox-image.active {
            opacity: 1;
        }

        .lightbox-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 15px;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .lightbox.active .lightbox-controls {
            opacity: 1;
        }

        .lightbox-btn {
            width: 45px;
            height: 45px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.9);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .lightbox-btn:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.05);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.9);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            opacity: 0;
        }

        .lightbox.active .lightbox-nav {
            opacity: 1;
        }

        .lightbox-nav:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: translateY(-50%) scale(1.05);
        }

        .lightbox-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .lightbox.active .lightbox-counter {
            opacity: 1;
        }

        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .loading-spinner.show {
            opacity: 1;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

    
        @media (max-width: 768px) {
            .project-title {
                font-size: 2.5rem;
            }

            .lightbox-controls {
                top: 15px;
                right: 15px;
                gap: 10px;
            }

            .lightbox-btn {
                width: 40px;
                height: 40px;
            }

            .lightbox-nav {
                width: 45px;
                height: 45px;
            }

            .lightbox-prev {
                left: 15px;
            }

            .lightbox-next {
                right: 15px;
            }

            .lightbox-counter {
                bottom: 20px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .project-header {
                padding: 40px 0 30px;
            }

            .project-title {
                font-size: 2rem;
            }

            .gallery-section {
                padding: 40px 0;
            }

            .plus-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #000;
        }

        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }




























                .related-title {
            font-family: 'Baskervville', serif;
            font-size: 3rem;
            margin-bottom: 20px;
        }



        .portfolio-item {
            margin-bottom: 50px;
            opacity: 1;
            transition: all 0.5s ease;
        }

        .portfolio-item.hidden {
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
        }

        .portfolio-card {
            position: relative;
            overflow: hidden;
            
            aspect-ratio: 4/3;
            background-color: #111;
            text-decoration: none;
            display: block;
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px;
        }

        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-card:hover .portfolio-image {
            transform: scale(1.1);
        }

        .portfolio-overlay h3 {
            font-family: 'Baskervville', serif;
            font-size: 2rem;
            margin-bottom: 10px;
            color: #fff;
        }


                .portfolio-category {
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ccc;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 20px;
            border-radius: 20px;
            background-color: rgba(255, 255, 255, 0.1);
        }




                @media (max-width: 768px) {
            .related-title {
                font-size: 2.5rem;
            }
            
            .portfolio-subtitle {
                font-size: 1rem;
                padding: 0 20px;
            }

            .filter-nav {
                padding: 0 20px;
            }

            .filter-link {
                font-size: 0.85rem;
                padding: 6px 15px;
            }

            .portfolio-overlay h3 {
                font-size: 1.5rem;
            }

            .portfolio-category {
                font-size: 0.8rem;
                padding: 6px 15px;
            }
        }

        @media (max-width: 576px) {
            .related-title {
                font-size: 2rem;
            }

            .portfolio-overlay {
                padding: 20px;
            }

            .portfolio-overlay h3 {
                font-size: 1.3rem;
            }
        }











        /* footeerrr? */




    footer {
      padding-top: 40px;
      background-color: #0e0f0f;
      
    }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: end;
      gap: 50px;
      flex-wrap: wrap;
    }

    .footer-nav li a {
      text-decoration: none;
      color: #ccc;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .footer-nav li a:hover {
      color: #fff;
    }

    .footer-line {
      border-top: 1px solid #444;
      margin: 60px 0;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #ccc;
      text-align: left;
    }

    .footer-icons {
      text-align: right;
    }

    .footer-icons a {
      display: inline-block;
      margin-left: 15px;
      color: #ccc;
      font-size: 1rem;
      border: 1px solid #555;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      transition: all 0.3s;
    }

    .footer-icons a:hover {
      color: white;
      border-color: white;
    }

    .footer-copy {
      text-align: left;
      font-size: 0.85rem;
      color: #FFFFFF;
      margin-top: 10px;
      padding-bottom: 20px;
      font-weight: 400;
    }

    @media (max-width: 576px) {
      .footer-text,
      .footer-icons {
        text-align: center;
      }

      .footer-icons a {
        margin-left: 10px;
        margin-right: 10px;
      }
    }

    @media (max-width:769px) {
        .footer-nav{
            justify-content: center;
            gap: 20px;
        }

            .footer-nav li a {
      
      font-size: 0.80rem;
      transition: color 0.3s;
    }

    @media (max-width: 576px) {
  .footer-copy {
    text-align: center;
  }
    }}