@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
p,th,td,li,b {
  font-size: 18px;
  font-family: "Roboto", sans-serif !important;
}
b{
    color: #363636;
}
.mt-5{
    margin-top: 30px;
}

.head-bg {
  background: linear-gradient(
      90deg,
      rgba(2, 0, 36, 0.6) 0%,
      rgba(9, 9, 121, 0.6) 58%,
      rgba(0, 212, 255, 0.6) 100%
    ),
    url(../img/blog-images/banner.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.head-bg h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
}
.you-may-like {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.you-may-like h3 {
  background: #1a2c5b;
  color: #fff;
  font-size: 16px;
  padding: 20px 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin: 0;
  text-align: center;
}
.you-may-like ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.you-may-like li {
  display: flex;
  align-items: center;
  padding:20px 10px;
  border-bottom: 1px solid #eee;
}
.you-may-like li:last-child {
  border-bottom: none;
}
.you-may-like img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 10px;
}
.you-may-like a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.you-may-like a:hover {
  color: #1a2c5b;
}
.blog-img img{
    width: 100%;
    border-radius: 12px;
    height: 300px;
    object-fit: cover;
}
.main-blog-content h2{
    margin-top: 30px;
    font-weight: 600;
}
.main-blog-content ul{
    margin-bottom: 30px;
    list-style-type: disc !important;
    margin-left: 20px;
}
.main-blog-content .ul li{
    margin-bottom: 20px;
}
.faq{
    padding-bottom: 40px;
}
.faq h2{
    font-weight: 600;
}
.more-card{
    background-color: #1a2c5b;
    height: 250px;
    margin-top: 20px;
    border-radius: 16px;
    display: grid;
    place-content: center;
    padding: 30px;
}
.more-card h4{
    color: #fff;
    font-size: 25px;
    text-align: center;
}
.more-card .btnn{
    padding:10px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 3rem;
    color: #fff;
    font-size: 16px;
    outline: none;
    text-align: center;
    transition: .5s;
}
.more-card .btnn:hover{
    color: #000;
    background-color: #fff;
}
.head-desc{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.head-desc a,.head-desc i{
    color: #fff;
    font-size: 20px;
    margin-bottom: 0 !important;
}