body{
  margin: 0px;
  font-family: 'Inter', sans-serif;
  cursor: none;
}
a, button, input, textarea, select {
  cursor: none !important;
}
.topbar{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.2s ease;
}
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.08s ease;
}

.topbar-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 12px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    background: transparent;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #cbcbcba7;
}

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img img{
    width: 120px;
    height: auto;
    display: block;
}

.nav-links{
    display: flex;
    align-items:  center;
    gap: 16px;

}

.nav-links a{
    text-decoration: none;
    color: #494b4c;
    font-weight: 500;
    font-size: 17px;
    border-radius: 10px;
    padding: 12px 18px;
    transition: background 0.2s ease, transform 0.2s ease;
    
}
.nav-links a:hover{
    background: #9e9e9e6a;
    border-radius: 10px;   
}

.contact-link{
    padding: 12px 24px !important;
    background: linear-gradient(#F7931E, #FF6B35);
    color:  white !important;
    border-radius: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-link:hover{
    transform: scale(1.06);
    background: linear-gradient(#F7931E, #FF6B35) !important;
    box-shadow: 0 10px 20px rgba(99, 98, 98, 0.18);
}

.hamburger{
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span{
    display: block;
    height: 3px;
    background: rgb(55, 55, 55);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.active span:nth-child(1){
    transform: translateY(12px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: translateY(-12px) rotate(-45deg);
}

.mobile-drawer{
    position: relative;
    top: 60px;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #ffffffec;
    padding: 0 20px;
    transition: height 0.25s ease;
    z-index: 999;
}

.mobile-drawer.open{
    height: calc(32% - 60px);
    padding: 20px;
}

.nav-links.mobile{
    display: flex;
    flex-direction: column;
    gap: 8px; 
    align-items: flex-start;
    
}

.nav-links.mobile a{
    color: #424958;
    width: 335px; 
    font-size: 24px;
    align-items: flex-start;
    text-align: left;
    
}

.nav-links.mobile .contact-link{ 
    align-items: flex-start;
    text-align: center;
    width: 325px;
}

.projects-main{
  padding: 20px 0 0px;
}

.projects-main-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.searhc-part{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.searhc-part p{
    font-size: 28px;
}

.search-input{
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 8px;
  width: 100%;
  max-width: 520px;
}

.search-input:hover{
    border-bottom: 1px solid #89dcff;
}

.search-input:focus-within{
  border-bottom-color: #89dcff;
}

.search-input i{
  color: #888;
}

.search-input input{
  border: 0;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 15px;
  padding: 6px 0;
}

/* Buttons */
.projects-type-select{
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 90px;
}

.projects-type-select button{
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 4px;
  font-size: 15px;
  cursor: pointer;
  color: #444;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.projects-type-select button.active{
  border-bottom-color: #ff6b35; /* active underline */
  color: #000;
}



.projects-panels{
  padding: 30px 0 70px;
  overflow:hidden;
  transition: height .3s ease;
  background: rgb(239, 239, 239);
}

.projects-panels-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
  display:flex;
  width:300%;
  transition: transform .4s ease;
}

/* Title + Sort */
.title-and-sort{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.project-type-name p{
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.project-sort-div{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.project-sort-div select{
  border: none;
  background: transparent;
  color: #444;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  padding: 4px 0;
}

.project-sort-div select:hover{
  color: #ff6b35;
}

/* Options styling */
.project-sort-div option{
  background: #fff;
  color: #333;
}

.project-sort-div option:hover{
  background: #ff6b35;
  color: #fff;
}

/* Cards grid */
.project-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.12);
}

.project-card img{
  width: 100%;
  display: block;
  cursor: pointer; /* shows it's clickable */
}

.project-card p{
  margin: 0;
  padding: 12px 14px;
  font-weight: 600;
  color: #333;
}

.tabs{ display:flex; gap:12px; margin-bottom:16px; }
  .tab-btn{
    border:none;
    background:none;
    border-bottom:2px solid transparent;
    padding:6px 10px;
    cursor:pointer;
    font-size:14px;
  }
  .tab-btn.active{ border-bottom-color:#ff6b35; color:#000; }

  .panel{
    flex:0 0 100%;
    padding:20px 10px;
    border-radius:12px;
  }




/* Responsive */
@media (max-width: 900px){
   .nav-links.desktop{
        display: none;
    }
    .hamburger{
        display: flex;
    }

   
   .panel{
    margin-right: 30px;
    
   }
  .project-cards{
   display: inline-block;
   margin-right: 70px;
   width: 25%;
  }

  .project-card{
    margin-bottom: 10px;
  }



}







