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

#main {
	min-height: 100vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	overflow: hidden;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main__heading {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 30px 30px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: 700;
	font-size: 32px;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	padding: 25px 20px;
	backdrop-filter: blur(10px);
}	

.heading__text {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	font-size: 36px;
}

.section {
	overflow-y: scroll;
	display: flex;
	margin: auto;
	text-align: center;
	padding: 20px;
    border-radius: 20px;
}

.info__box {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info__box:hover {
	transform: translateY(-15px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup__heading {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #2d3748;
}

.popup__sub__heading {
	text-align: left;
	font-weight: 600;
	text-transform: capitalize;
	color: #4a5568;
	margin: 10px 0;
}

.popup__sub__heading > b {
	color: #667eea;
	font-weight: 700;
	font-size: 24px;
}

.card-body {
	display: flex;
	justify-content: flex-start;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(90deg, #7b5de3, #9d8df1);
	flex-wrap: wrap;
	border-radius: 15px 15px 0px 0px;
	padding: 15px;
}

.card {
	text-align: center;
	display: flex;
	justify-content: center;
	transform: scale(1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	background: white;
	margin: 10px;
	border: 1px solid rgba(102, 126, 234, 0.1);
}

.card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-color: rgba(102, 126, 234, 0.3);
}

.card-img-top-parent {
	overflow: hidden;
	transition: all 0.3s ease;
	height: 300px;
	position: relative;
	border-radius: 15px 15px 0 0;
}

.card-img-top {
	transition: all 0.3s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-img-top:hover {
	transition: all 0.3s ease;
	transform: scale(1.15);
	filter: brightness(1.1);
}

.card__heading {
	padding: 15px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: white;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
	border-radius: 0 0 15px 15px;
}
