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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-weight: 300;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
body{
    background: linear-gradient(322deg, #C8C8C8, #d0d9d0) !important;
}

.hero-section {
  /* font-family: roboto, sans-serif; */
  color: white;
  background: url(./images/heroimg4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.text-container {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 2em;
  /* padding-top: 80px;
  padding-left: 16px; */
  /* font-weight: 400; */
  position: absolute;
  top: 25%;
  left:15%;
  text-shadow: 2px 2px 10px black;
}
.text-container h2{
    font-size: 62px;
}
.text-container h1{
    font-size: 42px;
    color: antiquewhite;
}
.lg-text {
  font-size: 98px;
  font-weight: 400;
}

.black-box h2 {
  font-size: 72px;
  font-weight: 300;
}
.black-box h2 .you-class {
  font-size: 96px;
  font-weight: 400;
}

.black-box {
    background: black;
    color: white;
  text-align: center;
  padding: 40px;
}

.card img {
    width: 318px;
    height: 180px;
}
.work {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap:52px;
    margin: 30px 0;
max-width: 1100px;
margin: 50px auto;

}

.grid-item{
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: 20px !important; */
}
.grid-item img{
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  
}

.card{
  overflow-y: hidden;
  border-radius: 20px !important; 
  max-width: 320px;
  /* height: 400px; */
  box-shadow: 3px 3px 5px rgba(1,1,1,0.2);
  transition: 0.3s ease-in-out;
}

  .card_content{
    padding: 20px;
    background: linear-gradient(119deg, #0c4dd1, #08e682);
 color: white;
  }
  .card_content h3{
    padding: 10px 0;
    color:yellow;
}
.card:hover{
    transform: scale(1.05);
    box-shadow: 3px 3px 5px rgba(1,1,1,0.3);

}

.bottom_section{
    display: flex;
    color:white;
}

.contact{
    background-color: #5d3587;
}
.about{
    background-color: #a367b1;
}
.contact , .about{
padding: 40px;
/* min-height: 300px; */
}
.contact h2, .about h2{
    font-size: 32px;
    font-weight: 300;
}
.contact p, .about p{
    font-size: 1em;
    margin-bottom: 20px;
    /* font-weight: 300; */
}

/* footer wala icons----------------================================/////////// */
/* footer{
    background-color: black;
    margin-bottom: 0;
    height: 20vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;

} */

.container2 {
    background-color: #000000;
    /* height: vh; */
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    /* background: rgba(0, 0, 0, 0.9); */
    /* backdrop-filter: blur(6px); */
    margin-bottom: 0 !important;
    
  }
  
  .container2 ul {
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .container2 ul h6 {
   
  }
  
  .container2 li {
    list-style: none;
  }
  
  .container2 .list-items {
    position: relative;
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    transition: 1s;
  }
  
  .container2 .list-items:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scaleY(2);
    transition: 1s;
    border-top: 2px solid rgb(255, 255, 255);
    border-bottom: 2px solid rgb(255, 255, 255);
  }
  
  .container2 .list-items:hover:before {
    transform: scaleY(1.2);
    opacity: 1;
  }
  
  .container2 .list-items:after {
    content: "";
    background: transparent;
    position: absolute;
    top: 2;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 1s;
    transform: scale(0);
    z-index: -1;
  }
  
  .container2 .list-items:hover:after {
    transform: scale(1);
  }
  
  .container2 .list-items:hover {
    color: #fff;
  }
  
  /* media queire---------------------==========================............////////////// */
  @media (max-width:786px){
    .hero-section{
        /* min-height: 50vh; */
    }
    .text-container{
        padding: 10px 0;
        text-align: center;
    }
    .lg-text{
        font-size: 32px;

    }
    .black-box h2{
        font-size: 24px;

    }
.black-box h2 .you-class{
    font-weight: 400;
    font-size: 32px;
    padding-left:3px;
}

.bottom_section{
    flex-direction: column;
}

h1{
    font-size: 32px;
}

.about h2,.contact h2{
    font-size: 32px;
}

  }
  
  .lg-text{
    font-size: 2.5em;
  }


  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 3em 10px;
    margin: 0 2.5em;
    color: #ffffff;
    gap:20px;
    /* position: stick; */
  }
  .navbar > p {
    font-weight: bolder;
    font-size: 1.5em;
    letter-spacing: 0;
    word-spacing: -10px;

    text-shadow: 2px 2px 10px black;
  }
  
  .nav_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
    list-style: none;
    padding: 1em;
    align-items: baseline;
  }
  ul > li > a {
    /* word-spacing: -3px; */
    padding: 0.2rem 1.1rem;
    text-decoration: none;
    color: #4d273f;
  }
  ul > li > a:hover {
    padding: 0.5rem 1.1rem;
    text-decoration: none;
    color: #fff;
    border: 0.05rem solid #5755d9;
  }
  li > .nav_btn {
    background: #3dc0aa;
    border-color: transparent;
    color: #ffffff;
    border-radius: 50px;
    /* align-self: center; */
  }
  li > .nav_btn:hover {
    background: transparent;
    border-color: rgb(175, 134, 213);
    /* padding: 0.25rem 1rem; */
  }
  

  @media only screen and (max-width: 800px) {
    .col1 > .btn-start {
      font-size: 1.1em;
    }
    .slogan-img {
      max-width: 100%;
      width: 50vw;
      padding-right: 5em;
      margin-top: 25px;
    }
  
    .col1 > h1 {
      font-size: 1.6rem;
    }
    ul > li > a {
      padding: 0 0;
    }
  
    .nav_ul {
      gap: 1em;
      padding: 0.5em;
    }
  
    header {
      height: 100vh;
    }
  }
  

  @media only screen and (max-width: 600px) {
    .nav_ul {
      flex-direction: column !important;
      
      margin-left: auto;
      margin-right: auto;
      gap: 1em;
      padding: 0.5em;
    }
    
.text-container {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 2em;
  /* padding-top: 80px;
  padding-left: 16px; */
  /* font-weight: 400; */
  position: absolute;
  top: 35%;
  left:1%;
  text-shadow: 2px 2px 10px black;
}
  .lg-text{
    font-size: 1.5em;
  }
  
    .col1 > h1 {
      font-size: 1rem;
    }
    .hero_page {
      margin: 0 0;
      display: block;
    }
    .hero_page > .col-7 {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      padding: 1em 0;
      justify-content: center;
    }
  
    .col-7 > p {
      font-size: 0.6em;
    }
    .col-7 > h1 {
      font-size: 1.5em;
    }
    .col2 {
      display: none;
    }
  
    .col1 > .btn-start {
      padding: 0.6rem 10px;
      font-size: 1em;
    }
  }
  
  @media only screen and (min-width: 300px) and (max-width: 770px) {
    header > .navbar {
      display: flex;
      flex-direction: column !important ;
    }
  }
  @media only screen and (min-width: 600px) and (max-width: 900px) {
      .col2{
         
  
      }
   .col2>.slogan-img{
   
   }
  }