* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: gilroy;
}
nav li {
  display: inline-block;
  list-style-type: none;
  margin: 0 10px;
}

nav li a {
  text-decoration: none;
  color: #ddd; /* Initial text color */
  font-size: 16px;
  padding: 8px 12px;
  transition: color 0.3s, background-color 0.3s;
}

nav li a:hover {
  color: #fff; /* Text color when hovered */
  background-color: #555; /* Background when hovered */
  border-radius: 5px;
}

nav li a:active,
nav li a.selected {
  color: #fff; /* Text color when clicked/selected */
  background-color: #333; /* Background color when clicked/selected */
  border-radius: 5px;
}

/* Optional: Add this JavaScript to make the selected item retain the selected class */

html,
body {
  height: 100%;
  width: 100%;
  background-color: #0c0c0c;
  color: #f4f0f0;
}

.section1 {
  height: 120%;
  width: 100%;
  position: relative;
  /* margin-bottom: 80px; */
  /* background-color: red; */
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
}

.part2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

nav h1 {
  font-size: 32px;
}

nav h1 i {
  display: inline-block;
  font-size: 30px;
  rotate: 45deg;
}

.part2 h4 {
  font-size: 20px;
  font-weight: 500;
}

.part2 button {
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #fff;
}

.part2 button:hover {
  background-color: rgb(173, 108, 108);
  color: #fff;
  border-radius: 10px;
  transition-duration: 1s;
  font-size: 17px;
  padding: 15px 50px;
  border: none;
}

.center {
  padding: 55px;
  /* background-color: red; */
  height: 80%;
  width: 100%;
  display: flex;
}

.center-part1 {
  /* background-color: blue; */
  height: 100%;
  width: 45%;
}

.center-part1 h1 {
  line-height: 1.2;
  font-size: 60px;
  font-family: monospace;
  margin-top: 60px;
}

.center-part1 p {
  font-size: 20px;
  width: 95%;
  margin-top: 40px;
}

.center-part1 button {
  background-color: rgb(184, 160, 160);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  padding: 15px 50px;
  margin-top: 40px;
  border: none;
}
.center-part1 button:hover {
  background-color: rgb(173, 108, 108);
  color: #fff;
  border-radius: 10px;
  transition-duration: 1s;
  font-size: 17px;
  padding: 15px 50px;
  margin-top: 40px;
  border: none;
}

.center-part2 {
  height: 100%;
  width: 55%;
  position: relative;
}

.center-part2 img {
  height: 80%;
  width: 80%;
  position: absolute;
  right: 0;
}

.section1bottom {
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  justify-content: space-between;
  padding: 20px 20px;
}

.section1bottom img {
  height: 60px;
}

.section2 {
  height: 100%;
  width: 100%;
}

.section2 .services {
  /* background-color: red; */
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  margin-top: 100px;
}

.services h3 {
  background-color: #a791a8;
  font-weight: 500;
  font-size: 35px;
  padding: 8px 20px;
  margin-left: 40%;
  border-radius: 5px;
  font-family: 'Courier New', Courier, monospace;
}

.services h3:hover {
  background-color: #ef7b7b;
  font-weight: 500;
  font-size: 40px;
  transition-duration: 1s;
  padding: 8px 20px;
  border-radius: 5px;
  font-family: 'Courier New', Courier, monospace;
}

.services p {
  width: 50%;
  font-size: 20px;
}

.container{
  height: 200%;
  width: 100%;
  display: 40px 120px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 40px;
}

.elem{
  height: 300px;
  margin-bottom: 40px;
  width: 40%;
  padding: 50px;
  border: 2px solid black;
  border-radius: 20px;
  /* background-color: red; */
  box-shadow: 0px 11px 0px black;
  display: flex;
}

.black{
  height: 300px;
  margin-bottom: 40px;
  width: 40%;
  padding: 50px;
  border: 2px solid black;
  border-radius: 20px;
  /* background-color: red; */
  box-shadow: 0px 11px 0px #002c2c;
  display: flex;
}

.elem-part1{
  height: 100%;
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-direction: column;
}

.elem-part1 h2{
  font-size: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.elem-part1 h4{
  font-size: 20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.elem-part2{
  height: 100%;
  width: 50%;
}

.elem-part2 img{
  height: 100%;
  width: 100%;
  object-fit: cover; 
  border-radius: 10px;
}

.black{
  background-color: black;
  color: #fff;
}








