html, body {
    overflow-x: hidden;
    max-width: 100%;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    background-color: whitesmoke;
}

.images img {
    width: 100%;
}

.sub_img_container {
    margin: 0px;
    padding-inline-start: 15px;
    padding-inline-end: 15px;
}

.sub_img.col {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    padding: 5px;
    cursor: pointer; /* Add cursor pointer for indicating it's clickable */
}

.sub_img_container img {
    width: 100%;
}

.sub_img img {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.sub_img.active img {
    border: 3px solid #FFA500; /* Orange border */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.7); /* Orange glow effect */
    opacity: 0.9;
}


.uppernav {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: orangered;
    height: 50px;
    font-size: medium;
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure it stays above other content */
    

  }

  .uppernav.is-sticky {
    height: 40px; /* New height when sticky */
    font-size: x-small;


  }
.uppernav span{
  text-align: center;

}

.images{
  padding: 0;
}
.images h3{
  text-align: center;
  margin-bottom: 0px;

}
.form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.btn-orange {
  background-color: orangered; /* Orange color */
  color: #fff; /* White text */
  border: none;
  width: 100%;
  padding: 8px 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
}

.btn-orange:hover {
  background-color: rgb(255, 34, 0); /* Darker orange on hover */
}
.form input::placeholder {
 opacity: 0.5;
 font-size: small;
}
video {
    width: 100%;
    
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}





body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}



main {
    padding: 20px;
    padding-left:0px;
    padding-right:0px;
    background-color: #f9f9f9;
}

/* Heading styling */
.category-section h3 {
    text-align: center;
    margin-bottom: 10px;
    /* You can keep your gradient text style if desired */
    color: #000;
    /* background: linear-gradient(to right, #000, rgb(255, 149, 0));
    background-clip: text;
    -webkit-text-fill-color: transparent; */

}


/* Design container styling */
.designs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual design styling */
.design {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    width: 155px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Design hover effects */
.design:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image styling */
.design img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Product name and price styling */
.design p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;

}


.price {
    font-size: 14px!important;
    font-weight: bold;
    color: black;
    background: linear-gradient(to right, #000, rgb(255, 149, 0));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0px;
    border-radius: 5px;
    margin: 0!important;
    
}



footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
content{
    padding-left: 10px;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .design img {
        width: 175px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }

    .design img {
        width: 150px;
    }
}


.whatsapp_chathead{
    position: fixed;
    bottom: 3% !important;
    right:4% !important;
}



/* folder description css */


.description_container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
}

.orderform_container{
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    margin-top: 0px;;
    padding-top: 0px;
}



p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Row and column layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
} */

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.row1, .row2, .row3 {
    margin-bottom: 20px;
}

/* Additional styles for form inclusion */
.order_form {
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: none;
}

/* for faq */
.faq-container {
    
    width: 100%;
    margin: 0 auto;
    
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    margin: 0;
}

.faq-answer {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #666;
}

#back-to-top {
    width: 50%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: orangered;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    position: fixed;
    display: none; /* Initially hide the button */
}



#back-to-top:hover {
    background-color: rgb(255, 47, 0); /* Darker background on hover */
    color: white;
}
html {
    scroll-behavior: smooth;
}






/* Container for each category section */
.category-section {
    max-width: 1200px;      /* or whatever max-width suits your layout */
    margin: 10px auto;      /* centers the section with vertical spacing */
    padding: 0 20px;        /* some horizontal padding */
}




/* for-product-img-hover */
.image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Adjust as per your design */
    overflow: hidden;
    background-color: white; /* Prevent unnecessary white blocks */
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-image,
.hover-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures full image fits without cropping */
    transition: opacity 0.3s ease-in-out;
    background-color: transparent; /* Ensures no unnecessary background */
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.image-container:hover .hover-image {
    opacity: 1;
}

.image-container:hover .default-image {
    opacity: 0;
}



.video-container{
    margin-bottom: 20px;
}



 
  .page-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
  }

  .page-buttons .btn {
    background-color: transparent;
    border: 1px solid #ff8800;
    color: #333;
    font-weight: 600;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    min-width: 120px;
    text-align: center;
  }

  .page-buttons .btn:hover {
    background-color: #ff8800;
    color: white;
  }

  .page-buttons .btn.active {
    background-color: #ff8800;
    color: white;
    border-color: #ff8800;
  }



  .discounted-price,
  #price {
    transition: opacity 0.3s ease-in-out;
  }

  .fade-out {
    opacity: 0;
  }

  .fade-in {
    opacity: 1;
  }
  
  
  
  
  
  
  
  
  
  
  /* CSS */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.customize-btn {
    background: linear-gradient(45deg, #ff9800, #ffb74d, #ffd54f);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.customize-btn:hover {
    background: linear-gradient(45deg, #ffb74d, #ffd54f, #ff9800);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 152, 0, 0.6);
}

@media (max-width: 768px) {
    .customize-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}



