@media (max-width: 900px) {
    .nav-toggle{
        display: none;
    }
    .hero-section{
        display: block;
    }
    .written-words{
        width: 100%;
        height: 50%;
        /* background-color: yellow; */
        position: absolute;
        top: 5%;
    }
    .video-container{
        width: 100%;
        height: auto;
        position: absolute;
        top: 70%;
        bottom: 0%;
        /* justify-self: baseline; */
    }   
    .btn-holder p{
        font-size: clamp(12px, 4dvw, 14px);
    }
    .btn-holder{
        height: 5dvh;
        width: 75%;
    }
    .egg-white{
        display: block;
    }
    .egg-right{
        top: 0;
        width: 100%;
        height: auto;
        left: 0;
        margin-left: 2vw;
    }
    .inject-holder{
        top: 40%;
        width: 100%;
        height: 40%;
        left: 0;
        overflow: hidden;
    }
    .inject-holder img{
        width: 100%;
        height: auto;
    }
    .ick{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #alone:hover{
        /* color: tomato; */
        cursor: pointer;
        
    }
    .mode{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 10%;
        /* position: absolute; */
        left: 65%;
        top: 40%;
    }
    .why-down {
    flex-wrap: wrap;
  }

  .side-side {
    width: 48%;
    margin-bottom: 20px;
  }
  .services-content {
    flex-direction: column;
  }

  .services-header h2 {
    font-size: 28px;
  }
  .service-section,
  .service-section.reverse {
    flex-direction: column-reverse;
    padding: 60px 5%;
  }

  .service-text h3 {
    font-size: 20px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 40px 25px;
  }
}

@media (max-width: 900px) {

    .navigation {
        height: 70px;
    }

    .img-div {
        width: 120px;
        left: 15px;
    }

    /* show hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* MOBILE MENU */
    .ul-holder {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: auto;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
    }

    .ul-holder.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .ul-holder div {
        width: 100%;
        height: 60px;
        font-size: 1.1rem;
    }

    .indicator {
        bottom: 5px;
    }
}
@media (max-width: 900px) {

    .ul-holder div {
        opacity: 0;
        transform: translateY(-10px);
        animation: none;
    }

    .ul-holder.open div {
        animation: menuFade 0.45s ease forwards;
    }

    .ul-holder.open div:nth-child(1) { animation-delay: 0.05s; }
    .ul-holder.open div:nth-child(2) { animation-delay: 0.10s; }
    .ul-holder.open div:nth-child(3) { animation-delay: 0.15s; }
    .ul-holder.open div:nth-child(4) { animation-delay: 0.20s; }
    .ul-holder.open div:nth-child(5) { animation-delay: 0.25s; }
}

@keyframes menuFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.services-page {
    padding: 100px 20px;
    max-width: 1200px;
    margin: auto;
}

.services-page h1 {
    text-align: center;
    margin-bottom: 40px;
}

.service-detail {
    margin-bottom: 50px;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.services-cta button {
    padding: 12px 30px;
    background-color: #3f51b5;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.ul-holder div p a {
    text-decoration: none; /* remove underline */
    color: inherit;         /* inherit the nav text color */
    display: inline-block;  /* ensures styling works */
    width: 100%;            /* make clickable area same as the div */
}
.ul-holder div p a:hover {
    cursor: pointer;
}
.ul-holder a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ul-holder div {
  position: relative;
}

.indicator {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 4px;
  border-radius: 4px;
  background: transparent;
  transition: background 0.3s ease;
}
