
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: rgb(17, 144, 122);
    
}
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:rgb(10, 110, 92);
}
.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:rgb(7,81,68);
    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:rgb(7,81,68);
    font-weight:700;
    font-family: "Inter Variable", Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif;
}

.header-links{
    text-decoration: none;
    color:rgb(7,81,68);
}



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: rgb(17, 144, 122) 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: rgb(7,81,68);
    border-bottom: solid rgb(7,81,68) 2px;
}

.padding-div{
    padding:0 12% 0% 12%;
}

.links-right{
    font-size: 1.1em;
    font-weight: 500;
}

.contact-details
{
    text-align: left !important;
    padding-left: 20px;
    font-weight: 800;
}

.contact-details h4{
    font-weight: 800;
    font-size: 1.3em;
    letter-spacing: 0.1em;
    color:rgb(218, 218, 218);
}

.contact-details p{
    font-weight: 800;
    letter-spacing: 0.1em;
    color:rgb(218, 218, 218);
}

.p-headings{
    color:rgb(10, 110, 92);
    font-size:1.5em;
    font-weight: 800;
    line-height: 1.6;
}

.list-headings{
    color:rgb(10, 110, 92);
    font-size:1.5em;
    margin:0px !important;
    font-weight: 800;
}

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: rgb(17, 144, 122);
    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;
}

.ordered-list{
    font-size: 1.4em;
    font-weight:600;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

a {
    text-decoration: none;
    color: black;
    font-weight:700;
}

.dropdown {
    position: relative;
    display: inline-block; /* Change to inline-block */
}

.submenu {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    display: none; /* Ensure it's not visible until clicked */
}

.submenu li {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    text-align: left;
}

.submenu li:hover {
    background-color: #f1f1f1;
}


.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
{
    min-height: 416px;
    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:rgb(7,81,68);
    width:50px;
    height:50px;
}

/*scrollbar*/
/* width */
::-webkit-scrollbar {
    width: 7px;
    
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f100;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(7,81,68);
    border-radius:10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(17, 144, 122);
  }