body {
    font-family: 'Poppins', sans-serif;
}

.hero {
    background: linear-gradient(to right, #002f6c, #00509e);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card {
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #eaeaea;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.amv-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr)
}

.amv-box {
    border-radius: 18px;
    overflow: hidden;
    background: #dfeaf6
}

.amv-card {
    background: #dfeaf6;
    border-radius: 18px;
    padding: 36px;
    text-align: center;
    height: 100%
}

.amv-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.amv-title {
    font-weight: 800;
    color: #194f82;
    letter-spacing: .5px
}

.amv-text {
    color: #5a6a7a
}

.amv-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    color: #194f82
}

@media (max-width: 992px) {
    .amv-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 576px) {
    .amv-grid {
        grid-template-columns: 1fr
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, #002f6c 0%, #00509e 50%, #007bff 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" x="0" y="0" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.min-vh-50 {
    min-height: 50vh;
}

.product-item {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 47, 108, 0.15);
}

.product-image-container {
    position: relative;
    height: 250px;
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image-container img {
    transform: scale(1.05);
}

.product-placeholder {
    font-size: 3rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-item:hover .product-placeholder {
    transform: scale(1.05);
    opacity: 1;
}

.product-item:hover .product-placeholder img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.product-card {
    transition: all 0.3s ease;
}

.product-card.hidden {
    display: none;
}

.product-card.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Input Styling */
.input-group-text {
    border-radius: 10px 0 0 10px;
}

.form-control {
    border-radius: 0 10px 10px 0;
    border-left: none;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-placeholder {
        font-size: 2rem;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .products-hero .lead {
        font-size: 1rem;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-placeholder {
        font-size: 1.5rem;
    }
}