  body{
    margin-top:20px;

}

/* Feature Box
---------------------*/
.btn-link{
    color: #8d0000;
}
.btn-link:hover{
    color: #980000;
}
p{
    line-height: 25px;
    letter-spacing:1.5px ;
    margin-top: 10px;
}
.feature-content p{
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 19px;
}
.feature-box-1 {
    padding: 32px;
    margin: 10px;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    top: 0;
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards;
}
.feature-box-1 * {
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
}
.feature-box-1 .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 22px;
    font-size: 27px;
}
.feature-box-1 .icon i {
  line-height: 10px;
}
.feature-box-1 h5 {
  color: #030303;
  font-weight: 500;
  letter-spacing: 1px;
}
.feature-box-1 p {
  margin: 0;
}
.feature-box-1:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  background: #e8e8e8;
  z-index: -1;
  -moz-transition: ease all 0.60s;
  -o-transition: ease all 0.60s;
  -webkit-transition: ease all 0.60s;
  transition: ease all 0.60s;
}
.feature-box-1:hover {
  top: -5px;
}
.feature-box-1:hover h5 {
  color: #000000;
}
.feature-box-1:hover p {
  color: rgba(0, 0, 0, 0.8);
}
.feature-box-1:hover:after {
  width: 100%;
  height: 100%;
  left: 0;
  right: auto;
}
/* Un-animated Feature Box
---------------------*/
.feature-box-2 {
    padding: 32px;
    margin: 10px;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    top: 0;
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards;
}
.feature-box-2 * {
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
}
.feature-box-2 .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 22px;
    font-size: 27px;
}
.feature-box-2 .icon i {
    line-height: 10px;
}
.feature-box-2 h5 {
    color: #030303;
    font-weight: 500;
}
.feature-box-2 p {
    margin: 0;
}
.feature-box-2:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    border-radius: 1px;
    width: 0;
    background: #e8e8e8;
    z-index: -1;
    -moz-transition: ease all 1s;
    -o-transition: ease all 1s;
    -webkit-transition: ease all 1s;
    transition: ease all 1s;
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-title h2 {
    font-weight: 700;
    color: #000000;
    padding-left: 20px;
    font-size: 45px;
    margin: 0 0 20px;
    position: relative; /* Required for absolute positioning of pseudo-element */
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 0.5s ease-out forwards;

}

.section-title h2::before {
    content: ""; /* Create an empty pseudo-element for the border */
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 1.5px;
    height: 0; /* Initially set height to 0 */
    background-color: #890000;
    animation: borderAnimation 1.5s ease-out forwards; /* Border animation properties */
}

.section-title h2 {
    position: relative; /* Set position to relative for proper animation */
    opacity: 0; /* Initially set opacity to 0 */
    transform: translateX(-10px); /* Initial position outside the viewport */
    animation: textAnimation 1s ease-out forwards; /* Text animation properties */
}
a{
    text-decoration: none;
    color: #070101;
}
ul{
    list-style: none;
    font-weight: 500;
}
.show-button-div{
    display: flex;
    justify-content: end;
}
.hide-button-div{
    display: flex;
    justify-content: end;
}
@keyframes textAnimation {
    to {
        opacity: 1; /* Fade in the text */
        transform: translateX(0); /* Slide in from left to right */
    }
}

@keyframes borderAnimation {
    to {
        height: 88%;
    }
}
@keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

