/*-- ================================================ --*/
/*-- ================= HERO PREMIUM ================= --*/
/*-- ================================================ --*/




/*-- ============================================== --*/
/*-- ================= PHILOSOPHY ================= --*/
/*-- ============================================== --*/
.custom-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17,17,24,0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
}
.custom-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--x,50%) var(--y,50%), rgba(212,175,55,0.1), transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.custom-card:hover::before { opacity: 1; }
.custom-card:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.06);
}
.custom-card .card-icon {
  width: 60px; height: 60px;
  margin-bottom: 20px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  transition: all 0.35s ease;
}
.custom-card:hover .card-icon {
  transform: scale(1.12) rotate(4deg);
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}
.custom-card .card-icon img {
  width: 36px; height: 36px;
  object-fit: contain;
  transition: all 0.35s ease;
}
.custom-card:hover .card-icon img {
  transform: scale(1.12) rotate(4deg);
}
.custom-card h4 { font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.custom-card p  { font-size: 14px; line-height: 1.7; color: var(--text-muted); }




/*-- ================================================= --*/
/*-- ================= WHY CHOOSE US ================= --*/
/*-- ================================================= --*/





/*-- ============================================ --*/
/*-- ================= SERVICES ================= --*/
/*-- ============================================ --*/
.custom-card .btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 30px;
  transition: all 0.3s;
}
.custom-card .btn-link-gold:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}




/*-- ================================================ --*/
/*-- ================= WORK PROCESS ================= --*/
/*-- ================================================ --*/
.process-step {
  position: relative;
  overflow: hidden;
  background: rgba(17,17,24,0.75);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.4s ease;
  height: 100%;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--x,0) var(--y,0), rgba(212,175,55,0.08), transparent 50%);
  z-index: 0; opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.process-step:hover::before { opacity: 1; }
.process-step:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(212,175,55,0.2);
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.process-step:hover .step-num {
  color: var(--gold);
  transform: scale(1.08);
}
.step-content { position: relative; z-index: 1; }
.step-content h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step-content p  { font-size: 14px; line-height: 1.7; color: var(--text-muted); }



/*-- ========================================= --*/
/*-- ================= QUOTE ================= --*/
/*-- ========================================= --*/




/*-- ======================================== --*/
/*-- ================= BLOG ================= --*/
/*-- ======================================== --*/




/*-- ================================================ --*/
/*-- ================= FORM SECTION ================= --*/
/*-- ================================================ --*/
.custom-multiselect {
cursor: pointer;
position: relative;
background: #111118;
border: 1px solid rgba(212,175,55,0.45);
border-radius: 8px;
padding: 14px 18px;
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 14px;
display: flex;
align-items: center;
justify-content: space-between;
user-select: none;
transition: border-color 0.3s ease;
}
.custom-multiselect:hover {
border-color: rgba(212,175,55,1);
}
.multiselect-dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #111118;
border: 1px solid rgba(212,175,55,0.6);
border-radius: 8px;
margin-top: 5px;
z-index: 999;
max-height: 260px;
overflow-y: auto;
box-shadow: 0 10px 25px rgba(0,0,0,0.5);
padding: 8px 0;
}
.multiselect-dropdown-menu.show {
display: block !important;
}
.dropdown-item-checkbox {
padding: 10px 18px;
display: flex;
align-items: center;
gap: 12px;
cursor: pointer;
color: #fff;
margin: 0;
transition: background 0.2s ease;
}
.dropdown-item-checkbox:hover {
background: #181822;
}
.dropdown-item-checkbox input[type="checkbox"] {
accent-color: #d4af37;
width: 16px;
height: 16px;
cursor: pointer;
}
.dropdown-item-checkbox input[type="checkbox"]:checked + span {
color: #d4af37;
font-weight: 500;
}
.custom-multiselect.open .chevron-icon {
transform: rotate(180deg);
}
#dropdownSelectedText {
color: #888;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-right: 10px;
}





/*-- ===================================================== --*/
/*-- ================= FEATURES PROJECTS ================= --*/
/*-- ===================================================== --*/
.portfolio-wrapper {max-width: 1200px; margin: 0 auto; padding: 36px; background: rgba(17,17,24,0.65); border: 1px solid rgba(212,175,55,0.18); border-radius: 28px; backdrop-filter: blur(14px); box-shadow: 0 25px 60px rgba(0,0,0,0.4);}
.portfolio-card {background: linear-gradient(145deg,#111114,#1b1b24); border: 1px solid rgba(212,175,55,0.15); border-radius: 20px; overflow: hidden; transition: 0.4s ease; height: 100%;}
.portfolio-card:hover {transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 25px 50px rgba(212,175,55,0.15);}
.portfolio-img { height: 200px; overflow: hidden; }
.portfolio-img img { width:100%; height:100%; object-fit:cover; transition:0.5s ease; }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-content { padding: 24px; }
.portfolio-category { color:var(--gold); font-size:11px; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:8px; font-weight:600; }
.portfolio-content h4 { color:#fff; font-size:20px; margin-bottom:10px; }
.portfolio-content p  { color:#aaa; font-size:13.5px; line-height:1.8; }
.portfolio-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.portfolio-tags span { background:rgba(212,175,55,0.07); border:1px solid rgba(212,175,55,0.15); color:#ddd; padding:5px 12px; border-radius:30px; font-size:11.5px; }
.carousel-control-prev,
.carousel-control-next { width:52px; height:52px; top:50%; transform:translateY(-50%); background:#111114; border:1px solid rgba(212,175,55,0.3); border-radius:50%; opacity:1; transition:all 0.3s; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background:var(--gold); border-color:var(--gold); }
.carousel-control-prev { left:-26px; }
.carousel-control-next { right:-26px; }
.carousel-indicators { bottom:-55px; }
.carousel-indicators button { width:8px !important; height:8px !important; border-radius:50%; background:var(--gold) !important; opacity:0.4; }
.carousel-indicators button.active { opacity:1; }
.custom-portfolio-wrapper {overflow: hidden; width: 100%; padding: 20px 0; position: relative;}
.custom-portfolio-row {display: flex; gap: 20px; width: max-content; animation: scroll-it 20s linear infinite; }
.custom-portfolio-row:hover {animation-play-state: paused;}
.portfolio-item-col {width: 285px; flex-shrink: 0;}
@keyframes scroll-it {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-285px * 5 - 20px * 5)); 
    }
}




