/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  color: #333;
  overflow-x: hidden;
}

/* Header */
.header { position: fixed; width: 100%; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 15px 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header .logo { font-size: 26px; font-weight: bold; color: #fff; }
.header nav ul { list-style: none; display: flex; gap: 25px; }
.header nav ul li a { text-decoration: none; color: #fff; font-weight: 500; transition: 0.3s; }
.header nav ul li a.active, .header nav ul li a:hover { color: #ff6b6b; }

/* Hero Section */
.hero { position: relative; height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { font-size: 48px; margin-bottom: 20px; }
.hero p { font-size: 20px; margin-bottom: 30px; }
.hero .btn { text-decoration: none; padding: 15px 40px; border-radius: 50px; background: linear-gradient(90deg, #ff6b6b, #feca57); color: #fff; font-weight: 600; transition: 0.3s; }
.hero .btn:hover { transform: scale(1.05); }

/* Services Preview */
.services-preview { padding: 60px 20px; text-align: center; }
.services-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }
.card { background: rgba(255,255,255,0.25); backdrop-filter: blur(10px); border-radius: 20px; padding: 30px; width: 250px; transition: 0.3s; text-align: center; }
.card:hover { transform: translateY(-10px) scale(1.05); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15px; }
.read-more { display: inline-block; margin-top: 10px; text-decoration: none; color: #fff; background: linear-gradient(90deg,#ff6b6b,#feca57); padding: 8px 20px; border-radius: 30px; transition: 0.3s; }
.read-more:hover { transform: scale(1.05); }

/* Blog Preview */
.blog-preview { padding: 60px 20px; text-align: center; margin-top: 40px; }
.blog-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }

/* CTA */
.cta { padding: 60px 20px; text-align: center; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 25px; margin: 60px 20px; }
.cta .btn { text-decoration: none; padding: 15px 40px; border-radius: 50px; background: linear-gradient(90deg, #ff6b6b, #feca57); color: #fff; font-weight: 600; transition: 0.3s; }
.cta .btn:hover { transform: scale(1.05); }

/* Footer */
footer { background: rgba(0,0,0,0.2); color: #fff; text-align: center; }
footer .footer-top { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px; }
footer .footer-links a { margin: 0 15px; color: #fff; text-decoration: none; transition: 0.3s; }
footer .footer-links a:hover { color: #ff6b6b; }
footer .footer-contact p { margin-top: 5px; }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.3); padding: 10px 0; font-size: 14px; }

/* Animations */
.animate { opacity: 0; transform: translateY(20px); animation-fill-mode: forwards; }
.fadeInUp { animation: fadeInUp 1s ease forwards; }
.fadeInDown { animation: fadeInDown 1s ease forwards; }
.zoomIn { animation: zoomIn 0.8s ease forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp { to { opacity:1; transform: translateY(0); } }
@keyframes fadeInDown { to { opacity:1; transform: translateY(0); } }
@keyframes zoomIn { from { transform: scale(0.8); opacity:0;} to { transform: scale(1); opacity:1;} }
