
body{
font-family:Inter, sans-serif;
margin:0;
background:#f4f7fb;
color:#333;
}

body{
background:
linear-gradient(to bottom,#f8fafc,#eef2f7);
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

.header-flex{
display:flex;
align-items:center;
justify-content:space-between;
}

.header{
border-bottom:3px solid #10B981;
}

.brand:hover{
opacity:0.85;
}

.logo{
height:45px;
}

.header{
background:white;
border-bottom:1px solid #e5e7eb;
position:sticky;
top:0;
z-index:1000;
}
.header{
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:600;
}

.brand{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
}

.brand img{
height:60px;
width:auto;
}

.brand-name{
font-size:20px;
font-weight:600;
color:#1E40AF;
}

.heroold{
background:linear-gradient(90deg,#1E40AF,#2563EB);
color:white;
padding:70px 0;
text-align:center;
width: auto;
margin: auto;
}

.hero{
background:
linear-gradient(90deg,#1E40AF,#2563EB),
repeating-linear-gradient(
45deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.05) 2px,
transparent 2px,
transparent 12px
);

color:white;
padding:100px 0;
text-align:center;
}

.hero{
background:linear-gradient(90deg,#1E40AF,#2563EB);
color:white;
padding:100px 0;
text-align:center;
position:relative;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background-image:url("../images/medical-pattern.png");
background-size:400px;
opacity:0.08;

pointer-events:none;
}

.hero .container{
position:relative;
z-index:2;
}

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

.hero p{
max-width:650px;
margin:auto;
opacity:0.9;
}

.focus-section{
background:white;
padding:60px 0;
}

.focus-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.focus-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
}


section{
padding:60px 0;
}

.section-title{
font-size:28px;
font-weight:600;
color:#1f2937;
margin-bottom:20px;
position:relative;
padding-bottom:10px;
}

.section-title::after{
content:"";
position:absolute;
left:0;
bottom:0;

width:60px;
height:3px;

background:#10B981;
border-radius:2px;
}

.section-sub{
color:#666;
margin-bottom:20px;
}

.section-title.center{
text-align:center;
}

.section-title.center::after{
left:50%;
transform:translateX(-50%);
}

h2{
font-size:28px;
color:#1f2937;
margin-bottom:15px;
}

.btn{
display:inline-block;
background:#10B981;
color:white;
margin-top: 8px;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-size:14px;
transition:0.2s;
}

.btn:hover{
background:#059669;
transform:translateY(-2px);
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.product-card{
background:white;
border-radius:12px;
padding:25px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:all 0.25s ease;
border:1px solid rgba(0,0,0,0.04);
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


.product-card img{
width:100%;
height:160px;
object-fit:contain;
margin-bottom:10px;
}

.product-row{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:10px;
align-items:stretch;
}

.product-box img{
width:100%;
height:220px;
object-fit:contain;
margin-bottom:15px;
}

.product-box{
background:white;
margin-left: 20px;
margin-right: 20px;
padding:25px;
border-radius:8px;
box-shadow:0 5px 18px rgba(0,0,0,0.08);
text-align:center;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.product-box:hover{
transform:translateY(-5px);
transition:0.25s;
box-shadow:0 12px 28px rgba(0,0,0,0.15);
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:60px;
}

.site-credit{
margin-top:8px;
font-size:14px;
opacity:0.85;
}

.site-credit a{
color:#10B981;
text-decoration:none;
}
