body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Arial", sans-serif;
  /* background-color: #f8f6f4; */
  background-color: #f7f7f7;
  overflow-x: hidden;
}
.blurred {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f8f6f4;
  border-bottom: 1px solid #e0e0e0;
  z-index: 2000;
  padding: 15px 0;
}

header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

header a:hover {
  color: #000;
}

header .nav-left a {
  margin-right: 20px;
}

header .nav-right a {
  margin-left: 20px;
}

header .logo {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}

.profile-image-loogin img {
  width: 100%;
  /*border-radius: 50%;*/
  height: 100%;
  object-fit: contain;
}

.profile-image-loogin {
  width: 33px;
}

header .nav-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile Menu Styles */
.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 3000;
  padding: 20px;
}

.sidebar-overlay.active {
  left: 0;
}

.sidebar-close {
  font-size: 24px;
  cursor: pointer;
  text-align: right;
}

.sidebar-links a {
  display: block;
  margin: 15px 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.fullscreen-image-section {
  display: flex;
  flex-direction: row;
  height: auto;
  overflow: hidden;
  position: relative;
  margin-top: 100px;
}
.details-left,
.details-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  /* transition: opacity 2s ease; */ /* REMOVE THIS */
}
.details-left {
  background-color: #f8f9fa;
}
.details-image {
  flex: 1;
  background-image: url("./assets/images/image_01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 2s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
}
.fullscreen-image-section:hover .details-image img {
  transform: scale(1.1);
}

/*
.fullscreen-image-section:hover .details-left,
.fullscreen-image-section:hover .details-right {
  opacity: 0;
  pointer-events: none;
} 
  */
.back-link {
  text-decoration: none;
  color: #007bff;
}
.back-link:hover {
  text-decoration: underline;
}
section.content-block {
  padding: 20px 20px;
  background-color: #f5f5f5;
}
.image-left-01 img,
.image-right-01 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-wrapper-section {
  display: flex;
  justify-content: space-between;
}
footer.footer-wrapper-section-main {
  background: #f5f5f5;
}
.profile-image-loogin img {
  width: 100%;
  /* border-radius: 50%; */
  height: 100%;
  object-fit: contain;
}
.profile-image-loogin {
  width: 33px;
}
header .nav-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-item-wrapper-main .portfolio-item {
  break-inside: avoid;
  overflow: hidden;
  /*border-radius: 8px;*/
}

.portfolio-item-wrapper-main .portfolio-item.show {
  display: block;
}

.portfolio-item-wrapper-main .portfolio-item img {
  width: 100%;
  display: block;
  /*border-radius: 8px;*/
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}

.portfolio-item-wrapper-main .portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item-wrapper-main .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 88, 122, 0.5);;
  /* background-color: rgba(233, 89, 68, 0.75);
  background-color: rgba(35, 34, 33, 0.75); */
  /* background-image:url('https://png.pngtree.com/thumb_back/fw800/background/20190724/pngtree-polygonal-triangle-black-and-white-background-image_285395.jpg'); */
  backdrop-filter: blur(3px);
  color: white;
  display: flex;
  font-family: BiotifLight;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  flex-direction: column;
}

.portfolio-item-wrapper-main .portfolio-item:hover .overlay {
  opacity: 1;
}

.portfolio-item-wrapper-main .overlay h4 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.portfolio-item-wrapper-main .overlay span {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Custom button styles */
.portfolio-item-wrapper-main .filter-btn {
  color: #00587A;
  border-color: #00587A;
  /* color: rgba(35, 34, 33); */
  /* border-color: rgba(35, 34, 33); */
  transition: all 0.3s ease;
}

.portfolio-item-wrapper-main .filter-btn:hover,
.filter-btn.active {
  background-color: #00587A;
  color: white;
  box-shadow: 0 4px 10px rgba(233, 89, 68, 0.3);
}
section.portfolio-item-wrapper-main {
  margin-top: 100px;
}
.have-an-adea-wrapper-section .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("../images/Product_Details/bottom_section.jpg") no-repeat
    center center/cover;
  padding: 50px;
  min-height: 400px;
}

.have-an-adea-wrapper-section .left-text {
  flex: 1;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.have-an-adea-wrapper-section .get_idea {
  position: relative;
  width: 120px;
  height: 120px;
}

.have-an-adea-wrapper-section .projects_drop {
  width: 120px;
  height: 120px;
  cursor: pointer;
}

.have-an-adea-wrapper-section .projects_drop text {
  fill: white;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.have-an-adea-wrapper-section .cls-1 {
  fill: none;
  stroke: #00587A;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2.5s linear;
}
/* profile end */

@media (max-width: 991px) {
  .fullscreen-image-section {
    flex-direction: column;
    height: auto;
  }

  .details-image {
    height: 300px;
  }

  .fullscreen-image-section:hover .details-image {
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .portfolio-item {
    margin-bottom: 0px;
  }
  
}
/* 
@media (max-width: 500px) {
  .portfolio-item-wrapper-main .portfolio {
    column-count: 3;
  }
} */
