@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "lato", sans-serif;
  box-sizing: border-box;
}

:root {
  --primary: #f5f5f5;
  --text: #212529;
  --secondary: rgb(0, 0, 0);
  /* --secondary: #003775; */
  --accent: rgba(255, 68, 0, 0.941);
  --a1: rgba(255, 68, 0, 0.893);
  /* --accent: #2D7FAE; */
}
.app {
  overflow: hidden;
}

.baner {
  position: relative;
  background-image: url("https://img.freepik.com/free-photo/engineers-with-hard-hats-working-nuclear-power-plant_23-2150957670.jpg?t=st=1716008668~exp=1716012268~hmac=7daf2f4ca3dfbdcfe7ae84587b227bb4f74edfcfb19c31ea2b418516d64744f0&w=1060");
  width: 100vw;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  h1 {
    color: var(--primary);
    font-size: 7vw;
    text-align: center;
    z-index: 2;
    span {
      color: var(--accent);
    }
  }
}
.baner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  filter: blur(15px);
  height: 70vh;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.41);
  z-index: 1;
}

.head {
  display: flex;
  text-wrap: nowrap;
  justify-content: center;
}
.heading {
  text-align: center;
  width: fit-content;
  border-bottom: 4px solid var(--accent);
  margin: 3vw 0;
  font-size: 3.2vw;
  font-weight: 400;
}
.about1 {
  margin-top: 6vw;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  p {
    width: 85vw;
    font-size: 1.15rem;
    text-align: center;
    line-height: 180%;
  }
}
.about2 {
  margin-top: 2vw;
  .services {
    margin-top: 4vw;
    /* padding: 4vw; */
    display: flex;
    justify-content: center;
    column-gap: 4vw;
    gap: 4vw;
    flex-wrap: wrap;
    .card {
      scale: 0.98;
      padding: 2.5vw;
      display: flex;
      flex-direction: column;
      gap: 1vw;
      width: 24vw;
      height: 34vh;
      border-radius: 5px;
      border: 1px solid lightgray;
      
      .top {
        i {
          padding-left: 1.5vw;
          font-size: 2vw;
          color: var(--accent);
          border-left: 3px solid var(--accent);
        }
      }
      .middle {
        display: flex;
        flex-direction: column;
        gap: 1vw;
        h2 {
          font-size: 1.1vw;
        }
        p {
          font-size: 1vw;
        }
      }
      .bot {
        a {
          font-size: 1.1vw;
          color: var(--accent);
        }
      }
    }
  }
}
.about3 {
  margin-top: 3vw;
  margin-bottom: 4vw;
  .features {
    margin-top: 4vw;
    display: grid;
    grid-template-columns: 100px 100px 100px;
    gap: 3vw;
    column-gap: 23vw;
    place-items: center;
    justify-content: center;
    align-content: center;
    .card {
      padding: 2vw 1vw;
      width: 26vw;
      height: 5vw;
      cursor: pointer;
      display: flex;
      border-radius: 2px;
      border-left: 4px solid var(--accent);
      justify-content: flex-start;
      line-height: 140%;
      align-items: center;
      font-weight: 500;
      font-size: 1.1vw;
      background-color: rgba(241, 235, 235, 0.34);
      backdrop-filter: blur(1px);
      /* box-shadow: 1px 1px 25px rgba(25, 25, 25, 0.146); */
    }
  }
}

.about4 {
  .container {
    margin-top: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
  }
  .card {
    scale: 0.9;
    /* margin-top: 2vw; */
    cursor: pointer;
    padding: 2vw;
    width: 20vw;
    height: 60vh;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    background-color: #ffff;
    border: 1px solid rgba(62, 61, 61, 0.154);
    border-radius: 5px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.054);
    -webkit-user-select: none; /* Safari */

    img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
    }
    h3 {
      font-size: 1.43vw;
      letter-spacing: 0.1vw;
      font-weight: 450;
    }
    h4 {
      padding: 0.5vw 1vw;
      border: 1px solid lightgray;
      border-radius: 3px;
    }
    p {
      width: 18vw;
      text-align: center;
    }
  }
 
}
.about5 {
  margin-top: 3vw;
  .container{
    padding: 3vw 0 6vw 0;
    display: flex;
    justify-content: center;
    gap: 4vw;
     .card{
      min-height: 50px;
       display: flex;
       flex-direction: column;
       align-items:flex-start;
       gap: 1.5vw;
       padding: 2vw;
       border: 1px solid lightgray;
       /* background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 80%); */
       backdrop-filter: blur(15px);
        border-radius: 5px;
        width: 26vw;
        /* height: fit-content; */
         p{
          font-size: 1vw;
         }
     }
  }
}

@media screen and (width < 650px) {
  .head {
    margin-top: 12vw;
    .heading {
      font-size: 8.5vw;
      border-bottom: 2px solid var(--accent);
    }
  }
  .baner {
    height: 55vh;
    h1 {
      font-size: 12vw;
    }
  }
  .baner::before {
    height: 55vh;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .about1 {
    margin-top: 14vw;
    p {
      font-size: 3.5vw;
    }
  }
.about2{
   .services{
     margin-top: 5vw;
     flex-direction: column; 
     align-items: center;
     gap: 10vw;
    .card{
      scale: 1.1;
       gap: 2vw;
       width: 75vw;
       height: 125px;
       .top{
         padding: 1vw;
         i{
           font-size: 5vw;
         }
        }
         .middle{
           h2{
             font-size: 3.5vw;
             padding: 1vw 0;
           }
           p{
            padding: 1vw 0;
            font-size: 2.8vw;
           }
       }
        .bot{
          a{
            font-size: 2.8vw;
          }
        }
     }
   }
}
  .about3 {
    .features {
      margin-top: 6vh;
      grid-template-columns: 100px;
      gap: 12vw;
      column-gap: 35vw;
      .card {
        padding: 3vw 2.5vw;
        width: 75vw;
        height: 13vh;
        display: flex;
        border-radius: 2px;
        border-left: 3px solid var(--accent);
        justify-content: flex-start;
        line-height: 140%;
        align-items: center;
        font-weight: 500;
        font-size: 3.8vw;
        background-color: rgb(241, 235, 235);
        box-shadow: 1px 0px 35px rgba(8, 8, 8, 0.214);
      }
    }
  }
  .about4{
     .container{
       flex-direction: column;
       .card{
         width: 70vw;
         gap: 4vw;
           h3{
            font-size: 5vw; 
           }
           h4{
            padding:1vw 4vw;
            font-size: 4vw;
           }
           p{
            width: 54vw;
           }
        }
     }
  }
  .about5{
     .container{
      margin-top: 8vw ;
       flex-direction: column;
       align-items: center;
       gap: 7vw;
       .card{
        gap: 1vw;
         width: 75vw;
         height: fit-content;
          h1{
            padding: 2vw ;
          }
          p{
            padding: 2vw ;
            font-size: 3.5vw;
          }
       }
     }
  }
}
