/* Body and general styling */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../images/back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.loader-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url('images/back.jpg');
  background-size: cover;
  background-position:center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


    .loader-logo {
      width: 100px; /* Adjust the size of the logo as needed */
      height: auto;
      border-radius: 50%;

    }

    .loading-dots {
      margin-top: 20px;
      display: flex;
      align-items: center;
    }

    .loading-dot {
      width: 10px;
      height: 10px;
      background-color: green; /* Color of the loading dots */
      border-radius: 50%;
      margin: 0 5px;
      animation: loading-animation 0.8s infinite ease-in-out;
    }
    @media (max-width: 768px) { 
      .loader-container {
  position: fixed;
  width: 100%;
  height: 100%;
 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
/* Adjust breakpoint as needed */
      .loader-logo {
        margin-top: 0px;


    }
}
    @keyframes loading-animation {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.5);
      }
      100% {
        transform: scale(1);
      }
    }

/* Header styling */
.header {
  width: 100%;
  height: 8vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.left-icons {
  display: flex;
}

.left-icons .home-icon {
  margin-right: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(67 184 45);
  text-decoration: none;
  align-items: center;
  box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

.home-icon:hover {
  background-color: rgb(218, 218, 75);
}

.left-icons .home-icon a {
  color: #fff;
  cursor: pointer;
  /* width: 27px;
  height: 27px; */
}

.home-icon a {
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-icons {
  display: none;
  position: absolute;
  top: 80%;
  padding-right: 100px;
  transform: translateX(-50%);
  border-radius: 5px;
  padding: 10px;
  z-index: 999;
}

.social-icons.show {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
}

.social-icons a {
  display: flex;
  margin-bottom: 5px;
  text-decoration: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-content: center;
  align-items: center;

  svg {
    width: 16px;
    height: 16px;
  }
}

.social-icons i {
  color: white;
  /* width: 27px;
  height: 27px; */
  margin: 5px;
}

.right-icon {
  display: flex;
  align-items: center;
  margin-right: 50px;
}

/* Updated CSS for WhatsApp icons */
.right-icon {
  display: flex;
  align-items: center;
  margin-right: 50px;
  position: relative; /* Added to allow absolute positioning of child elements */
}

.right-icon a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(67 184 45);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  box-shadow: 2px 0px 10px rgb(119, 112, 105);
  color: #fff;
  text-decoration: none;
}

.right-icon a:hover {
  background-color: rgb(218, 218, 75);
}

.whatsapp-icons {
  display: none;
  flex-direction: column;
  align-items: center; /* Center align the icons */
  position: absolute; /* Positioning relative to the parent */
  top: 35px; /* Position below the delivery icon */
  left: 48px; /* Align to the right */
  z-index: 1;
}

/* Show WhatsApp icons when toggled */
.whatsapp-icons.show {
  display: flex;
}

.whatsapp-icons a {
  margin: 5px 0; /* Space between individual WhatsApp icons */
}

/* Video section styling */
.video-section {
  padding: 30px 0;
  text-align: center;
  position: relative;
}

.hexagon-container {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.hexagon {
  position: relative;
  width: 400px;
  height: 350.82px;
  margin: 0 30px;
  overflow: hidden;
}

.hexagon video {
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  object-fit: cover;
  clip-path: polygon(33.33% 0%, 66.66% 0%, 100% 50%, 66.66% 100%, 33.33% 100%, 0% 50%);
  box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

.logo-circle {
  position: absolute;
  bottom: -0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background-image: url("../images/logo3.png");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

/* Category section styling */
.category-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.category {
  text-align: center;
  margin: 0 10px;
}

.category p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: rgb(119, 112, 105);
}

.category .icon-link {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

.category .icon-link .material-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgb(164, 167, 13);
  transform: translate(-50%, -50%);
  font-size: 30px;
  transition: transform 0.3s ease;
}

.category .icon-link:hover {
  background-color: rgb(218, 218, 75);
}

@media screen and (max-width: 1027px) {
  .hexagon-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 90px;
    position: relative;
  }

  .hexagon {
    width: 350px;
    height: 200.56px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
  }

  .hexagon:nth-child(2) {
    margin-top: -100px;
    margin-left: -30px;
  }

  .category-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    flex: 0 0 25.33%;
  }

  .category p {
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  }

  .category .icon-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 0px 10px rgb(119, 112, 105);
  }

  .category .icon-link .material-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgb(164, 167, 13);
    transform: translate(-50%, -50%);
    font-size: 30px;
    transition: transform 0.3s ease;
  }
}

/* New Section Styling */
.extra-icons-section {
  display: flex;
  justify-content: space-between; /* Ensure icons are spaced at the extreme left and right */
  margin-top: 30px;
  padding: 0 30px; /* Padding added */
}

.extra-icon {
  text-align: center;
}

.extra-icon p {
  margin-top: 5px; /* Adjusted margin */
  font-size: 15px; /* Decreased font size */
  font-weight: bold;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: rgb(116, 112, 112);
}

.extra-icon .icon-link {
  display: inline-block;
  width: 60px; /* Decreased width */
  height: 60px; /* Decreased height */
  border-radius: 50%;
  background-image: linear-gradient(45deg, rgb(104, 228, 82), rgb(255, 255, 0)); /* Less organized pattern with light green and yellow */

  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

.extra-icon .icon-link .material-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  color: whitesmoke;
  transform: translate(-50%, -50%);
  font-size: 24px; /* Decreased font size */
  transition: transform 0.3s ease;
}

.extra-icon .icon-link:hover {
  background-color: rgb(218, 218, 75);
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(45deg, rgb(104, 228, 82), rgb(255, 255, 0)); /* Less organized pattern with light green and yellow */

  padding: 20px;
  border-radius: 10px;
  text-align: center;
  animation: popup-animation 0.5s ease forwards;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
}

.popup-content h2 {
  margin-bottom: 10px;
  color: #333; /* Dark text color */
}

.popup-content p {
  margin-bottom: 20px;
  color: #666; /* Medium-dark text color */
}

.popup-content button {
  padding: 10px 20px;
  background-color: #4CAF50; /* Green button color */
  color: #fff; /* White text color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup-content button:hover {
  background-color: #45a049; /* Darker green on hover */
}

@keyframes popup-animation {
  from {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
