* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight:b;
  font-style: normal;
}
body {
   font-family: "Nunito", sans-serif;

  background: #fff;
}


.topbar {
  background: linear-gradient(to right, #6f00ff, #c800ff);
  color: #fff;
  padding: 5px 20px;
  font-size: 14px;
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  align-items: center;
}

.topbar .right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar .right a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.topbar .right a:hover {
  color: #325cda; /* Optional hover effect */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
  background: white;
  text-transform: uppercase;
}

.logo img {
  height: 100px;
  
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #0d0d3e;
  font-weight:bold;
  font-size: 16px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #0d0d3e;
}

.nav-icons i {
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0px;
  background: transparent;
  min-height: 90vh;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
}

.hero-content .tag {
  color: #c800ff;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 48px;
  color: #0d0d3e;
  margin-bottom: 30px;
  font-weight: 700;
}

.btn {
  background: linear-gradient(to right, #a000ff, #f000ff);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(200, 0, 255, 0.3);
}

.hero-image {
  position: relative;
  max-width: 660px;
  width: 100%;
}

.bg-video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  pointer-events: none;
 
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 50px 20px;
  }

  .navbar {
    flex-direction:none;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image {
    width:100%;
    margin-right: -30px;
    
  }

  .bg-video {
    width: 100%;
  }
}

.left img{
    position:relative;
    float: left;
}

.lef img {
  position: relative;
  float: left;
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-in-out;
}

.lef.reveal-active img {
  opacity: 1;
  transform: translateY(0);
}

.typing-effect {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #1a1a1a; /* Typing cursor */
  font-weight: bold;
  font-size: 21px;
  animation:
    typing 3s steps(22, end) forwards,
    blink 0.7s step-end 5;
  margin-bottom: 30px;
}

/* Gradient applied as text color */
.gradient-text {
  background: linear-gradient(to right, #00b4db, #8a2be2, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 25ch; /* length of "Codezyne Technologies" */
    border: none;
  }
}

/* Blinking cursor */
@keyframes blink {
  0%, 100% {
    border-color: #1a1a1a;
  }
  50% {
    border-color: transparent;
  }
}
@media (max-width: 768px) {
  .typing-effect{
    font-size: 16px;
    position: absolute;
  }
  .hero{
    min-height: 0;
  }
}



.services-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #140d8f;
  margin-bottom: 60px;
  line-height: 1.5;
}

.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  margin: 50px;
}

.service-box {
  max-width: 300px;
  flex: 1;
  padding: 20px;
}

.service-box img {
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(7487%) hue-rotate(263deg) brightness(91%) contrast(93%);
}

.service-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.btn-container {
  margin-top: 20px;
}

.btn-started {
  background: linear-gradient(to right, #6f00ff, #c800ff);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(106, 0, 255, 0.3);
  transition: background 0.3s ease;
}

.btn-started:hover {
  background: linear-gradient(to right, #5b00d1, #a100ff);
}
   @media (max-width: 768px) {
    .service-box{
      padding: 10px;
    }
     .service-box p{
      font-size: 16px;
     }
     .btn-started{
      margin-left: 50px;
     }
    }

/**/


 .work h2 {
      text-align: center;
      color: #920066;
      margin-top: 40px;
    }

   .work p {
      text-align: center;
      font-size: 20px;
      color: #033c5a;
    }

    .tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: 20px 0;
      gap: 15px;
    }

   .tab {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #eee;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tab:hover {
  background: linear-gradient(to right, #00b4db, #8a2be2, #ff0080);
  color: #fff;
}

.tab.active {
  background: linear-gradient(to right, #00b4db, #8a2be2, #ff0080);
  color: #fff;
}


    .gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto 20px;
    }

    .gallery img {
      width: 350px;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-height: 80vh;
      max-width: 90vw;
      margin-bottom: 10px;
    }

    .lightbox .thumbnails {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .lightbox .thumbnails img {
      width: 80px;
      height: auto;
      opacity: 0.5;
      border: 2px solid transparent;
      cursor: pointer;
    }

    .lightbox .thumbnails img.active {
      opacity: 1;
      border-color: #fff;
    }

    .close-btn,
    .nav-btn {
      position: absolute;
      top: 20px;
      background: #fff;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
    }

    .close-btn {
      right: 20px;
    }

    .nav-btn {
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      background: #fff;
    }

    .nav-left {
      left: 20px;
    }

    .nav-right {
      right: 20px;
    }

/**/
  .faq-container {
      max-width: 1200px;
      background: #fff;
      margin: 50px auto;
      padding: 40px 30px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      display: flex;
      gap: 40px;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .faq-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .faq-image img {
      max-width: 100%;
      height: auto;
    }

    .faq-content {
      flex: 2 1 400px;
    }

    .faq-content h2 {
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: 700;
      color: #111;
    }

    .faq-item {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .faq-question {
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-answer {
      margin-top: 10px;
      color: #555;
      display: none;
      font-size: 14px;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .arrow {
      transform: rotate(180deg);
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .faq-container {
        flex-direction: column;
        padding: 30px 20px;
      }

      .faq-content h2 {
        font-size: 24px;
        text-align: center;
      }

      .faq-image {
        order: -1;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 480px) {
      .faq-question {
        font-size: 19px;
      }

      .faq-answer {
        font-size: 17px;
      }

      .faq-content h2 {
        font-size: 22px;
      }
    }
 


      .feature-section {
      position: relative;
 background: linear-gradient(to right, #00b4db, #8a2be2, #ff0080),

                  url("Image/background-1.jpg") center center/cover no-repeat;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 250px;
      color: #fff;
    }

    .feature-section h2 {
      font-size: 36px;
      font-weight: bold;
      line-height: 1.3;
      margin: 0;
      color:#ede4ea;
    }

    .cta-button {
      background-color: #fff;
      color: #19007f;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background-color: #eee;
    }

    @media (max-width: 768px) {
      .feature-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
      }

      .cta-button {
        margin-top: 20px;
      }
    }


    /*footer*/
.footer {
  background-color: #ffffff;
  padding: 60px 20px 30px;
  color: #060606;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo h2 {
 
  font-size: 20px;
}

.logo-icon img{
 width: 100px;
}

.footer-logo p {
  max-width: 250px;
  line-height: 1.5;
}

.footer-logo .social-icons i {
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-logo .social-icons i:hover {
  color: #ffc107;
}

.footer-section h3 {
  color: #8058e4;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffda68;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #020202;
}

.footer-contact i {
  color: #0733ff;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid #222;
  margin-top: 40px;
  font-size: 14px;
  color: #060606;
}

.footer-bottom a {
    color: linear-gradient(to right, #00b4db, #8a2be2, #ff0080);

  margin: 0 10px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffc107;
}

/*shafna nav additional*/

.nav-links {
  display: flex;
  gap: 20px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.close-btn{
  display: none;
   cursor: pointer;
   
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -250px; 
    width: 250px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 40px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }
  

 
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
  }

 /* .navbar {
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
  }*/
}

.nav-links .close-btn {
  display: none;
  width: 100%;
  text-align: right;
  padding-right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}


@media (max-width: 768px) {
   .nav-links .close-btn {
  display: block;
  text-align: right;
  font-size: 24px;
  padding-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  color: #333;
}


}
