


  /* Reset Specific to Section */
  .web-designing-hero,
  .web-designing-hero * {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* HERO CONTAINER */
  .web-designing-hero {
    position: relative;
    margin-top: 10vh;
    width: 100%;
    height: 95vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-left: 4vw;
    background: #000000;
    overflow: hidden;
  }

  /* OVERLAY TEXT */
  .web-designing-text {
    position: relative;
    z-index: 30;
    font-size: clamp(4rem, 11vw, 11rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -3px;
    color: #ffffff;
    user-select: none;
    pointer-events: none;
    mix-blend-mode: difference;
  }

  /* MAIN VIEWPORT (Width Badha Di Gayi Hai - 78vw) */
  .web-designing-viewport {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-42%, -50%);
    width: 78vw;
    height: 82vh;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
    background-color: #000000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  }

  /* BASE IMAGE */
  .web-designing-base-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* CURTAIN OVERLAY CONTAINER */
  .web-designing-curtain-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 10;
    pointer-events: none;
  }

  /* VERTICAL STRIPS */
  .web-designing-strip {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    will-change: clip-path;
  }

  .web-designing-strip img {
    position: absolute;
    top: 0;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  /* THUMBNAILS CONTAINER */
  .web-designing-trigger-flex {
    position: absolute;
    bottom: 30px;
    right: 4vw;
    display: flex;
    gap: 12px;
    background: rgba(18, 18, 18, 0.65);
    padding: 8px;
    border-radius: 14px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 40;
  }

  .web-designing-image-wrapper {
    position: relative;
    width: 110px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .web-designing-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .web-designing-image-wrapper:hover,
  .web-designing-image-wrapper.active {
    opacity: 1;
    border-color: #ffffff;
    transform: translateY(-3px);
  }

  @media (max-width: 992px) {
    .web-designing-viewport {
      width: 85vw;
      height: 75vh;
      transform: translate(-50%, -50%);
      left: 50%;
    }
    .web-designing-text {
      font-size: clamp(3.5rem, 12vw, 7rem);
    }
  }



@media (max-width: 600px) {
  .web-designing-hero {
    padding-left: 5vw; 
    justify-content: flex-start;
  }

  .web-designing-viewport {
    width: 90vw;
    height: 60vh;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .web-designing-text {
    font-size: 3rem;
    text-align: left; 
    line-height: 0.95;
    z-index: 30;
  }


  .web-designing-trigger-flex {
    bottom: calc(55vh - 30vh + 10px); 
    right: 5vw; 
    transform: none; 
    padding: 4px;
    gap: 8px;
  }

  .web-designing-image-wrapper {
    width: 75px;
    height: 48px;
  }
}

/* banar section End */




/* intro  section start */

.intro-section {
  padding: 120px 20px;
  background: #000;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* inner container */
.intro-inner {
  max-width: 1000px;
  width: 100%;
  text-align: left; 
}

/* heading → CENTER */
.intro-heading {
  font-size: 45px;
  font-weight: 500;
  color: #0099ff;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-align: center;   

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* paragraph */
.intro-inner p {
  max-width: 950px;
  color: #eaeaea;
  font-size: 19px;
  line-height: 2;
  letter-spacing: 0.4px;
  font-weight: 400;

  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

/* animation trigger */
.intro-section.show .intro-heading,
.intro-section.show p {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 992px) {
  .intro-section {
    padding: 0px 20px;
    margin-top: -25vh;
  }

  .intro-heading {
    font-size: 32px;
  }

  .intro-inner p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 80px 15px;
  }

  .intro-heading {
    font-size: 26px;
  }

  .intro-inner p {
    font-size: 18px;
    line-height: 1.7;
  }
}


@media (max-width: 480px) {
  .intro-heading {
    font-size: 22px;
  }

  .intro-inner p {
    font-size: 16px;
  }
}
/* intro section End*/







/* Web Design Section Start */


.shipping-section {
  background-color:  #040943;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;

    position: relative;
    z-index: 1;
}

/* Left background */
.shipping-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #787878;
    z-index: -1;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    grid-gap: 15px;
    position: relative;
    max-width: 1000px;
}

.grid-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

/* IMAGE BOX + OVERLAY */

.img-box {
    position: relative;
    overflow: hidden;
}

/* Image */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Overlay */
.img-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform: translateY(-100%);
    transition: 0.5s ease;
}

/* Hover Effect */
.img-box:hover .overlay {
    transform: translateY(0);
}

/* Image Zoom on Hover */
.img-box:hover img {
    transform: scale(1.1);
}

/* Overlay Text */
.overlay h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 19px;
    letter-spacing: 1px;
}

/* Button */
.overlay-btn {
    padding: 8px 20px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.overlay-btn:hover {
    background: #fff;
    color: #000;
}

/* TEXT BOX */
.text-content {
    color: white;
    padding: 10px;
    font-size: 19px;
    line-height: 1.6;
}

.text-content .source {
    display: block;
    margin: 15px 0;
    color: #ccc;
}

.btn-learn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}

/* TITLE OVERLAY BOX */

.title-overlay {
    position: absolute;
    bottom: 200px;
    left: 410px;
    background-color: #d1d5db;
    padding: 50px;
    width: 550px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
}

.title-overlay h1 {
    margin: 0;
    color: #0a2351;
    font-size: 42px;
    font-weight: bold;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.text-content p {
  margin-top: 30px;
    font-size: 30px;        
    line-height: 1.5;
    font-weight: 500;
    color: #ffffff;
    max-width: 100%;
}


@media (max-width: 1024px) {

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .title-overlay {
    position: static;
    width: 100%;
    margin-top: 20px;
    padding: 30px;
    box-shadow: none;
    text-align: center;
  }

  .title-overlay h1 {
    font-size: 32px;
  }

  .shipping-section::before {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .grid-container {
    grid-template-columns: 1fr;
  }

  .grid-item {
    height: 220px;
  }

  .title-overlay {
    padding: 25px;
  }

  .title-overlay h1 {
    font-size: 26px;
  }

  .text-content {
    font-size: 14px;
  }
}



@media (max-width: 480px) {

  .shipping-section {
    padding: 40px 15px;
  }

  .title-overlay h1 {
    font-size: 22px;
  }

  .overlay h3 {
    font-size: 18px;
  }

  .overlay-btn {
    padding: 6px 14px;
    font-size: 11px;
  }

  .btn-learn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {

  .grid-item {
    height: 320px;
  }
  
  .img-box img {
    object-fit: cover;
  }

}
 
@media (max-width: 600px) {
    .grid-item.text-content {
        display: none;
    }
}
/* Web Design Section End*/