/* --- BRAND VARIABLES --- */
:root {
    --brand-color: #990b6e;
    --brand-light: #cd6fa8;
    --brand-dark: #4B006E;
    --brand-gold: #f1c40f;
    --sticker-bg: #f5dfcc;
    --gradient: linear-gradient(135deg, #4B006E 0%, #990b6e 100%);
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --border-light: #e0e0e0;
    
    --home-hero-h: 100vh;
    --inner-hero-h: 92vh;
}

/* --- GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); line-height: 1.6; background-color: var(--white); overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; color: var(--brand-color); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: 0.3s; cursor: pointer; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 30px 0; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* --- ANIMATION CLASSES --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 12px 30px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s ease; font-size: 14px; border: none; }
.btn-primary { background: var(--brand-color); color: var(--white); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--brand-color); border: 2px solid var(--brand-color); }
.btn-outline:hover { background: var(--brand-color); color: var(--white); }

/* --- DIV BUTTONS --- */
.div-btn-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 60px; margin-top: 40px; }
.div-btn { background: #fdfdfd; color: var(--brand-color); font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1rem; padding: 10px 15px; text-align: center; width: 100%; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; border: 2px solid var(--brand-gold); outline: 2px solid var(--brand-color); outline-offset: 3px; border-radius: 4px; margin-top: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); display: inline-block; }
.div-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(153, 11, 110, 0.2); background: #fff; }

/* --- PAGE STRUCTURE FIXES --- */
main { flex: 1; position: relative; }
.page-view { display: block !important; opacity: 1 !important; visibility: visible !important; }

/* ================= HEADER (TRANSPARENT -> BLACK GLASS) ================= */
header {
    background: transparent !important;
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

header.scrolled {
    background: rgba(103, 98, 98, 0.9) !important;
    backdrop-filter: blur(0px);
    height: 65px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: none;
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { 
    display: flex; 
    align-items: center; 
    z-index: 1001; 
    background: transparent !important; 
    padding: 0;
}
.logo img { 
    max-height: 70px; 
    width: auto; 
    object-fit: contain;
}

.nav-links { display: flex; gap: 25px; align-items: center; height: 100%; }
.nav-item-container { position: relative; height: 90px; display: flex; align-items: center; }

.nav-links a.nav-link-main { 
    font-family: 'Roboto', sans-serif; 
    font-weight: 700; 
    font-size: 14px; 
    color: #ffffff;
    text-transform: uppercase; 
    padding: 10px 0; 
    position: relative; 
    transition: color 0.3s ease; 
    white-space: nowrap; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nav-links a.nav-link-main:hover,
.nav-links a.nav-link-main.nav-active { 
    color: var(--brand-color);
    text-shadow: none;
}

.nav-links a.nav-link-main.nav-active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-color);
    transform: scaleX(1);
}

.mobile-menu-btn { 
    display: none; 
    font-size: 24px; 
    color: #ffffff; 
    cursor: pointer; 
    z-index: 1001; 
}

.dropdown-menu { display: none; position: absolute; top: 90px; left: -20px; background-color: rgba(0, 0, 0, 0.9); min-width: 240px; box-shadow: 0 8px 25px rgba(0,0,0,0.3); z-index: 1002; border-top: 3px solid var(--brand-color); border-radius: 0 0 4px 4px; }
.nav-item-container:hover .dropdown-menu { display: block; animation: slideDown 0.3s ease; }
.dropdown-menu a { color: #fff; padding: 12px 16px; text-decoration: none; display: block; font-size: 13px; text-transform: capitalize; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; }
.dropdown-menu a:hover { background-color: rgba(255,255,255,0.1); color: var(--brand-color); }

.dropdown-submenu { display: none; position: absolute; left: 100%; top: 0; background-color: rgba(0, 0, 0, 0.9); min-width: 200px; box-shadow: 0 8px 16px rgba(0,0,0,0.3); border-top: 3px solid var(--brand-color); border-radius: 0 4px 4px 4px; }
.has-submenu:hover .dropdown-submenu { display: block; }
.has-submenu > a::after { content: '›'; float: right; margin-left: 10px; font-weight: bold; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px); z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform 0.3s ease-in-out; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 1.2rem; margin: 15px 0; color: #fff; font-weight: 700; text-transform: uppercase; }

/* ================= HERO/LAYOUT (PARALLAX UPDATED) ================= */
.fixed-hero 
{ 
    /* Changed from absolute to fixed for Curtain Parallax Effect */
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: -1; 
    will-change: transform; /* Performance optimization */
}
.fixed-hero.home 
{ 
    height: var(--home-hero-h); 
}
.fixed-hero.inner 
{ 
    height: var(--inner-hero-h); 
}
.content-curtain 
{ 
    background-color: var(--white); 
    position: relative; 
    z-index: 2; 
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1); 
    min-height: 100vh; 
}
.content-curtain.home 
{ 
    margin-top: var(--home-hero-h); 
}

.content-curtain.inner 
{ 
    margin-top: var(--inner-hero-h); 
    padding-top: 0; 
}

.hero-slider 
{ 
    height: 100%; 
    position: relative; 
    overflow: hidden; 
    background: #000; 
}
.slide 
{ 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.slide.active 
{ opacity: 1; 
    z-index: 1; 
}
.slide::before 
{ content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.5); 
} 
.slide-content 
{ 
    position: relative; 
    z-index: 2; 
    color: var(--white); 
    max-width: 900px; 
    padding: 20px; 
    text-align: center; 
    transform: translateY(30px); 
    opacity: 0; 
    transition: all 0.8s ease 0.5s; 
    margin-top: 60px; 
}
.slide.active .slide-content 
{ 
    transform: translateY(0); 
    opacity: 1; 
}
.slide-content h1 
{ font-size: 2.8rem; 
    line-height: 1.3; 
    color: var(--white); 
    margin-bottom: 20px; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
}
.slide-content p 
{ 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    opacity: 0.95; 
    font-weight: 500; 
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    line-height: 1.6; 
}
.slider-controls 
{ 
    position: absolute; 
    bottom: 50px; 
    width: 100%; 
    text-align: center; 
    z-index: 10; 
}
.slider-btn 
{ 
    display: inline-flex; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.2); 
    color: white; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    margin: 0 10px; 
    transition: 0.3s; 
    border: 1px solid rgba(255,255,255,0.5); 
}
.slider-btn:hover 
{ 
    background: var(--brand-color); 
    border-color: var(--brand-color);
 }

/* Page hero background all pages (PARALLAX ENABLED) */
.page-banner 
{ 
    height: 100%; 
    width: 100%; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    /* This creates internal parallax motion */
    background-attachment: fixed; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    position: relative; 
}
.page-banner::after 
{ 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: none; 
}
.banner-content 
{ 
    position: relative; 
    z-index: 2; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 10 20px; 
    width: 100%; 
    color: white; 
}
.banner-content h1 
{ 
    color: white; 
    font-size: 7.5rem; 
    margin-bottom: 0px; 
    font-weight: 700; 
    padding-bottom: 0px !important;
    
}
.banner-content p
{
    color: white; 
    font-size: 3.5rem; 
    margin-bottom: -5px; 
    font-weight: 500;
}
/* --- COMPONENT STYLES --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img-wrapper { text-align: stretch; }
.about-img { width: 120%; max-width: 500px; height: auto; object-fit: cover; margin: 0 auto; }
.about-content-card { padding: 40px; border-radius: 12px; border-left: 5px solid var(--brand-color); position: relative; }
.about-title { font-size: 3.5rem; font-weight: 900; text-align: center; color: var(--brand-color); margin-bottom: 10px; line-height: 1.1; }
.about-subtitle { font-size: 0.85rem; text-align: center; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; font-weight: 600; opacity: 0.8; }
.about-description { text-align: justify; margin-bottom: 30px; font-size: 1.1rem; line-height: 1.8; color: #444; }
.about-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; }
.about-link { color: var(--brand-color); font-weight: 700; text-decoration: none; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 5px; font-size: 1rem; }
.about-link:hover { gap: 10px; } 
.special-heading { font-family: 'Roboto', sans-serif; text-align: center; margin-bottom: 40px; color: var(--brand-color); line-height: 1.2; }
.special-heading .light { display: block; font-weight: 300; font-size: 2rem; text-transform: uppercase; letter-spacing: 2px; }
.special-heading .bold { display: block; font-weight: 900; font-size: 3.5rem; text-transform: uppercase; }
.auxillion-motto { text-align: center; margin-bottom: 60px; font-family: 'Roboto', sans-serif; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; align-items: baseline; margin-top: 40px; }
.motto-word { font-size: 1.4rem; color: #444; font-weight: 600; display: inline-flex; align-items: baseline; }
.big-char { font-size: 4rem; font-weight: 900; line-height: 1; margin-right: 2px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: var(--brand-color); text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
.creative-bg-section { background: linear-gradient(180deg, #f5f5f5 0%, #eaeaea 100%); position: relative; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.strength-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: 0.3s; text-align: left; border-bottom: 5px solid var(--brand-light); height: 100%; }
.strength-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); border-bottom-color: var(--brand-color); }
.strength-icon { font-size: 2.5rem; color: var(--brand-color); margin-bottom: 20px; display: block; }
.strength-title { font-size: 1.2rem; font-weight: 700; color: var(--brand-color); margin-bottom: 15px; }
.strength-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.value-card { background: white; padding: 30px 20px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: 0.3s; text-align: center; border-bottom: 5px solid var(--brand-light); display: flex; align-items: center; justify-content: center; min-height: 120px; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); border-bottom-color: var(--brand-color); }
.value-title { font-size: 1.3rem; font-weight: 700; color: var(--brand-color); margin: 0; }
.red-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.red-card { border-radius: 20px; overflow: hidden; text-align: center; transition: transform 0.3s ease; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.red-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.rc-top { height: 220px; background: #e0e0e0; position: relative; }
.rc-top img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.rc-icon-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; color: #666; background: rgba(255,255,255,0.8); padding: 20px; border-radius: 50%; }
.rc-bottom { background: var(--brand-color); color: white; padding: 40px 30px; height: 100%; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; border-radius: 20px 20px 0 0; margin-top: -20px; position: relative; z-index: 2; }
.rc-title { font-size: 1.3rem; font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.rc-desc { font-size: 1rem; line-height: 1.6; opacity: 1; font-weight: 400; }

.therapeutic-container { display: flex; justify-content: center; align-items: center; position: relative; margin: 60px 0; flex-wrap: nowrap; min-height: 400px; }
.sticker-center { background: white; border: 3px solid var(--brand-color); border-radius: 50%; width: 250px; height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 20px; position: relative; }
.sticker-center h3 { font-size: 1.5rem; font-weight: 900; line-height: 1.2; color: #000; margin: 0; }
.sticker-center span { display: block; font-size: 1rem; font-weight: 400; margin-top: 5px; color: #555; }
.sticker-item { background-color: var(--sticker-bg); color: #000; padding: 15px 25px; border-radius: 15px; border: 1px solid #d4b49b; box-shadow: 0 5px 15px rgba(0,0,0,0.08); font-weight: 600; font-size: 1rem; text-align: center; transition: transform 0.3s ease; width: 280px; position: absolute; }
.sticker-item:hover { transform: translateY(-5px) scale(1.05); z-index: 3; }
.st-1 { top: 0; left: 50%; transform: translateX(-50%); }
.st-2 { top: 20%; left: 10%; }
.st-3 { top: 20%; right: 10%; }
.st-4 { bottom: 20%; left: 10%; }
.st-5 { bottom: 20%; right: 10%; }
.therapeutic-intro { text-align: center; max-width: 900px; margin: 40px auto 0; font-size: 1.1rem; line-height: 1.8; color: #444; }
.dosage-card { background: white; border-radius: 12px; padding: 30px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; border: 1px solid #eee; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
.dosage-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(153, 11, 110, 0.15); border-color: var(--brand-color); }
.dosage-icon { font-size: 3.5rem; color: var(--brand-color); margin-bottom: 20px; transition: transform 0.3s; }
.dosage-card:hover .dosage-icon { transform: scale(1.1); }
.dosage-card h4 { font-size: 1.25rem; font-weight: 700; color: var(--brand-color); margin: 0; }
.ops-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: -80px; position: relative; z-index: 10; padding-bottom: 50px; }
.op-card { background: var(--white); padding: 40px 30px; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-top: 4px solid var(--brand-color); text-align: center; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; }
.op-card:hover { transform: translateY(-10px); background: var(--brand-color); }
.op-card:hover h3, .op-card:hover p { color: white; }
.op-card:hover .op-icon svg { fill: white; }
.op-card:hover .div-btn { color: var(--brand-color); background: white; }
.op-icon { width: 60px; height: 60px; margin: 0 auto 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 4px solid transparent; }
.card:hover { transform: translateY(-10px); border-bottom-color: var(--brand-color); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-icon { font-size: 2.5rem; color: var(--brand-color); margin-bottom: 20px; text-align: center; }
.card h3 { font-size: 1.25rem; margin-bottom: 15px; color: var(--brand-color); text-align: center; }
.card p { font-size: 0.95rem; color: var(--text-light); text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--brand-color); }
.rnd-content-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.rnd-text { text-align: justify; }
.rnd-image { width: 100%; height: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; }
.rnd-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rnd-image:hover img { transform: scale(1.05); }
.expert-card { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.expert-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.expert-img { height: 180px; background: #e0e0e0; position: relative; }
.expert-img img { width: 100%; height: 100%; object-fit: cover; }
.expert-content { background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%); color: white; padding: 30px 20px; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.expert-title { font-size: 1.2rem; font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; margin-bottom: 20px; text-transform: uppercase; }
.expert-desc { font-size: 0.9rem; line-height: 1.6; font-weight: 400; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin: 20px 0 40px; }
.benefit-item { background: var(--brand-color); color: white; padding: 15px; border-radius: 8px; text-align: center; font-size: 0.9rem; font-weight: 600; box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; margin: 20px 0 40px; }
.portfolio-item { background: linear-gradient(135deg, #990b6e 0%, #6d074e 100%); color: white; padding: 20px; border-radius: 8px; text-align: center; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.ocular-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
.ocular-box { background: #fdfdfd; border: 2px solid var(--brand-color); border-radius: 12px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.ocular-box:hover { transform: translateY(-5px); background: var(--brand-color); color: white; }
.ocular-box:hover h4, .ocular-box:hover p { color: white; }
.ocular-box h4 { color: var(--brand-color); font-size: 1.4rem; margin-bottom: 15px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.career-intro-list { list-style: none; padding: 0; }
.career-intro-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.05rem; }
.career-intro-list li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--brand-color); }
.career-form-container { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-top: 5px solid var(--brand-color); max-width: 800px; margin: 0 auto; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; transition: border 0.3s; }
.form-control:focus { border-color: var(--brand-color); outline: none; box-shadow: 0 0 0 3px rgba(153, 11, 110, 0.1); }
.culture-card { background: #f9f9f9; padding: 25px; border-radius: 8px; border-left: 4px solid var(--brand-color); height: 100%; transition: transform 0.3s; }
.culture-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.culture-title { font-weight: 700; color: var(--brand-color); margin-bottom: 10px; font-size: 1.1rem; }
.culture-desc { font-size: 0.9rem; color: #555; }
.contact-header-text { color: var(--brand-color); font-weight: 800; font-size: 2.5rem; margin-bottom: 10px; text-transform: uppercase; text-align: center; }
.contact-subheader-text { color: var(--brand-color); font-weight: 600; font-size: 1.2rem; margin-bottom: 50px; text-align: center; opacity: 0.9; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.office-card { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-left: 6px solid var(--brand-color); margin-bottom: 30px; transition: transform 0.3s ease; }
.office-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.office-title { color: var(--brand-color); font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.office-address { font-size: 0.95rem; color: #555; margin-bottom: 15px; line-height: 1.6; }
.contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.9rem; color: #444; }
.contact-item i { color: var(--brand-color); width: 20px; }
.quick-links-row { display: flex; justify-content: space-around; margin-bottom: 40px; text-align: center; }
.quick-link-item { display: flex; flex-direction: column; align-items: center; color: var(--text-dark); }
.ql-icon { font-size: 2.5rem; color: var(--brand-color); margin-bottom: 10px; }
.ql-label { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; }
.ql-val { font-size: 0.9rem; color: #666; }
.contact-form-wrapper { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); height: fit-content; }
.safety-form-container { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); border-top: 6px solid var(--brand-color); max-width: 900px; margin: 0 auto; }
.safety-header { text-align: center; margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.safety-header h2 { font-size: 2rem; font-weight: 800; color: var(--brand-color); margin-bottom: 10px; }
.form-section-title { background: var(--off-white); padding: 10px 15px; border-left: 4px solid var(--brand-color); font-weight: 700; color: var(--brand-dark); margin: 50px 0 20px; text-transform: uppercase; font-size: 0.95rem; display: flex; align-items: center; gap: 80px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 10px; }
.radio-item { display: flex; align-items: center; gap: 5px; font-size: 0.9rem; }
.radio-item input[type="radio"] { accent-color: var(--brand-color); }
.product-controls { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; background: #fdfdfd; padding: 30px; border-radius: 12px; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.prod-toggle-container { display: flex; gap: 20px; justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
.prod-toggle-btn { padding: 12px 30px; border-radius: 30px; border: 2px solid var(--brand-color); background: transparent; color: var(--brand-color); font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; }
.prod-toggle-btn.active { background: var(--brand-color); color: white; box-shadow: 0 4px 10px rgba(153, 11, 110, 0.3); }
.search-wrapper { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }
.search-wrapper input { padding: 12px 45px 12px 20px; border-radius: 30px; border: 1px solid #ddd; width: 100%; outline: none; transition: 0.3s; font-size: 1rem; }
.search-wrapper input:focus { border-color: var(--brand-color); box-shadow: 0 0 0 3px rgba(153, 11, 110, 0.1); }
.search-wrapper i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--brand-color); font-size: 1.1rem; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-bottom: 50px; }
.prod-card { background: white; border: 1px solid #eee; border-radius: 12px; padding: 25px; text-align: center; transition: 0.3s; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; height: 100%; overflow: hidden; }
.prod-card:hover { border-color: var(--brand-color); box-shadow: 0 15px 30px rgba(0,0,0,0.1); transform: translateY(-5px); }
.prod-img-box { height: 180px; background: #f8f9fa; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: #ccc; }
.prod-name { font-size: 1.15rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.prod-short-desc { font-size: 0.9rem; color: #666; margin-bottom: 20px; flex-grow: 1; }
.enquiry-btn { background: transparent; color: var(--brand-color); border: 2px solid var(--brand-color); padding: 10px 25px; border-radius: 30px; font-weight: 600; transition: 0.3s; cursor: pointer; display: inline-block; text-transform: uppercase; font-size: 0.85rem; }
.enquiry-btn:hover { background: var(--brand-color); color: white; box-shadow: 0 4px 10px rgba(153, 11, 110, 0.2); }
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 2000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(5px); }
.modal-overlay.open { display: flex; opacity: 1; }
.modal-box { background: white; width: 95%; max-width: 900px; border-radius: 12px; position: relative; transform: translateY(20px); transition: transform 0.3s; overflow: hidden; display: flex; flex-direction: column; max-height: 90vh; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand-color) 100%); color: white; padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; }
.modal-title-group h3 { color: white; margin: 0; font-size: 1.5rem; text-transform: uppercase; }
.modal-title-group span { font-size: 0.9rem; opacity: 0.9; }
.modal-cat-badge { background: rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 4px; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; }
.modal-close-btn { color: white; font-size: 1.5rem; cursor: pointer; opacity: 0.8; transition: 0.3s; }
.modal-close-btn:hover { opacity: 1; transform: scale(1.1); }
.modal-body { padding: 30px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; overflow-y: auto; }
.modal-img-container { background: #f9f9f9; border-radius: 8px; display: flex; align-items: center; justify-content: center; min-height: 300px; border: 1px solid #eee; }
.modal-info-card { background: #f4f6f9; border-radius: 8px; padding: 15px; margin-bottom: 15px; border-left: 4px solid var(--brand-color); }
.info-label { display: flex; align-items: center; gap: 8px; color: var(--brand-dark); font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.info-text { font-size: 0.95rem; color: #555; line-height: 1.5; }
.static-banner-section { background-color: #990b6e; padding: 10px 15px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; text-align: center; }
.static-banner-text { color: white; font-size: 1.5rem; font-weight: 500; margin-right: 30px; font-family: 'Roboto', sans-serif; text-transform: none; letter-spacing: 1px; }
.banner-btn { background: white; color: #990b6e; border: none; padding: 12px 30px; font-weight: 700; border-radius: 30px; cursor: pointer; text-transform: uppercase; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.banner-btn:hover { transform: scale(1.05); box-shadow: 0 6px 15px rgba(0,0,0,0.3); }
.therapeutic-scroll-container { display: flex; overflow-x: auto; gap: 25px; padding: 20px 5px 30px 5px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.therapeutic-scroll-container::-webkit-scrollbar { display: none; }
.area-card { flex: 0 0 280px; scroll-snap-align: center; background: white; border-radius: 12px; padding: 25px; text-align: center; border: 2px solid transparent; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; cursor: pointer; position: relative; }
.area-card:hover { border-color: var(--brand-light); transform: translateY(-5px); }
.area-card.active-area { border-color: var(--brand-color); box-shadow: 0 10px 30px rgba(153, 11, 110, 0.2); }
.area-icon-circle { width: 80px; height: 80px; background: var(--off-white); border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--brand-color); border: 2px solid var(--border-light); }
.area-title { font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; font-size: 1.1rem; }
.area-desc { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* ================= DARK FOOTER STYLES ================= */
footer {
    background: linear-gradient(135deg, #12050f 0%, #2e0025 100%); 
    color: #e0e0e0;
    padding-top: 30px;
    position: relative;
    border-top: 4px solid var(--brand-color);
    font-family: 'Roboto', sans-serif;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 10px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-color);
    border-radius: 2px;
}

.f-logo-box {
    background: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
}
.f-logo img {
    height: 45px;
    width: auto;
    display: block;
}
.f-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 25px;
    max-width: 300px;
}

.f-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #ccc;
    font-size: 0.95rem;
}
.f-icon-circle {
    min-width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.f-contact-row:hover .f-icon-circle {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.footer-links li a::before {
    content: '›';
    font-size: 1.2rem;
    margin-right: 8px;
    color: var(--brand-color);
    line-height: 0;
    position: relative;
    top: -1px;
}
.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.safety-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.safety-text {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}
.safety-btn {
    display: inline-block;
    background: transparent;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}
.safety-btn:hover {
    background: var(--brand-color);
    color: white;
}

.footer-bottom {
    background: #0a0208;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* ================= MEDIA QUERIES (PARALLAX FIXES) ================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    footer {
        text-align: left;
    }
    
    /* Disable background-attachment: fixed on mobile for performance/jitters */
    .page-banner {
        background-attachment: scroll;
    }
}




/* HERE I ADDD NEW CODE */
/* --- FIXED CONTACT POSITION & SCROLLING --- */

/* 1. Container setup */
.fixed-hero {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0 !important;
    will-change: auto !important; 
    transform: none !important;
}

/* 2. Position Text at the Absolute Bottom */
.page-banner {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    display: flex !important;
    align-items: flex-end !important; /* Align to bottom */
    justify-content: flex-end !important; /* Align to right */
    
    /* ZERO padding at bottom so it touches the edge */
    padding-bottom: 0px !important; 
    padding-right: 60px !important;
}

/* 3. Text Container */
.banner-content {
    text-align: right !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

/* 4. Fine-tune the Text to touch the line */
.banner-content h1 {
    margin: 0 !important;
    padding: 0 !important;
    
    /* 1. Reduce line height to remove invisible gap under text */
    line-height: 0.85 !important; 
    
    /* 2. Push text down slightly to ensure it sits ON the white bg */
    /* You can increase/decrease this number (e.g., 10px or 20px) to move it lower */
    transform: translateY(5px) !important; 
    
    text-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

/* 5. White Content Background */
.content-curtain.inner {
    margin-top: var(--inner-hero-h) !important;
    position: relative;
    z-index: 2;
    background: var(--white);
}

/* HERE I ADDD NEW CODE */
/* ================= HOME PAGE PARALLAX RESTORATION ================= */

/* 1. Force the Home Hero back to Fixed Position 
   This pins the slider to the background so content scrolls OVER it */
.fixed-hero.home {
    position: fixed !important; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    z-index: -1 !important; /* stays behind content */
    will-change: transform;
    transform: none;
}

/* 2. Ensure Home Content starts below the full screen slider */
.content-curtain.home {
    margin-top: 100vh !important; 
    position: relative;
    z-index: 10;
    background-color: var(--white);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1); /* Adds depth between slider and content */
}

/* 3. Reset Banner alignment specifically for Home 
   (Since your new code pushed text to bottom-right for inner pages, 
   we might need to ensure the home slider centers its text) */
.fixed-hero.home .slide-content {
    text-align: center !important;
    transform: translateY(0);
}

/* 4. Disable the "Inner Page" text offsets for Home */
.fixed-hero.home .banner-content h1 {
    transform: none !important;
    line-height: 1.3 !important;
}

/* 5. Mobile Fallback for Home 
   (Fixed backgrounds can be jittery on phones, so we switch to absolute) */
@media (max-width: 768px) {
    .fixed-hero.home {
        position: absolute !important;
        height: 100vh;
    }
    .content-curtain.home {
        margin-top: 100vh !important; 
    }
}
/* HERE I ADDD NEW CODE */
/* --- FIX CLICKABLE BUTTONS & LAYOUT --- */

/* 1. Bring the Hero out of the background so it can receive clicks */
.fixed-hero.home {
    z-index: 0 !important; /* Changed from -1 to 0 */
}

/* 2. Ensure the white content slides OVER the hero */
.content-curtain {
    z-index: 10 !important; /* Must be higher than fixed-hero */
    position: relative;
    background-color: var(--white); /* Ensure it's not transparent */
}

/* 3. Slider Controls Positioning & Interactivity */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10 40px;
    z-index: 100 !important; /* Highest layer inside the hero */
    height: 0; /* Zero height prevents blocking center screen */
    pointer-events: none; /* Let clicks pass through the empty space */
}

/* 4. The Buttons Themselves */
.slider-btn {
    pointer-events: auto; /* Re-enable clicks for the buttons */
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: transparent; /* Semi-transparent black */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* 5. Hover Effect */
.slider-btn:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    transform: scale(1.1);
}

/* 6. Mobile Adjustment */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0 10px;
    }
}
/* HERE I ADDD NEW CODE */
.welcome-small {
    display: block;
    font-size: 1.7rem !important; /* Force size smaller */
    font-weight: 400;
    color: #666666; 
    text-transform: none;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 5px;
}
/* --- UPDATED INNOVATION SECTION (Full Width Background) --- */
.home-innovation-section {
    position: relative;
    /* The Image URL */
    background-image: url('assets/image/homepagequality.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    background-repeat: no-repeat;
    padding: 120px 0; /* Add top/bottom spacing */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The White Overlay (so text is readable) */
.home-innovation-section::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Adjust opacity: 0.9 is solid, 0.7 is more transparent */
    z-index: 1;
}

/* The Container for the Text */
.innovation-content-wrapper {
    position: relative;
    z-index: 2; /* Sits on top of overlay */
    max-width: 900px; /* Keeps line length readable */
    margin: 0 auto;
    text-align: center; /* Center aligns the text */
}

.innovation-content-wrapper h2 {
    color: #990b6e; /* Brand Color */
    font-weight: 800; 
    margin-bottom: 30px; 
    font-size: 2.5rem;
    text-transform: uppercase;
}

.innovation-content-wrapper p {
    color: #333; 
    font-size: 1.15rem; 
    line-height: 1.8;
    font-weight: 500;
}

/* Mobile Fix: Disable fixed background on mobile to prevent scrolling jitters */
@media (max-width: 768px) {
    .home-innovation-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    .innovation-content-wrapper h2 {
        font-size: 1.8rem;
    }
}

/* --- CREATIVE MOTTO SECTION (UPDATED) --- */
.motto-section.creative-motto {
    padding: 35px 20px 35px; 
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.motto-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.motto-decoration-top {
    width: 50px;
    height: 4px;
    background: var(--brand-color);
    margin: 0 auto 25px;
    border-radius: 2px;
    opacity: 0.7;
}

.motto-main {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 0px;
}

.accent-word {
    font-weight: 700;
    color: #000;
    position: relative;
}

/* Subtle underline for accent words */
.accent-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0,0,0,0.1);
}

.motto-signature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 1px;
}

.brand-promise {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    /* Gradient Text */
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.heart-beat {
    color: var(--brand-color);
    font-size: 1.4rem;
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); opacity: 0.8; }
    15% { transform: scale(1.2); opacity: 1; }
    30% { transform: scale(1); opacity: 0.8; }
    45% { transform: scale(1.15); opacity: 1; }
    60% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.8; }
}

@media (max-width: 768px) {
    .motto-main { font-size: 1.3rem; }
    .brand-promise { font-size: 1.5rem; }
}


/* --- PRODUCTS PAGE STYLES --- */

/* Controls Section (Toggles & Search) */
.prod-controls-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.division-toggles {
    display: flex;
    gap: 15px;
}

.toggle-btn {
    padding: 10px 25px;
    border: 2px solid var(--brand-color);
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: var(--brand-color);
    transition: 0.3s;
    text-transform: uppercase;
}

.toggle-btn.active, .toggle-btn:hover {
    background: var(--brand-color);
    color: white;
}

.search-filter-group {
    display: flex;
    gap: 15px;
    flex-grow: 1;
    justify-content: flex-end;
}

.prod-search {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 300px;
}

.prod-filter {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ccc;
    cursor: pointer;
}

/* Product Grid (4 Columns) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns Desktop */
    gap: 30px;
}

.prod-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.prod-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--brand-light);
}

.prod-img-container {
    height: 200px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.prod-details {
    padding: 20px;
    text-align: center;
}

.prod-cat-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.prod-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0;
}

/* Product Not Found / Request Form */
.request-product-section {
    margin-top: 80px;
    background: #fdfdfd;
    padding: 50px 0;
    border-top: 5px solid var(--brand-color);
}

/* Modal Popup */
.prod-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.prod-modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {transform: translateY(50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover { color: var(--brand-color); }

.modal-img-box {
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-img-box img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.modal-info-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-controls-wrapper { flex-direction: column; align-items: stretch; }
    .search-filter-group { flex-direction: column; }
    .prod-search, .prod-filter { max-width: 100%; }
    .prod-modal-content { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
    .modal-img-box { height: 200px; padding: 20px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}




.about-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.about-innovation-section {
    position: relative;
    /* The Image URL */
    background-image: url('assets/image/homepagequality.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: relative; /* Parallax effect */
    background-repeat: no-repeat;
    padding: 100px 0; /* Add top/bottom spacing */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The White Overlay (so text is readable) */
.about-innovation-section::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Adjust opacity: 0.9 is solid, 0.7 is more transparent */
    z-index: 1;
}

/* The Container for the Text */
.about-innovation-content-wrapper {
    position: relative;
    z-index: 2; /* Sits on top of overlay */
    max-width: 900px; /* Keeps line length readable */
    margin: 0 auto;
    text-align: center; /* Center aligns the text */
}

.about-innovation-content-wrapper h2 {
    color: #990b6e; /* Brand Color */
    font-weight: 800; 
    margin-bottom: 30px; 
    font-size: 2.5rem;
    text-transform: uppercase;
}

.about-innovation-content-wrapper p {
    color: #333; 
    font-size: 1.15rem; 
    line-height: 1.8;
    font-weight: 500;
}

/*Cookie policy container*/
/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff; /* Clean white background */
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Ensures it stays on top */
    padding: 20px;
    display: none; /* Hidden by default, JS will show it */
    font-family: Arial, sans-serif;
    border-top: 4px solid #0056b3; /* Pharma Blue accent */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.btn-accept {
    background-color: #0056b3; /* Pharma Blue */
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-accept:hover {
    background-color: #004494; /* Darker blue on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Fix: Disable fixed background on mobile to prevent scrolling jitters */
@media (max-width: 768px) {
    .about-innovation-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    .about-innovation-content-wrapper h2 {
        font-size: 1.8rem;
    }
}

