 
 
 /*WEb dev showcase*/
 .web-dev-showcase {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f1f1f;
    padding: 50px 20px;
    max-width: 1400px;
    margin: auto;
    width:100%;
    height:100%;
  }
  .side-by-side {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
  }
  .web-dev-showcase-content {
    flex: 1;
    min-width: 300px;
  }
  .web-dev-showcase-content h1 {
    font-size: 3rem;
    color: #0a66c2;
    margin-bottom: 10px;
  }
  .web-dev-showcase-content .subheading {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 20px;
  }
  .web-dev-showcase-content h2 {
    color: #0a66c2;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .web-dev-showcase-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
  }
  .web-dev-showcase-content ul {
    list-style: none;
    padding-left: 0;
  }
  .web-dev-showcase-content li {
    font-size: 1rem;
    padding: 8px 0;
    color: #444;
  }
  .intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  .image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    flex: 1;
    min-width: 300px;
  }
  .image-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .image-grid img:hover {
    transform: scale(1.03);
  }
  @media (max-width: 768px) {
    .side-by-side {
      flex-direction: column;
    }
  }


   /*Tech Used*/
    .tech-section {
  padding: 4rem 2rem;
  background: #f9fafb;
  text-align: center;
}

.tech-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #111827;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #374151;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: scale(1.1);
}

.tech-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}



  /*Web dev Section*/
    .web-dev-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: #f8f9fa;
  }

  .web-dev-section-content {
    flex: 1;
    padding-right: 40px;
  }

  .web-dev-section-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .web-dev-section-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }

  .web-dev-section-content button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
  }

  .swiper {
    width: 600px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /*Showcase section*/


    .showcase-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: black;
    }
    .backgrounds {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .bg-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: blur(10px) brightness(0.5);
      opacity: 0;
      transition: opacity 2s ease-in-out;
      animation: fadeSlide 18s infinite;
    }

    .bg1 {
      background-image: url('../img/web_dev7.jpg');
      animation-delay: 0s;
    }

    .bg2 {
      background-image: url('../img/web_dev8.jpg');
      animation-delay: 6s;
    }

    .bg3 {
      background-image: url('../img/web_dev9.jpg');
      animation-delay: 12s;
    }

    @keyframes fadeSlide {
      0%, 100% { opacity: 0; }
      10%, 30% { opacity: 1; }
      40% { opacity: 0; }
    }

    .showcase-section-content {
      position: relative;
      z-index: 2;
      color: white;
      text-align: center;
      max-width: 700px;
      padding: 2rem;
      backdrop-filter: blur(0px); 
    }

    .showcase-section-content h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color:#4e11f4;
    }

    .showcase-section-content p {
      font-size: 1.25rem;
      line-height: 1.6;
    }




   