@import url('https://fonts.googleapis.com/css2?family=Playwrite+BE+VLG:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	box-sizing: border-box;
	text-decoration: none;
	transition: 0.3s;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Poppins", sans-serif;
	background-color: #f1f1f1;
	color: #111;

}

img {
	max-width: 100%;
}

p {
	line-height: 1.7;

}

h2 {
	font-size: 42px;
	margin-bottom: 1rem;
}

strong {
	font-weight: 600;
}

/*----CSS for Layout-------*/

section {
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	overflow-x: hidden;
}

.title {
	text-align: center;
	padding: 15px;
	max-width: 1000px;
	margin: auto;
}

.row {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.row-fluid {
	width: 75%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

.col {
	flex: 1 1 250px;
	padding: 15px;
	margin: 10px;
}

.col2 {
	width: 800px;
	padding: 15px;
	margin: 10px;
}

/*------CSS for header------*/

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 5%;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 9999;

}

header.scrolled {
	background-color: #f1f1f1ab;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
}

nav a {
	color: #111;
	padding: 12px;
	text-transform: uppercase;
}

nav a:hover {
	color: #0fdb61;
}

.logo {
	width: 125px;
}

.news {
	background-color: #4285f4;
	background-image: linear-gradient(90deg, #4285f4, #ea4335);
	color: #fff;
	width: 100%;
	margin: auto;

	position: sticky;
	bottom: 0;
}

.news h3 {
	margin: 5px;
	font-weight: normal;
}

.outline {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #0fdb61;
	color: transparent;
}

.text-pink {
	color: #f71a70;
}

.big-text {
	font-variation-settings: "wdth" 3.5;
}

.green {
	color: #34a752;
}

.blue {
	color: #4285f4;
}

.red {
	color: #ea4335;
}

.yellow {
	color: #fbbc05;
}

.bg-green {
	background-color: #34a75275;
}

.bg-yellow {
	background-color: #fbbc0587;
}

.bg-blue {
	background-color: #4285f473;
}

.shape1 {
	position: absolute;
	top: -20px;
	left: 15%;
	z-index: -1;
}

.shape2 {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.shape3 {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.hero {
	min-height: 100dvh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.hero h1 {
	font-size: 72px;
	margin-bottom: 0;
}

.hero .row-fluid {
	align-items: center;
}

.hero .col:nth-child(2) {
	background-image: url("../images/bg1.png");
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: center left;
	scale: 1.2;
	min-height: 500px;
	text-align: center;
	align-content: center;
}

.dept-logo {
	display: block;

	position: absolute;
	bottom: 80px;
}

.pic1 {
	width: 350px;
	transform: scale(1.1);
	animation: dance 5s forwards ease-in-out;
}

/* Keyframes for the dance animation */
@keyframes dance {
	0% {
		transform: translateY(10px) rotate(0deg) scale(1.1);
	}

	50% {
		transform: translateY(-20px) rotate(10deg) scale(1.3);
	}

	100% {
		transform: translateY(10px) translateX(-15px)rotate(10deg) scale(1.2);
	}

}

.social {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	opacity: 70%;
}

.about {
	background-image: url("../images/bg3.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top;
	background-color: #F1F1F1;
	padding: 0;
	margin-top: -30px;
	border-top: 1px solid lightgrey;
}

.about p {
	/*font-family: "Playwrite BE VLG", cursive;*/
	line-height: 1.8 !important;
}

.call p {
	font-size: 1.3rem;
	color: #333;
	margin-top: 0;
}

.call h3 {
	font-size: 20px;
	font-weight: 500;
}

.pic3 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	animation: rotatee 5s linear both infinite;

}

@keyframes rotatee {
	from {

		transform: translateY(150px);
		transform: rotate(0deg);
	}

	to {

		transform: translateY(0);
		transform: rotate(360deg);
	}
}

footer {
	text-align: center;
	padding: 30px 10px;

	border-top: 1px solid lightgrey;
}

.menu {
	display: none;
}

.fz5 {
	font-size: 1.2rem;
}

.btn1 {
	padding: 10px 24px;
	background-color: #212121;
	color: #fff;
	border: 2px solid #212121;
	border-radius: 35px;
	display: inline-block;
	margin: 8px;
	transition: 0.4s;
}

.btn1:hover {
	background-color: #FFF;
	color: #111;
}

.btn2 {
	padding: 10px 24px;
	border: 2px solid #212121;
	border-radius: 35px;
	display: inline-block;
	margin: 8px;
	transition: 0.4s;
	color: #111;
	transition: 0.4s;
}

.btn2:hover {
	background-color: #fff;
	letter-spacing: 1.5px;
}

li {
	margin-bottom: .5rem;
}

.gallery-container {
	width: 80%;
	margin: auto;
}

.gallery img {
	aspect-ratio: 16 / 12;
	object-fit: cover;
	object-position: center;
	border-radius: 20px;
}

.category {

	padding: 2rem;
	margin-bottom: 1.5rem;
	border-radius: 0px 4rem;
}

.awards {
	text-align: center;

	.row {
		align-items: unset;
	}
}


@media (max-width:800px) {
	section {
		overflow-x: hidden;
	}

	header {
		padding: 10px 5%;
		display: block;
		background: #efefef;
		position: static;

	}

	.row-fluid {
		width: 95%;
	}

	.hero,
	.competition {
		padding-top: 0;
	}

	.pic1 {
		width: 280px;

	}

	.dept-logo {
		bottom: 30px;
	}

	.menu {
		position: absolute;
		top: 20px;
		right: 30px;
		width: 20px;
		display: block;
	}


	nav {
		display: none;
		padding-bottom: 20px;
		padding-top: 20px;
		width: 100%;
		background: #efefef;
	}

	nav a {
		display: block;
		font-size: 1rem;
		margin-right: 0;
		color: #333;
		;
		text-align: center;

	}

	nav a:hover {
		color: #DC3E32;
		border-right: none;
		border-left: none;
		border-bottom: none;
	}

	.br {
		display: block;
	}

	.line {
		display: none;
	}

	.show {
		display: block;
	}


	.shape1 {
		position: absolute;
		top: -20px;
		left: 0;
		z-index: -1;
		width: 300px;
	}

	.shape2 {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
		height: 200px;
	}

	.shape3 {
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: -1;
		height: 200px;
	}

	.about {
		background-position: right;
		background-size: cover;
	}

	.call p {
		font-size: 1.1rem;
	}

	.call h2 {
		line-height: 1.2;
	}

	.news {

		width: 100%;

	}

	.category {
		padding: 1rem;
	}

	.competition .col {
		margin: 0;
	}

	.hero .col:nth-child(2) {
		min-height: 350px;
	}

	.btn1 {
		font-size: 14px;
	}
}