*{
    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;
  }
}
/* section services */
.sectionservices{
  top: 100px;
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}
.servicesB{
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    padding: 2rem;
    
    @media (max-width:1019px) {
      flex-direction: column;
      gap: 3rem;
    }
}
.social{
    max-width: 500px;
    max-height:auto;
    flex-grow: 1;
    
}
.social img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.social-topic{
    max-width: 500px;
}
.social-topic h1{
    color: greenyellow;
    padding-block: 0.2rem;
}
.social-topic a{
    background-color: green;
    padding: 0.5rem;
    display: block;
    max-width: 100px;
    text-align: center;
    border-radius: 10px;
    margin-top: 0.7rem;
    color: white;
}
.social-topic a:hover{
    background-color: greenyellow;
    color:blue;
}
/* animate */
p,img,h1 {
  opacity: 0; /* hide at start */
  /* overflow: hidden; */
  transform: translateX(80px); /* 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;
  }
}
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;
}