
   .product-section {
    padding: 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title h2 {
    font-size: 32px;
    color: #3D3D7C;
    font-weight: 700;
}

.section-title span {
    display: block;
    width: 70px;
    height: 4px;
    background: #f37437;
    margin-top: 12px;
    margin-bottom: 35px;
    border-radius: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-img {
    overflow: hidden;
    aspect-ratio: 2;
}

.product-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: fill;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px 15px;
}

.product-content h3 {
    font-size: 19px;
    margin-bottom: 25px;
    color: #111;
/*    min-height: 90px;*/
    line-height: 1.4;
    font-family: Poppins;
}

.btn {
    display: inline-block;
    background: #f37437;
    color: white;
    padding: 9px 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #111;
    transform: scale(1.05);
}

/*.active-card {
    background: linear-gradient(135deg, #ff2b2b, #ff4444);
}*/

.active-card .product-content h3 {
    color: white;
}

.active-card .btn {
    background: white;
    color: #ff2b2b;
}

.active-card .btn:hover {
    background: #111;
    color: white;
}

@media(max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 26px;
    }
}
.product-content {
    padding: 15px;
    transition: all 0.4s ease;
}

.product-content h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.4;
    transition: 0.4s ease;
}

/* Hover pe red background */
.product-card:hover .product-content {
    background: linear-gradient(135deg, #e97838, #f37437);
}

.product-card:hover .product-content h3 {
    color: #fff;
}

.product-card:hover .btn {
    background: #fff;
    color: #ef7537;
}

/* Premium Hero Section */
.premium-hero {
    position: relative;
    background: linear-gradient(180deg, rgb(15 23 42 / 46%) 0%, rgb(15 23 42 / 18%) 100%), url(img/about.png) no-repeat center center / cover;
    padding: 160px 0 100px 0;
    color: #ffffff;
}

.premium-hero h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Section Header Utility */
.section-tag {
    color: var(--brand-accent);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.main-heading {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand-primary);
}

/* Abstract Box/Image Effect */
.image-stack {
    position: relative;
}
.image-stack::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--brand-accent);
    border-radius: 16px;
    z-index: -1;
    transition: all 0.4s ease;
}
.image-stack:hover::before {
    bottom: -10px;
    right: -10px;
}

/* Corporate Split Cards (Mission/Vision) */
.split-card {
    background: var(--brand-light);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.split-card:hover {
    border-color: var(--brand-accent);
    transform: translateY(-4px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--brand-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

/* Counter Metric Strip */
.metrics-bar {
    background: #f37437;
    color: #ffffff;
    border-radius: 24px;
    padding: 50px 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}
 