
:root{
  --bg:#041116; --card:#072426; --muted:#9aaeb0; --emerald:#10b981; --glass: rgba(255,255,255,0.03);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: linear-gradient(180deg,#031217 0%, #052629 100%); color:#e6f7f2; -webkit-font-smoothing:antialiased;
}
a{color:var(--emerald); text-decoration:none}
.header{position:fixed; inset:0 0 auto 0; height:72px; display:flex; align-items:center; justify-content:space-between; padding:0 28px; background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); backdrop-filter: blur(6px); border-bottom:1px solid rgba(255,255,255,0.03); z-index:40;}
.logo{display:flex; align-items:center; gap:12px; font-weight:700; font-size:1.05rem}
.logo-badge{width:44px; height:44px; border-radius:10px; background:linear-gradient(135deg,var(--emerald), #06b6d4); display:flex; align-items:center; justify-content:center; color:#012; font-weight:800}
.nav{display:flex; gap:16px; align-items:center;}
.nav a{color:rgba(230,247,242,0.9); padding:8px 12px; border-radius:8px; transition:all .18s ease}
.nav a:hover{transform:translateY(-3px); background:var(--glass); color:var(--emerald)}
.cta{background:var(--emerald); color:#012; padding:8px 14px; border-radius:8px; font-weight:600; box-shadow:0 6px 20px rgba(16,185,129,0.12)}
.container{max-width:1150px; margin:0 auto; padding:110px 24px 60px;}
.hero{height:62vh; border-radius:12px; background-size:cover; background-position:center; position:relative; display:flex; align-items:center; justify-content:center; text-align:center;}
.hero .overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(4,17,22,0.6), rgba(4,17,22,0.35)); border-radius:12px}
.hero-content{position:relative; z-index:2; color: #eafff5; max-width:900px; padding:30px}
.hero h1{font-size:2.6rem; margin-bottom:10px; letter-spacing:-0.5px}
.hero p{color:var(--muted); font-size:1.05rem; margin-bottom:18px}
.hero .hero-actions{display:flex; gap:12px; justify-content:center; margin-top:10px}
.grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; margin-top:26px}
.card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(2,8,10,0.45)); padding:18px; border-radius:12px; border:1px solid rgba(255,255,255,0.05); backdrop-filter:blur(6px); display:flex; flex-direction:column; gap:12px; align-items:flex-start;}
.card img{width:140px; height:100px; object-fit:cover; border-radius:8px; flex-shrink:0}
.card h3{margin:0 0 6px 0; font-size:1.05rem}
.card p{margin:0; color:var(--muted); font-size:0.98rem}
.section{padding:48px 0}
.section h2{font-size:1.6rem; margin-bottom:10px}
.section p{color:var(--muted)}
.dark-block{background:linear-gradient(180deg, rgba(0,0,0,0.12), rgba(255,255,255,0.02)); padding:20px; border-radius:10px; border:1px solid rgba(255,255,255,0.03)}
.fab{position:fixed; right:20px; bottom:28px; background:var(--emerald); color:#012; padding:14px 16px; border-radius:14px; box-shadow:0 12px 40px rgba(16,185,129,0.16); z-index:60; font-weight:700}
.footer{padding:28px; text-align:center; color:var(--muted); border-top:1px solid rgba(255,255,255,0.02); margin-top:40px}
.reveal{opacity:0; transform:translateY(28px); transition:all .7s cubic-bezier(.2,.9,.2,1); will-change:opacity,transform}
.reveal.visible{opacity:1; transform:translateY(0)}
@media (max-width:700px){ .hero h1{font-size:1.8rem}  .nav{display:none} .header{padding:0 14px} .container{padding:90px 14px 40px} }


.logo-img{
  width:44px;
  height:44px;
  border-radius:8px;
  object-fit:contain;
  background:#fff;
}


/* --- Enhanced Hero Section Styling (2025 update) --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero .cta {
  background-color: #2b7a78;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero .cta:hover {
  background-color: #3aafa9;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}



/* --- Ensure footer is visible and readable on all pages --- */
footer {
  position: relative;
  z-index: 9999;
  background: transparent !important;
  color: #e0e0e0 !important;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Make footer links clearly visible */
footer a {
  color: #e0e0e0 !important;
  text-decoration: underline;
}

/* If page containers use large padding-bottom that hides footer, ensure footer sits below */
body > footer {
  margin-top: 1.5rem;
}
