* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mozilla Headline", sans-serif;
}

body {
  background-color: black;
  color: white;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  padding: 8px 16px;
  margin-top: 12px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #555;
}

li {
  list-style: none;
}

mark {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
}

/* Navigation Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: relative;
}

.logophoto img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* object-fit: cover; */
}

.listitem {
  display: flex;
  align-items: center;
}

#listitem {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: none;
}

.navhidden {
  display: flex;
  gap: 30px;
}

.navhidden a li {
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.navhidden a li:hover {
  color: #ccc;
}

.navhidden a li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

#socialIcons {
  display: none;
  transition: all 0.3s ease;

}

.contain {
  display: none;
}

#socialIcons.show {
  display: flex;
  margin: 23px;
}

.circle {
  margin: 9px;
}

.navhidden a li:hover::after {
  width: 100%;

}


#firsthalf {
  min-height: 100vh;
  padding: 0 5%;
  background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
}

#intropart {
  height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

#intropart h1 {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 800px;
  background: linear-gradient(to right, #ffffff, #888888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro{
  max-width: 600px;
}

.intro h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.intro p {
  line-height: 1.6;
  color: #ccc;
}

/* Second Half Styles */
.secondhalf {
  padding: 50px;
   width: 100vw;
  height: 100%;
  padding-bottom: 0px;
  background-color: #111;
}

.sectionfourth {
  padding: 50px;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
}
.sectionthird {
  padding: 50px;
  width: 100vw;
  height: 100%;
  background: linear-gradient(135deg, rgb(17, 15, 15) 0%, rgba(10, 10, 10, 1) 100%);
}
.sectionfifth {
  padding: 50px;
  width: 100vw;
  height: 100%;
  background: linear-gradient(135deg, rgb(8, 8, 8) 0%, rgba(10, 10, 10, 1) 100%);
}


.border {
  margin: 40px 0;
  text-align: center;
}

.border h1 {
  display: inline-block;
  font-size: 2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid white;
}

.projectsection {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
  padding-bottom: 25px;
  height: 100%;
}

.card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card video {
  width: 100%;
  height: 200px;
  object-fit: cover;

}

#hidecontent{
  display: none; 
}

#hidecontent.active{
  display: block; 
}

#menu-toggle{
  display: none;
}

.navhidden{
  display: flex;
  list-style: none;
}


@media (max-width: 768px) {
  body{
    overflow-x:hidden ;
  }
  #menu-toggle {
    display: none;
    width: 30px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 200;
  }

 .navhidden {
  display: none;
  position: fixed;
  top: 70px;
  right: -100%; /* hide offscreen */
  width: 250px;
  height: auto;
  background-color: #222;
  flex-direction: column;
  padding: 20px;
  border-radius: 5px 0 0 5px;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 100;
}





}


@media (max-width: 992px) {
  #intropart h1 {
    font-size: 2.2rem;
  }
  
  .secondhalf {
  padding: 50px;
   width: 100vw;
  height: 100%;
  padding-bottom: 0px;
  background-color: #111;
}

  .sectionthirddivide {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    margin-right: 12px;
  }
  .sectionthird {
  padding: 50px;
  width: 100vw;
  height: 100%;
  background: linear-gradient(135deg, rgb(15, 12, 12) 0%, rgba(10, 10, 10, 1) 100%);
}

  #videotag {
    width: 100%;
  }
}

@media (max-width: 768px) {
   

  #intropart h1 {
    font-size: 1.8rem;
  }
  .sectionthirddivide {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
  }

  .intro h4 {
    font-size: 1.3rem;
  }

  .navhidden {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #222;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }

 

  #listitem {
    display: block;
  }
}

@media (max-width: 576px) {
  #intropart h1 {
    font-size: 1.5rem;
  }


  .intro h4 {
    font-size: 1.2rem;
  }

  .border h1 {
    font-size: 1.6rem;
  }

  /* .card {
    min-height: auto;
  } */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#intropart h1,
.intro h4,
.intro p {
  animation: fadeIn 1s ease forwards;
}

.intro h4 {
  animation-delay: 0.2s;
}

.intro p {
  animation-delay: 0.4s;
}




    .faqs-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .faqs-container h4 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 30px;
    }

    .faq-item {
      background-color: #383838;
      margin-bottom: 15px;
      border-radius: 6px;
      overflow: hidden;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.2rem;
      cursor: pointer;
      font-weight: bold;
    }

    .faq-answer {
      background-color: rgb(48, 48, 48);
      color: white;
      padding: 15px 20px;
      font-size: 1.1rem;
      display: none;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-icon {
      font-size: 1.5rem;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-icon {
      transform: rotate(90deg);
    }

    .footer {
      text-align: center;
      font-size: 1.8rem;
      margin-top: 40px;
    }

    @media (max-width: 600px) {
      .faq-question {
        font-size: 1rem;
        padding: 12px 16px;
      }

      .faq-answer {
        font-size: 0.95rem;
        padding: 12px 16px;
      }

      .faq-icon {
        font-size: 1.2rem;
      }

      .faqs-container h4 {
        font-size: 1.5rem;
      }

      .footer {
        font-size: 1.2rem;
      }
    }







    /* <section id="testimonials" style="padding: 3rem 1rem; background-color: #0a0a0a; color: white;">
  <div style="max-width: 800px; margin: 0 auto; text-align: center;">
    <h3 style="font-size: 2rem; font-weight: 700; margin-bottom: 2rem;">
      What Our Clients Say
    </h3>
    <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;">
      
      <!-- Testimonial 1 -->
      <div style="background-color: #1f2937; padding: 1.5rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.3);">
        <p style="font-size: 1rem; color: #e5e7eb; margin-bottom: 1rem;">
          “Click2Site delivered my portfolio website in just 3 days! The design is clean and professional.”
        </p>
        <h4 style="font-size: 1.125rem; font-weight: bold; color: #60a5fa;">Aman Verma</h4>
        <span style="font-size: 0.875rem; color: #9ca3af;">Freelancer</span>
      </div>
      
      <!-- Testimonial 2 -->
      <div style="background-color: #1f2937; padding: 1.5rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.3);">
        <p style="font-size: 1rem; color: #e5e7eb; margin-bottom: 1rem;">
          “Amazing service at an affordable price! My business website looks stunning and works perfectly on mobile.”
        </p>
        <h4 style="font-size: 1.125rem; font-weight: bold; color: #60a5fa;">Priya Singh</h4>
        <span style="font-size: 0.875rem; color: #9ca3af;">Small Business Owner</span>
      </div>
      
      <!-- Testimonial 3 -->
      <div style="background-color: #1f2937; padding: 1.5rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.3);">
        <p style="font-size: 1rem; color: #e5e7eb; margin-bottom: 1rem;">
          “I loved the animations and responsiveness. Great communication and timely delivery. Highly recommended!”
        </p>
        <h4 style="font-size: 1.125rem; font-weight: bold; color: #60a5fa;">Rohit Sharma</h4>
        <span style="font-size: 0.875rem; color: #9ca3af;">Startup Founder</span>
      </div>
    </div>
  </div>
</section>










 */














