@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  background: #021526;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  padding-top: 60px;
}
/* /////////////////////////////////// */
.blog_grid_container{
    width: 100%;
    min-height: 80vh;

}

.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #0073e6;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.blog-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* cursor: pointer; */
  transition: transform 0.2s;
}
.blog-card:hover {
  transform: scale(1.05);
}

.blog-card h3 {
  margin: 15px 0 10px;
}
.blog-card h3 a{
    font-size: 1.5rem;
    color: #000;
}
.blog-card p a {
  color: #555;
}
/* ////////////////////////////// */
 /* .blog_heading */
 .blog_heading {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.blog_heading a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
.blog_section_1 {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.blog_section_11 h2 {
    color: #222;
}

.blog_section_1 ul {
    list-style-type: square;
    padding-left: 20px;
}

/* Footer */


/* Responsive Design */
@media (max-width: 768px) {
    .blog_section_1 {
        width: 90%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .blog_heading h1 {
        font-size: 24px;
    }
    .blog_section_1 h2 {
        font-size: 20px;
    }
  
}
/* /////////////////////////////////// */

.blog_header {
  background: #03002b;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}

.blog_header h1 {
  margin: 0;
}

.blog_section {
  padding: 20px;
  margin: 10px auto;
  max-width: 800px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog_section h2 {
  color: #03002b;
  margin-bottom: 10px;
}

.blog_section ul {
  list-style-type: square;
  margin: 10px 0;
  padding-left: 20px;
}

.blog_section ul li {
  margin-bottom: 5px;
}
