* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  background: #f8fafd;
  color: #0a1929;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.cursor-glow {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, rgba(0,102,255,0) 70%);
  position: fixed; pointer-events: none; z-index: 999;
  border-radius: 50%; transform: translate(-50%, -50%); transition: transform 0.1s;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #eef2f8; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #0066ff, #00aaff); border-radius: 10px; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ─────────────────────────────────────── */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(0,102,255,0.15);
  transition: all 0.3s;
}
.navbar {
  display: flex; justify-content: space-between;
  align-items: center; padding: 16px 0; gap: 20px; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-box {
  background: #ffffff; border-radius: 8px; padding: 4px;
  box-shadow: 0 8px 20px rgba(0,102,255,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-box:hover { transform: scale(1.02); box-shadow: 0 12px 28px rgba(0,102,255,0.35); }
.logo-box img { width: 42px; height: auto; display: block; border-radius: 10px; }
.logo h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1.1px; /* increased spacing */
  background: linear-gradient(135deg, #0070c0, #0066ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none; color: #1e2f3e;
  font-weight: 600; font-size: 0.9rem; transition: 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2.5px;
  background: linear-gradient(90deg, #0066ff, #00aaff);
  border-radius: 2px; transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #0066ff; }
.nav-icons { display: flex; gap: 20px; font-size: 1.2rem; }
.nav-icons i { cursor: pointer; transition: 0.2s; color: #2c3e50; }
.nav-icons i:hover { color: #0066ff; transform: translateY(-2px); }
.menu-toggle { display: none; font-size: 1.6rem; cursor: pointer; color: #0066ff; }

/* ── SECTIONS ─────────────────────────────────────── */
section { padding: 90px 0; }
.section-title {
  text-align: center; font-size: 2.5rem; font-weight: 800; margin-bottom: 16px;
  background: linear-gradient(125deg, #0f2b3f, #0066ff);
  background-clip: text; -webkit-background-clip: text; color: transparent;
}
.section-sub { text-align: center; color: #5b6f82; max-width: 680px; margin: 0 auto 50px; font-size: 1rem; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-inquiry {
  background: linear-gradient(95deg, #0066ff, #2a7fff);
  border: none; padding: 10px 24px; border-radius: 40px;
  color: white; font-weight: 600; cursor: pointer; transition: 0.2s; width: 100%; margin-top: auto;
}
.btn-inquiry:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,102,255,0.3); }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: #0a1929; color: #b0c4de; padding: 60px 20px 30px; }
.footer a { color: #b0c4de; text-decoration: none; transition: 0.2s; }
.footer a:hover { color: #0066ff; }
.footer-logo-area { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 40px; height: 40px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 5px; }
.footer-logo img { width: 30px; height: auto; border-radius: 6px; }

/* ── TOAST ─────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: #0a1929dd; backdrop-filter: blur(12px);
  color: white; padding: 12px 24px; border-radius: 60px;
  font-weight: 500; opacity: 0; transition: 0.2s; z-index: 2000;
  border-left: 3px solid #0066ff;
}

/* ── PAGE HERO BANNER ─────────────────────────────────────── */
.page-banner {
  background: linear-gradient(145deg, #f5f9ff 0%, #ffffff 100%);
  padding: 60px 0 40px; text-align: center;
}
.page-banner h1 {
  font-size: 3rem; font-weight: 800;
  background: linear-gradient(125deg, #0f2b3f, #0066ff);
  background-clip: text; -webkit-background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.page-banner p { color: #5b6f82; font-size: 1.1rem; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; width: 100%; flex-direction: column;
    background: white; padding: 20px; border-radius: 28px; margin-top: 10px; gap: 16px;
  }
  .nav-links.show { display: flex; }
  .section-title { font-size: 1.9rem; }
  section { padding: 60px 0; }
  .page-banner h1 { font-size: 2rem; }
}

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

.logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text h1{
  margin: 0;
}

.logo-text small{
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6b7a8c;
  margin-top: 2px;
}
