
/* ===== HERO SECTION ===== */
.manikins-hero {
    position: relative;
    background-color: #032C62;
    color: #ffffff;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 16px;
    margin-bottom: 50px;
    overflow: hidden;
}

.manikins-hero-overlay {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 50px 30px;
    border-radius: 12px;
    max-width: 900px;
    text-align: center;
}

.manikins-hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.manikins-hero-content h1 span {
    color: #A9C4E9;
}

.manikins-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-contact-btn {
    background-color: #ffffff;
    color: #032C62;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-contact-btn:hover {
    background-color: #e8f1ff;
    color: #021f46;
}

/* ===== CARD SECTION ===== */
.manikins-types-section {
    background-color: #f9fbff;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-heading {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: #032C62;
}

.manikins-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.manikin-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(3, 44, 98, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
}

.manikin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(3, 44, 98, 0.2);
}

.manikin-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.manikin-card h3 {
    font-size: 20px;
    color: #032C62;
    margin-bottom: 10px;
}

.manikin-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

.card-contact-btn {
    display: inline-block;
    background-color: #032C62;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.card-contact-btn:hover {
    background-color: #021f46;
}

/* ===== BULK ORDER SECTION ===== */
.bulk-order-section {
    background-color: #eaf2fb;
    padding: 60px 20px;
    text-align: center;
    color: #032C62;
}

.bulk-order-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #032C62;
}

.bulk-order-container p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #333;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1eb954;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background: #f0f6ff;
    border-top: 2px solid #d0e4ff;
}

.contact-section h2 {
    font-size: 24px;
    color: #032C62;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 16px;
    color: #333;
}

/* ===== EXPLORE OTHER PRODUCTS SECTION ===== */
.explore-products-section {
background-color: #f9fbff;
padding: 60px 20px;
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.explore-products-section h2 {
font-size: 30px;
margin-bottom: 30px;
color: #032C62;
}

.explore-products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.explore-product-card {
background-color: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 20px rgba(3, 44, 98, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
padding: 20px;
}

.explore-product-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 25px rgba(3, 44, 98, 0.2);
}

.explore-product-card img {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 15px;
}

.explore-product-card h3 {
font-size: 20px;
color: #032C62;
margin-bottom: 10px;
}

.explore-product-card p {
font-size: 14px;
color: #444;
margin-bottom: 20px;
}

.explore-product-btn {
display: inline-block;
background-color: #032C62;
color: #ffffff;
padding: 10px 20px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease;
}

.explore-product-btn:hover {
background-color: #021f46;
}

.manikins-card-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}