*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: 'Open Sans', sans-serif; */
    /* font-family: 'Roboto', sans-serif; */
    font-family: 'Urbanist', sans-serif;
}


.blog-section{
    width: 100%;
    height: auto;
}
.navbar{
    z-index: 3;
    /* position: absolute; */
}
.nav-item{
    margin: 0 10px;
}
.nav-link , .navbar-brand{
    color: #110b11 !important;
}
.navbar-brand{
    font-size: 1.5rem;
    font-weight: 600;
}
.navbar-brand img{
    width: 70px;
    height: 70px;
}
.nav-link{
    font-size: 1rem;
    font-weight: 500;

}
.nav-link:hover{
    color: #eb6029 !important;
}
.read-blog {
    width: 100%;
    /* margin: 0 auto; */
    padding: 5%;
    background-color: #f3f3f3;
    color: #110b11;
}
.blog-content {
    background-color: #fff;
    width: 70%;
    margin: auto;
    padding: 5%;
    /* text-align: center; */
}

.blog-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}
.blog-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.blog-content li{
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;

}
.blog-content img{
    width: 100%;
    height: 500px;
    margin: 20px auto;
}

/* Footer Start */
.footer{
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 5%;
    border-bottom: 1px solid #393B51;
}
.footer-sub-heading{
    font-size: 1.2rem;
    font-weight: 600;
    color: #110b11;
    margin-bottom: 20px;
}
.foot-link{
    font-size: 1rem;
    font-weight: 400;
    color: #393B51;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.foot-link:hover{
    color: #eb6029;
}
.address p{
    font-size: 1rem;
    font-weight: 400;
    color: #393B51;
    margin-bottom: 10px;
}

.footer-bott{
    padding: 20px;
    background: #f3f3f3;
}
.footer-p{
    font-size: 1rem;
    font-weight: 600;
    color: #110b11;
    margin: 0;
}

.footer-icon{
    /* background-color: #1877f2; */
    font-size: 20px;
    padding: 5px;
    border-radius: 50%;
    margin-right: 3px;
}
.facebook{
    background-color: #1877f2;
    color: #fff;
}
.twitter{
    background-color: #1b9df0;
    color: #fff;
}
.linkedin{
    background-color: #2867b2;
    color: #fff;
}
.youtube{
    background-color: #ff0000;
    color: #fff;
}
.instagram{
    background-color: #fe005c;
    color: #fff;
}

/* Footer End */

/* Buttons Start */
.btn-primary {
    background-color: #eb6029;
    border-color: #eb6029;
    color: #fff;
    /* padding: 10px 20px; */
    border-radius: 5px;
    /* font-weight: 600; */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #d45524;
    border-color: #d45524;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Buttons End */

  /* Alert tip Start */
  .float-tip-success{
    position: fixed;
    width: 40%;
    padding: 5px;
    border-radius: 5px;
    background: #c1e1ff;
    border: 1px solid #85c4ff;
    right: 10px;
    top: 56px;
    z-index: 2000;
  }
  .float-tip-warning{
    position: fixed;
    width: 40%;
    padding: 5px;
    border-radius: 5px;
    background: #ffc1c1;
    border: 1px solid #f67a7a;
    right: 10px;
    top: 56px;
    z-index: 2000;
  }
  .float-span{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Alert tip End */

  .login-card{
    width: 100%;
    max-height: 100vh;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
#dash-main{
    background: #f3f3f3;
}


/* Media Queary Start */
@media (max-width: 768px) {
    .read-blog {
        padding: 2%;
    }
    .blog-content {
        width: 95%;
        padding: 2%;
    }
    .blog-content h2{
        font-size: 1.5rem;
    }
    .blog-content h3{
        font-size: 1rem;
    }
    .blog-content p{
        font-size: 1rem;
    }
}
/* Media Queary End */

