/* gradients.css */


/* Background gradient for the HomeScreen */
.home-gradient {
  background: linear-gradient(
    to bottom,
    #0c2461,
    #0c2461 70%,
    #10102e 100%
  );
}


/* Solid background for the TestimonialsSection */
.testimonials-gradient {
  background: #10102e;
}


/* Background gradient for the BlogSection */
.blog-gradient {
  background: linear-gradient(
    to bottom,
    #10102e,
    #0c2461
  );
}


/* Background gradient for the BlogPost Page */
.blogpost-gradient {
  background: linear-gradient(
    to bottom,
    #10102e,
    #10102e 70%,
    #08090a
  );
}

/* Top gradient for content Creation page */
.content-creation-top-gradient {
  background: linear-gradient(
    to bottom,
    #0c2461,
    #0c2461 30%,
    #10102e 100%
  );
}


/* Reverse gradient for bottom section */
.content-creation-bottom-gradient {
  background: linear-gradient(
    to bottom,
    #10102e,  /* Black at the top */
    #10102e 40%,  /* Maintain dark purple for 70% */
    #0c2461 100%  /* Transition to dark purple */
  );
}
