
/* ========================================
   HERO SECTION
======================================== */

    .hero-section{
  position:relative;
  overflow:hidden;
  padding:70px 0 90px;
  background:linear-gradient(
    180deg,
    rgba(99,102,241,0.04),
    rgba(255,255,255,1)
  );
}

.hero-bg-glow{
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(99,102,241,0.12),
    transparent 70%
  );
  top:-180px;
  right:-120px;
  pointer-events:none;
}

.hero-wrapper{
  position:relative;
}

.hero-content{
  max-width:700px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(99,102,241,0.08);
  color:#4f46e5;
  font-size:14px;
  font-weight:600;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:58px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
  color:#111827;
  margin-bottom:22px;
}

.hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  margin-bottom:32px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:36px;
}

.hero-point{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:#334155;
}

.hero-point i{
  color:#10b981;
  font-size:18px;
}

.hero-stats{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hero-stat-card{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:20px;
  padding:20px 24px;
  min-width:150px;
  box-shadow:0 12px 30px rgba(0,0,0,0.04);
}

.hero-stat-card h3{
  margin:0;
  font-size:28px;
  font-weight:800;
  color:#111827;
}

.hero-stat-card span{
  color:#64748b;
  font-size:14px;
}

.hero-form-card{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:28px;
  padding:34px;
  box-shadow:0 20px 60px rgba(0,0,0,0.06);
}

.hero-form-header h3{
  font-size:28px;
  font-weight:800;
  color:#111827;
  margin-bottom:10px;
}

.hero-form-header p{
  color:#64748b;
  margin-bottom:24px;
}

.custom-input{
  height:56px;
  border-radius:16px;
  border:1px solid #e2e8f0;
  padding:0 18px;
  font-size:15px;
  box-shadow:none !important;
}

textarea.custom-input{
  height:auto;
  padding:16px 18px;
  resize:none;
}

.custom-input:focus{
  border-color:#6366f1;
}

.hero-submit-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:16px;
  background:#111827;
  color:#fff;
  font-weight:700;
  font-size:16px;
  transition:all .3s ease;
}

.hero-submit-btn:hover{
  background:#000;
  transform:translateY(-2px);
}

.hero-form-note{
  text-align:center;
  margin-top:16px;
  font-size:14px;
  color:#64748b;
}

@media(max-width:991px){

  .hero-content h1{
    font-size:44px;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-form-card{
    margin-top:10px;
  }

}

@media(max-width:576px){

  .hero-section{
    padding:40px 0 60px;
  }

  .hero-content h1{
    font-size:34px;
    line-height:1.15;
    letter-spacing:-1px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-stat-card{
    width:100%;
  }

  .hero-form-card{
    padding:24px;
    border-radius:22px;
  }

}
.recent-products-section{
  padding:90px 0;
  background:#ffffff;
}

.recent-products-header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.header-left{
  max-width:720px;
}

.section-badge{
  display:inline-flex;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(99,102,241,0.08);
  color:#4f46e5;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}

.recent-products-header h2{
  font-size:46px;
  font-weight:800;
  line-height:1.1;
  letter-spacing:-1.5px;
  color:#111827;
  margin-bottom:16px;
}

.recent-products-header p{
  font-size:17px;
  line-height:1.8;
  color:#64748b;
}

.view-all-projects-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:16px;
  background:#111827;
  color:#fff;
  font-weight:600;
  transition:all .3s ease;
}

.view-all-projects-btn:hover{
  background:#000;
  color:#fff;
  transform:translateY(-2px);
}

.modern-product-card{
  height:100%;
  background:#fff;
  border:1px solid #edf2f7;
  border-radius:26px;
  overflow:hidden;
  transition:all .35s ease;
}

.modern-product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

.modern-product-image{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
}

.modern-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.modern-product-card:hover img{
  transform:scale(1.06);
}

.product-category-tag{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(17,24,39,0.85);
  color:#fff;
  font-size:12px;
  font-weight:600;
}

.modern-product-content{
  padding:28px;
}

.modern-product-content h3{
  font-size:24px;
  font-weight:700;
  color:#111827;
  margin-bottom:14px;
}

.modern-product-content p{
  color:#64748b;
  line-height:1.7;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;

  min-height:54px;
  margin-bottom:22px;
}

.product-meta-row{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.product-meta-row span{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#475569;
  font-weight:500;
}

.modern-product-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:54px;
  border-radius:16px;
  background:#111827;
  color:#fff;
  font-weight:700;
  transition:all .3s ease;
}

.modern-product-btn:hover{
  background:#000;
  color:#fff;
  transform:translateY(-2px);
}

@media(max-width:991px){

  .recent-products-header h2{
    font-size:36px;
  }

}

@media(max-width:576px){

  .recent-products-section{
    padding:60px 0;
  }

  .recent-products-header h2{
    font-size:30px;
  }

  .modern-product-content{
    padding:22px;
  }

  .modern-product-content h3{
    font-size:21px;
  }

}




/* ========================================
   CATEGORY PRODUCT SECTION
======================================== */

/*Category Section*/

.categories-section{
  padding:90px 0;
  background:linear-gradient(
    180deg,
    rgba(99,102,241,0.03),
    rgba(255,255,255,1)
  );
}

.categories-header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  flex-wrap:wrap;
  margin-bottom:50px;
}

.categories-header h2{
  font-size:44px;
  font-weight:800;
  line-height:1.1;
  letter-spacing:-1.5px;
  color:#111827;
  margin-bottom:14px;
}

.categories-header p{
  max-width:700px;
  color:#64748b;
  line-height:1.8;
  font-size:17px;
}

.view-all-categories-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:16px;
  background:#111827;
  color:#fff;
  font-weight:600;
  transition:all .3s ease;
}

.view-all-categories-btn:hover{
  background:#000;
  color:#fff;
  transform:translateY(-2px);
}

.modern-category-card{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:28px;
  background:#fff;
  border:1px solid #edf2f7;
  border-radius:24px;
  text-decoration:none;
  transition:all .35s ease;
  height:100%;
}

.modern-category-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,0.07);
}

.category-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(99,102,241,0.08);
  color:#4f46e5;
  font-size:24px;
  flex-shrink:0;
}

.category-card-content{
  flex:1;
}

.category-card-content h3{
  font-size:22px;
  font-weight:700;
  color:#111827;
  margin-bottom:10px;
}

.category-count{
  display:inline-block;
  margin-bottom:12px;
  color:#4f46e5;
  font-weight:600;
  font-size:14px;
}

.category-card-content p{
  color:#64748b;
  line-height:1.7;
  margin:0;
}

.category-arrow{
  color:#94a3b8;
  font-size:18px;
  transition:all .3s ease;
}

.modern-category-card:hover .category-arrow{
  transform:translateX(6px);
  color:#111827;
}

@media(max-width:991px){

  .categories-header h2{
    font-size:34px;
  }

}

@media(max-width:576px){

  .categories-section{
    padding:60px 0;
  }

  .categories-header h2{
    font-size:28px;
  }

  .modern-category-card{
    padding:22px;
  }

  .category-icon{
    width:56px;
    height:56px;
    font-size:20px;
  }

  .category-card-content h3{
    font-size:20px;
  }

}

/*Product Card*/
.compact-product-card{
  height:100%;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  border:1px solid #edf2f7;
  transition:all .35s cubic-bezier(.22,1,.36,1);
}

.compact-product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,0.08);
}

.compact-product-image{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
}

.compact-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.compact-product-card:hover img{
  transform:scale(1.06);
}

.product-tech-badge{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(17,24,39,0.85);
  color:#fff;
  font-size:12px;
  font-weight:600;
}

.compact-product-content{
  padding:24px;
}

.compact-product-content h3{
  font-size:22px;
  font-weight:700;
  color:#111827;
  margin-bottom:12px;
  line-height:1.35;
}

.compact-product-content p{
  font-size:15px;
  line-height:1.7;
  color:#64748b;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;

  min-height:52px;
  margin-bottom:18px;
}

.compact-product-meta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.compact-product-meta span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#475569;
  font-size:14px;
  font-weight:500;
}

.compact-product-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.product-price-wrap{
  display:flex;
  align-items:center;
}

.product-price{
  font-size:22px;
  font-weight:800;
  color:#111827;
  line-height:1;
}
.compact-buy-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:14px;
  background:#111827;
  color:#fff;
  font-size:14px;
  font-weight:700;
  transition:all .3s ease;
}

.compact-buy-btn:hover{
  background:#000;
  color:#fff;
  transform:translateY(-2px);
}

.category-products-section{

  padding:
  20px 0 70px;
  padding-top:100px;


  border-top:
  1px solid rgba(15,23,42,0.06);

}

.category-products-section{ position:relative; overflow:hidden; padding: 60px 0 80px; background: linear-gradient( to bottom, rgba(99,102,241,0.03), rgba(255,255,255,0) ); }

.category-products-section::before{ content:''; position:absolute; width:500px; height:500px; border-radius:50%; background: radial-gradient( circle, rgba(99,102,241,0.10), transparent 70% ); top:-200px; right:-150px; pointer-events:none; }

/* ========================================
   HEADER
======================================== */

.category-section-header{

  display:flex;

  align-items:end;

  justify-content:space-between;

  gap:20px;

  margin-bottom:30px;

  flex-wrap:wrap;

}

.category-label{

  display:inline-flex;

  padding:
  7px 14px;

  border-radius:999px;

  background:
  rgba(99,102,241,0.08);

  color:#6366f1;

  font-size:13px;

  font-weight:600;

  margin-bottom:14px;

}

.category-section-header h2{

  font-size:34px;

  font-weight:800;

  letter-spacing:-1px;

  color:#111827;

}

.category-view-more{

  font-weight:600;

  color:#6366f1;

  transition:
  all .3s ease;

}

.category-view-more:hover{

  transform:translateX(4px);

  color:#4f46e5;

}



/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:991px){

  .category-section-header h2{

    font-size:28px;

  }

}

@media(max-width:576px){

  .category-products-section{

    padding:
    10px 0 50px;

  }

  .compact-product-content{

    padding:18px;

  }

  .compact-product-content h3{

    font-size:20px;

  }

}


