/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #1e3a8a; /* Solid color only */
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #1e3a8a !important; /* solid navy only */
  background-image: none !important;    /* remove gradient */
  position: sticky;
  top: 0;
  z-index: 1000;
}


.signin {
  background: rgba(7, 26, 192, 0.5);
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  color: rgb(255, 255, 255);
}

.signin:hover {
  background: rgba(255,255,255,0.3);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero .pink {
  color: #f472b6;
}

.hero .light-pink {
  color: #f9a8d4;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.2rem;
}

.cta {
  background: #f472b6;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.cta:hover {
  background: #a855f7;
}

/* Why Choose Section */
.why {
  text-align: center;
  padding: 80px 20px;
}

.why h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #2196f3;
  padding: 30px;
  border-radius: 15px;
  width: 280px;
  transition: 0.3s;
}


/* Examples Section */
.examples {
  text-align: center;
  padding: 80px 20px;
}

.examples h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.example {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.example img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.example h3 {
  margin: 15px 0 5px;
}

.example p {
  margin-bottom: 15px;
}
/* Loved by Creators Section */
.testimonials {
  background: #0d2d82; /* same dark blue */
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #2196f3;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.5;
}


/* Pricing Section */
.pricing {
  background: #0d2d82;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.pricing-card .price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 15px;
}

/* Pricing Buttons - Updated */
.pricing-card button {
  background: white;               /* White background */
  color: #0072ff;                  /* Blue text */
  border: none;
  padding: 12px 30px;
  border-radius: 50px;             /* Fully rounded */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-card button:hover {
  background: #e6e6e6;             /* Light grey hover */
}
html {
  scroll-behavior: smooth; /* smooth scroll */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #1e3a8a;   /* 🔹 Hero section ke jesa color */
  position: sticky;
  top: 0;
  z-index: 1000;
}


.navbar .logo {
  font-weight: bold;
  font-size: 20px;
  color: white;
  display: flex;
  align-items: center;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #f9a8d4;
}

/* Navbar Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #fff; /* White text for dark header */
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 4px; /* optional: thoda rounded look */
}
.btn-primary {
  background: linear-gradient(to right, #ffffff, #ffffff); /* blue gradient */
  color: #0072ff;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 25px; /* fully rounded */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px); /* hover effect */
}
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;   /* sab cards ki height equal hogi */
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #3b82f6, #2563eb);
  color: white;
}

.pricing-card button {
  margin-top: auto;   /* ye button ko hamesha neeche chipka dega */
  align-self: center; /* center me rakhega horizontally */
}
.navbar {
  display: flex;
  justify-content: space-between; /* Left + Center space */
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ✅ center links */
.nav-links {
  flex: 1; 
  display: flex;
  justify-content: center; /* center align */
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
  cursor: pointer;
}

.nav-links li a:hover {
  color: #f9a8d4;
}
.navbar {
  display: flex;
  align-items: center;  /* sab ek line me aa jayega */
  justify-content: flex-start; /* sab left side par */
  padding: 20px 40px;
  background: #1e3a8a;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: 50px;   /* 👈 yeh distance logo aur menu ke beech ka control karega */
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.nav-links li a:hover {
  color: #f9a8d4;
}
.navbar {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: #1e3a8a;
}

.left {
  display: flex;
  align-items: center;
  gap: 40px;  /* logo aur menu ke beech ka distance */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 25px;   /* Features aur Pricing ke beech ka gap */
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.nav-links li a:hover {
  color: #f9a8d4;
}
.navbar {
  display: flex;
  justify-content: space-between;  /* Left = logo, Center = menu */
  align-items: center;
  padding: 20px 40px;
  background: #1e3a8a;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

/* nav-links ko bilkul center me laane ke liye absolute center */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.nav-links li a:hover {
  color: #f9a8d4;
}
