/* Home page specific styles extracted from template */
* { margin: 0; padding: 0; box-sizing: border-box; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 5%; position: relative; overflow: hidden; }
.hero-content { max-width: 900px; z-index: 2; margin-top: 80px; }
.hero h1 { font-size: 4.5rem; margin-bottom: 1.5rem; line-height: 1.2; animation: fadeInUp 1s ease; }
.typing-cursor { display: inline-block; animation: blink 1s infinite; margin-left: 0.1rem; }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.hero .tagline { font-size: 1.6rem; margin-bottom: 1rem; opacity: 0.95; font-weight: 300; animation: fadeInUp 1s ease 0.2s backwards; }
.hero p { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.9; line-height: 1.6; animation: fadeInUp 1s ease 0.3s backwards; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.5s backwards; }
.primary-btn, .secondary-btn { padding: 1rem 2.5rem; border-radius: 50px; font-size: 1.1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.primary-btn { background: white; color: #667eea; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,0,0,0.3); }
.secondary-btn { background: rgba(255,255,255,0.2); color: white; backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.3); }
.secondary-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-3px); }
.floating-shapes { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
.shape { position: absolute; background: rgba(255,255,255,0.1); border-radius: 50%; animation: float 20s infinite ease-in-out; }
.shape:nth-child(1){ width:80px; height:80px; left:10%; top:20%; animation-delay:0s; }
.shape:nth-child(2){ width:120px; height:120px; right:15%; top:30%; animation-delay:2s; }
.shape:nth-child(3){ width:100px; height:100px; left:20%; bottom:20%; animation-delay:4s; }
.shape:nth-child(4){ width:90px; height:90px; right:10%; bottom:30%; animation-delay:1s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg);} 50% { transform: translateY(-30px) rotate(180deg);} }
.products { padding: 5rem 5%; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); }
.products h2 { text-align: center; font-size: 3rem; margin-bottom: 1rem; }
.products .subtitle { text-align: center; font-size: 1.3rem; margin-bottom: 4rem; opacity: 0.9; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.product-card { background: rgba(255,255,255,0.1); padding: 3rem; border-radius: 20px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s ease; }
.product-link { text-decoration: none; color: inherit; display: block; }
.clickable-card { cursor: pointer; }
.clickable-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.4); background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.product-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.product-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.product-card p { opacity: 0.9; line-height: 1.7; margin-bottom: 1.5rem; }
.product-features { list-style: none; padding: 0; }
.product-features li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; opacity: 0.95; }
.product-features li:before { content: "✓"; position: absolute; left: 0; color: #a8edea; font-weight: bold; }
.brochure-btn { display: inline-block; margin-top: 1rem; padding: 0.7rem 1.5rem; background: rgba(255,255,255,0.2); color: white; text-decoration: none; border-radius: 25px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.3); }
.brochure-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.about { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.about h2 { text-align: center; font-size: 3rem; margin-bottom: 3rem; }
.about-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.about-card { background: rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 20px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.about-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #a8edea; }
.about-card p { opacity: 0.9; line-height: 1.7; }
.footer { background: rgba(0,0,0,0.3); backdrop-filter: blur(10px); padding: 3rem 5%; border-top: 1px solid rgba(255,255,255,0.2); }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 2rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.8; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px);} to { opacity:1; transform:translateY(0);} }
@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero .tagline { font-size: 1.2rem; }
  .hero p { font-size: 1rem; }
  .products h2, .about h2 { font-size: 2.2rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}
