/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

*{
	margin: 0;
    padding: 0;
    box-sizing: border-box;
	 color:  #1C1C1C;
	 font-family: 'Montserrat', sans-serif;
}

.transition-fade{
	opacity: 1;
	transition: 500ms;
	transform: translateX(0);
	transform-origin: left;
}

html{
	scroll-behavior: smooth;
}

a{
	color: white;
	text-decoration: none;
}


.header {
	margin-top: 10px;
  padding: 30px 100px ;
  position: relative;
  z-index: 100;
  display: flex;
}


.logo img{
  width: 50px;
  height: 50px;
}


nav{
  width: 100%;
  top: 60px;
  transition: all .5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list{
  list-style: none;
  display: flex; 
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.nav-list li a{
  margin-bottom: 30px;
  padding: 0 30px;
  text-decoration: none;
  color: black;
  display: block;
  text-align: left;
	font-weight: 600;
}

.nav-list li a:hover {
  color: #ff8f2b;
}

.nav-list li .active {
  color: #ff8f2b;
}

.btn-get{
  border: 2px solid #ff8f2b;
  padding: 14px 28px; 
  border-radius: 50px;
  background: none;
}

.btn-get{
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color:  #ff8f2b;
}

.btn-get:hover{
  background: #ff8f2b;
  color: white;
}
.cont-btn .active{
    background: #ff8f2b;
  color: white;
}






/*Container for Hero */

.container-hero{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 90px 170px;
	background-image: url("images/bg-1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}
.container-hero .hero-text{
	padding-left: 40px;
}
.container-hero h2{
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 600;
}
.container-hero h1{
	font-size: 72px;
	margin-bottom: 30px;
}

span{
	color: #ff8f2b;
}

.container-hero p{
margin-bottom: 40px;
	font-weight: 500;
	line-height: 28px;
}

.btn-hire{
	background: #ff8f2b;
	color: white;
	padding: 18px 40px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-size: 16px;
}
.btn-hire:hover{
	background: #a44d00;
}



/* Section-1 */

.container-2{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 120px 190px;
	background:#a44d00;
}

.contaiener-2 .cont2-text{
	flex: 50%;
	padding-right: 100px;
}

.container-2 h2{
	color: white;
	font-size: 48px;
	margin-bottom: 30px;
	font-weight: 600;
}

.container-2 p{
	color: white;
	line-height: 28px;
	margin-bottom: 30px;
}

.btn-Learn{
	border: 2px solid #ff8f2b;
	background: none;
	padding: 18px 40px;
	border-radius: 50px;
	color: white;
	cursor: pointer;
}

.btn-Learn:hover{
	background: #ff8f2b;
}

.skills{
	flex: 50%;
	max-width: 600px;
	padding-left: 100px;
}

.skill-name{
	font-size: 18px;
	color: white;
	margin: 20px 0;
}

.skill-bar{
	height: 10px;
	background: #ffb776; 
	border-radius: 3px;
}

.skill-per{
	height: 10px;
	background: #ff8f2b;
	border-radius: 3px;
	position: relative;
	animation: fillBars 2.5s 1;
}

.skill-per::before{
	content: attr(per);
	position: absolute;
	padding: 4px 6px;
	background: white;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	top: -35px;
	right: 0;
	transform: translateX(50%);
	z-index: 20;
}
.skill-per::after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 2px;
	top: -20px;
	right: 0;
	transform: translateX(50%) rotate(45deg);
	z-index: 10;
}

@keyframes fillBars{
	from{
		width: 0;
	}
	top{
		width: 100%;
	}
}











/* Section-3 */

.container-3{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 100px 180px;
	background: #F3F3F3;
}

.container-3 h2{
	color: #ff8f2b;
	font-size: 48px;
	margin-bottom: 12px;
	text-align: center;
}

.container-3 p{
	line-height: 24px;
	margin-bottom: 30px;
	text-align: center;
}

.btn-Learn{
	border: 2px solid #ff8f2b;
	background: none;
	padding: 18px 40px;
	border-radius: 50px;
	color: white;
	cursor: pointer;
}

.cont3-inner{
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding-bottom: 70px;
	margin-bottom: 50px;
}

.cont3-inner div{
	padding: 8px;
	width: 400px;
	height: 400px;
}

.cont3-inner img{
	width: 100%;
	height: 100%;
}
button{
	background: none;
	border: none;
}
.container-3 .btn-View{
	margin-top: 40px;
	border: 2px solid #ff8f2b;
	background: none;
	padding: 18px 40px;
	border-radius: 50px;
	cursor: pointer;
	color:  #1C1C1C;
	font-weight: 600;
}


.btn-View:hover{
	background: #ff8f2b;
	color: white;
}

.work-text{
	font-weight: 600;
	padding-top: 20px;
}


/* Video */

.V-container{
	padding: 80px;
	background: #a44d00;
	display: flex;
	justify-content: center;
	align-items: center;
}
.V-container .video{
	display: flex;
	justify-content: center;
	align-items: center;
}


/* Slider */
.container-4 {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
}
.container-4 h2{
	color: #ff8f2b;
	font-size: 48px;
	margin-bottom: 48px;
	text-align: center;
}


.container-4 .slide{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.container-4 .slide img{
	margin-bottom: 20px;
	border-radius: 50%;
}

.container-4 .slide p{
	margin-bottom: 20px;
	text-align: center;
}










/* Footer */

.container-5{
	padding: 70px 200px 100px 200px;
	background:#502600;
}
.cont5-inner1{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 100px;
	border-bottom: 1px solid #B5B5B5;
	padding-bottom: 60px;
}
.cont5-inner1 p{
	font-size: 18px;
	color: white;
	margin-bottom: 10px;
}
.cont5-inner1 h2{
	font-size: 48px;
	color: white;
}

.cont5-inner2{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.F-g li{
	color: white;
	list-style: none;
	padding-bottom: 20px; 
}

.bold{
	color: #ff8f2b;
	font-size: 20px;
	font-weight: 700;
 
}

.btn-Start{
	border: 2px solid #ff8f2b;
	background: none;
	padding: 18px 40px;
	border-radius: 50px;
	color: white;
	cursor: pointer;
}

.btn-Start:hover{
	background: #ff8f2b;
}
















/* Projects */

.pcontainer-hero{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 120px 170px;
	background-image: url("images/bg-1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.phero-text{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: 
		column;
}

.pcontainer-hero h1{
	font-size: 72px;
	margin-bottom: 30px;
}

.pcontainer-hero p{
margin-bottom: 40px;
	font-weight: 500;
	line-height: 28px;
	text-align: center;
}

.pontainer-2{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 120px 190px;
	background:#502600;
}





/* Projects- pcontainer-3 */
.pcontainer-3{
	min-height: 100vh;
	position: relative;
	padding: 80px 50px;
	background: #502600;
}

.pcont3-inner{
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
	padding: 20px;
}

.pcont3-inner .image{
	height: 350px;
	width: 400px;
	overflow: hidden;
	cursor: pointer;
}

.pcont3-inner .image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: .2s linear;
}

.pcont3-inner .image:hover img{
	transform: scale(1.1);
}


.pcontainer-3 .popup-image{
	position: fixed;
	top: 0; left: 0;
	background: rgba(0,0,0,.8);
   height:100%;
	width: 100%;
	z-index: 100;
	display: none;
}

.pcontainer-3 .popup-image span{
	position: absolute;
	top: 0; right: 20px;
	color: white;
	font-size: 60px;
	font-weight: 700;
	cursor: pointer;
	z-index: 100;
}

.pcontainer-3 .popup-image img{
	position: absolute;
	top: 50%; left: 50%;
    transform: translate(-50%, -50%);
	border: 3px solid white;
	object-fit: cover;
	width: 500px;
	z-index: 100;
}


@media (max-width:768px){
	.pcontainer-3 .popup-image img{
	width: 95%;
  }
}







/* About */

.acontainer-3{
	display: flex;
	justify-content:  space-between;
	align-content: center;
	padding: 100px 150px 0px;
}

.info1{
	flex: 50%;
	padding: 50px;
}

.divider{
	height: 6px;
	width: 100px;
	background: #ff8f2b;
	margin: 20px 0 40px;
}

.info1 p{
	line-height: 32px;
}


.acontainer-4{
	display: flex;
	justify-content:  space-between;
	align-content: center;
	padding: 0px 150px 50px;
}


.acontainer-5{
	display: flex;
	justify-content:  space-between;
	align-content: center;
	padding: 0px 150px 50px;
}







/* Contact */
.contact-Form{
	margin: 80px 0;
}
.ccontainer-hero{
	display: flex;
	justify-content:center;
	align-items: center;
	padding: 90px 170px;
	background-image: url("images/bg-1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.ccontainer-hero h2{
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 600;
	text-align: center;
}
.ccontainer-hero h1{
	font-size: 72px;
	margin-bottom: 30px;
	text-align: center;
}

.ccontainer-hero p{
	text-align: center;
	line-height: 28px;
}

.container-form{
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
}
.container-form .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-form .content .left-side{
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details{
  margin: 14px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color:  #ff8f2b;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #afafb6;
}
.container-form .content .right-side{
  width: 55%;
  margin-left: 75px;
}

.container-form .right-side p{
	padding-bottom: 20px;
	line-height: 28px;
}
.content .right-side .topic-text{
  font-size: 32px;
  font-weight: 700;
  color:  #ff8f2b;
	padding-bottom: 20px;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box{
  min-height: 110px;
}
.right-side .input-box textarea{
  padding-top: 6px;
}
.right-side .button{
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background:  #ff8f2b;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="button"]:hover{
  background: #ffb777;
}
@media (max-width: 950px) {
  .container-form{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .container-form .content .right-side{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  .container-form{
    margin: 40px 0;
    height: 100%;
  }
  .container-form .content{
    flex-direction: column-reverse;
  }
 .container-form .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .container-form .content .left-side::before{
   display: none;
 }
 .container-form .content .right-side{
   width: 100%;
   margin-left: 0;
 }
}









