*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
.social {
  width: 100%;
  height: 8vh;
  background-color: rgb(35, 34, 34);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.socialrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-container {
  display: flex;
  align-items: center;
}

.name1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  white-space: nowrap;
}
.scroll-arrow {
  color: white;
  font-size: 12px;
  cursor: pointer;
  margin: 0 100px; /* Increase the margin to increase the distance from the text */
}



/* Navigation Bar Styling */
.navi {
  background-color: white !important;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* Container Flex Styling */
.container-fluid > .d-flex {
  padding: 0 20px;
}

/* User Icons Styling */
.user-icons {
  display: flex;
  gap: 20px;

}

.user-icons i {
  font-size: 20px;
  color: #000;
  cursor: pointer;
}

/* Logo Styling */
.navbar-brand img {
  width: 140px;
  margin-left: 50%;
}

/* Search Container Styling */
.search-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-container i {
  font-size: 20px;
  color: #000;
}

.search-input {
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  padding: 5px;
  width: 200px;
}

/* Navigation Links Styling */
.nav-item {
  margin-right: 20px; /* Adjust the value as needed */
}

.nav-link.name {
  position: relative;
  color: black;
  margin-bottom: 15px;
  font-size: 15px;
}

.nav-link.name::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px; /* Thickness of the underline */
  left: 0;
  bottom: -3px; /* Position of the underline below the text */
  background-color: black;
  transition: width 0.3s ease-in-out; /* Animation duration and easing */
}

.nav-link.name:hover::after {
  width: 100%; /* Full underline on hover */
}



/* Dropdown Menu Styling */
.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container-fluid > .d-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .search-container {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  
  .user-icons {
    margin-bottom: 10px;
  }
  
  .search-input {
    width: 100%;
    max-width: 300px;
  }
}


/* banner */
.ban{
  width: 100%;
  height: 55vh;
  background-image: url(./earindex1.webp);
  background-size: 100%;
  background-repeat: no-repeat;
}
.banrap{
  width: 100%;
  height: 55vh;
}

.banrap1{
  width: 50%;
  margin: auto;
  /* border: 2px solid white; */
  padding-top: 100px;
}









/* middle */
.mid3 {
  width: 100%;
  height: 85vh;
  background: white;
  position: relative;
}

.midrap3 {
  width: 100%;
  margin: auto;
  padding-top: 60px;
  text-align: center;
}

.midrap3 h1 {
  font-size: 32px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: normal;
}

/* shop-section3 */
.shop-section3 {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Ensures equal space between boxes */
  padding: 0 20px; /* Padding for consistent spacing at the start and end of the row */
}

/* row3 */
.row3 {
  display: flex;
  justify-content: space-between; /* Equal space between boxes */
  width: 100%;
  margin-bottom: 60px; /* Adjusted margin to create vertical spacing between rows */
}

.box3 {
  padding: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
  width: calc(25% - 40px); /* Adjusted width to fit 4 images with equal spacing */
  margin: 0 10px; /* Equal gap around each box */
  height: 50vh;
  box-sizing: border-box;
}

.box3:hover {
  transform: scale(1.05);
}

.product-img3 {
  height: 38vh;
  width: 100%;
  transition: transform 0.3s;
}


.product-info3 {
  position: relative;
  margin-top: 20px;
}

.product-info3 h1 {
  margin-top: 10px;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: bold;
  color: black;
}

.product-name3 {
  font-size: 12px;
  font-family: sans-serif;
  font-weight: lighter;
  color: black;
}

.product-info3 p {
  margin: 0;
  color: black;
  font-size: 12px;
}

/* Hover effect and bestseller tag */
.img-wrapper {
  position: relative;
  height: 38vh;
  width: 100%;
}

.product-img3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 115%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}

.default-img {
  opacity: 1;
}

.hover-img {
  opacity: 0;
}

.box3:hover .default-img {
  opacity: 0;
}

.box3:hover .hover-img {
  opacity: 1;
}

.bestseller {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: bisque;
  color: black;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
}















.info-section {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  font-family: 'Times New Roman', Times, serif;
  color: black; /* Ensure the text is visible */
}

.toggle-header {
  margin-top: 200%;
  display:flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight:600;
  font-size: 15px;
  margin-bottom: 10px;
  color: black; /* Ensure the header text is visible */
}

.toggle-content {
  display: none; /* Initially hidden */
  font-size: 16px;
  color: black;
  line-height: 1.6;
}

.toggle-symbol {
  font-size: 24px;
  font-weight: bold;
}



 
/* footer */
.foot{
  
  width: 100%;
  background-color: rgb(255, 255, 240);
}
.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:black;
  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: black;
  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: black;
  font-size: 15px;
  margin-bottom: 10px;
}
.boxz ul a{
  display: block;
  font-size: 12px;
  margin-top: 10px;
  color: black;
  text-decoration: none;
}
.foot-panel2{
  margin-top: 20px;
  background-color:  rgb(255, 255, 240);
  color: black;
  border-top: 1px solid black;
  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: black;
  font-size: 12px;
  margin-right: 20px;
}
.copyright ul a{
  font-size: 12px;
  color: black;
  text-decoration: none;
}
