/*Paragraph Spacing*/
body p {
margin: 0;
padding: 0;
}

/*Intro Blog Remove Top Border*/
.boxed .blog-item {
box-shadow: 0 0 2px rgba(51, 57, 66, 0.1), 0 2px 5px rgba(51, 57, 66, 0.08), 0 5px 15px rgba(51, 57, 66, 0.08);
  margin-bottom: 20px;
  margin-top: 20px;
}

/*Boxed Div*/
.boxedborder{
    background-color: #fff;
    color: #666;
  box-shadow: 0 5px 10px #D3D3D3;
padding:10px;}

/*Button to Div Bottom*/
.bottomdiv {
display: flex; 
  flex-direction: column;}
.buttondiv {
  margin-top: auto;
}

/*Image in Circle*/
.circle-image-border {
    border-radius: 50%;
    overflow: hidden; 
    width: 100%; 
    max-width: 500px; 
    height: auto; 
    object-fit: cover; 
    display: block; 
    margin: 0 auto; 
    border: 15px solid white; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
}
.circle-image-border-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid black;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Home Banner Image */
.home-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('images/banners/banner-background.webp');
    background-size: cover; /* Ensure the image covers the entire area */
    background-position: center; /* Center the image */
}

