@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
    
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

body{
	background-image: url('wall.gif');
	overflow-x: hidden;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	object-fit: cover;
}

p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: crimson;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
    font-family: 'Gistesy',sans-serif;
	font-size: 5rem;
	color: rgb(9, 9, 9);
}
.brand h1 span {
	color: crimson;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#header .nav-bar img {
	width: 30%;
}    
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}

#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}

/* End Header section */

/* Hero Section */
#hero {
	width: 100%;
	background-image: url("wallp.jpg");
	background-size: cover;
	position: relative;
	z-index: 1;
}

#hero img{
	background-image: url("wall.jpg");
	background-size: cover;
	height: fit-content;
	width: 100%;
    width: 30%;
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0.7;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h1 {
	background-color: transparent;
	display: block;
	width: fit-content;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 4rem;
	position: relative;
	color: rgb(255, 255, 255);
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: rgb(255, 255, 255);
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

#hero h1 span::after {
    content: ""; /* Ensures the pseudo-element is rendered */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; /* Set to cover the entire <span> */
    background-color: black; /* Change background color to black */
    animation: text_reveal_box 1s ease;
    animation-delay: 0.5s;
}

/* End Hero Section */

/* Us Section */

#us {
	opacity: 70%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	align-items: center;
	font-family: "Poppins", "sans-serif";
	text-align: center;
	transition: 0.2s;
}


#us body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

#us .wrapper {
	width: 100%;
	position: relative;
	text-align: center;
  }

  #us.show-animate  {
	opacity: 100%;
}


  #us .wrapper h1{
	margin-top: 200px;
	font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	color: aliceblue;
	font-size: 40px;
  }

  @keyframes cursor {
	50% { border-color: transparent;}
  }

  @keyframes typing {
	from { width: 0;}
  }

  #us .wrapper p{
	margin-top: 50px;
	font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	color: aliceblue;
	font-size: 20px;
	overflow: hidden;
	margin-left: 5%;
	margin-right: 5%;
}

  #us .wrapper .kotak {
	display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
	padding: 40px;
}


#us .kotak .card {
	height: 400px;
	width: 350px;
	list-style: none;
	background-color: aliceblue;
	border-radius: 8px;
	display: flex;
	padding-bottom: 70px;
	flex-direction: column;
	border-radius: 8px;
	text-align: center;
	align-items: center;
	margin: 10px;
}

#us .kotak .card .img {
	height: 148px;
	width: 148px;
	border-radius: 50%;
	margin-top: 40px;
  }

#us .card .img img{
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
}

#us .card h2 {
	font-weight: 500;
	font-size: 2rem;
	margin: 4px 0 10px;
}

#us .card span {
	color: gray;
	font-size: 1.81rem;
}

@media screen and (max-width: 900px) {
	#client .wrapper .kotak {
	  grid-auto-columns: calc((100% / 2) - 9px);
	}
  }
  @media screen and (max-width: 600px) {
	#client .wrapper .kotak {
	  grid-auto-columns: 100%;
	}
  }


/* Services Section */

#us > #home img{
	animation: fade-in linear;
	animation-timeline: view();
}

#home{
	padding-top: 100px;
	padding-bottom: 100px;
}

#home .container{
    display: flex;
    flex-direction: column;
    align-items: center;  
}   




#home .imagehome1 img{
	max-width: 100%; /* Ensure the image doesn't exceed the container's width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px;
    margin-bottom: 10px;
    margin-top: 120px;
}

#home .image-container{
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap to the next line if there's not enough space */
    justify-content: center; /* Center images horizontally */
}

#home .image-container img {
    border-radius: 30px;
    width: 350px;
    height: 250px;
    padding: 10px;
    margin: 10px; /* Add margin to create space between images */
    transition: transform 0.3s ease-in-out;
    transform: scale(0.8);
}

#home .image-container img.hidden {
    transform: scale(0.8);
}

#home .image-container img.fade-in {
    animation: fade-in 1s ease-in-out forwards; /* Apply the fade-in animation */
}

#home .image-container img:hover {
    transform: scale(1.1);
}

/* End Services Section */

/* Projects section */
#client{
	box-sizing: border-box;
	align-items: center;
	font-family: "Poppins", "sans-serif";
	text-align: center;
}

#client .titlepage h2{
	margin-top: 40px;
	font-size: 35px;
	margin-bottom: 20px;
    color: aliceblue;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#client body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

#client .wrapper {
	width: 100%;
	position: relative;
  }
  #client .wrapper i {
	top: 50%;
	height: 50px;
	width: 50px;
	cursor: pointer;
	font-size: 1.25rem;
	position: absolute;
	text-align: center;
	line-height: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 3px 6px rgba(0,0,0,0.23);
	transform: translateY(-50%);
	transition: transform 0.1s linear;
  }
  #client .wrapper i:active{
	transform: translateY(-50%) scale(0.85);
  }
  #client .wrapper i:first-child{
	left: -22px;
  }
  #client .wrapper i:last-child{
	right: -22px;
  }

#client .wrapper .carousel {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% / 3) - 12px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 16px;
	border-radius: 8px;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

#client .carousel::-webkit-scrollbar {
	display: none;
  }
  #client .carousel.no-transition {
	scroll-behavior: auto;
  }
  #client .carousel.dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
  }
  #client .carousel.dragging .card {
	cursor: grab;
	user-select: none;
  }
  #client .carousel :where(.card, .img) {
	display: flex;
	justify-content: center;
	align-items: center;
  }

#client .carousel .card {
	height: 450px;
	list-style: none;
	background-color: aliceblue;
	border-radius: 8px;
	display: flex;
	cursor: pointer;
	padding-bottom: 15px;
	flex-direction: column;
	border-radius: 8px;
	text-align: center;
	width: 90%;
}

#client .carousel .card .img {
	background: #f5f3fa;
	height: 148px;
	width: 148px;
	border-radius: 50%;
	margin-top: 40px;
  }

#client .card .img img{
	width: 200px;
	height: 200px;
	object-fit: cover;
	border: 4px solid black;
	border-radius: 8px;
}

#client .card h2 {
	font-weight: 500;
	font-size: 1.56rem;
	margin: 45px 0 10px;
}

#client .card span {
	color: gray;
	font-size: 1.31rem;
}

@media screen and (max-width: 900px) {
	#client .wrapper .carousel {
	  grid-auto-columns: calc((100% / 2) - 9px);
	}
  }
  @media screen and (max-width: 600px) {
	#client .wrapper .carousel {
	  grid-auto-columns: 100%;
	}
  }

/* ....................*/




#contact .container{
	margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

#contact .container .titlepage h2{
	padding-top: 100px;
    font-size: 40px;
    margin-left: 0px;
	margin-bottom: 20px;
    color: rgb(251, 246, 246);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#contact .kotakgrey {
    position: relative; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 700px;
    background-color: rgb(244, 241, 235);
    border-radius: 40px;
    margin: 20px auto;
	transform: scale(.7);
	transition: .7s;
}

#contact.show-animate .kotakgrey{
	transform: scale(.9);
}


#contact .logo-item{                  
    flex-direction: column;  
    justify-content: center; 
    align-items: flex-start;
}

#contact .contactus-image {
    position: absolute; /* Absolute positioning */
    top: 150px; /* Adjust as per your requirement to position it above the descript */
    left: 73%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to center the image horizontally */
    z-index: 1; /* Ensure the image stays above other content if needed */
    width: 31%;
    height: auto;
    border-radius: 10px;
}

#contact .descript {
    position: absolute; /* Relative positioning */
	font-size: 12px;
    z-index: 2;
    bottom: 10px; 
    right: 10px; 
    margin: 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}


#contact .kotakgrey .logopic  img{
    display:grid;
    height: 50px;
    position:relative;
	right: -5px;
    margin:25px;
}

#contact .logo-desc{
 position:relative;
 margin-left:20px;
 bottom: 80px;
}

#contact .kotakgrey .logopic h2{
	font-size: 35px;
    padding-left: 80px;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
}

#contact .kotakgrey .logopic h3{
    padding-left: 80px;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
	padding-right: 10%;
}


#contact .kotakgrey .descript{
	bottom: -10px;
}

#contact .kotakgrey .descript .social a{
    position: relative;
}

#contact .social {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    #contact .boutus h2 {
        font-size: 30px; /* Adjust font size for smaller screens */
    }
    #contact .boutus h1 {
        font-size: 18px; /* Adjust font size for smaller screens */
    }
    #contact .kotak li {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
}

/*End contact Section */

/* Footer */
#footer {
	background-color: rgb(246, 245, 243);
}
#footer img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#footer .footer {
	margin-top: 320px;
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: rgb(0, 0, 0);
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: rgb(8, 8, 8);
	font-size: 1.1rem;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: rgb(255, 0, 85);
	}
}
@keyframes text_reveal_name {
	100% {
		color: rgb(255, 0, 85);
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */

	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}
	/* End Services Section */

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/* End Project */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid crimson;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

	/* contact  */
	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 50px;
		width: 50px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}

	#contact .kotakgrey .logopic  img{
		display:grid;
		height: 80px;
		position:relative;
		margin:30px;
		padding-left: 50px;
	} 

	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}

	#contact .kotakgrey .logopic h2{
		font-size: 30px;
		padding-left: 160px;
		position: relative;
		font-family: 'Montserrat', sans-serif;
	}
	
	#contact .kotakgrey .logopic h3{
		padding-left: 160px;
		font-size: 20px;
		font-family: 'Montserrat', sans-serif;
	}

	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */