html {
  scroll-behavior: smooth;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    font-weight: bold;
    background: none;
}
.navbar-nav .nav-link:hover{
    background: none;
}
main {
    position: relative;
    overflow: hidden; /* يمنع أي جزء من الصور يطلع برا */
}

.green-circles-wrapper {
    position: absolute;
    top: -70px;
    right: -125px;
    z-index: -1;
    width: 55%;
    max-width: 100%;
    overflow: hidden; /* كمان قص أي زيادة بالصورة */
}
.green-circles {
    width: 100%;
    height: auto;
    display: block;
}
.gray-circles-wrapper {
    position: absolute;
    top: 60vh;
    left: 0px;
    z-index: -1;
    width: 40%;
    max-width: 100%;
    overflow: hidden; /* كمان قص أي زيادة بالصورة */
}
.gray-circles{
    width: 100%;
    height: auto;
    display: block;
}
.gold-circles-wrapper {
    position: absolute;
    top: 200vh;
    right: -125px;
    z-index: -1;
    width: 40%;
    max-width: 100%;
    overflow: hidden; /* كمان قص أي زيادة بالصورة */
}
.gold-circles{
    width: 100%;
    height: auto;
    display: block;
}
.hero-section{
    width: 100%;
    /*height: 100vh;*/
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items:center;
    margin-top: 100px;
}
footer{
    padding: 10px;
    background-color: rgba(238, 248, 244, 1);
}
ul.footer-list{
    list-style: none;
}
ul.footer-list li a{
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
}
ul.footer-list li a:hover{
    text-decoration: underline;
    color: var(--primary-color);
}
.footer-logo {
    width: 200px;
}
.navbar {
    height: 80px;
}
.social-media-icon{
    width: 35px;
    transition: all ease-in-out 0.3s;
}
.social-media-icon:hover{
    transform: scale(1.2);
}
.advantage-card{
    width: 100%;
    /*min-height: 7cm;*/
    height: 100%;
    padding: 15px;
    background-color: #e4e4eb63;
    border-radius: 10px;
    z-index: 10;
}
.advantage-card p{
    font-size: 14pt;
}
.advantage-card .number{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #53c29459;
    position: relative;
}
.advantage-card .number span{
    position: absolute;
    left: 30px;
    top: 3px;
    font-size: 21pt;
    color: var(--primary-color);
    font-weight: bold;
}
::placeholder{
    text-align: left;
}