* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



/* Section 1 - Header */
.section-1 {
	background: #fafafa;
	padding: 60px 20px;
	text-align: center;
}

.section-1 h1 {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 20px;
	color: black;
}

.section-1 h1 strong {
	font-weight: 700;
	color: red;
}

.section-1 p {
	max-width: 800px;
	margin: 0 auto 15px;
	color: #666;
	font-size: 1rem;
}

.section-1 a {
	color: #6b4fbb;
	text-decoration: none;
}

.section-1 a:hover {
	text-decoration: underline;
}

/* Filter container styles - removed conflicts */

/* Section 2 - Team Grid */
.section-2 {
	padding: 60px 20px;
	background: white;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.team-member {
	text-align: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
	padding: 10px;
	border-radius: 10px;
}

.team-member:hover {
	transform: scale(1.05);
}

.member-photo {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	margin: 0 auto 15px;
	overflow: hidden;
	background: #f0f0f0;
}

.member-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.team-member:hover .member-photo img {
	filter: grayscale(0%);
}

.member-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
	transition: color 0.3s ease;
}

.team-member:hover .member-name {
	color: red;
}

.member-title {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.4;
}

.member-subtitle {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 10px;
}
.meet-team-grid{display:flex;flex-wrap:wrap;gap:20px;margin:20px 0}
.meet-team-card{background:#fff;padding:18px;border-radius:8px;text-align:center;box-shadow:0 1px 6px rgba(0,0,0,.05)}
.meet-team-image img{width:120px;height:120px;border-radius:50%;object-fit:cover;border:6px solid #f3f3f3}
.meet-team-name{margin:12px 0 4px;font-size:16px}
.meet-team-dept{color:#777;font-size:13px}
.filter-container {
    margin-top: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-heading {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: rgb(95, 95, 95);
    margin: 10px 0;
}

.filter-label {
    font-weight: 700;
}

.meet-team-filter-select {
    min-width: 200px;
    width: auto;
    max-width: 250px;
    height: auto;
    border-radius: 4px;
    border: none;
    padding: 4px 8px;
    background-color: #fff;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
}

.meet-team-filter-select:hover {
    background-color: #f5f5f5;
}

.meet-team-filter-select:focus {
    outline: none;
    border-color: #046bd200;
}

@media (max-width: 768px) {
    .meet-team-filter-select {
        max-width: 100%;
    }
}