body{
  overflow-x:hidden ;
}

/* First section styling */
section.first {
  background-image: url(../images/landingPage-bg.svg);
  background-size: cover;
  padding: 60px 0 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.landing-mobile-css h2.logo{
  margin-top: -20px;
}

section.first h1.title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 85px;
}
section.first p.sub-text {
  margin: 1em 0 2em;
  color: #fff;
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
section.first a.get-started {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  padding: 7px 20px;
  text-decoration: none;
  border-radius: 5px;
  color: black;
  transition: color 500ms;
  font-size: 18px;
}
section.first a.get-started:hover {
  color: brown;
}


/* second section styling */
section.second {
  text-align: justify;
  position: relative;
}
section.second h3.wwa {
  line-height: 3;
  color: brown;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
}

section.second p.desc-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 2;
}

section.second .desc-images {
  margin: 1.5rem auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 90%;
  gap: 10px;
}

section.second .desc-images .img {
  width: 200px;
  height: 200px;
  border-radius: 7px;
  cursor: pointer;
  overflow: hidden;
}
section.second .desc-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

section.second .desc-images img:hover {
  transform: scale(1.5);
}

section.second .desc-images .img:first-child {
  grid-row: span 2;
  width: 100%;
  height: 100%;
}
section.second .desc-images .img:nth-child(3) {
  grid-column: 3;
  grid-row: span 2;
  width: 100%;
  height: 100%;
}
section.second .desc-images .img:nth-child(5) {
  grid-column: 5;
  grid-row: span 2;
  width: 100%;
  height: 100%;
}

 section.second .desc-images-full-view {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(5px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.desc-images-full-view .imageDisplay {
  width: 60%;
  height: 70%;
  background-color: var(--white);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
/* Add Zoom animation to modal content */

section.second .desc-images-full-view #close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

section.second .desc-images-full-view #close-btn:hover,
.desc-images-full-view .imageDisplay .getImage i:hover {
  background-color: var(--red);
  color: var(--white);
}

.desc-images-full-view .imageDisplay .getImage {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
.desc-images-full-view .imageDisplay .getImage i {
  font-size: 32px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.desc-images-full-view .imageDisplay .getImage img {
  width: 400px;
}

section.second .desc-images-full-view.active {
  display: flex;
}
.mobile-desc-img{
  display: none;
}

/* third section */

section.third div.what_we_do {
  margin-bottom: 2em;
}
section.third h3.wwd {
  color: brown;
  font-family: 'Poppins', sans-serif;
}
section.third h1.info-header {
  margin: 0.5em 0;
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
}
section.third p.info-text {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  padding-right:  15em;
}
section.third div.learn-more {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 20px;
}
section.third div.learn-more article.item {
  height: 250px;
  padding: 15px;
  text-decoration: none;
  background-color: #fafafa;
  
}
section.third div.learn-more article.item img {
  background-color: lightgrey;
  padding: 10px 10px;
}
section.third div.learn-more article.item h2.item-header {
  margin: 1em 0;
  height: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

section.third div.learn-more article.item p.item-text {
  color: gray;
  font-size: 16px;
  margin-bottom: 0.7em;
  font-family: 'Roboto', sans-serif;
}
section.third div.learn-more article.item a {
  text-decoration: none;
  color: brown;
  font-size: 14px;
  transition: all 500ms;
  font-family: 'Roboto', sans-serif;
}
section.third div.learn-more article.item a:hover {
  color: gold;
}

/* fourth section */


section.fourth h3 {
  color: brown;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}
section.fourth h1 {
  margin: 0.5em 0;
  font-size: 37px;
  font-family: 'Poppins', sans-serif;
}
section.fourth p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

section.fourth div.qualities {
  display: grid;
  grid-template-columns: repeat(4 ,1fr);
  gap: 10px;
  align-items: center;
  place-items: center;
  margin-top: 20px;
  
}
section.fourth div.qualities .each-quality{
    background-color: #fafafa;
    padding: 10px;
    text-align: center;
}
section.fourth div.qualities img {
  background-color: lightgray;
  padding: 10px 12px;
}
section.fourth div.qualities p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
section.fourth div.qualities span {
  position: relative;
  display: inline-block;
  width: 200px;
  left: -10px;
  font-family: 'Poppins', sans-serif;
}

/* Article break into tech */

article.break-into-tech {
  margin-top: 5em;
  height: 400px;
  background-image: url(../images/displayImage.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
article.break-into-tech::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 400px;
  background: rgba(255, 153, 0, 0.3);
  z-index: 0.5;
  position: relative;
  top:-5.5em;
}
article.break-into-tech div {
  color: #fff;
  z-index: 10;
  margin:  auto;
  width: 500px;
  position: relative;
  bottom: -175px;
}

article.break-into-tech div h2 {
  font-size: 37px;
  font-family: 'Poppins', sans-serif;
  /* margin-bottom: 1rem; */
}
article.break-into-tech div a {
  border: 1px solid #fff;
  color: #fff;
  padding: 17px 35px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  right: -6em;
  bottom: -2rem;
  font-size: 21px;
  font-family: 'Poppins', sans-serif;
}

/* fifth section */
  section.fifth {
      padding: 5em 0;
  }
  section.fifth h3 {
  color: brown;
  margin-bottom: 1em;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
section.fifth h1 {
  width: 500px;
  font-size: 21px;
  font-family: 'Poppins', sans-serif;
}
section.fifth .customers-logo {
  position: relative;
  left: -2em;
  margin-top: 1em;
  display: flex;
  justify-content: space-around;
  height: 100px;
  align-items: center;
}

section.fifth div.fce {
  display: flex;
}
section.fifth span.arrangement {
  display: grid;
}

/* Laptop L Design */
@media (max-width:1024px){
.landing-mobile-css h2.logo{
  margin-left: 60px;
  margin-top: 3px;
}
.landing-mobile-css ul{
  margin-left: -50px;
  margin-top: 20px;
}
.landing-mobile-css h2{
  margin-right: 80px;
  margin-top: 18px;
}



  /* first section */
  section.first {
    background-image: url(../images/landing-mobile-bg.jpg);
    text-align: center;
  }
  section.first h1.title {
    font-size: 35px;
  }
  section.first p.sub-text {
    font-size: 16px;
  }
  section.first a.get-started {
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
  }

  /* second section styling */
section.second h3.wwa {
  line-height: 3;
  color: brown;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
}

section.second p.desc-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 2;
}

section.fourth div.qualities{
  grid-template-columns: repeat(2,1fr);
  margin: 0 auto;
  justify-content: space-between;
  gap: 20px 100px;
}
section.fourth div.qualities span{
  width: 300px;
}

}
@media  (max-width:770px) {
  .landing-mobile-css h2.logo{
    margin-top: 10px;
    margin-left: 45px;
  }
  
  section.fourth div.qualities{
    margin-top: 2em;
  }
  section.fourth div.qualities div.each-quality{
    height: 129px;
    width: 171px;
    padding: 13px;
  }
  section.fourth div.qualities div.each-quality p,
    section.fourth div.qualities div.each-quality img{
      position: relative;
      top: 22px;
  }

  section.fourth div.qualities span{
    display: none;
  }

  section.fifth .customers-logo img{
    width: 75px;
    object-fit: contain;
    justify-content: space-around;
  }
  
  
}

/* Mobile Design */

@media (max-width:500px){
  body{
    font-family: poppins  ;
    width: 100%;
  }
  
  section.first a.get-started {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 14px;
  }
  section.second .desc-images .img {
    width: 200px;
    height: 250px;
    }
section.second .desc-images {
  display: none;
}

section.second div.mobile-desc-img{
  display: block;
  width: 100%;
  height: 50vh;
  margin: 2em auto 0;
  
}
section.second div.mobile-desc-img div img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
}
section.second div.mobile-desc-img .scroll-btns{
  text-align: center;
}
section.second div.mobile-desc-img .scroll-btns i{
  font-size: 34px;
  color: #fff;
  background-color: #330001;
  border-radius: 5px;
}
/* third section */

section.third h1.info-header {
  font-size: 18px;
  width: 100%;
}
section.third p.info-text {
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  width: 400px;
}


/* fourth section */

section.fourth {
  width: 100%;
}

section.fourth h1 {
  font-size: 17px;
}
section.fourth p {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  /* width: 420px; */
  width: auto;
  line-height: 22px;
}

section.fourth div.qualities{
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


section.fourth div.qualities div.each-quality p{
      font-size: 12px;
  }

  /* Article break into tech */

article.break-into-tech div h2 {
  font-size: 27px;
  margin-bottom: 1rem;
  margin-left: 5%;
}
article.break-into-tech div a {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  bottom: -1.5rem;
  font-size: 21px;
  font-family: 'Poppins', sans-serif;
  margin-left: -5%;

}

/* fifth section */

section.fifth h1 {
  width: 400px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
section.fifth .customers-logo img{
  width: 45px;
  object-fit: contain;
  justify-content: space-around;
}

}
@media (max-width:425px){
  html{
    overflow-x: hidden;   
  }
  body{
    width: 100%;
    overflow-x: hidden;
  }
  .landing-mobile-css h2.logo{
    margin-top: 10px;
  }
  .landing-mobile-css{
    position: fixed;
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-around;
    background-color: #fafafa;
    padding-top: 20px;
  }
  section.first{
    width: 100%;
  }
    section.first h1.title {
    font-size: 35px;
  }
  
  section.first p.sub-text {
    font-size: 16px;
  }
  section.first a.get-started {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 12px;
  }
}
@media screen and (max-width:375px) {
  section.fifth h1{
    width: 90%;
  }
}
@media screen and (max-width:320px) {
  section.third{
    width: 50%;
  }
  section.third div.learn-more{
    width: 70%;
  }
  section.third div.learn-more article.item{
    width: 70%;
  }
  section.fourth{
    width: 70%;
  }
  section.fourth div.qualities{
    width: 100px;
  }
  section.fourth div.qualities div.each-quality{
    width: 80px;
  }
}
