body {
  margin:0;
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111;
}

/* HEADER */
.header {
  display:flex;
  justify-content:space-between;
  padding:20px 60px;
  align-items:center;
}

.header img {
  width:140px;
}

nav a {
  margin-left:25px;
  text-decoration:none;
  color:#444;
}

/* HERO */
.hero {
  display:flex;
  padding:80px 60px;
  gap:50px;
  align-items:center;
}

.hero-left h1 {
  font-size:52px;
}

.hero-left span {
  background:linear-gradient(90deg,#6a11cb,#2575fc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-left p {
  margin:20px 0;
  color:#555;
  line-height:1.6;
}

.hero-buttons {
  margin:20px 0;
}

.primary {
  background:linear-gradient(90deg,#6a11cb,#2575fc);
  color:white;
  border:none;
  padding:12px 25px;
  border-radius:8px;
}

.outline {
  margin-left:10px;
  padding:12px 25px;
  border:1px solid #ccc;
  background:none;
}

.hero-right img {
  width:420px;
  border-radius:20px;
}

/* STATS */
.stats {
  display:flex;
  gap:40px;
  margin-top:30px;
}

.stats h3 {
  margin:0;
}

/* TRUST STRIP */
.trust-strip {
  text-align:center;
  padding:20px;
  background:#f5f7fb;
  font-weight:500;
}

/* SERVICES */
.services {
  padding:80px 60px;
}

.service-row {
  display:flex;
  gap:30px;
}

.service-box {
  flex:1;
  padding:20px;
  border-radius:15px;
  background:#f9f9f9;
}

.service-box img {
  width:100%;
  border-radius:10px;
}

.highlight {
  transform:scale(1.05);
  background:#eef2ff;
}

/* WHY */
.why-new {
  padding: 100px 8%;
  background: linear-gradient(120deg, #f9fbff, #eef3ff);
}

.why-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.why-image {
  position: relative;
  flex: 1;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* floating cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.card1 {
  top: -20px;
  left: -20px;
}

.card2 {
  bottom: -20px;
  right: -20px;
}

.floating-card h4 {
  margin: 0;
  color: #5b6cff;
}

.floating-card p {
  margin: 0;
  font-size: 12px;
}

/* content */
.why-content {
  flex: 1;
}

.why-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.subtitle {
  color: #555;
  margin-bottom: 30px;
}

/* points */
.point {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.point span {
  font-weight: bold;
  font-size: 18px;
  color: #6c63ff;
}

.point h4 {
  margin: 0;
}

.point p {
  margin: 3px 0 0;
  color: #666;
}

/* CTA */
.cta {
  text-align:center;
  padding:80px;
}

.cta button {
  background:linear-gradient(90deg,#6a11cb,#2575fc);
  color:white;
  padding:12px 25px;
  border:none;
  border-radius:8px;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-logo {
  width: 120px;
}