html, body {
  overflow-x: hidden;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
body{
    background:#0f172a;
    color:#fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

/* 🔥 NAVBAR SCROLL EFFECT */
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: 0.3s;
}

/* 🔥 HIDE/SHOW NAVBAR */
.navbar.hide {
  transform: translateY(-100%);
  transition: 0.3s;
}

/* 🔥 LOGO GLOW */
.logo {
  position: relative;
  transition: 0.3s;
}

.logo:hover {
  color: #60a5fa;
  text-shadow: 0 0 10px rgba(59,130,246,0.7);
}

.logo img {
  height: 45px;   /* adjust size */
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s;
}

/* 🔥 Hover effect */
.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(59,130,246,0.6));
}

/* 🔥 NAV LINK UNDERLINE ANIMATION */
.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* 🔥 MOBILE MENU ANIMATION */
.nav-links {
  transition: all 0.4s ease;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #3b82f6;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #3b82f6;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ============ mobile view fix ============ */
@media(max-width:768px){

  .menu-toggle{
    display:block;
    color:#fff;
    z-index:1100;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:-100%;
    flex-direction:column;
    background:#020617;
    width:100%;
    text-align:center;
    padding:20px 0;
    transition:0.4s;
  }

  .nav-links.active{
    right:0;
  }

}


/* ========================
footer section
======================== */
/* FOOTER */
.footer {
  background: #020617;
  padding: 80px 20px 30px;
  color: #fff;
}

/* GRID */
.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer .logo {
  font-size: 20px;
  color: #3b82f6;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 77px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* 🔥 Hover effect */
.footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(59,130,246,0.6));
}

.footer-desc {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 20px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons i {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #3b82f6;
  transform: translateY(-5px);
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 15px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

/* CONTACT */
.footer-col p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.footer-col i {
  color: #3b82f6;
  margin-right: 8px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}


/* ==================================
UPDATED PRODUCT HERO FIX
Replace old hero CSS with this
================================== */

.product-hero{
    position: relative;
    min-height: 72vh;
    background: url("../asset/image/productbg.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:110px 20px 70px;
    overflow:hidden;
}

/* overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,0.58);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:820px;
    width:100%;
    animation: heroFade 1.2s ease forwards;
}

.hero-content h1{
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight:700;
    line-height:1.15;
    margin-bottom:22px;
    color:#fff;
    letter-spacing:-1px;
    opacity:0;
    transform:translateY(30px);
    animation:titleUp 1s ease forwards;
}

/* blue text */
.hero-content h1 span{
    color:#2563eb;
    text-shadow:0 0 15px rgba(37,99,235,0.45);
}

.hero-content p{
    font-size: clamp(1rem, 0.5vw, 1rem);
    color:#e5e7eb;
    line-height:1.8;
    max-width:760px;
    margin:auto;
    opacity:0;
    transform:translateY(25px);
    animation:titleUp 1s ease forwards;
    animation-delay:.35s;
}

/* floating circles */
.float-shape{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(59,130,246,.35);
    z-index:2;
    animation: floatMove 5s ease-in-out infinite;
}

.shape1{
    width:24px;
    height:24px;
    top:18%;
    left:48%;
}

.shape2{
    width:16px;
    height:16px;
    top:52%;
    left:22%;
}

.shape3{
    width:42px;
    height:42px;
    top:20%;
    right:18%;
}

/* =====================
TABLET
===================== */
@media(max-width:768px){

.product-hero{
    min-height:65vh;
    padding:100px 18px 60px;
}

.hero-content h1{
    font-size: clamp(2rem, 7vw, 3.2rem);
    line-height:1.2;
}

.hero-content p{
    font-size:1rem;
    line-height:1.7;
    max-width:95%;
}

}

/* =====================
MOBILE VIEW
===================== */
@media(max-width:480px){

.product-hero{
    min-height:62vh;

    /* different mobile image */
    background: url("../asset/image/prmobilebg.png") center center/cover no-repeat;

    padding:95px 16px 50px;
}

.hero-content h1{
    font-size:2rem;
    line-height:1.25;
    margin-bottom:14px;
}

.hero-content p{
    font-size:0.92rem;
    line-height:1.65;
}

.shape1{display:none;}
.shape2{display:none;}
.shape3{
    width:28px;
    height:28px;
    right:8%;
    top:14%;
}

}


/* animations */
@keyframes titleUp{
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes heroFade{
from{opacity:0;}
to{opacity:1;}
}

@keyframes floatMove{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-12px);}
}

/* ==================================
ACTIVE INVENTORY SECTION
================================== */

.inventory-section{
    padding:90px 8%;
    background:#000;
}

.inventory-head{
    margin-bottom:38px;
    max-width:620px;
}

.inventory-head h2{
    font-size:2rem;
    font-weight:700;
    margin-bottom:12px;
    color:#fff;
}

.inventory-head h2 i{
    color:#2563eb;
    margin-right:8px;
}

.inventory-head p{
    color:#9ca3af;
    line-height:1.8;
    font-size:0.96rem;
}

/* grid */
.inventory-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/* card */
.inventory-card{
    background:#131722;
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.4s ease;
    opacity:0;
    transform:translateY(45px);
}

.inventory-card.show{
    opacity:1;
    transform:translateY(0);
}

/* hover */
.inventory-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(37,99,235,0.15);
    border-color:rgba(37,99,235,0.45);
}

/* image */
.card-image{
    position:relative;
    height:220px;
    overflow:hidden;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s ease;
}

.inventory-card:hover .card-image img{
    transform:scale(1.12);
}

/* tag */
.card-image span{
    position:absolute;
    top:12px;
    left:12px;
    background:rgba(17,24,39,0.82);
    color:#fff;
    font-size:0.72rem;
    padding:6px 10px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
}

/* content */
.card-content{
    padding:20px 18px 22px;
}

.card-content h3{
    font-size:1.18rem;
    line-height:1.4;
    margin-bottom:10px;
    color:#fff;
}

.card-content small{
    display:block;
    color:#d1d5db;
    margin-bottom:12px;
    font-size:0.82rem;
}

.card-content small i{
    color:#3b82f6;
    margin-right:6px;
}

.card-content p{
    color:#9ca3af;
    font-size:0.92rem;
    line-height:1.7;
}

/* tablet */
@media(max-width:992px){

.inventory-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* mobile = 2 cards in row */
@media(max-width:600px){

.inventory-section{
    padding:70px 4%;
}

.inventory-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.card-image{
    height:135px;
}

.card-content{
    padding:14px 12px 16px;
}

.card-content h3{
    font-size:0.95rem;
    line-height:1.4;
}

.card-content small{
    font-size:0.72rem;
}

.card-content p{
    font-size:0.78rem;
    line-height:1.55;
}

.inventory-head h2{
    font-size:1.55rem;
}

.inventory-head p{
    font-size:0.88rem;
}

.card-image span{
    font-size:0.62rem;
    padding:4px 8px;
}

}

/* ==================================
CUSTOM SOURCING CTA SECTION
================================== */

.cta-source{
    padding:90px 8%;
    background:linear-gradient(90deg,#111827,#0b1220);
}

.cta-box{
    position:relative;
    background:
    linear-gradient(90deg,rgba(37,99,235,0.12),rgba(0,0,0,0.88));
    border-radius:18px;
    padding:48px 40px;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:30px;
    align-items:center;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

/* glow top */
.cta-box::before{
    content:"";
    position:absolute;
    top:-80px;
    left:-80px;
    width:220px;
    height:220px;
    background:rgba(37,99,235,0.18);
    filter:blur(80px);
    border-radius:50%;
}

/* left */
.cta-left{
    position:relative;
    z-index:2;
}

.cta-left h2{
    font-size:2.35rem;
    line-height:1.2;
    margin-bottom:18px;
    color:#fff;
    font-weight:700;
}

.cta-left p{
    max-width:620px;
    color:#9ca3af;
    line-height:1.9;
    font-size:1rem;
    margin-bottom:28px;
}

/* users */
.cta-users{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.user-stack{
    display:flex;
}

.user-stack img,
.user-stack span{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #111827;
    margin-left:-10px;
}

.user-stack img:first-child{
    margin-left:0;
}

.user-stack span{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#dbeafe;
    color:#111827;
    font-weight:700;
    font-size:0.95rem;
}

.cta-users small{
    color:#e5e7eb;
    font-size:0.95rem;
}

/* right */
.cta-right{
    position:relative;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* globe */
.globe-ring,
.globe-ring::before,
.globe-ring::after{
    position:absolute;
    content:"";
    border:2px solid rgba(37,99,235,0.14);
    border-radius:50%;
}

.globe-ring{
    width:180px;
    height:180px;
    animation:rotateGlobe 16s linear infinite;
}

.globe-ring::before{
    inset:22px 58px;
}

.globe-ring::after{
    inset:58px 22px;
}

.ring2{
    transform:rotate(90deg);
    animation-direction:reverse;
}

/* button */
.cta-btn{
    position:relative;
    z-index:5;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:14px;
    font-weight:600;
    transition:0.35s ease;
    box-shadow:0 12px 25px rgba(37,99,235,0.35);
}

.cta-btn:hover{
    transform:translateY(-6px) scale(1.03);
    background:#1d4ed8;
}

/* animation */
@keyframes rotateGlobe{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

/* =====================
TABLET
===================== */
@media(max-width:992px){

.cta-box{
    grid-template-columns:1fr;
    text-align:center;
}

.cta-left p{
    margin:auto auto 28px;
}

.cta-users{
    justify-content:center;
}

.cta-right{
    min-height:180px;
}

}

/* =====================
MOBILE
===================== */
@media(max-width:600px){

.cta-source{
    padding:70px 4%;
}

.cta-box{
    padding:34px 20px;
    border-radius:16px;
}

.cta-left h2{
    font-size:1.65rem;
}

.cta-left p{
    font-size:0.92rem;
    line-height:1.75;
}

.user-stack img,
.user-stack span{
    width:36px;
    height:36px;
}

.cta-users small{
    font-size:0.82rem;
}

.cta-btn{
    padding:15px 24px;
    font-size:0.92rem;
}

.globe-ring{
    width:145px;
    height:145px;
}

}