/* Top Section */
.hero {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('../../resource/products/page-title.jpg') no-repeat center center/cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.breadcrumb {
    color: #f47c20;
    font-size: 16px;
}

.breadcrumb a {
    text-decoration: none;
    color: white;
}

.products-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    color: #1a1a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-subtitle {
    color: #f47c20;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 14px;
    text-align: left;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
}

.underline {
    width: 40px;
    height: 3px;
    background-color: #f47c20;
    margin: 12px 0 30px 0;
    border-radius: 2px;
}

.products-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
    width: 100%;
}

.product-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.product-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    display: block;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.product-card p {
    flex-grow: 1;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.learn-more {
    color: #f47c20;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.learn-more span {
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.learn-more:hover {
    color: #d65f00;
}

.learn-more:hover span {
    transform: translateX(5px);
}