/* ========================================================================== */
/* TABLET CSS */
/* ========================================================================== */

@media (max-width: 980px) {
  section{
    padding: 0 2rem !important;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffffff;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: 0.45s ease;
    z-index: 9999;
    font-size: 13px;
  }

  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* TEXT COLOR FIX FOR WHITE BG */
  .main-nav a,
  .main-nav h4 {
    color: #000;
  }

  .nav-btn {
    padding: 8px 18px;
  }
  

.hero-h4 {
    font-size: 1rem;
    border: 2px solid black;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 30px;
    margin-top: 10%;
}

#Hero-section h1 {
    margin: -10px 0;
}
.hero-img img {
    width: 70%;
    z-index: -1;
    margin-top: -5%;


}
.hero-btns {
    display: flex;
    gap: 7px;
    width: 305px;
    margin-top: -8%;
    margin-bottom: 2%;
    height: 55px;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background-color: #ffffff;
    position: relative;
}
#Main-sections-1{
  display: none;
}
#Main-sections-2{
  display: block;
}

#Services-section {
    width: 100%;
    height: auto;
    margin: 3rem auto;
}

.services-h1 {
  text-align: left;
    font-size: clamp(2.5rem, 4vw, 6rem);
}

.para {
  text-align: left;
    width: 100%;
}
.services-container{
  width: 100%;
  height: 50vh;
  margin: 2rem auto;
  text-align: left;
}
.webdev-sec{
  display: flex;
  align-items: start;
  margin: 20px 0;
  gap: 10px;
  justify-content: start;
}
.icon{
  padding: 5px 7px;
  background-color: var(--clr-primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
}
.services-h2{
  font-size: 1.2rem;
  font-weight: 500;
}
.text p{
  margin: 3px 0;

}
.about-service{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
}


}