*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
     font-family: "Poppins", sans-serif;
}
img{
  max-width: 100%;
}
a{
  text-decoration: none;
}
p,li{
  @media (max-width:434px) {
    font-size: 14px;
  }
}
.logo-image{
  max-width: 9.2rem;
    @media (max-width:500px) {
      max-width: 7rem;
    }
}
.header-first-div{
    /* background-color: rgb(188, 188, 252); */
    background-color: black;
    color: white;
    padding: 0.5rem;
    display: flex;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    /* gap:3%; */
    position: fixed;
    width: 100vw;
}
.flex-box-a{
  background-color: blue;
}
.header-second-div{
  background-image: url(./st.jpg);
  background-position: center;
  background-size: cover;
  max-width: 100vw;
  min-height: 600px;
  padding-block: 200px 100px;
  @media (max-width:507px) {
    font-size: 40px;
    min-height: 300px;
  }
}
.header-first-h1{
  font-size: 80px;
  text-align: center;
  color: white;
    @media (max-width:507px) {
    font-size: 35px;
  }
}
.header-first-p{
  font-size: 30px;
  text-align: center;
  color: white;
    @media (max-width:507px) {
    font-size: 20px;
  }
}
.menudiv{
  position: fixed;
  top:5rem;
  background-color:blue;
  right: 0;
  width: 100vw;
  min-height: auto;
  left: 0; 
  z-index:2;
 
  display: none;
  @media (max-width:500px) {
    top: 4.1rem;
  }
}
.subhide{
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.menudiv a{
  /* border-top: 1px solid white; */
  border-bottom: 1px solid white;
  padding-block: 1.64rem;
  padding-left: 1rem;
  color:white;
}
.Nav-a a{
  color: white;
  border-bottom:1px solid transparent;
}
.link-a:hover{
  color: greenyellow;
  border-bottom: 1px solid white;
}
.showbut{
  width: 3rem;
  padding-right: 1rem;
  filter: invert(1);
}
.hidelb{
  display: none;
 
}
.hidela{
  display: none;
   @media (max-width:659px) {
    display: block;
  }
}
.Nav-a{
  display: flex;
  padding-inline: 60px;
  gap: 3rem;
  @media (max-width:659px) {
    display: none;
  }
}

/* content section */
.more-service{
  top: 100px;
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.more-pag>h1{
  color: greenyellow;
}
.serv{
  padding-block:2rem ;
  border-bottom: 1px solid black;
}
.more-content{
  display: flex;
  justify-content: space-between;
  padding-block: 2rem;
  @media (max-width:1000px) {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }
}
.imgex{
  max-width: 250px;
}
.imgex>img{
  width: 100%;
}
.more-content p{
  max-width: 700px;
}

/* animate */
p,img,h1 {
  opacity: 0; /* hide at start */
  /* overflow: hidden; */
  transform: translateY(20px); /* move down a bit */
  transition: opacity 1s ease, transform 1s ease; /* smooth animation */
}

p.active,img.active,h1.active {
  opacity: 1; /* fade in */
  transform: translateY(0); /* move to original place */
}

/* footer section */
footer{
  background-color: black;
  color: white;
  margin-top: 3rem;
  padding: 2rem;
  font-size: 14px;
  position: relative;
  top: 3rem;
  z-index: 1;
}
.lin{
  filter: invert(1);
}
.footlink>div{
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-block: 1rem;
}
footer a{
  color: white;
}
footer>main{
  display: flex;
  justify-content:space-evenly;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1120px;
  margin-inline: auto;
  @media (max-width:418px) {
    flex-direction: column;
  }
}
.lin{
  filter: invert(0);
}
footer hr{
  max-width: 1120px;
  border: 1px solid white;
  background-color: white;
  /* height: 10rem; */
  margin-inline: auto;
}
footer button{
  background-color: greenyellow;
  color: white;
  border: 1px transparent solid;
  padding: 0.3rem;
}
footer input{
  padding: 0.3rem;
}
footer>p{
  text-align: center;
  padding-block: 1.5rem;
}