:root{
  --brand:#0d6efd;
  --ink:#212529;
}
body{font-feature-settings:"cv11","ss02";}
.hero-card img{object-fit:cover;height:140px;width:100%;}
.pill{background:#fff;border:1px solid rgba(0,0,0,.075);padding:.75rem 1rem;border-radius:999px;text-align:center;}
.v-checks li{position:relative;padding-left:1.75rem;margin-bottom:.5rem;}
.v-checks li::before{content:"✓";position:absolute;left:.5rem;top:0;color:var(--brand);}
.card-product{transition:transform .15s ease, box-shadow .15s ease;}
.card-product:hover{transform:translateY(-3px);box-shadow:0 .75rem 1.25rem rgba(0,0,0,.08);}
.badge-cat{position:absolute;top:.75rem;left:.75rem;}
footer .bi{font-size:1rem}

/* HERO SECTION */

.hero-section {
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)
    ),
    url('../img/banner-bg.jpg');

    background-size: cover;
    background-position: center;
    position: relative;
}

/*.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../../assets/img/sunshine_main.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
}*/

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('../../assets/img/sunshine_main.jpg') no-repeat center center;
    background-size: cover;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.hero-stat:hover {
    transform: translateY(-5px);
}

.hero-stat h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 5px;
}

.hero-stat p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
}

.hero-img {
    transition: 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

.hero-img-1 {
    margin-top: 40px;
}

.hero-img-4 {
    margin-top: -40px;
}

/* Fixed container */
.slider-box {
  max-height: 500px;              /* control height */
  align-items: center;
  justify-content: center;
  background: #f8f9fa;        /* optional light background */
}

/* Image behavior */
.slider-img {
  max-height: 500px;
  max-width: 100%;
  object-fit: contain;        /* ✅ keeps full image visible */
}

li i {
  margin-right: 8px;
}

.card-text.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.industry-pill{
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid #e5e5e5;
}

.industry-pill:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    border-color: #d8d8d8;
}

.process-section .card{
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.process-section .card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:4px;
    background:#c8a96a;
    transition:width .35s ease;
}

.process-section .card:hover::before{
    width:100%;
}

.process-section .card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12)!important;
}

.font-weight-size {
	font-size: large;
	font-weight: bold;
}

@media(max-width:768px){

    .hero-section {
        text-align: center;
    }

    .hero-image-grid {
        margin-top: 40px;
    }

    .hero-stat {
        padding: 15px;
    }

    .hero-stat h2 {
        font-size: 1.5rem;
    }

}
