<style>
/* Global Modern Styling */
* { box-sizing: border-box; }
body {
margin: 0;
font-family: "Inter", Arial, sans-serif;
background: #f2f4f7;
color: #222;
line-height: 1.6;
}


/* Navbar */
.navbar {
padding: 18px 50px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
backdrop-filter: blur(10px);
}
.navbar a { color: #fff; text-decoration: none; margin-left: 25px; font-weight: 600; }
.logo { font-size: 1.5rem; font-weight: 700; color: #fff; }


.glass {
background: rgba(0,0,0,0.55);
border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* Hero */
.modern-hero {
background: radial-gradient(circle at top,#005bea,#001f4d);
color: #fff;
padding: 160px 40px;
text-align: center;
}
.hero-content h1 { font-size: 3rem; max-width: 900px; margin: 0 auto 20px; }
.hero-content p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }


.btn-primary {
background: #00c6fb;
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
color: #000;
text-decoration: none;
transition: 0.2s;
}
.btn-primary:hover { opacity: 0.85; }


/* Sections */
.section { padding: 80px 40px; }
.section-title { font-size: 2.2rem; margin-bottom: 40px; text-align: center; }


/* Product Grid */
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.product-card {
background: #fff;
padding: 35px;
border-radius: 16px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
transition: transform .25s, box-shadow .25s;
}
.hover-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.btn-outline {
margin-top: 15px;
</style>
