:root{
  --primary:#1e90ff;
  --soft:#f2f8ff;
  --danger:#dc3545;
}
body{font-family:'Segoe UI',sans-serif;padding-top:10px;}

/* Navbar */
.navbar{background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.08);}
.navbar .nav-link{color:#555;}
.navbar .nav-link:hover{color:var(--primary);}

/* Banner */
.hero-banner{
  position:relative;
  background:url('https://images.unsplash.com/photo-1588776814546-94c58d454b9f?w=1600') center/cover no-repeat;
  height:85vh;
  display:flex;align-items:center;
}
.hero-banner .overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,rgba(30,144,255,.85),rgba(0,123,255,.55));
}
.banner-content{position:relative;z-index:2;max-width:800px;}
.banner-content .btn-danger{background:var(--danger);border:0;}
.contact-box{display:flex;gap:30px;flex-wrap:wrap;}
.contact-box i{margin-right:8px;color:var(--danger);}

/* Sections */
.section{padding:80px 0;}
.bg-soft{background:var(--soft);}
.catalog-card{width:220px;transition:.3s;}
.catalog-card:hover{transform:translateY(-5px);box-shadow:0 8px 20px rgba(30,144,255,.1);}

/* Floating Buttons */
.side-buttons{position:fixed;right:0;top:40%;display:flex;flex-direction:column;z-index:999;}
.btn-side{
  margin:4px 0;padding:12px 15px;color:#fff;text-align:center;text-decoration:none;font-size:18px;border-radius:6px 0 0 6px;transition:.3s;
}
.btn-order{
  margin:4px 0;padding:12px 15px;color:#fff;text-align:center;text-decoration:none;font-size:18px;border-radius:6px 6px 6px 6px;transition:.3s;
}
.btn-side.whatsapp{background:#25D366;}
.btn-order.Orderwhatsapp{background:#25D366;}
.btn-order.Orderwhatsapp:hover{color:black;}
.btn-side.email{background:#0d6efd;}
.btn-side.call{background:#198754;}
.btn-side.product{
  background:var(--danger);
  font-size:13px;font-weight:600;
  writing-mode:vertical-rl;text-orientation:mixed;
  border-radius:6px 0 0 6px;
}
.btn-side:hover{opacity:.85;}

.quick-inquiry{
  position:fixed;left:0;top:40%;background:var(--danger);color:#fff;
  padding:10px 12px;writing-mode:vertical-rl;text-orientation:mixed;
  font-weight:600;border-radius:0 6px 6px 0;text-decoration:none;
  z-index:999;transition:.3s;
}
.quick-inquiry:hover{opacity:.85;}

/* Footer */
footer{background:var(--primary);color:#fff;}

/* Scroll to top */
#scrollTopBtn{
  position:fixed;bottom:25px;right:25px;width:45px;height:45px;border-radius:50%;
  background:var(--primary);color:#fff;border:none;display:none;align-items:center;justify-content:center;
  box-shadow:0 6px 12px rgba(0,0,0,.15);z-index:999;
}
#scrollTopBtn:hover{background:#0d6efd;}






#heroCarousel .carousel-item {
  height: 100vh;
  position: relative;
}

#heroCarousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
}

.banner-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.contact-box i {
  margin-right: 8px;
}



#heroCarousel .carousel-item {
  height: 100vh;
  position: relative;
}

#heroCarousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
}

.banner-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.contact-box i {
  margin-right: 8px;
}

.carousel-indicators {
  bottom: 30px; /* position dots higher above bottom */
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #dc3545; /* red accent for active dot */
}


.bg-primary {
        background-color: #2d3238 !important;  
    }
	
	
	
	.about-section {
  background-color: #f8f9fa; /* light background for contrast */
  color: #2d3238;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2d3238;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: #dc3545; /* red accent */
  border-radius: 2px;
  margin-top: 10px;
}

.about-section p {
  font-size: 0.85rem;
}

.btn-danger {
  background-color: #dc3545;
  border: none;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #b91c2d;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }
  .about-section img {
    max-width: 90%;
  }
}




.product-categories-section {
  background-color: #f8f9fa;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: capitalize;
}

.category-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card img {
  transition: transform 0.6s ease;
  object-fit: cover;
  height: 100%;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0.85;
  transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(220, 53, 69, 0.8), transparent);
}

.category-overlay h5 {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .category-card {
    margin-bottom: 20px;
  }
  .category-overlay h5 {
    font-size: 1rem;
  }
}


.product-catalog-section {
  background-color: #f8f9fa;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
}

/* Product Card */
.product-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Image zoom on hover */
.product-card img {
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* 🔹 Red banner style button */
.catalog-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #dc3545;
  padding: 10px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
  transition: all 0.4s ease;
  opacity: 0;
}

/* Show banner on hover */
.product-card:hover .catalog-banner {
  opacity: 1;
}

/* Optional: always visible (uncomment next line if you prefer it always on) */
/* .catalog-banner { opacity: 1; } */

@media (max-width: 768px) {
  .catalog-banner {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}


/* Dynamic stats */

:root{
      --bg:#f7f9fb;
      --card:#ffffff;
      --accent:#1e88e5;
      --muted:#6b7280;
      --radius:14px;
      --glass: rgba(255,255,255,0.6);
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
      background:none;
      color:#111827;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      
      align-items:center;
      justify-content:center;
      min-height:100vh;
    }

    .stats-wrap{
      width:100%;
      max-width:1100px;
      background:var(--card);
      border-radius:18px;
      padding:28px;
      box-shadow:0 8px 30px rgba(15,23,42,0.08);
      display:grid;
      grid-template-columns:1fr;
      gap:20px;
      align-items:center;
    }

    @media (max-width:880px){
      .stats-wrap{grid-template-columns:1fr; padding:20px}
    }

    .left{
      padding:6px 6px 6px 6px;
    }
    .eyebrow{
      color:var(--muted);
      font-weight:600;
      letter-spacing:0.6px;
      font-size:13px;
    }
    h1{margin:6px 0 16px 0; font-size:26px; color:dodgerblue}
    p.lead_stat{margin:0 0 18px 0; color:var(--muted); line-height:1.5}

    .stat-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:40px;
      padding:20px 0;
    
        
    }
    @media (max-width:640px){
      .stat-grid{grid-template-columns:repeat(1,1fr)}
    }

    .stat{
      background:none;
      border-radius:0;
      padding:0;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:8px;
      min-height:auto;
    }

    .stat .num{
      font-size:64px;
      font-weight:800;
      color:var(--accent);
      display:flex;
      align-items:baseline;
      gap:10px;
    }
    .stat .num .plus{font-size:18px; color:var(--accent)}
    .stat .label{
      color:var(--muted);
      font-size:20px;
      font-weight:600;
    }

    /* right column card */
    .right-card{
      background:linear-gradient(135deg, rgba(255,255,255,0.7), rgba(245,247,250,0.8));
      border-radius:12px;
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      align-items:flex-start;
      box-shadow:inset 0 1px 0 rgba(255,255,255,0.6);
    }

    .right-card p{margin:0; color:var(--muted); font-size:14px}
    .cta{margin-top:6px; display:inline-flex; gap:8px; align-items:center}
    .btn{
      background:var(--accent);
      color:white;
      border:none;
      padding:10px 14px;
      border-radius:10px;
      font-weight:600;
      cursor:pointer;
      box-shadow:0 6px 18px rgba(30,136,229,0.18);
    }

    /* subtle entrance animation */
    .stats-wrap{transform:translateY(6px); opacity:0; animation:fadeInUp .6s ease-out .1s forwards}
    @keyframes fadeInUp{to{transform:none; opacity:1}}

    /* micro interactions */
    .stat:hover{transform:translateY(-4px); transition:transform .25s ease}
    .num-animate{transform-origin:left center}

    footer.small{font-size:12px; color:var(--muted); margin-top:8px}


/*Testimonial*/

.tsti-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
    position:relative;
}

.tsti-heading{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
}

.tsti-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.tsti-slide{
    display:none;
    animation:fade 1s ease-in-out;
    padding:20px;
}

.tsti-slide.active{
    display:block;
}

@keyframes fade{
    from{opacity:0;}
    to{opacity:1;}
}

.tsti-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:25px;
}

.tsti-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    transition:.3s;
}

.tsti-card:hover{
    transform:translateY(-5px);
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.tsti-img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
}

.tsti-name{
    font-size:14px;
    font-weight:700;
    margin-bottom:5px;
}

.tsti-stars{
    color:#ffbb00;
    font-size:18px;
    margin-bottom:10px;
}

.tsti-text{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

.tsti-dots{
    margin-top:20px;
}

.tsti-dot{
    height:12px;
    width:12px;
    background:#bbb;
    border-radius:50%;
    display:inline-block;
    margin:5px;
    cursor:pointer;
    transition:0.3s;
}

.tsti-dot.active{
    background:#333;
    width:28px;
    border-radius:6px;
}
