/* Reset */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,dfn,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}


html,
body {
  height: 100%;
  background-color: #000;
}


body{
margin:0;
padding:0;
color: #fff;
text-align: center;
background: url(../images/new_bg.jpg) right bottom no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
position: relative;
scroll-behavior: smooth;
}

/* Add subtle animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content-section {
	animation: fadeInUp 0.8s ease-out;
}

.black{
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

#wrapper{
	position: relative;
	width: 100%;
	margin: auto;
}

.hero-section{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#header{
	width: 100%;
	padding: 50px 0;
	margin: auto;
}

h1{
	font-family: 'Damion', cursive;
	font-size: 103px;
}

h2{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	color: #E6E6FA;
}

h2 strong.sep-one{
	width: 60px;
	height: 1px;
	background: #fff;
	position: absolute;
	margin-left: -80px;
	margin-top: 15px;
}

h2 strong.sep-two{
	width: 60px;
	height: 1px;
	background: #fff;
	position: absolute;
	margin-left: 15px;
	margin-top: 15px;
}


#middle{
	width: 100%;
	background: #ffffff;
	padding: 10px 0;
	margin: 50px 0;
}

#middle p{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 24px;
	color: #000000;
	line-height: 34px;
	padding: 0 30%;
}

#middle p span{
	color:#e63b4d;
}

#content{
	width: 100%;
	margin: 0;
	padding: 80px 0 0 0;
	background: linear-gradient(135deg, rgba(230, 230, 250, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.content-section{
	width: 100%;
	margin: 0 0 60px 0;
	position: relative;
}

.section-container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 255, 0.9) 100%);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.section-container:hover{
	transform: translateY(-5px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 12px 35px rgba(0, 0, 0, 0.08);
}

.section-header{
	text-align: center;
	margin-bottom: 40px;
}

.section-header h3{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: #2c2c54;
	margin-bottom: 15px;
	letter-spacing: 1px;
	position: relative;
}

.section-divider{
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #E6E6FA 0%, #9370DB 50%, #E6E6FA 100%);
	margin: 0 auto;
	border-radius: 2px;
}

.section-content{
	text-align: left;
}

.intro-text{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: #4a4a6a;
	line-height: 1.6;
	margin-bottom: 25px;
	text-align: center;
	font-style: italic;
}

.section-content p{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 18px;
	color: #555555;
	line-height: 1.8;
	margin-bottom: 20px;
	text-align: justify;
}

.section-content h4{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #6a5acd;
	margin: 30px 0 15px 0;
	letter-spacing: 0.5px;
}

/* Academic Section Specific Styles */
.academic-item{
	background: linear-gradient(135deg, rgba(230, 230, 250, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
	padding: 25px;
	margin: 20px 0;
	border-radius: 15px;
	border-left: 4px solid #9370DB;
	transition: all 0.3s ease;
}

.academic-item:hover{
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(147, 112, 219, 0.2);
}

/* Research Section Specific Styles */
.research-areas{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin: 30px 0;
}

.research-item{
	background: linear-gradient(135deg, rgba(230, 230, 250, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(147, 112, 219, 0.2);
}

.research-item:hover{
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(147, 112, 219, 0.25);
	border-color: rgba(147, 112, 219, 0.4);
}

.research-item h4{
	color: #8A2BE2;
	margin-bottom: 15px;
	font-size: 20px;
}

.research-item p{
	text-align: center;
	font-size: 16px;
	color: #666;
}

/* Counselling Section Specific Styles */
.counselling-info{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
	margin: 30px 0;
}

.certification, .approach{
	background: linear-gradient(135deg, rgba(230, 230, 250, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
	padding: 30px;
	border-radius: 15px;
	border-top: 4px solid #9370DB;
	transition: all 0.3s ease;
}

.certification:hover, .approach:hover{
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(147, 112, 219, 0.2);
}

/* Contact Section Specific Styles */
.contact-simple{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin: 30px 0;
	align-items: start;
}

.contact-description{
	text-align: left;
}

.contact-methods{
	margin: 25px 0;
}

.contact-item{
	margin: 20px 0;
	padding: 20px;
	background: linear-gradient(135deg, rgba(230, 230, 250, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 10px;
	border-left: 3px solid #9370DB;
	transition: all 0.3s ease;
}

.contact-item:hover{
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(147, 112, 219, 0.2);
}

.contact-item h5{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #8A2BE2;
	margin-bottom: 8px;
}

.profile-link{
	color: #6a5acd;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.profile-link:hover{
	color: #8A2BE2;
	text-decoration: underline;
}

.contact-action{
	text-align: center;
	background: linear-gradient(135deg, rgba(230, 230, 250, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	padding: 40px 30px;
	border-radius: 15px;
	border: 1px solid rgba(147, 112, 219, 0.2);
	height: fit-content;
}

.contact-action h4{
	color: #6a5acd;
	margin-bottom: 20px;
	font-size: 24px;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 600;
}

.contact-btn{
	display: inline-block;
	background: linear-gradient(145deg, #9370DB 0%, #8A2BE2 100%);
	color: white;
	text-decoration: none;
	padding: 18px 35px;
	border-radius: 30px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	margin: 20px 0;
	box-shadow: 0 5px 15px rgba(147, 112, 219, 0.3);
}

.contact-btn:hover{
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(147, 112, 219, 0.4);
	background: linear-gradient(145deg, #8A2BE2 0%, #6A1B9A 100%);
}

.email-note{
	font-size: 14px;
	color: #666;
	margin-top: 15px;
	font-style: italic;
	line-height: 1.4;
}

#footer{
	width: 100%;
	background: linear-gradient(135deg, #2c2c54 0%, #4a4a6a 100%);
	padding: 50px 0 30px 0;
	margin-top: 0;
	position: relative;
	color: white;
}

#footer::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #E6E6FA 0%, #9370DB 50%, #E6E6FA 100%);
}

.footer-content{
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 30px;
}

.footer-title{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.footer-subtitle{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #E6E6FA;
	margin-bottom: 30px;
	font-style: italic;
}

.social-section{
	margin-bottom: 25px;
}

.social-title{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	color: #E6E6FA;
	margin-bottom: 20px;
	font-weight: 600;
}

ul.social{
	width: auto;
	margin: 0 auto;
	height: auto;
	display: flex;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
}

ul.social li{
	float: none;
	background: none;
	position: relative;
	height: auto;
	margin: 0;
}

ul.social li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	text-decoration: none;
	color: #E6E6FA;
	backdrop-filter: blur(10px);
}

ul.social li a:hover{
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

ul.social li a i{
	font-size: 20px;
}

ul.social li.linkedin a:hover{
	background: rgba(0, 119, 181, 0.2);
	border-color: #0077B5;
	color: #ffffff;
}

ul.social li.appa a:hover{
	background: rgba(138, 43, 226, 0.2);
	border-color: #8A2BE2;
	color: #ffffff;
}

ul.social li.instagram a:hover{
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
	border-color: #E4405F;
	color: #ffffff;
}

ul.social li.youtube a:hover{
	background: rgba(255, 0, 0, 0.2);
	border-color: #FF0000;
	color: #ffffff;
}

.footer-note{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #E6E6FA;
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	line-height: 1.6;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}


@media screen and (max-width: 568px){
	.hero-section{
		min-height: 100vh;
		padding: 20px 0;
	}

	#header{
		width: 100%;
		padding: 30px 0;
		margin: auto;
	}


	h1{
		font-size: 53px;
	}
	
	h2{

		font-size: 15px;
		letter-spacing: 2px;
		color: #E6E6FA;
	}

	h2 strong.sep-one{
		width: 30px;
		margin-left: -40px;
		margin-top: 7px;
	}
	
	h2 strong.sep-two{
		width: 30px;
		margin-left: 10px;
		margin-top: 7px;
	}

	#middle{
		margin: 50px 0 20px 0;
		width: 90%;
		padding: 5%;
	}
	
	#middle p{
		font-size: 18px;
		color: #000000;
		line-height: 24px;
		padding: 0;
	}
	
	#middle p span{
		color:#e63b4d;
	}

	#content{
		padding: 40px 0 0 0;
	}

	.section-container{
		margin: 0 20px;
		padding: 40px 25px;
		border-radius: 15px;
	}

	.section-header h3{
		font-size: 28px;
		margin-bottom: 10px;
	}

	.section-divider{
		width: 60px;
		height: 2px;
	}

	.intro-text{
		font-size: 18px;
		margin-bottom: 20px;
	}

	.section-content p{
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 15px;
	}

	.section-content h4{
		font-size: 20px;
		margin: 20px 0 10px 0;
	}

	.research-areas{
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.research-item{
		padding: 20px;
	}

	.counselling-info{
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.certification, .approach{
		padding: 20px;
	}

	.academic-item{
		padding: 20px;
		margin: 15px 0;
	}

	.contact-simple{
		grid-template-columns: 1fr;
		gap: 25px;
		margin: 20px 0;
	}

	.contact-action{
		padding: 30px 20px;
		border-radius: 12px;
		background: linear-gradient(135deg, rgba(230, 230, 250, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
	}

	.contact-action h4{
		font-size: 20px;
		margin-bottom: 20px;
		color: #6a5acd;
	}

	.contact-btn{
		display: inline-block;
		padding: 16px 30px;
		font-size: 16px;
		font-weight: 600;
		background: linear-gradient(145deg, #9370DB 0%, #8A2BE2 100%);
		color: white;
		text-decoration: none;
		border-radius: 25px;
		transition: all 0.3s ease;
		box-shadow: 0 4px 12px rgba(147, 112, 219, 0.3);
		letter-spacing: 0.5px;
		margin: 15px 0;
		width: auto;
		text-align: center;
	}

	.contact-btn:hover{
		transform: translateY(-2px);
		box-shadow: 0 8px 20px rgba(147, 112, 219, 0.4);
		background: linear-gradient(145deg, #8A2BE2 0%, #6A1B9A 100%);
	}

	.email-note{
		font-size: 13px;
		line-height: 1.4;
		margin-top: 10px;
	}

	#footer{
		padding: 35px 0 20px 0;
		margin-top: 0;
		background: linear-gradient(135deg, #2c2c54 0%, #4a4a6a 100%);
	}

	.footer-content{
		padding: 0 15px;
		max-width: 100%;
	}

	.footer-title{
		font-size: 20px;
		margin-bottom: 8px;
		letter-spacing: 0.5px;
	}

	.footer-subtitle{
		font-size: 14px;
		margin-bottom: 25px;
		line-height: 1.4;
	}

	.social-section{
		margin-bottom: 20px;
	}

	.social-title{
		font-size: 14px;
		margin-bottom: 18px;
		font-weight: 600;
	}

	ul.social{
		gap: 12px;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
		margin: 0 auto;
	}

	ul.social li a{
		width: 42px;
		height: 42px;
		background: rgba(255, 255, 255, 0.12);
		border: 2px solid rgba(255, 255, 255, 0.25);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
		backdrop-filter: blur(8px);
	}

	ul.social li a:hover{
		transform: translateY(-2px);
		background: rgba(255, 255, 255, 0.2);
		border-color: rgba(255, 255, 255, 0.4);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	}

	ul.social li a i{
		font-size: 16px;
		color: #E6E6FA;
	}

	.footer-note{
		font-size: 12px;
		margin-top: 18px;
		padding-top: 18px;
		line-height: 1.5;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
		opacity: 0.9;
	}
}

/* Additional mobile responsiveness for very small screens */
@media screen and (max-width: 480px){
	.section-container{
		margin: 0 15px;
		padding: 30px 20px;
	}

	.contact-btn{
		padding: 14px 25px;
		font-size: 15px;
		width: 100%;
		max-width: 250px;
		margin: 15px auto;
		display: block;
	}

	.footer-content{
		padding: 0 10px;
	}

	ul.social{
		gap: 10px;
	}

	ul.social li a{
		width: 38px;
		height: 38px;
	}

	ul.social li a i{
		font-size: 14px;
	}

	.footer-title{
		font-size: 18px;
	}

	.footer-note{
		font-size: 11px;
		padding-top: 15px;
		margin-top: 15px;
	}
}

/* Landscape orientation fixes for mobile */
@media screen and (max-width: 768px) and (orientation: landscape){
	.hero-section{
		min-height: 100vh;
		padding: 15px 0;
	}

	#header{
		padding: 20px 0;
	}

	h1{
		font-size: 45px;
	}

	h2{
		font-size: 14px;
	}
}

