@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");


body {
  margin: 0;
  /* color: #333; */
  background-color: black;
  font-family: "Outfit", sans-serif;
    
}

:root {
  --selection-color: #3685b6;
  --primary-color: #2b65f5;
  --linear-gradient: linear-gradient(45deg, #162ba2, #060c2c);
}
::selection {
  background-color: var(--primary-color);
  color: white;
}

.blog-section {
    
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px;
}
.blog-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e1e1e;
}
.blog-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.read-more:hover {
  color: #23519f;
}

.single-blog-post>p{
  /* background-color: red; */
  font-size: 1.2rem;
}


@media (max-width: 500px) {
  .blog-section h2 {
    font-size: 2rem;
  }
  .blog-card .blog-content {
    padding: 15px;
  }
}


.single-blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgb(0, 0, 0);
  color: #c4c3c3;
  line-height: 30px;
}

.single-blog-post img {
  width: 100%;
  margin: 1rem 0;
}

.single-blog-post a {
  display: inline-block;
  margin-top: 2rem;
  color: #0077cc;
  text-decoration: none;
}

.breadcrumbs-back a{
  display: inline-block;
  margin-top: 2rem;
  color: #586AC6;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumbs-back a:hover {
  color: #e0e0e0;
}


.breadcrumbs-back span{
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

footer {
  padding: clamp(24px, 4vw, 40px) clamp(40px, 8vw, 100px);
  background-color: #101113;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 40px;
  color: #ffffff;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.footer-contact p {
  margin: 20px 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 200;
  color: #f1f1f1;
}
.footer-col ul li {
  margin: 25px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #7e7e7e;
}
.footer-contact > p > img {
  margin-right: 10px;
  background-color: #6c6c6c4a;
  padding: 7px;
  border-radius: 7px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #838383;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-icons {
  margin-top: 40px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #6c6c6c;
  padding: 5px 5px 2px 5px;
  background-color: #6c6c6c68;
  border-radius: 6px;
}
.main-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid #505050;
}

.footer-bottom {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
  color: #969696;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 200;
  margin-top: 40px;
}
