/* ++++++++++++++ hero +++++++++++++++++++++++++ */
.hero-section{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 50px;
}
.hero-section a{
    text-decoration: none;
    color: #0d6efd;
}
.col-md-6{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-box i{
color: white;
}
.hero-box{
    background-color: #0d6efd;
    height: 150px;
    width: 150px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items:center;
    border-radius: 10px;
    box-shadow: 2px 2px 3px 0px black;
    transition: all .4s ease;
    
}
.hero-box:hover{
    background-color: white;
    border: 2px solid #0d6efd;
    color: #0d6efd;
}
.hero-box:hover.hero-box i{
  color: #0d6efd;
}
.boxes-col{
    padding: 50px 10px;
}
.hero-details{
    padding: 10px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++ features ++++++++++++++++++++++++++ */


.feature-section {
    margin: 0;
    text-align: center;
    padding: 20px 10px;
    text-decoration: none;
  }


  .feature-box {
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .feature-box:hover {
    background: #bed8ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
  }

  .feature-box i {
      font-size: 2rem;
  }


  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0d6efd;
  }

  .feature-text {
    color: rgb(39, 39, 39);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
  }
/* +++++++++++++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++ Related Post ++++++++++++++++++++++++++ */
.related-posts-container {
    max-width: 800px;
    font-family: "Roboto", sans-serif;
    margin: 0 auto;
    }
    
    .related-post img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    }
    
    .related-posts-title {
    color: #222;
    margin-bottom: 40px;
    font-size: 24px;
    position: relative;
    }
    
    .related-posts-title::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100px;
    background: #0d6efd;
    left: 0;
    bottom: -10px;
    }
    
    .related-posts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    }
    
    .related-post {
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.2);
    transition: all 500ms ease;
    }
    
    .related-post:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.2);
    }
    
    .related-post .post-title {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    padding: 16px;
    display: inline-block;
    line-height: 1.6;
    font-weight: bold;
    }
    
    @media (max-width: 640px) {
    .related-posts {
      grid-template-columns: 1fr;
    }
    
    .related-posts-container {
      max-width: 400px;
    }
    }
    
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
