/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;700&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Navigation */
nav {
	position: fixed;
	background-color: skyblue;
	height: 70px;
	width: 100%;
	z-index: 1;
}

.logo {
	font-size: 25px;
	position: relative;
	left: 5%;
	color: white;
	font-weight: bold;
	line-height: 70px;
}

ul {
	position: relative;
	float: right;
	margin-right: 20px;
}

ul li {
	display: inline-block;
	line-height: 70px;
	margin: 0 5px;
}

ul li a {
	text-decoration: none;
	color: white;
	font-size: 17px;
}

/* Hero Section */
.section1 {
	padding-top: 70px;
}

.main_img {
	width: 50%;
	height: 400px;
}

.img_text {
	position: absolute;
	top: 40%;
	left: 30%;
	color: white;
	background-color: midnightblue;
	padding: 10px 20px;
	font-size: 35px;
	border-radius: 8px;
}

/* Content Styling */
.container {
	padding-top: 70px;
}

h1, h2, h3 {
	font-family: 'Noto Sans Devanagari', sans-serif;
	font-weight: bold;
	color: #2c3e50;
	line-height: 1.4;
	margin-bottom: 20px;
}

p {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}

/* Section Heading */
.section-heading {
	background-color: #f5f5f5;
	padding: 20px;
	border-left: 5px solid #007acc;
	font-size: 24px;
	color: #1a1a1a;
	margin-top: 40px;
	margin-bottom: 20px;
}

/* Card Styling */
.card-box {
	background: #ffffff;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 30px;
	transition: 0.3s ease;
}

.card-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.welcome_img {
	width: 100%;
	height: 250px;
}

.teacher {
	width: 90%;
	height: 200px;
}

/* Form Styles */
.label_text {
	display: inline-block;
	width: 100px;
	text-align: right;
	padding-right: 10px;
	font-size: 16px;
	font-weight: 500;
	color: #2d3748;
}

.input_deg, .input_txt {
	width: 30%;
	border-radius: 25px;
	border: 1px solid blue;
}

.input_deg {
	height: 40px;
}

.input_txt {
	height: 120px;
}

.adm_int {
	padding-top: 10px;
}

#submit {
	position: relative;
	width: 15%;
	left: 5%;
}

/* Footer */
footer {
	background-color: #2c3e50;
	padding: 20px 0;
	color: white;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.5px;
}

/* Additional Styles */
.adm {
	padding-top: 30px;
	padding-bottom: 30px;
}

.form_deg {
	padding-top: 200px;
}

.label_deg {
	display: inline-block;
	color: skyblue;
	width: 100px;
	text-align: right;
	padding: 10px 0;
}

.login_form {
	background-color: black;
	width: 400px;
	padding: 70px 0;
}

.title_deg {
	background-color: skyblue;
	color: white;
	text-align: center;
	font-weight: bold;
	width: 400px;
	padding: 10px 0;
	font-size: 20px;
}

.body_deg {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
}
