body {
    background: linear-gradient(90deg,   rgba(255,255,255,1) 1%, rgba(253,223,212,1) 52%, rgba(253,223,212,1) 100%) !important;
  }
  .navbar {
    background: linear-gradient(90deg,   rgba(255,255,255,1) 1%, rgba(253,223,212,1) 52%, rgba(253,223,212,1) 100%) !important;
  }
  #navbar-line {
    background: linear-gradient(90deg,   rgba(255,255,255,1) 1%, rgba(253,223,212,1) 52%, rgba(253,223,212,1) 100%) !important;
  }
    .carousel {
        height: 90vh;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .carousel-container {
        display: flex;
        width: 400%;
        animation: slide 20s infinite alternate ease-in-out;
    }

    .carousel-slide {
        width: 100vw;
        height: 100%;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @keyframes slide {
        0% { transform: translateX(0); }
        25% { transform: translateX(-100vw); }
        50% { transform: translateX(-200vw); }
        75% { transform: translateX(-300vw); }
        100% { transform: translateX(0); }
    }

    @media (max-width: 768px) {
        .carousel {
            height: 60vh;
        }

        .carousel-slide {
            height: 60vh;
        }
    }

    .testimonial-slider {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: auto;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .testimonial-container {
        display: flex;
        transition: transform 1s ease-in-out;
    }

    .testimonial {
        min-width: 100%;
        box-sizing: border-box;
        padding: 20px;
        background: #fff;
        height: 262px;
        text-align: center;
    }

    .testimonial img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .testimonial p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 10px;
    }

    .testimonial h4 {
        font-size: 1.2rem;
        font-weight: bold;
        color: #333;
    }

    .testimonial-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .control-left, .control-right {
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 50%;
        background: linear-gradient(90deg,   rgba(255,255,255,1) 1%, rgba(253,223,212,1) 52%, rgba(253,223,212,1) 100%);
        font-size: 20px;
        cursor: pointer;
    }

    .testimonial-section {
        padding: 60px 20px;
        background: linear-gradient(90deg,   rgba(255,255,255,1) 1%, rgba(253,223,212,1) 52%, rgba(253,223,212,1) 100%);
        text-align: center;
    }

    .testimonial-section h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 40px;
        color: #333;
    }

    @media (max-width: 768px) {
        .testimonial-section h2 {
            font-size: 2rem;
        }

        .testimonial {
            padding: 15px;
        }

        .testimonial img {
            width: 60px;
            height: 60px;
        }

        .testimonial p {
            font-size: 0.9rem;
        }

        .testimonial h4 {
            font-size: 1rem;
        }
    }


    .how-it-works {
        text-align: center;
        padding: 60px 20px;
        /* background: linear-gradient(135deg, #6EC1E4, #fff); */
    }
    .how-it-works h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 40px;
    }
    .steps-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 50px;
    }
    .step {
text-align: center;
max-width: 250px;
padding: 20px;
/* background: linear-gradient(135deg,rgb(187, 228, 245), #fff); */
/* border-radius: 12px; */
/* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
transform: scale(0.8) rotateY(10deg); /* Box ko thoda andar rakha */
}

.step:hover {
transform: scale(1) rotateY(0deg); /* Hover par normal size aur straight ho jayega */
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

    .step-icon {
        font-size: 50px;
        margin-bottom: 15px;
        color: #007bff;
    }
    .step h4 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .step p {
        font-size: 1rem;
        color: #333;
    }
    @media (max-width: 768px) {
        .steps-container {
            flex-direction: column;
            align-items: center;
        }
    }
     /* Reset and global styling */
   
    
    /* PerfectPiece Container */
    .PerfectPiece {
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(90deg,   rgba(255,255,255,1) 1%, rgba(253,223,212,1) 52%, rgba(253,223,212,1) 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
      }
  
      /* Inner container for video and text side by side */
      .content-container {
        display: flex;
        flex-wrap: wrap; /* Helps with responsiveness on smaller screens */
        max-width: 1200px;
        width: 100%;
        align-items: center;
        justify-content: space-around;
      }
  
      /* Video container styling */
      .video-container {
        flex: 1 1 400px; /* grow, shrink, basis */
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px;
      }
      .video-container video {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 4px;
        object-fit: cover;
      }
  
      /* Text container styling */
      .text-container {
        flex: 1 1 400px;
        margin: 10px;
        max-width: 500px;
      }
      .text-container h4 {
        font-size: 16px;
        color: #555;
        letter-spacing: 1px;
        margin-bottom: 8px;
      }
      .text-container h2 {
        font-size: 28px;
        margin-bottom: 16px;
        font-weight: bold;
        line-height: 1.3;
      }
      .text-container ul {
        margin-left: 20px;
        margin-bottom: 16px;
      }
      .text-container ul li {
        list-style: disc;
        margin-bottom: 8px;
        font-size: 14px;
        color: #333;
      }
      .text-container button {
        background-color: black;
        color: #fff;
        border: none;
        padding: 12px 24px;
        cursor: pointer;
        font-size: 14px;
        border-radius: 4px;
        transition: background-color 0.3s;
      }
      .text-container button:hover {
        background-color: #333;
      }


       /* Container for each collection block */
  .collection-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }

  /* Ensure images fill the container */
  .collection-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
  }

  /* Caption overlay */
  .collection-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
  }

  .collection-title {
    font-size: 2.5rem;
    margin-left: 450px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg,rgb(166, 204, 246),rgb(128, 208, 235));
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 43px;
    position: relative;
    display: inline-block;
    margin-top: 9px;

    text-shadow: 
        2px 2px 0px #000, 
        4px 4px 0px #333, 
        6px 6px 0px #666;
    transform: perspective(500px) rotateX(15deg) rotateY(-10deg);
}
.product-card {
text-align: center;
padding: 15px;
margin-bottom: 20px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
background-color: #fff;
transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.product-card:hover {
background-color: #f0f0f0;
border-radius: 15px;
}

.product-card img {
width: 100%;
border-radius: 10px;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
cursor: pointer;
}

.product-card img:hover {
transform: scale(1.05);
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.heart-icon.liked {
    color: red;
}

.product-info {
    text-align: center;
    margin-top: 10px;
}

.price {
    font-weight: bold;
    color: #d9534f;
}
.view-more {
text-align: center;
margin-top: 40px;
}

.view-more button {
background: linear-gradient(45deg, #ff416c, #ff4b2b);
color: white;
border: none;
padding: 12px 35px;
font-size: 18px;
font-weight: bold;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-transform: uppercase;
}

.view-more button:hover {
background: linear-gradient(45deg, #ff4b2b, #ff416c);
transform: scale(1.1);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive Styles */
.container {
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .col-md-2 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }

    .collection-title {
        font-size: 1.8rem;
        margin-left: 0;
    }

    .view-more button {
        padding: 10px 20px;
    }
}

.collection-title {
    font-size: 2.5rem;
    margin-left: 450px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg,rgb(166, 204, 246),rgb(128, 208, 235));
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 43px;
    position: relative;
    display: inline-block;
    margin-top: 9px;

    text-shadow: 
        2px 2px 0px #000, 
        4px 4px 0px #333, 
        6px 6px 0px #666;
    transform: perspective(500px) rotateX(15deg) rotateY(-10deg);
}
.product-card {
text-align: center;
padding: 15px;
margin-bottom: 20px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
background-color: #fff;
transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.product-card:hover {
background-color: #f0f0f0;
border-radius: 15px;
}

.product-card img {
width: 100%;
border-radius: 10px;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
cursor: pointer;
}

.product-card img:hover {
transform: scale(1.05);
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.heart-icon.liked {
    color: red;
}

.product-info {
    text-align: center;
    margin-top: 10px;
}

.price {
    font-weight: bold;
    color: #d9534f;
}
.view-more {
text-align: center;
margin-top: 40px;
}

.view-more button {
background: linear-gradient(45deg, #ff416c, #ff4b2b);
color: white;
border: none;
padding: 12px 35px;
font-size: 18px;
font-weight: bold;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-transform: uppercase;
}

.view-more button:hover {
background: linear-gradient(45deg, #ff4b2b, #ff416c);
transform: scale(1.1);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive Styles */
.container {
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .col-md-2 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }

    .collection-title {
        font-size: 1.8rem;
        margin-left: 0;
    }

    .view-more button {
        padding: 10px 20px;
    }
}

.Sale {
    text-align: center;
    position: relative;
    padding: 15px;
}
.Sale img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.Sale .Sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.Sale .Sale {
    text-decoration: line-through;
    color: gray;
}
.Sale .Sale {
    color: red;
    font-weight: bold;
}

 /* Reset and global styling */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Main wrapper instead of body styling */
  .page-container {
    min-height: 100vh;                    /* Full viewport height */
    font-family: Arial, sans-serif;       /* Basic font */
    background: linear-gradient(90deg,   rgba(255,255,255,1) 1%, rgba(253,223,212,1) 52%, rgba(253,223,212,1) 100%);            /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;               /* Ensure items are aligned vertically */
    gap: 20px;                            /* Space between items */
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;                      /* Allow wrapping */
    justify-content: center;              /* Center items horizontally */
    gap: 20px;                            /* Space between items */
    padding: 20px;
  }

  .gallery-item {
    width: 350px;                         /* Increased width */
    height: 500px;                        /* Increased height */
    border-radius: 6px;
    overflow: hidden;                     /* Ensures video corners are rounded */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;                    /* Crop/cover the box area */
  }

  