*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
}

.social {
    width: 100%;
    height: 8vh;
    background: rgb(38, 38, 38);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.socialrap {
    width: 100%;
    position: relative;
}

.name1 {
    display: flex;
    width: 200%;
    animation: scroll 20s linear infinite;
}

.scroll-text {
    color: white;
    font-size: 15px;
    white-space: nowrap;
    padding-right: 3cm; /* 3cm gap between the lines */
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* navigation bar */
.navi {
    background-color: black !important; /* Use the same color as banner */
}
.name {
    color: aliceblue !important;
    font-weight: bold !important;
    font-size: 15px !important;
  }

/* banner4 */
.ban {
    width: 100%;
    height: 120vh;
    background-image: url(./sanimg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap1 {
    width: 50%;
    text-align: center;
    color: white; /* You can change the color as needed */
    font-size: 50px; /* Adjust the font size as needed */
    font-weight: bolder;
    margin-bottom: 1%;
}




/* banner4 */
.ban2 {
    width: 100%;
    height: 45vh;
    background-color: red;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap2 {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
}

.banrap3 {
    width: 50%;
    text-align: center;
    color: white; /* You can change the color as needed */
    font-size: 80px; /* Adjust the font size as needed */
    font-weight: bolder;
    margin-bottom: 1%;
}

 
.social2{
    margin-top: 20px;
    width: 100%;
    height: 20vh;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.socialrap2 {
    width: 100%;
    position: relative;
}

.name2{
    display: flex;
    width: 200%;
    animation: scroll 10s linear infinite;
}

.scroll2-text2 {
    color: black;
    font-size: 100px;
    white-space: nowrap;
    padding-right: 3cm; /* 3cm gap between the lines */
    font-family: "Bungee Outline", sans-serif;
    font-weight: 400;
    font-style: normal;
      
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-inner {
    background-color: black; /* Set black background outside the images */
  }
  
  .carousel-content {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .carousel-content img {
    flex: 1;
  }
  
  .carousel-content h1 {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem; /* Adjust font size as needed */
    font-weight: bold; /* Make text bold */
  }
  




/* middle */
.mid {
    width: 100%;
    background: white;
    position: relative;
    overflow: hidden;
    
}

.midrap {
    width: 100%;
    margin: auto;
    padding-top: 20px;
    text-align: center;
}

.midrap h1 {
    font-size: 32px;
    font-family: sans-serif;
    font-weight: bold; /* Make the h1 bolder */
}

/* first row */
.shop-section {
    margin-top: 3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Add some gap between items */
}

.box {
    background-color: black;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    width: 45%; /* Adjust the width to fit two boxes per row */
    max-width: 300px; /* Optional: max width for boxes */
    height: auto; /* Adjust height as needed */
}

.box:hover {
    transform: scale(1.05);
}

.product-img {
    height: 35vh;
    width: 90%;
    transition: transform 0.3s;
    border-radius: 5%;
}

.box:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    position: relative;
    margin-top: 20px;
}

.product-info h1 {
    margin-top: 10px;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: bold;
    color: white;
}

.product-name {
    font-size: 15px;
    font-family: sans-serif;
    font-weight: lighter; /* Make the product name lighter */
    color: white;
}

.product-info p {
    margin: 0; /* Ensure no extra margin */
    color: white;
}




/* banner4 */
.ban4 {
    margin-top: 3%;
    width: 100%;
    height: 70vh;
    background-color: red;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap4 {
    width: 100%;
    height: 100%; /* Adjust height to cover the full banner */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; /* Adjust padding as needed */
}

.images {
    display: flex;
    align-items: center;
}

.main-img {
    height: 60vh; /* Adjust the height as needed */
}

.logo-img {
    height: 30vh; /* Adjust the height as needed */
    margin-left: -50px; /* Adjust the negative margin to tilt towards the main image */
    transform: rotate(-10deg); /* Slightly tilt the logo image */
}

.text-content {
    width: 50%;
    text-align: right;
}

.banrap5 {
    color: white; /* You can change the color as needed */
    font-size: 40px; /* Adjust the font size as needed */
    font-weight: bolder;
    margin-bottom: 1%;
}

p {
    color: white; /* Ensure the paragraph text color is visible */
}












/* middle2 */
.mid2 {
    margin-top: 2%;
    width: 100%;
    background: white;
    position: relative;
    padding: 20px 0;
}

.midrap2 {
    width: 90%;
    margin: auto;
    padding-top: 20px;
    text-align: center;
}

.midrap2 h1 {
    font-size: 32px;
    font-family: sans-serif;
    font-weight: normal;
    margin-bottom: 20px; /* Add some margin below the heading */
}

/* first row2 */
.shop-section2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Add some gap between items */
}

.box2 {
    background-color: black;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    width: 20%; /* Adjust the width to fit more boxes per row */
    max-width: 200px; /* Optional: max width for boxes */
}

.box2:hover {
    transform: scale(1.05);
}

.product-img2 {
    height: 22vh;
    width: 22vh;
    transition: transform 0.3s;
    border-radius: 5%;
}

.box2:hover .product-img2 {
    transform: scale(1.1);
}

.product-info2 {
    position: relative;
    margin-top: 10px;
}

.product-name2 {
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 900;
    transition: transform 0.3s;
    display: inline-block;
    color: white;
    margin-top: 10%;
}

.box2:hover .product-name2 {
    transform: translateX(-30px);
}

.buy-now2 {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

.box2:hover .buy-now2 {
    display: inline-block;
}





















  
/* footer */
.foot{
    margin-top: 3%;
    width: 100%;
    background-color: black;
  }
  .footrap{
    width: 100%;
    margin: auto;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .top-section{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-bottom: 30px;
  }
  .lastimg p, .connect p{
    color: white;
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .connect ul{
    display: flex;
    list-style: none;
    padding: 20;
  }
  .connect ul li{
    margin-right: 50px;
        
  }
  .connect ul li a{
    color: white;
    font-size: 20px;
    text-decoration: none;
  }
  .bottom-section{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    width: 80%;
    gap: 20px;
  }
  .boxz ul{
    margin-top: 10px;
  }
  .boxz ul p{
    color: white;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .boxz ul a{
    display: block;
    font-size: 12px;
    margin-top: 10px;
    color: white;
    text-decoration: none;
  }
  .foot-panel2{
    margin-top: 20px;
    background-color: black;
    color: white;
    border-top: 1px solid white;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .copyright ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .copyright ul p{
    color: white;
    font-size: 12px;
    margin-right: 20px;
  }
  .copyright ul a{
    font-size: 12px;
    color: white;
    text-decoration: none;
  }
  