:root {
    --brand-primary: #b446b4;
    --brand-secondary: #f4dff7;
}

body {
    padding: 0;
    margin: 0;
    background: var(--brand-secondary);
    font-family: 'IBM Plex Mono';font-size: 22px;
}
.navbar {
    background: var(--brand-primary);
    z-index: 1000;
}
.nav-link,
.navbar-brand {
    color: #fff;
    cursor: pointer;
}
.nav-link {
    margin-right: 1em !important;
}
.nav-link:hover {
    color: #000;
}
.navbar-collapse {
    justify-content: flex-end;
}
.custom-nav .nav-item .nav-link {
    color: var(--brand-primary);
}
.current-page {
    background-color: var(--brand-secondary);
    color: #000;
}
.custom-container {
    min-width: 60%; /* Adjust the width as needed */
}
.header {
    background-image: url('Images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* makes it float */
    position: relative;
}
.overlay {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 0;
}
.description {
	left: 50%;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -55%);
	text-align: center;
}
.description h1 {
    display: inline-block;
	color: var(--brand-primary);
    background: rgba(0, 0, 0, 0.6);
}

.description p {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.5;
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
}

.description button {
    border:1px solid var(--brand-primary);
    background:var(--brand-primary);
    border-radius: 0;
    color:#fff;
}
.description button:hover {
	border:1px solid #fff;
    background:#fff;
    color:#000;
}
.features {
	margin: 4em auto;
	padding: 1em;
	position: relative;
}
.feature-title {
	color: #333;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.features img {
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	margin-bottom: 16px;
}
.features .form-control,
.features input {
	border-radius: 0;
}
.features .btn {
    background-color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    color: #fff;
    margin-top: 20px;
}
.features .btn:hover {
    background-color: #333;
    border: 1px solid #333;
}
.ibm-plex-mono-thin {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: normal;
}

.ibm-plex-mono-extralight {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: normal;
}

.ibm-plex-mono-light {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
}

.ibm-plex-mono-regular {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.ibm-plex-mono-medium {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: normal;
}

.ibm-plex-mono-semibold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: normal;
}

.ibm-plex-mono-bold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: normal;
}

.ibm-plex-mono-thin-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: italic;
}

.ibm-plex-mono-extralight-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: italic;
}

.ibm-plex-mono-light-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: italic;
}

.ibm-plex-mono-regular-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.ibm-plex-mono-medium-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: italic;
}

.ibm-plex-mono-semibold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: italic;
}

.ibm-plex-mono-bold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: italic;
}
.background {
    background: #b6bff3;
    padding: 4em 0;
}
.team {
    color: #5e5e55;
    padding: 0 180px;
}
.team .card-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}
.team .card {
    background:none;
    border: none;
}
.team .card-title {
    font-size: 1.3rem;
    margin-bottom: 0;
    text-transform: uppercase;
}
.Centered {
    display: flex;
    flex-direction: column; /* Align children vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center; /* Center text within the div */
    margin: 0 auto; /* Center the div horizontally */
    padding: 0 20px; /* Add padding as needed */
}

.card-img-top {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto; /* centers inside text-center */
}

footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: var(--brand-primary);
   color: white;
   text-align: center;
}

footer a{
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

footer a:hover{
    color: #000;
}

.custom-form {
    background-color: var(--brand-secondary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 10px;
}

.form-row label {
    text-align: left;
}

.form-row input {
    width: 100%;
    padding: 6px;
}
