/* Navbar Links */
.navbar .nav-link {
    font-weight: 500;
    color: #333;
    padding: 10px 18px;
    transition: 0.3s;
}

/* Hover */
.navbar .nav-link:hover {
    color: #fff;
    background-color: #c88118;
    border-radius: 5px;
}

/* Active Menu */
.navbar .nav-link.active {
    font-weight: 500;
    background-color: #c88118;
    color: #fff !important;
    border-radius: 5px;
}
.bg-nav {
    background-color: #010e2c
}

.heading-color {
    color: #010e2c
}
.icon-color{
    color: #c88118;
}
.btncolor {
    font-weight: 500;
    background-color: #c88118;
    color: #010e2c;
}
.btncolor:hover {
    background-color: #c88118;
    color: #ffffff;
}
.itemcard{
    width: 40%;
    border: 1px solid;
    border-radius: 50%;
    margin: 0px 0px 17px 0px;
    padding: 15px 3px 20px 4px;
    background-color: #f1d6ae;
    margin-left: 30%;
}
.subheading{
    text-align: center;
    font-weight: 500;
}  

      .about-hero{
    height:450px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}

.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    );
}

.about-hero .container{
  position:relative;
  z-index:2;
}

.bottom-ribbon{
    margin-left: 4rem;
    left: 50%;
    width: 90%;
    background: linear-gradient(135deg,#0d6efd,#010e2c);
    color: #fff;
    padding: 18px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    z-index: 9999;
    margin-bottom: 3rem;
}

.ribbon-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ribbon-content h5{
    margin: 0;
    font-weight: 700;
}

.ribbon-content p{
    margin: 5px 0 0;
    opacity: .9;
    font-size: 15px;
}

.ribbon-btn{
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.ribbon-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,193,7,.4);
}

@media (max-width:768px){

    .bottom-ribbon{
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 15px;
        margin-left: 0.6rem;
    }

    .ribbon-content{
        flex-direction: column;
        text-align: center;
    }

    .ribbon-btn{
        width: 100%;
    }

    .itemcard{
    width: 71%;
    border: 1px solid;
    border-radius: 50%;
    margin: 0px 0px 17px 0px;
    padding: 30px 0px 42px 0px;
    background-color: #f1d6ae;
    margin-left: 14%;
    }

    .btnone{
    margin-top: 3rem;
    }

    .btntwo{
    margin-top: 1.5rem;
    }

    .btnthree{
    margin-top: 3rem;
    }

    .btnfour{
    margin-top: 1.5rem;
    }

    .mobileitemcard{
    padding-top: 2.5rem;
    }

}