/*
* © Seddike Tanvir
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* :root{

} */


* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-family: var(--bn_font_5);

}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bgColor01);
}

p {
	color: var(--textColor01);
	letter-spacing: .5px;
}

.p1 {
	font-weight: 650;
	font-size: 1.2rem;
	padding-left: 1rem;
	border-bottom: 1px solid var(--footerTopBorderColor01);
	margin-bottom: 1.7rem;
	/* margin-top: -.5rem; */
	/* width: max-content; */

}

.p2 {
	font-weight: 550;
	font-size: 1.05rem;

}

.p3 {
	font-weight: 450;
	font-size: 1rem;

}

/* #p3_contact span{
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
} */
/* .p_caption{
    font-size: .5rem;
} */
.bold_p {
	font-weight: 550;
}

ol>li,
ul>li,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
	word-spacing: .9px;
}
.inline_link {
	padding: 0px 2px;
	color: var(--inlineAHrefTagTextColor01);
}












/* !-------BodyArea Section ------------------*/
.main {
	min-height: 50vh;
	margin-top: 7vh;
	
}
@media (max-width: 750px) {
	.main {
		min-height: 30vh;
		margin-top: 2.7vh;
		
	}
}



.main_heading {
    margin: auto;
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--bn_font_13);
	width: 90vw;
	max-width: 60rem;
    background-color: var(--cardBgColor01);
	border-radius: 5px;
	/* box-shadow: 0 2px 8px var(--boxShadowColor01); */
	border: 2px solid #ffffff1e;
	margin-bottom: 1px;
	position: sticky;
	top: 5.3rem;
	z-index: 1000;
}

/* Profile Card Styles */
.profile-container {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
	width: 90vw;
	max-width: 60rem;
	margin: auto;
	/* border: 1px solid #ffffff1e; */
	border-radius: 10px;
}

.profile-card {
    background-color: var(--cardBgColor01);
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--boxShadowColor01);
    width: calc(100% / 3 - 2rem); /* 3 per row on desktop */
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #ffffff1e;
	z-index: 10;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img{
	display: flex;
	justify-content: center;
	padding: 1rem 0;
}

.profile-img img {
    width: 80%;
	max-width: 9rem;
    height: auto;
    object-fit: cover;
	aspect-ratio: 1 / 1; /* keeps it square/circle */
    /* border-bottom: 1px solid var(--footerTopBorderColor01); */

}

.profile-info {
    padding: 1rem;
    text-align: center;
}

.profile-info h3 {
    margin-bottom: 0.5rem;
    color: var(--textColor01);
}

.profile-info p {
    font-size: 0.9rem;
    color: var(--textColor01);
    opacity: 0.8;
}

.social-icons {
    margin-top: 0.8rem;
}

.social-icons a {
    margin: 0 0.5rem;
    color: var(--inlineAHrefTagTextColor01);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0077ff; /* Adjust hover color */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .profile-card {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .profile-card {
        width: 100%;
    }
}






