.frame {
  display: flex;
  flex-direction: column;   /* stack children vertically */
  align-items: center;      /* center all children horizontally */
  width: 100%;              /* full screen width */
  max-width: 1440px;        /* optional: limit max width on large screens */
  padding: 8px 16px;        /* add horizontal padding for small screens */
  margin: 0 auto;           /* center frame in viewport */
  position: relative;
  background-color: #ffffff;
  box-sizing: border-box;   /* include padding in width calculations */
}

/* Ensure all direct children scale properly */
.frame > div {
  width: 100%;              /* full width of frame */
  box-sizing: border-box;
}

.frame .div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 20px auto;          /* optional max width for large screens */
  min-width: 320px;             /* prevent it from being too narrow on mobile */
  height: auto;                 /* let height grow with content */
  align-items: center;
  justify-content: space-between;
  gap: 150px;                   /* spacing between child elements */
  padding: 10px 10px;           /* horizontal padding for small screens */
  position: relative;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  box-sizing: border-box;       /* include padding in width calculation */
  border-radius: 12px;  
}

/* Adjust gap and padding for smaller screens */
@media (max-width: 768px) {
  .frame .div {
    gap: 100px;                 /* reduce spacing for tablets */
    padding: 15px 12px;
  }
}

@media (max-width: 480px) {
  .frame .div {
    gap: 50px;                  /* reduce spacing for mobile */
    padding: 10px 8px;
  }
}

.frame .div-2 {
  display: flex;
  width: 100%;
  max-width: 1364px;
  height: auto;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  position: relative;
  border-radius: 12px;
  box-sizing: border-box;
}

/* Logo control */
.frame .WEBSITE-ICON-LOGO {
  height: 40px;
  width: auto;
}

/* Push hamburger to the far right */
.frame .hamburger {
  margin-left: auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .frame .div-2 {
    padding: 8px 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .frame .div-2 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .frame .div-2 {
    padding: 4px 6px;
  }
}

.frame .WEBSITE-ICON-LOGO {
  position: relative;
  width: 64px;
  height: 64px;
  margin-top: -6.50px;
  margin-bottom: -6.50px;
  aspect-ratio: 1;
  object-fit: cover;
}

.frame .div-3 {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 40px;
}

.frame .boraland-menus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -6.50px;
  margin-bottom: -6.50px;
  border-radius: 48px;
}

.frame .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.frame .frame-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -2.50px;
  margin-bottom: -2.50px;
}

.frame .div-4 {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-radius: 32px;
}

.frame .search-box {
  display: inline-flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -6.00px;
  margin-bottom: -6.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #f3dc8e;
  border-radius: 15px;
  border: 1px solid;
  border-color: transparent;
  box-shadow: -4px 4px 8px #f3dc8e5c;
}

.frame .text-wrapper-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2bfc;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.frame .path {
  position: relative;
  width: 8.53px;
  height: 10.2px;
}

.frame .div-5 {
  display: flex;
  flex-direction: column;
  width: 90%;               /* flexible width instead of fixed 1169px */
  max-width: 1169px;        /* optional max width for large screens */
  align-items: center;
  gap: 24px;                /* spacing between child elements */
  position: relative;
  flex: 0 1 auto;           /* allow shrinking if needed */
  box-sizing: border-box;   /* include padding in width calculation */
}

/* Tablets */
@media (max-width: 768px) {
  .frame .div-5 {
    width: 95%;             /* take more horizontal space */
    gap: 20px;              /* reduce spacing slightly */
    padding: 0 12px;        /* optional padding */
  }
}

/* Mobile */
@media (max-width: 480px) {
  .frame .div-5 {
    width: 100%;            /* full width on small screens */
    gap: 16px;              /* smaller spacing for mobile */
    padding: 0 8px;         /* prevent content from touching edges */
  }
}

.frame .div-6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.frame .text-wrapper-3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 96px;
  text-align: center;
  letter-spacing: -8.00px;
  line-height: 96px;
  white-space: nowrap;
}

.frame .text-wrapper-4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.64;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 96px;
  text-align: center;
  letter-spacing: -8.00px;
  line-height: 96px;
  white-space: nowrap;
}

.frame .div-7 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 0px;
  position: relative;
  flex: 0 0 auto;
}

.frame .p {
  position: relative;
  width: 849px;
  margin-top: -1.00px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.40px;
  line-height: 18px;
}

.frame .line {
  position: relative;
  width: 544px;
  height: 1px;
  margin-bottom: -1.00px;
  object-fit: cover;
}

.frame .div-8 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 48px 171px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-9 {
  display: flex;
  flex-direction: column;
  width: 521px;
  height: 793px;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  position: relative;
}

.frame .div-10 {
  display: flex;
  gap: 40px;
  align-self: stretch;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.frame .div-11 {
  display: inline-flex;
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.frame .text-wrapper-5 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--boraland-geist-40-m-fl-font-family);
  font-weight: var(--boraland-geist-40-m-fl-font-weight);
  color: #2b2b2b;
  font-size: var(--boraland-geist-40-m-fl-font-size);
  letter-spacing: var(--boraland-geist-40-m-fl-letter-spacing);
  line-height: var(--boraland-geist-40-m-fl-line-height);
  white-space: nowrap;
  font-style: var(--boraland-geist-40-m-fl-font-style);
}

.frame .div-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-12 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;               /* space between form sections */
  position: relative;
  width: 100%;             /* full width of container */
  align-self: stretch;
  flex: 0 1 auto;          /* allow shrinking on small screens */
  box-sizing: border-box;  /* include padding in width calculations */
}

/* Tablets: reduce gap slightly */
@media (max-width: 768px) {
  .frame .div-12 {
    gap: 16px;
  }
}

/* Mobile: further reduce gap for compact layout */
@media (max-width: 480px) {
  .frame .div-12 {
    gap: 12px;
  }
}

.frame .div-13 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;               /* space between label and input */
  position: relative;
  width: 100%;             /* full width of parent container */
  align-self: stretch;
  flex: 0 1 auto;          /* allow shrinking on smaller screens */
  box-sizing: border-box;  /* include padding in width calculations */
}

/* Tablets: slightly smaller gap */
@media (max-width: 768px) {
  .frame .div-13 {
    gap: 8px;
  }
}

/* Mobile: compact gap for small screens */
@media (max-width: 480px) {
  .frame .div-13 {
    gap: 6px;
  }
}

.frame .text-wrapper-6 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.frame .create {
  display: flex;
  flex-direction: column;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #ffffff3d;
  border-radius: 10px;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.frame .div-14 {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .text-wrapper-7 {
  font-size: 14px;
  line-height: 14px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  letter-spacing: 0;
  white-space: nowrap;
}

.frame .feedback-chat-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.frame .frame-wrapper-2 {
  display: flex;
  flex-direction: column;
  height: 115px;
  align-items: flex-start;
  gap: 32px;
  padding: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.frame .frame-wrapper-3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-15 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.frame .frame-wrapper-4 {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .message-chat-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.frame .message-chat {
  position: relative;
  width: 20px;
  height: 20px;
}

.frame .text-wrapper-8 {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  opacity: 0.48;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 14px;
  letter-spacing: -0.42px;
  line-height: 14px;
}

.frame .create-2 {
  display: flex;
  flex-direction: column;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #2b2b2b;
  border-radius: 12px;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.frame .text-wrapper-9 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.frame .div-16 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 44px 17px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #2b2b2b;
  border-radius: 15px;
  border: 1px solid;
  border-color: #00d8db;
}

.frame .engagement-begins {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Geist Mono-Medium", Helvetica;
  font-weight: 500;
  color: transparent;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
}

.frame .span {
  color: #f3dc8e;
}

.frame .text-wrapper-10 {
  color: #ffffff;
}

.frame .div-17 {
  display: flex;
  flex-direction: column;
  height: 793px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #2a2a2a0d;
  border-radius: 15px;
}

.frame .component-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
  border-radius: 14px;
}

.frame .component {
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 14px;
  background-image: url(./img/component-6.png);
  background-size: cover;
  background-position: 50% 50%;
}

.frame .rectangle {
  height: 100%;
}

.frame .div-18 {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 15px;
}

.frame .search-box-2 {
  display: flex;
  flex: 1;
  flex-grow: 1;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  background-color: #f3dc8e7a;
  border-color: #2c2c2c29;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border-radius: 10px;
  border: 1px solid;
}

.frame .img {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: -8.00px;
  margin-bottom: -6.00px;
}

.frame .text-wrapper-11 {
  position: relative;
  width: fit-content;
  margin-top: -12.50px;
  margin-bottom: -9.50px;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.frame .search-box-3 {
  display: flex;
  flex: 1;
  flex-grow: 1;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-right: -1.00px;
  background-color: #f3dc8e7a;
  border-color: #2c2c2c29;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border-radius: 10px;
  border: 1px solid;
}

.frame .at-sign {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: -8.00px;
  margin-bottom: -6.00px;
  margin-left: -1.25px;
}

.frame .frame-wrapper-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 96px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-19 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  padding: 56px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid;
  border-color: #2c2c2c29;
}

.frame .div-20 {
  display: flex;
  height: 286px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.frame .div-21 {
  display: flex;
  flex-direction: column;
  width: 421px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
}

.frame .frame-wrapper-6 {
  display: flex;
  flex-direction: column;
  max-width: 387px;
  align-items: flex-start;
  gap: 31px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-22 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-23 {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.frame .BORALAND-LOGO-one {
  position: relative;
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
}

.frame .text-wrapper-12 {
  position: relative;
  width: fit-content;
  font-family: "Jost-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.frame .helping-businessmen {
  position: relative;
  align-self: stretch;
  font-family: "Poppins-Light", Helvetica;
  font-weight: 400;
  color: #3a3a3a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
}

.frame .text-wrapper-13 {
  font-weight: 300;
}

.frame .text-wrapper-14 {
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
}

.frame .div-24 {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-radius: 32px;
  border: 1px solid;
  border-color: #2c2c2c33;
  backdrop-filter: blur(6.5px) brightness(100%);
  -webkit-backdrop-filter: blur(6.5px) brightness(100%);
  background: linear-gradient(
    0deg,
    rgba(243, 220, 142, 0.16) 0%,
    rgba(243, 220, 142, 0.16) 100%
  );
}

.frame .div-25 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.frame .at-sign-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

.frame .text-wrapper-15 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Poppins-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.frame .div-wrapper-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  background-color: #2b2b2b;
  border-radius: 48px;
}

.frame .text-wrapper-16 {
  position: relative;
  width: fit-content;
  font-family: "Plus Jakarta Sans-SemiBold", Helvetica;
  font-weight: 600;
  color: #f3dc8e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.frame .div-26 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.frame .div-27 {
  display: inline-flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.frame .div-28 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.frame .text-wrapper-17 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Poppins-Bold", Helvetica;
  font-weight: 700;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.frame .div-29 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.frame .text-wrapper-18 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
}

.frame .text-wrapper-19 {
  position: relative;
  align-self: stretch;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
}

.frame .text-wrapper-20 {
  position: relative;
  width: fit-content;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.frame .text-wrapper-21 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Poppins-Bold", Helvetica;
  font-weight: 700;
  color: #2b2b2b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.frame .div-30 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.frame .search-box-4 {
  display: inline-flex;
  margin-top: -1.00px;
  margin-left: -1.00px;
  border-color: transparent;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border-radius: 10px;
  border: 1px solid;
}

.frame .search-box-5 {
  display: inline-flex;
  margin-left: -1.00px;
  margin-right: -1.00px;
  border-color: transparent;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border-radius: 10px;
  border: 1px solid;
}

.frame .search-box-6 {
  display: inline-flex;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border-color: transparent;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  border-radius: 10px;
  border: 1px solid;
}

.frame .div-31 {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  border-radius: 8px;
}

.frame .vector {
  position: relative;
  width: 32px;
  height: 32px;
}

.frame .text-wrapper-22 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.48px;
  line-height: normal;
}

.frame .vector-2 {
  position: relative;
  width: 31px;
  height: 30px;
}

.frame .div-32 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .copyright {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.frame .text-wrapper-23 {
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 24px;
}

.frame .div-wrapper-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.frame .text-wrapper-24 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Manrope-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 17.6px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .frame .frame-wrapper-5 {
    padding: 32px 16px;
  }

  .frame .div-19 {
    padding: 24px;
    gap: 32px;
  }

  .frame .div-20 {
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    gap: 32px;
  }

  .frame .div-21 {
    width: 100%;
    max-width: 421px;
    justify-content: flex-start;
    gap: 24px;
    align-self: flex-start;
  }

  .frame .div-24 {
    flex-direction: column;
    height: auto;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .frame .div-26 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
  }

  .frame .div-27 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .frame .div-30 {
    display: flex;
    width: 100%;
  }

  .frame .div-32 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #2c2c2c29;
  }

  .frame .div-wrapper-2 {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  .frame .frame-wrapper-5 {
    padding: 24px 12px;
  }

  .frame .div-19 {
    padding: 16px;
  }
}
/* Inject original CSS code here */

.frame .text-wrapper-7 {
  font-size: 14px;
  line-height: 14px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: -1.00px;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  letter-spacing: 0;
  white-space: normal;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.frame .text-wrapper-7::placeholder {
  color: #2b2b2b;
  opacity: 1;
}

.frame .text-wrapper-8 {
  position: relative;
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  opacity: 0.48;
  font-family: "Roboto-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 14px;
  letter-spacing: -0.42px;
  line-height: 14px;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  resize: vertical;
  min-height: 60px;
}

.frame .text-wrapper-8::placeholder {
  color: #2b2b2b;
  opacity: 0.48;
}

.frame .text-wrapper-15 {
  position: relative;
  width: 100%;
  margin-top: -1.00px;
  font-family: "Poppins-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.frame .text-wrapper-15::placeholder {
  color: #2b2b2b;
  opacity: 1;
}

.frame .create-2 {
  display: flex;
  flex-direction: column;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #2b2b2b;
  border-radius: 12px;
  border: 1px solid;
  border-color: #2c2c2c29;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.frame .create-2:hover {
  background-color: #3b3b3b;
}

.frame .create-2:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .div-wrapper-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  background-color: #2b2b2b;
  border-radius: 48px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.frame .div-wrapper-2:hover {
  background-color: #3b3b3b;
}

.frame .div-wrapper-2:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .search-box {
  display: inline-flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -6.00px;
  margin-bottom: -6.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #f3dc8e;
  border-radius: 15px;
  border: 1px solid;
  border-color: transparent;
  box-shadow: -4px 4px 8px #f3dc8e5c;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.frame .search-box:hover {
  background-color: #f0d67a;
  box-shadow: -4px 4px 12px #f3dc8e80;
}

.frame .search-box:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .boraland-menus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -6.50px;
  margin-bottom: -6.50px;
  border-radius: 48px;
  list-style: none;
}

.frame .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto-Medium", Helvetica;
  font-weight: 500;
  color: #2b2b2b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s ease;
}

.frame .text-wrapper:hover {
  color: #000000;
}

.frame .text-wrapper:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .div-3 {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 40px;
  list-style: none;
  margin: 0;
}

.frame .search-box-2,
.frame .search-box-3 {
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.frame .search-box-2:hover,
.frame .search-box-3:hover {
  background-color: #f0d67a;
}

.frame .search-box-2:focus,
.frame .search-box-3:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .text-wrapper-18,
.frame .text-wrapper-19,
.frame .text-wrapper-20,
.frame .text-wrapper-24 {
  text-decoration: none;
  transition: color 0.3s ease;
}

.frame .text-wrapper-18:hover,
.frame .text-wrapper-19:hover,
.frame .text-wrapper-20:hover,
.frame .text-wrapper-24:hover {
  color: #000000;
}

.frame .text-wrapper-18:focus,
.frame .text-wrapper-19:focus,
.frame .text-wrapper-20:focus,
.frame .text-wrapper-24:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .div-29 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.frame .div-29 li {
  width: 100%;
}

.frame .div-25 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.frame .div-25:hover {
  opacity: 0.8;
}

.frame .div-25:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .search-box-4,
.frame .search-box-5 {
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.frame .search-box-4:hover,
.frame .search-box-5:hover {
  background-color: #f5f5f5;
}

.frame .search-box-4:focus,
.frame .search-box-5:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.frame .div-24 {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-radius: 32px;
  border: 1px solid;
  border-color: #2c2c2c33;
  backdrop-filter: blur(6.5px) brightness(100%);
  -webkit-backdrop-filter: blur(6.5px) brightness(100%);
  background: linear-gradient(
    0deg,
    rgba(243, 220, 142, 0.16) 0%,
    rgba(243, 220, 142, 0.16) 100%
  );
}

/* ===================== */
/* DEFAULT (DESKTOP) */
/* ===================== */

/* Show desktop menu */
.div-3 {
  display: flex;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Hide mobile menu on desktop */
.mobile-menu {
  display: none;
}


/* ===================== */
/* MOBILE (≤768px) */
/* ===================== */

@media (max-width: 768px) {

  /* Hide desktop menu */
  .div-3 {
    display: none !important;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    cursor: pointer;
    right: 0;
  }

  /* Hamburger lines */
  .hamburger span {
    display: block;
    height: 3px;
    background-color: #2b2b2b;
    border-radius: 2px;
  }

  /* Mobile menu (hidden by default) */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: #f9f9f6;
    padding: 16px;
    border-top: 1px solid #dddddd;
    z-index: 1000;
  }

  /* Show mobile menu when active */
  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu .menu-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu .menu-top a{
  text-decoration: none;
}
}
