
body {
    font-family: "Inter Variable", Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}
.brand-name {
    margin-left:20px;
}
h2{
    font-size:1.8em;
}
.container-banner{
    height:60px;
    margin-bottom: 5px;
}
.container-banner-one{
    background-color: hsla(152, 24%, 52%, 1);
    
}
article p{
    font-weight:600;
}
.section-header{
    font-size:2.8em;
    font-weight: 400;
    margin:0;
    padding:0;
}

.section-text{
    font-weight: 400;
    font-size: 1em;
    line-height: 1.8;
    text-wrap: pretty;
}

.container-banner-two{
    background-color:hsla(150, 81%, 28%, 1);
}
.section-container
{
    width: 45%;
    margin-bottom:80px;
    height:fit-content;
}


.home-section{
    height:fit-content;
    padding:0px 0px 0 2em;
    width: 95%;
    border-radius: 30px;
    background-image: url('office.jpg');
    background-size: cover; /* This will cover the entire area of the div without stretching the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center;
}
.section-container-text
{
    background-color: #006334;
    color:white;
    word-spacing: 2px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding:1.3em;
    font-size: 1.5em;
}
.main-container{
    display:flex;
    align-items: center;
    flex-direction: column;
    margin-top:50px;
}

.feature-image{
    width:50px;
    height:50px;
}

.second-text-container
{
    width:80%;
}

.second-text-container p{
    font-size:1.4em;
    font-weight: 600;
    line-height: 1.5;
}

.second-text-container h2{
    font-size:2.5em;
}

.center-home-container
{
    width:80%;
}

.header-links{
    padding:0;
    margin:0;
    font-size:2.8em;
    color:#006334;
    font-weight:700;
    font-family: "Inter Variable", Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif;
}

.header-links{
    text-decoration: none;
    color:#006334;
}
article {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border: #f8f9fa solid 2px; /* Add a default border to enable smooth transition */
    transition: border 0.3s ease-in; /* Transition effect for the border */
}

article:hover {
    border: hsla(152, 24%, 52%, 1) solid 2px;
}

a {
    text-decoration: none;
    color: #007bff; /* Default color */
    border-bottom: solid transparent 2px; /* Transparent border for a smooth transition */
    transition: color 0.3s ease-in, border-bottom-color 0.3s ease-in; /* Transition effects */
}

a:hover {
    color: #006334;
    border-bottom: solid #006334 2px;
}


.links-right{
    font-size: 1.1em;
    font-weight: 500;
}

.container{
    padding:0 12% 2% 12%;
}

header{
    margin-top:10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

nav {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    background-color: #fff; /* Add a background color to ensure the nav is visible over the content below it */
    z-index: 1000; /* Ensure the nav stays on top of other content */
}


nav ul {
    display: inline-block;
    margin: 0 auto;
}

footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

.menu-items{
    font-size: 1.3em;
    padding:15px 5px 5px 5px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

a {
    text-decoration: none;
    color: black;
    font-weight:700;
}

.hero {
    background-color: #e9ecef;
    padding: 50px 20px;
    text-align: center;
}

.home-container
{
    padding:15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0063351e;
}

.home-container-white
{
    padding:15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px;
}

.features4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px;
}

article {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

article p{
    font-size: 1.3em;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}
.BB8-card__icon{
    color:#006334;
    width:50px;
    height:50px;
}

/*scrollbar*/
/* width */
::-webkit-scrollbar {
    width: 7px;
    
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f100;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #006334;
    border-radius:10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: hsla(152, 24%, 52%, 1);
  }