body {
  font-family: Poppins, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
   background: linear-gradient(45deg, #5d5b5b 0%, #bdb9b8 99%, #676666 100%); /* Gradient background */ /* Light red background for the entire page */
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

.hero_section {
  background: #361b2a; /* Gradient background */
  text-align: center;
  padding: 50px 0;
}

.hero_content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: white; /* White text for "Our Blogs" */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Add a subtle shadow for better readability */
}

.hero_content p {
  color: white; /* White text for the description */
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
}

.blogs_section {
  padding: 50px 0;
}

.blogs_section .blogs_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blogs_section .blog_box {
  flex-basis: 30%;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blogs_section .blog_box:hover {
  transform: translateY(-5px);
}

.blogs_section .image-box img {
  width: 100%;
  height: auto;
}

.blogs_section .detail-box {
  padding: 15px;
}

.blogs_section .detail-box h5 {
  margin-top: 0;
  color: #333;
}

.blogs_section .detail-box p {
  color: #666;
}

.blogs_section .detail-box a {
  display: inline-block;
  background: #ff4081; /* A color that complements the gradient */
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.blogs_section .detail-box a:hover {
  background: #e91e63;
}
.blog_content_section {
  flex-basis: 30%;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.blog_content_section h3{
  font-size: 2em;
  padding-top: 30px; /* Space above the content */
  color: rgb(0, 0, 0); /* White text for "Our Blogs" */
}

/* .blogs_content_section {
 /* padding: 50px 0;
 
} */

.blog_content {
  padding-top: 20px; /* Space above the content */

  border-top: 2px solid #ddd; /* Border at the top */
  margin-top: 20px; /* Space above the border */
}

.blog_content h2 {
  margin-top: 20px; /* Adds space above the heading */
  padding-top: 10px; /* Adds space within the element */
  text-align: center; /* Center-aligns the content */
}
.code_block_container {
  position: relative;
  margin-top: 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  background-color: #f5f5f5;
  padding: 15px;
}

.copy_button {
  position: absolute;
  top: 3px;
  right: 10px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.copy_button:hover {
  background-color: #0056b3;
}

.code_block {
  margin-top: 24px;
  background-color: #2e2e2e;
  color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
}

.tools_section .blog_box{
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
  background: rgb(255, 255, 255);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(221, 221, 221);
  border-image: initial;
  transition: transform 0.3s;
}

.tools_section {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.tools_section .blogs_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tools_section .blog_box {
  flex-basis: 30%;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 250px;
}

.tools_section .blog_box:hover {
  transform: translateY(-5px);
}

.tools_section .image-box img {
  width: 100%;
  height: auto;
}

.tools_section .detail-box {
  padding: 15px;
  text-align: center;

}

.tools_section .detail-box h5 {
  margin-top: 0;
  color: #333;
  text-align: center;

}

.tools_section .detail-box p {
  color: #666;
  text-align: center;

}

.tools_section .detail-box a {
  display: inline-block;
  background: #ff4081; /* A color that complements the gradient */
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 3px;
  transition: background 0.3s ease;
  text-align: center;

  
}

.tools_section .detail-box a:hover {
  background: #e91e63;
}

.tools_section .a{
  text-align: center;
}