.banner{
	width: 100%px;
	height: 900px;
	background-color: black;
}
.navbar{
	width: 85%;
	margin: auto;
	padding: 35px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo{
	width: 350px;
	height: 270px;
	cursor: pointer;
}
.navbar ul li{
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	position: relative;
}
.navbar ul li a{
	text-decoration: none;
	color: whitesmoke;
	text-transform: uppercase;
}
.navbar ul li::after{
	content: '';
	height: 3px;
	width: 0;
	background: #009688;
	position: absolute;
	left: 0px;
	bottom: -10px;
	transition: 0.5s;
}
.navbar ul li:hover::after{
	width: 100%;
}
.content{
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-5);
	text-align:center;
	color: whitesmoke;
}
.content h1{
	font-size: 60px;
	margin-top: 10px;

}
.content p{
	margin: 30px auto;
	font-weight: 100;
	line-height: 25px;
}
button{
	width: 250px;
	padding: 15px 0;
	text-align: center;
	margin: 20px 10px;
	border-radius: 25px;
	font-weight: bold;
	border: 2px solid #009688;
	color: whitesmoke;
	cursor: pointer;
	background: transparent;
	position: relative;
	overflow: hidden;
}
.content2{
	background-color: skyblue;
	width: 100%;
	height: 400px;
	border: 2px solid black;	
}
.social-icons{
	display: flex;
	justify-content: space-between;
	padding: 20px;
	margin: 40px;
	font-size: 25px;
}
.social-icon{
	margin: 0 100px ;
	justify-content: right;
	font-size: 25px;
}
.social-icon a{
	color: #333;
	text-decoration: none;
}
.content3{
	float: left;
	padding: 20px;
	margin: 50px;
	font-size: 24;
}

@media(max-width: 768px){
	.banner{
		width: 100%;
		height: 770px;
	}
	.navbar{
	width: 100%;
	margin: auto;
	padding: 10px -10px ;
	display: inline;
	align-items: center;
	justify-content: space-around;
}
.navbar ul li{
	list-style: none;
	display: inline-block;
	margin: 1px 3px;
	position: relative;
}
.content{
	width: 100%;
	position: absolute;
	top: 45%;
	transform: translate(-5);
	text-align:center;
	color: whitesmoke;
}
.content h1{
	font-size: 35px;
	margin-top: 70px;
}
.content p{
	margin: 25px auto;
	font-weight: 100;
	line-height: 30px;
}
button{
	width: 100px;
	padding: 15px 0;
	text-align: center;
	margin: 20px 10px;
	border-radius: 25px;
	font-weight: bold;
	border: 2px solid #009688;
	color: whitesmoke;
	cursor: pointer;
	background: transparent;
	position: relative;
	overflow: hidden;
}
.content2{
	background-color: skyblue;
	width: 100%;
	height: 300px;
	border: 2px solid black;

}
.social-icons{
	display: flex;
	justify-content: space-between;
	padding: 10px;
	margin: 10px;
	margin-top: 30;
	font-size: 20px;
}
.social-icon{
	margin: 0px 0px ;
	justify-content: right;
	font-size: 25px;
}
.content3{
	float: left;
	padding: 0px;
	margin: 50px;
	font-size: 24;
}

}


/* about.html */
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'roboto', sans-serif;
}
body{
	background-color: #f2f2f2;
}
.heading{
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	margin: 20px auto;
}
.heading h1{
	font-size: 50px;
	color: #000;
	margin-bottom: 25px;
	position: relative;
}
.heading h1:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	display: block;
	margin: 0 auto;
	background-color: #4caf50;
}
.heading p{
	font-size: 18px;
	color: #666;
	margin-bottom: 35px;
}
.container{
	width: 90%;
	margin: 0 auto;
	padding: 10px 20px;
}
.about{
	display: flex;
	justify-content: space-between;
	text-align: center;
	flex-wrap: wrap;
}
.about-image{
	flex:1;
	margin-right: 10px;
	overflow: hidden;
}
.about-image img{
	max-width: 100%;
	height: auto;
	display: block;
	transition: 0.5s ease;
}
.about-image:hover img{
	transform: scale(1.2);
}
.about-content{
	flex: 1;
}
.about-content h2{
	font-size: 23px;
	margin-bottom: 15px;
	color: #333;
}
.about-content p{
	font-size: 18px;
	line-height: 1.5;
	color: #666;
}
details{
	text-align: left;
	border: 1px solid black;
	padding: 10px;
	margin: 2px;
}
summary{
	font-weight: bold;
	padding: 5px;
	margin: 2px;
}


@media screen and (max-width: 768px){
	.heading{
		padding: 20px 10px;
	}
	.heading h1{
		font-size: 36px;
	}
	.heading p{
		font-size: 17px;
		margin-bottom: 0px;
	}
	.container{
		padding: 0px;
	}
	.about{
		padding: 20px;
		flex-direction: column;
	}
	.about-image{
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.about-content p{
		padding: 0px;
		font-size: 15px;
	}
}


/* comment.html */
.comment{
	text-align: center;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

h1 {
    margin: 0;
}

.comment-section {
    margin: 20px;
}

input, textarea {
    display: block;
    width: 60%;
    margin: 10px auto;
    padding: 10px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #008cba;
    color: #fff;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #005f5f;
    color: #fff;
}

/* Unique class for hover effect */
.unique-hover:hover {
    background-color: #ff4081;
    color: #fff;
}



/* home page */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

section {
    margin: 20px 0;
    font-size: 25px;
}

.image-container {
    width: 100%;
    margin: 0 auto;
    padding: 50px;
    margin-top: 10px;
    overflow: hidden;
   
}

.image-container img {
    width: 50%;
    transition: transform 0.5s ease;
}

.image-container img:hover {
    transform: scale(1.2);
}
.about{
	font-size: 30px;

}
iframe{
	width: 55%;
	height: 500px;
	margin-top: 50px;
	border: 2px solid black;
}
instagram-media{
	background-repeat: no-repeat;
	background-position: right;
}

@media screen and (max-width: 768px){
	body {
		font-family: Arial, sans-serif;
		background-color: #f4f4f4;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	header {
		background-color: #333;
		color: #fff;
		padding: 20px 0;
	}
	header h1 {
		margin: 2px;
	}
	nav ul li {
		color: #fff;
		text-decoration: none;
		font-weight: bold;
		font-size: 20px;
	}
	main {
		padding: 20px;
	}
	section {
		margin: 20px 0;
		font-size: 20px;
	}
	.image-container {
		width: 100%;
		margin: 0 auto;
		padding: 50px;
		margin-top: 10px;
		overflow: scroll;
	   
	}
	.image-container img {
		width: 100%;
		transition: transform 0.5s ease;
	}
	iframe{
		width: 100%;
		height: 500px;
		margin-top: 50px;
		border: 2px solid black;
		overflow: scroll;
		border-radius: 4px;
	}
	
}



/* reach us */
