

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ================= GENERAL ================= */
body {
  font-family: Arial, sans-serif;
  text-align: left;
}
body.no-scroll {
  overflow: hidden; /* prevent background scroll */
}

/* ================= NAVBAR ================= */
nav {
  position: relative;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 0 20px;
  z-index: 1100;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  color: #111;
  transition: transform 0.3s ease;
}
.menu-toggle:hover {
  transform: scale(1.1);
  color: #ff0000;
}

/* Centered logo */
nav .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav .logo img {
  height: 150px;
  width: auto;
}

/* Right-side login button */
.nav-right {
  margin-left: auto;
}
.login-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #ff0000, #000);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.login-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; 
  width: 250px;
  height: 100vh; 
  background: linear-gradient(180deg, #111, #1a1a1a); 
  padding-top: 70px;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 1001; 
  overflow-y: auto; 
  scrollbar-width: thin;
  scrollbar-color: #ff0000 #111;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.6); 
}

/* Sidebar visible */
.sidebar.active {
  left: 0; 
}

/* Sidebar links */
.sidebar a {
  padding: 15px 20px;
  text-decoration: none;
  color: #ddd;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.sidebar a:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  border-left: 3px solid #ff0000;
}
.sidebar a.active {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  border-left: 3px solid #ff0000;
}

/* Custom scrollbar */
.sidebar::-webkit-scrollbar {
  width: 8px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #ff0000;
  border-radius: 4px;
}
.sidebar::-webkit-scrollbar-track {
  background: #111;
}

/* ================= OVERLAY ================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000; /* just below sidebar */
  overflow: hidden;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  nav {
    height: 60px;
    padding: 0 10px;
  }
  nav .logo img {
    height: 45px;
  }
  .login-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .menu-toggle {
    font-size: 24px;
  }
  .sidebar {
    width: 200px;
  }
}

@media (max-width: 480px) {
  nav {
    height: 55px;
  }
  nav .logo img {
    height: 40px;
  }
  .login-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
  .sidebar {
    width: 180px;
  }
  .sidebar a {
    font-size: 16px;
  }
}

.hero {
  width: 100%;
  min-height: 100vh; /* full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
background: #fff;
  color: #000000;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(45deg, #ff0000, #000000); /* red → black gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  color: transparent;
}


.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffdfdf; /* lighter shade for contrast */
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.cta-btn {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  background: #fff;
  color: #ff0000;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ff0000;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 1rem;
  }
}
.first-section {
  width: 100%;
  padding: 80px 140px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-box {
  max-width: 900px;
  text-align: center;
}

.text-box h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
  background: linear-gradient(45deg, #ff0000, #000000); /* red → black gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .text-box h1 {
    font-size: 2rem;
  }

  .text-box p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .text-box h1 {
    font-size: 1.6rem;
  }
}
.second-section {
  width: 100%;
  padding: 80px 140px;
  background: #f9f9f9; /* light background for contrast */
  display: flex;
  justify-content: left;
  text-align: left;
 
}

.second-section .text-box {
  max-width: 900px;
  text-align: center;
}

.second-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
  background: linear-gradient(45deg, #ff0000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.second-section p {
  font-size: 1.1rem;
  text-align: left;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

/* Styled list */
.second-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.second-section ul li {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #444;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.second-section ul li::before {
  content: "✔"; /* checkmark */
  position: absolute;
  left: 0;
  color: #ff0000;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .second-section h1 {
    font-size: 2rem;
  }

  .second-section p,
  .second-section ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .second-section h1 {
    font-size: 1.6rem;
  }
}

.third-section {
  width: 100%;
  padding: 80px 140px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.third-section .text-box {
  max-width: 1100px;
  text-align: center;
}

.third-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
 color: #fff;
  
}

.third-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.niche-card {
  background: linear-gradient(45deg, #ff0000, #000000);;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.niche-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.niche-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.niche-card p {
  font-size: 1rem;
  color: #fff;
}

.note {
  margin-top: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff0000;
}

/* Responsive */
@media (max-width: 768px) {
  .third-section h1 {
    font-size: 2rem;
  }
  .niche-card h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .third-section h1 {
    font-size: 1.6rem;
  }
}
.fourth-section {
  width: 100%;
  padding: 80px 140px;
  background: #f9f9f9; /* light gray for contrast */
  display: flex;
  justify-content: left;
  align-items: center;
}

.fourth-section .text-box {
  max-width: 1000px;
  text-align: left; /* ✅ align everything to the left */
}
.fourth-section .text-box ul li{
    list-style: none;
    margin-top: 20px;

}

.fourth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff0000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  list-style: none;
  color: #444;
}

.info-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff0000;
  font-weight: bold;
}

/* Pro Tip Styling */
.pro-tip {
  background: #fff3f3;
  border-left: 5px solid #ff0000;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .fourth-section h1 {
    font-size: 2rem;
  }

  .info-block h2 {
    font-size: 1.3rem;
  }

  .info-block ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fourth-section h1 {
    font-size: 1.6rem;
  }
}
.fifth-section {
  width: 100%;
  padding: 80px 140px;
  background: #fff; /* white for clean look */
  display: flex;
  justify-content: center;
  align-items: center;
}

.fifth-section .text-box {
  max-width: 1000px;
  text-align: left; /* left-align like previous section */
}

.fifth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff0000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.info-block ul li::before {
  
  position: absolute;
  left: 0;
  color: #ff0000;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .fifth-section h1 {
    font-size: 2rem;
  }

  .info-block h2 {
    font-size: 1.3rem;
  }

  .info-block ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fifth-section h1 {
    font-size: 1.6rem;
  }
}
.sixth-section {
  width: 100%;
  padding: 80px 140px;
  background: #f9f9f9;
  display: flex;
  justify-content: left;
  
}

.sixth-section .text-box {
  max-width: 900px;
  text-align: left;
}

.sixth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Checklist styling */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  font-size: 1.1rem;
  margin: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.checklist li::before {
 
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  color: #ff0000;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .sixth-section h1 {
    font-size: 2rem;
  }
  .checklist li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sixth-section h1 {
    font-size: 1.6rem;
  }
}
.seventh-section {
  width: 100%;
  padding: 80px 140px;
  background: #fff; /* white to contrast previous gray section */
  display: flex;
  justify-content: left;
  
}

.seventh-section .text-box {
  max-width: 900px;
  text-align: left;
}

.seventh-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Checklist styling */
.seo-checklist {
  list-style: none;
  padding-left: 0;
}

.seo-checklist li {
  font-size: 1.1rem;
  margin: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.seo-checklist li::before {

  position: absolute;
  left: 0;
  font-size: 1.3rem;
  color: #ff0000;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .seventh-section h1 {
    font-size: 2rem;
  }
  .seo-checklist li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .seventh-section h1 {
    font-size: 1.6rem;
  }
}
.eighth-section {
  width: 100%;
  padding: 80px 140px;
  background: #f9f9f9;
  display: flex;
  justify-content: left;
  
}

.eighth-section .text-box {
  max-width: 1000px;
  text-align: left;
}

.eighth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Growth & Income Checklists */
.growth-checklist,
.income-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.growth-checklist li,
.income-checklist li {
  font-size: 1.1rem;
  margin: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.growth-checklist li::before,
.income-checklist li::before {

  position: absolute;
  left: 0;
  font-size: 1.3rem;
  color: #ff0000;
  font-weight: bold;
}

/* Example paragraph */
.example {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff0000;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .eighth-section h1 {
    font-size: 2rem;
  }

  .growth-checklist li,
  .income-checklist li,
  .example {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .eighth-section h1 {
    font-size: 1.6rem;
  }
}
.ninth-section {
  width: 100%;
  padding: 80px 140px;
  background: #f9f9f9; /* light gray for contrast */
  display: flex;
  justify-content: left;
  
}

.ninth-section .text-box {
  max-width: 900px;
  text-align: left;
}

.ninth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000); /* gradient heading */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.legal-checklist {
  list-style: none;
  padding-left: 0;
}

.legal-checklist li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.legal-checklist li::before {
 
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  color: #ff0000;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .ninth-section h1 {
    font-size: 2rem;
  }

  .legal-checklist li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ninth-section h1 {
    font-size: 1.6rem;
  }
}
.tenth-section {
  width: 100%;
  padding: 80px 140px;
  background: #fff; /* white background for contrast */
  display: flex;
  justify-content: left;
  
}

.tenth-section .text-box {
  max-width: 900px;
  text-align: left;
}

.tenth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000); /* gradient heading */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Checklist styling */
.challenges-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.challenges-list li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.challenges-list li::before {
  
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: #ff0000;
  font-weight: bold;
}

/* Solution Tip Styling */
.solution-tip {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff0000;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .tenth-section h1 {
    font-size: 2rem;
  }

  .challenges-list li,
  .solution-tip {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tenth-section h1 {
    font-size: 1.6rem;
  }
}
.eleventh-section {
  width: 100%;
  padding: 80px 140px;
  background: #f9f9f9; /* light gray background */
  display: flex;
  justify-content: left;
  
}

.eleventh-section .text-box {
  max-width: 900px;
  text-align: left;
}

.eleventh-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000); /* gradient heading */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Checklist styling */
.trends-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.trends-list li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.trends-list li::before {
  
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: #ff0000;
  font-weight: bold;
}

/* Statistics note styling */
.statistics-note {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff0000;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .eleventh-section h1 {
    font-size: 2rem;
  }

  .trends-list li,
  .statistics-note {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .eleventh-section h1 {
    font-size: 1.6rem;
  }
}
.twelfth-section {
  width: 100%;
  padding: 80px 140px;
  background: #fff; /* white background */
  display: flex;
  justify-content: left;
  
}

.twelfth-section .text-box {
  max-width: 900px;
  text-align: left;
}

.twelfth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000); /* gradient heading */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Beginner Checklist */
.beginner-checklist {
  list-style: none;
  padding-left: 0;
}

.beginner-checklist li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.beginner-checklist li::before {

  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: #ff0000;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .twelfth-section h1 {
    font-size: 2rem;
  }

  .beginner-checklist li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .twelfth-section h1 {
    font-size: 1.6rem;
  }
}
.thirteenth-section {
  width: 100%;
  padding: 80px 140px;
  background: #f9f9f9; /* light gray background */
  display: flex;
  justify-content: left;
  
}

.thirteenth-section .text-box {
  max-width: 900px;
  text-align: left;
}

.thirteenth-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff0000, #000000); /* gradient heading */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.thirteenth-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

/* Highlighted future note */
.future-note {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff0000;
}

/* Responsive */
@media (max-width: 768px) {
  .thirteenth-section h1 {
    font-size: 2rem;
  }
  .thirteenth-section p,
  .future-note {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .thirteenth-section h1 {
    font-size: 1.6rem;
  }
}

