*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f4f6f9;
color:#333;
}

/* Navbar */

/* NAVBAR WRAPPER */
nav.site-navbar {
  background: #ffffff;
  color: #0f172a;
  /* position: fixed; */
  inset: 0 0 auto 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(148,163,184,0.2);
}

/* INNER CONTAINER */
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-weight: 900;
  font-size: 1.8rem;
  color: #111827;
  letter-spacing: 1px;
}

/* DESKTOP LINKS */
.site-nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-links a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

/* Hover effect */
.site-nav-links a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* Active link */
.site-nav-links a.active {
  color: #2563eb;
  font-weight: 700;
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

/* MOBILE MENU */
.mobile-menu {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  position: absolute;
  left: 20px;
  right: 20px;
  top: 72px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.18);
}

.mobile-menu.hidden {
  display: none;
}

/* MOBILE LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-links a {
  color: #334155;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-links a:hover {
  background: #f1f5f9;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .site-nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

}

/* Hero Section */

/* ===== HERO SECTION ===== */

.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 20px;
background: linear-gradient(135deg, #e8f2ff, #cfe1ff);}

/* hero container */

.hero-content{
  max-width:800px;
}

/* heading */

.hero h1{
  font-size:56px;
  font-weight:700;
  line-height:1.2;
  color:#111827;
  margin-bottom:20px;
}

/* badge */

.badge{
  background:#eef2ff;
  color:#6366f1;
  padding:8px 18px;
  border-radius:30px;
}

/* purple dot */

.dot{
  color:#6366f1;
}

/* subtitle */

.hero-subtitle{
  font-size:18px;
  color:#6b7280;
  margin-bottom:30px;
}

/* features */

.hero-features{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.hero-features span{
  background:white;
  border:1px solid #e5e7eb;
  padding:8px 16px;
  border-radius:20px;
  font-size:14px;
}

/* CTA button */

.cta-btn{
  background:#6366f1;
  color:white;
  border:none;
  padding:14px 28px;
  font-size:16px;
  border-radius:30px;
  cursor:pointer;
  transition:0.3s;
}

.cta-btn:hover{
  background:#4f46e5;
}

/* features */

.features{
margin-top:25px;
display:flex;
justify-content:center;
gap:20px;
color:#cbd5e1;
}

.features span{
border:1px solid rgba(255,255,255,0.2);
padding:8px 15px;
border-radius:20px;
font-size:14px;
}

/* button */

.cta-btn{
margin-top:35px;
padding:14px 28px;
font-size:16px;
border:none;
border-radius:30px;
background:linear-gradient(90deg,#6c63ff,#9d4edd);
color:white;
cursor:pointer;
transition:0.3s;
}

.cta-btn:hover{
transform:scale(1.05);
}



/* Features */

.features-section{
padding:100px 8%;
background:linear-gradient(to bottom,#f9fafc,#eef2ff);
text-align:center;
}

.features-section h2{
font-size:38px;
margin-bottom:60px;
color:#111827;
}

.features-section span{
color:#6366f1;
border-bottom:4px solid #6366f1;
}

/* grid */

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

/* card */

.feature-card{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.06);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

/* hover animation */

.feature-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* icon */

.icon{
font-size:28px;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#eef2ff;
border-radius:12px;
margin-bottom:18px;
}

/* text */

.feature-card h3{
margin-bottom:10px;
color:#111827;
}

.feature-card p{
color:#6b7280;
font-size:15px;
line-height:1.6;
}




.tools-section{
padding:100px 8%;
background:#ffffff;
text-align:center;
}

.tools-section h2{
font-size:36px;
margin-bottom:60px;
color:#111827;
}

/* grid */

.tools-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

/* card */

.tool-card{
background:#f9fafc;
padding:30px;
border-radius:14px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
transition:all 0.3s ease;
}

.tool-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.tool-icon{
font-size:28px;
margin-bottom:15px;
}

.tool-card h3{
margin-bottom:10px;
color:#111827;
}

.tool-card p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}



/* Footer */
/* Footer Style */
.footer {
  background: var(--bg);
  color: #000;
  padding: 50px 20px;
  margin-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--accent);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.newsletter input {
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 10px;
  border-radius: 5px;
}

.newsletter button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}