body{
    font-family: "OpenSans-Regular";
    margin: 0;
    padding: 0;
  }

  @font-face {
    font-family: 'OpenSans-Regular';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/OpenSans-Regular.ttf') format('truetype');
  }

@font-face{
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/Segoe UI.ttf') format('truetype');
  }

  :root {
    --font-family-h1-heading: 'OpenSans-Regular', sans-serif;
    --font-family-body: 'OpenSans-Regular', sans-serif;
    --font-family-paragraph: 'Segoe UI', sans-serif;
  }

 

  p{
    font-family: var(--font-family-paragraph);
  }
  h1, h2, h3, h4 {
    color: #333;
}

  .wrap{
     padding: 30px;
    margin: 50px;
    min-height: 100vh;
    padding-top: 7em;

  }

  .wrap h1{
   font-size: 20px;
   /* margin-bottom: 20px; */
   padding: 10px 0 5px;
  }
 .wrap h2{
    padding-top: 10px;
    font-family: var(--font-family-h1-heading);
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;

  }
  
.wrap h4{
  margin-top: 30px;
  margin-bottom: 8px;
  color: #0b0b0bea;
  font-weight: bold;
}

.wrap p{
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

button{
  padding: 10px;
  background-color: #e8491d;
  border: none;
}
a{
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
}

button:hover{
  background-color: rgb(255, 255, 255);
  color: #000000;
  border: 1px solid #e8491d;
}

button:hover a{
  color: #e8491d;
}

.technology {
  padding: 40px;
  /* background-color: #f9f9f9; */
}

.technology-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  padding: 0;
  margin: 0;
}

.technology-list li {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.technology-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: rgb(231 240 243);
}

.technology-list img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.technology-list span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}


@media (max-width:768px) {
   .wrap{
  padding: 10px;
  margin: 0;
  margin-top: 141px;
 }
}