body {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/Picture_one.jpg') no-repeat;
  background-size: cover;
}

.profile {
  bottom: 100px;
}

.carousel {
  height: 100vh;
  perspective: 250px;
  align-items: center;
  justify-content: center;
  padding: 50px, 50px, 50px, 50px;
  z-index: 1;
}

.carousel .carousel-item {
  width: 450px;
}

p {
  cursor: pointer;
  font-size: 50px;
  color: darkslategray;
  font-weight: 500;
}

.cardone,
.cardtwo,
.cardthree,
.cardfour,
.cardfive,
.cardsix,
.cardseven,
.cardeight,
.cardnine,
.cardten {
  position: relative;
  margin: 0.5rem 0 1rem 0;
  width: 450px;
  height: 379px;
  color: #262626;
  border-radius: 25px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  display: flex;
}

.cardone {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/shopping.jpg') no-repeat;
  background-size: cover;
}

.cardtwo,
.cardthree {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/Business.jpg') no-repeat;
  background-size: cover;
}

.cardfour {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/Starboard.jpg') no-repeat;
  background-size: cover;
}

.cardfive {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/newsletter.jpg') no-repeat;
  background-size: cover;
}

.cardsix {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/Settings.jpg') no-repeat;
  background-size: cover;
}

.cardseven {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/contracts.jpg') no-repeat;
  background-size: cover;
}

.cardeight {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/personal_profile_suited.jpeg') no-repeat;
  background-size: cover;
}

.cardnine {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/News.jpg') no-repeat;
  background-size: cover;
}

.cardten {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #aee6e2), url('../images/Jobs.jpeg') no-repeat;
  background-size: cover;
}

/* General styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
}


.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Form Styles */
.form-container {
  text-align: center;
}

.form-switch {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.form-switch button {
  padding: 10px;
  margin: 0 5px;
  cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
}

button[type="submit"] {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}









/* Chatbot styles */
.chatbot-wrapper {
  position: fixed;
  bottom: 20%;
  right: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.chatbot-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid grey;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatbot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chatbot-circle.grabbing {
  cursor: grabbing; /* Cursor for dragging */
}

.chatbot-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  transform: translate(-50%, -50%);
}

.chatbot-popup.active {
  width: 300px;
  height: 300px;
  top: 50px;
  left: 50px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}


#shopby-content{
	  max-width: 260px;
}
#shopby-content .form-switch{
	margin-bottom:0px !important;
}




