/* Page Header */
.page-header {
    background: linear-gradient(to right, #1a3c34, #4caf50);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header .header-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}
.page-header .breadcrumb {
    background: transparent;
    font-size: 1.1rem;
}
.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
.page-header .breadcrumb-item.active {
    color: #ffd700;
}
.page-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url('../images/products-hero.jpg') no-repeat center/cover;
    filter: brightness(0.8);
}

/* Section Titles */
.section-subtitle {
    color: #4caf50;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3c34;
    margin-bottom: 2rem;
    text-align: center;
}

/* Products Section */
.products .product-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: zoomIn 1s ease-out;
}
.products .product-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Core Products Section */
.core-products {
    background: #fff;
}
.product-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.product-card-img {
    max-width: 100%;
    height: 200px;
    width: 300px;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.product-card-title {
    font-size: 1.3rem;
    color: #1a3c34;
    margin-bottom: 0.75rem;
}
.product-card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}
.product-cta-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}
.product-cta-button:hover {
    background: #1a3c34;
}

/* Why Our Products Section */
.why-products {
    background: #f8f9fa;
}
.why-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.why-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.why-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}
.why-card-title {
    font-size: 1.3rem;
    color: #1a3c34;
    margin-bottom: 0.75rem;
}
.why-card-text {
    font-size: 1rem;
    color: #666;
}

/* Applications Section */
.applications {
    background: #fff;
}
.app-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.app-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.app-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}
.app-card-title {
    font-size: 1.3rem;
    color: #1a3c34;
    margin-bottom: 0.75rem;
}
.app-card-text {
    font-size: 1rem;
    color: #666;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(to right, #4caf50, #1a3c34);
    color: #fff;
}
.cta .btn:hover {
    background: #fff;
    color: #1a3c34;
}
.blink {
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}