@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.bio {
    background-color: rgba(251, 250, 249,1.00);
    background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
    background-image: url(http://localhost/bootstrap/images/common-loon-bg.jpg);
	padding-top: 100px;
	padding-left: 20px;
	padding-right: 20px;
	font-family: 'Poppins', sans-serif;

}

.photo {
    float:left;
		padding-right: 20px;
		padding-bottom: 10px;
}
.intro {
    width: 50%; /* Makes paragraph half the width of the container */
    max-width: 600px; /* Prevents it from being too wide on large screens */
    margin: 0 auto; /* Centers it */
    text-align: left; /* Aligns text to the left (change to center if needed) */
    padding: 10px; /* Adds some space inside */
}

/* Customize the size of the carousel */
#carouselExample {
    max-width: 800px;
    margin: auto;
}

.carousel-item img {
    max-height: 400px; /* Adjust slide height */
    object-fit: contain; /* Ensures full image is visible */
}

.swiper-pagination-bullet {
    background: dodgerblue; /* Change dot color */
}

/* Use a custom color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(30, 144, 255, 0.75); /* Dark semi-transparent arrows */
    border-radius: 50%; /* Optional: Makes them circular */
    width: 30px; /* Adjust size */
    height: 30px;
}


.icons {
 	display: inline-block;
  	margin-left: auto;
  	margin-right: auto;
  	width: 100%;
	text-align: center;
}

.button-container-presentations {
    display: flex;
    flex-wrap: wrap; /* Ensures buttons wrap if needed */
    gap: 15px; /* Adjust the spacing between buttons */
	justify-content:  center;
}

.btn-outline-primary-presentations {
    border: 1px solid dodgerblue; /* Blue border */
    color: white; /* Blue text */
    background: dodgerblue;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.btn-outline-primary-presentations:hover {
    background: white; /* Light blue transparent background on hover */
    color: dodgerblue; /* Keep text blue */
    border: 2px solid dodgerblue; /* Keep border blue */
    transform: scale(1.05); /* Slight zoom effect */
}

.btn-outline-primary:active {
    background: rgba(0, 123, 255, 0.2); /* Slightly darker blue on click */
    transform: scale(0.75); /* Press-down effect */
}


.button-container {
    display: flex;
    flex-wrap: wrap; /* Ensures buttons wrap if needed */
    gap: 15px; /* Adjust the spacing between buttons */
	justify-content:  center;
}

.btn-outline-primary {
    border: 1px solid dodgerblue; /* Blue border */
    color: dodgerblue; /* Blue text */
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.btn-outline-primary:hover {
    background: dodgerblue; /* Light blue transparent background on hover */
    color: white; /* Keep text blue */
    border: 2px solid #007bff; /* Keep border blue */
    transform: scale(1.05); /* Slight zoom effect */
}

.btn-outline-primary:active {
    background: rgba(0, 123, 255, 0.2); /* Slightly darker blue on click */
    transform: scale(0.75); /* Press-down effect */
}
