/* 1. Use a more-intuitive box-sizing model */
:root {
  --main-bg-color: #b1c2b2b0;
  --main-bg-color-not-transparent: #b1c2b2;
  --text-black: #111111;
}
::-webkit-scrollbar {
  display: none;
}
@font-face {
  font-family: "GT-America-Condensed";
  font-style: normal;
  font-weight: 300;
  src: url("assets/GT-America-Condensed-Light.otf") format("OpenType");
}

@font-face {
  font-family: "GT-America-Condensed";
  font-style: normal;
  font-weight: 700;
  src: url("assets/GT-America-Condensed-Bold.otf") format("OpenType");
}

@font-face {
  font-family: "GT-America-Extended-Light";
  font-style: normal;
  font-weight: 300;
  src: url("assets/GT-America-Extended-Light.otf") format("OpenType");
}

@font-face {
  font-family: "GT-America-Extended-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("assets/GT-America-Expanded-Bold.otf") format("OpenType");
}

@font-face {
  font-family: "GT-America-Standard";
  font-style: normal;
  font-weight: 100;
  src: url("assets/GT-America-Standard-Thin.otf") format("OpenType");
}

@font-face {
  font-family: "GT-America-Standard";
  font-style: normal;
  font-weight: 300;
  src: url("assets/GT-America-Standard-Light.otf") format("OpenType");
}

@font-face {
  font-family: "GT-America-Standard";
  font-style: normal;
  font-weight: 700;
  src: url("assets/GT-America-Standard-Bold.otf") format("OpenType");
}
.scroll-nav li {
  font-weight: 300;
  font-size: 16px;
  color: #333;
  list-style: none;
  margin: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.322);
  width: 250px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.scroll-nav li:hover {
  color: #f5c0c6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  font-family: "GT-America-Extended-Bold", sans-serif;
  line-height: 1.5;
  /* 4. Improve text rendering */
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x: hidden;
}

main {
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x: hidden;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-bg-color-not-transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.logo-container {
  animation: pulse 2s infinite;
}

.loading-logo {
  width: 200px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Hide loading screen when page is loaded */
body.loaded #loading-screen {
  opacity: 0;
  pointer-events: none;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

h1 {
  font-size: 20px;
  color: white;
  font-weight: 300;
  line-height: 30px;
  text-align: justify;
  text-transform: uppercase;
}

/* Wrapper and Inner Wrapper */
#wrapper {
  display: table;
  position: absolute;
  bottom: 50px; /* Move up slightly */
  width: 100%;
  height: auto;
}

#wrapper-inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

#scroll-down {
  display: block;
  position: relative;
  text-align: center;
}

/* Vertical Line Animation */
#scroll-down::before {
  animation: lineFall 2.5s ease-in-out infinite;
  position: absolute;
  top: -45px; /* Start from the top */
  left: 50%;
  margin-left: -1px; /* Centered */
  width: 2px;
  height: 50px;
  background: #f5c0c6;
  content: "";
}

/* Static Arrow */
.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  position: relative;
}

.arrow-down:after {
  content: "";
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #f5c0c6;
  border-right: 2px solid #f5c0c6;
  transform: rotate(135deg);
  position: relative;
}

/* Text Below Arrow */
#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #f5c0c6;
  font-family: Helvetica Neue, Helvetica, Arial;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

/* Keyframes for Vertical Line */
@keyframes lineFall {
  0% {
    transform: scaleY(0); /* Line not visible */
    transform-origin: top; /* Start from the top */
  }
  50% {
    transform: scaleY(1); /* Line grows down */
    transform-origin: top;
  }
  100% {
    transform: scaleY(0); /* Line disappears */
    transform-origin: bottom; /* Reset to top for next loop */
  }
}

/*
    9. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

#video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #5a5a5a;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

#main_video {
  position: fixed;
  object-fit: cover;
  height: 100vh;
  width: 100vw;
  z-index: 0;
}

section,
footer {
  height: 100vh;
  width: 100%;
  z-index: 1;
  display: block;
  position: relative;
  scroll-snap-align: center;
}

#logo_img {
  width: 70%;
}

/* #about-jv {
  background-image: url(assets/JV-PORTRAIT..jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
#about-dp {
  background-image: url(assets/dp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
} */
#about-jv img {
  height: 100vh;
  width: 40%;
}

.scroll-nav {
  display: inline-flex;
  position: fixed;
  /*  left: 24px; */
  /*  top: 18px; */
  z-index: 50;
  /*   padding: 10px; */
  margin: 0;
  /*     background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); 
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  */
  list-style: none;
  width: fit-content;
  flex-wrap: wrap;
}

.scroll-nav img:hover {
  filter: invert();
  cursor: pointer;
}

.tooltip img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

#call-to-action {
  position: absolute;
  /* text-align: center; */
  top: 185px;
  left: 0px;
  background-color: #f5c0c6;
  /*  padding: 30px; */
  color: #676765;
  position: relative;
}
.icon-container {
  position: absolute;
  bottom: 7px;
  right: 138px;
  color: #ff000094;
}

#call-to-action h3 {
  font-size: 36px;
  font-weight: bold;
  /* margin-bottom: 10px; */
}

#call-to-action p {
  margin-bottom: 15px;
}

#wb-button {
  border: none;
  background-color: #fff;
  /* Contrast button background */
  color: #676765;
  font-size: 16px;
  cursor: pointer;
  padding: 0px !important;
}

.scroll-nav li {
  position: relative;
  margin: 5px;
}

.scroll-dot {
  width: 12px;
  height: 12px;
  border: 2px solid #666;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.scroll-dot:hover,
.active .scroll-dot {
  background-color: #666;
}

#logo_div {
  position: absolute;
  right: 0;
  width: 25%;
  height: 100%;
  background-color: rgba(177, 194, 178, 0.69);
  /* Slight transparency */
  display: flex;
  align-items: end;
  justify-content: center;
}

#intro_content,
#about_honey_content,
#elements_content {
  width: 64%;
}

#logo_img {
  max-width: 40%;
  height: auto;
}

#intro_div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}
#intro_content {
  background-color: rgba(177, 194, 178, 0.69);
  padding: 3%;
  margin-bottom: 5%;
}
/* content-left */
#about_honey_div,
#elements_div {
  position: absolute;
  left: 0;
  top: 25%;
  width: 78%;
  height: 36%;
  background-color: rgba(177, 194, 178, 0.69);
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 100px;
}

h1 {
  font-size: 20px;
  color: white;
  font-weight: 300;
  line-height: 30px;
  text-align: justify;
}

/* services */
/* Services Section Layout */
#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
  padding: 20px;
  position: relative;
}

/* Wrapper for sub-buttons and text */
#content-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 70%;
  gap: 20px;
  align-items: flex-start;
}

/* Sub-buttons Section */

.sub-button-group {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.sub-button-group.active {
  display: flex;
}

.sub-button {
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background 0.3s ease;
  max-width: 333px;
  min-width: 333px;
  border: none;
  color: gray;
  cursor: default;
}

/* .sub-button:hover {
  background-color: rgba(200, 200, 200, 0.9);
} */

/* Text Display Section */
.text-display {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.text {
  font-size: 16px;
  color: #333;
}

.text {
  display: none;
}

.text.visible {
  display: block;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.sub-button-group {
  display: none;
}

.sub-button-group.active {
  display: flex;
}
.description-holder.visible {
  display: flex !important;
}

.text.visible {
  display: block;
  margin-left: 40px;
}

/* Main Buttons Section */
#service-buttons {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 20px;
}

.service-button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  background: #cdcdcd65;
  border: 1px solid #666;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 200px;
  border: none;
  color: #fff;
  flex: 1 1 100%;
}

/* Hide the bg-color container by default */
#bg-color {
  display: none;
  background-color: var(--main-bg-color);
  padding: 40px;
}

/* Show when active */
#bg-color.active {
  display: flex;
  max-width: 60%;
}

.service-button:hover {
  background: rgba(200, 200, 200, 0.9);
  transform: scale(1.05);
}

/* Hidden Elements */
.hidden {
  display: none !important;
}

/* Active state for main buttons */
.service-button.active {
  background-color: #b1c2b2b0;
  color: #fff;
  transform: scale(1.05);
}

/* Active state for sub-buttons */
/* .sub-button.active {
  background-color: #b1c2b2b0;
  color: #fff;
} */

@media (max-width: 992px) {
  #content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  #wrapper {
    bottom: 0px;
    top: 200px;
  }
  #bg-color.active {
    display: block;
  }

  .sub-buttons,
  .text-display {
    width: 100%;
  }

  #service-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .service-button {
    flex: 1 1 45%;
  }
}
#service-buttons button {
  min-width: 206px;
}
/* For Small Screens (Phones) */
@media (max-width: 576px) {
  #content-wrapper {
    flex-direction: column;
    align-items: stretch;
    /* Ensure elements stretch properly */
    gap: 20px;
  }

  .sub-buttons,
  .text-display {
    width: 100%;
    /* Full width for narrow screens */
  }

  #service-buttons {
    flex-direction: column;
    gap: 10px;
    /* Reduce gap for smaller screens */
  }

  .service-button {
    flex: 1 1 100%;
    /* Single button per row */
    max-width: none;
    /* Allow buttons to stretch */
    min-width: auto;
  }

  .sub-button {
    font-size: 14px;
    /* Reduce button font size for smaller screens */
    padding: 10px;
    /* Adjust padding */
    cursor: unset;
  }

  .text {
    font-size: 14px;
    /* Adjust text size */
  }
}

/* end services */

/* divison  */
#divisions {
  display: flex;
  /* Flexbox for vertical alignment */
  align-items: center;
  /* Vertically centers the content */
  height: 100vh;
  /* Ensures the section takes full viewport height */
}

#division-buttons-wrapper {
  position: relative;
  display: block;
  /* Ensures the buttons are stacked block elements */
  text-align: left;
  width: 30%;
  /* Aligns buttons to the left (if needed) */
}

#division-buttons-wrapper button {
  display: block;
  /* Makes sure buttons remain block elements */
  margin: 20px 0;
  /* Adds vertical spacing between buttons */
  border: none;
  /* Removes border */
  background: transparent;
  /* Transparent background */
  cursor: pointer;
  /* Pointer cursor on hover */
  position: relative;
  width: 100%;
}
#division-buttons-wrapper .active button img {
  opacity: 1;
}
#division-buttons-wrapper button img {
  max-width: 250px;
  /* Adjusts button image size */
  height: auto;
  float: right;
  /* Maintains aspect ratio */
  transition: transform 0.3s ease;
  opacity: 1;
  /* Smooth scaling effect on hover */
}
#honey-lution-holder {
  /* top: calc(0 - 30px); */
  top: -30px;
  transform: translateY(-100%);
}
#division-buttons-wrapper button:hover img {
  transform: scale(1.1);
  /* Slight zoom effect on hover */
}

#bg {
  background-color: #cdcdcd65;
  padding: 10px 20px;
  margin: 10px;
}

#division-text-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100vh;
  /* background-color: var(--main-bg-color); */
  /* Optional: Light background for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.description-holder {
  display: flex;
  position: absolute;
  right: 0;
  width: calc(90vw - 100%);
  background-color: var(--main-bg-color);
  left: calc(100% + 50px);
  top: calc(100% + 30px);
  padding-top: 10px;
}
.description-title {
  display: block;
  margin-right: 30px;
  margin-left: 30px;
  text-transform: lowercase;
  text-align: left;
}
.description-holder article {
}
.division-text {
  font-size: 10px;
  text-align: left;
  line-height: 15px;
  /* Hide all text sections initially */
}

.division-text.visible {
  display: block;
  /* Show the selected text section */
  padding: 0px 40px;
}
#ai-division-holder {
  top: -50%;
}
#division-buttons-wrapper #bg.active {
  background-color: #b1c2b2b0;
  transform: scale(1.05);
}

#division-p {
  color: white;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 15px;
  text-transform: uppercase;
}
#prod-flow-img {
  width: 100%;
  max-width: 600px !important;
  float: left !important;
}
#division-buttons-wrapper button::after {
  content: attr(data-hover-text);
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 21px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#division-buttons-wrapper button:hover::after {
  opacity: 1;
}

/* end division */

/* start about-jv */
/* About JV Section */
#about-jv {
  display: flex;
  /* Flexbox for side-by-side layout */
  height: 100vh;
  /* Full viewport height */
  width: 100%;
  /* Full width */
}

#about-jv img {
  width: 40%;
  /* Image takes 40% of the width */
  height: 100%;
  /* Full height */
  object-fit: cover;
  /* Maintain image aspect ratio */
}

.jv-bio {
  width: 40%;
  /* Text takes 60% of the width */
  height: 100%;
  /* Full height */
  background-color: #b1c2b2;
  /* Background color */
  padding: 20px;
  /* Add some padding for better readability */
  overflow-y: auto;
  /* Enable scrolling if the text overflows */
  position: absolute;
  left: 42%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.jv-bio p {
  font-size: 18px;
  /* Adjust font size */
  line-height: 1.6;
  /* Improve readability */
  color: #111111;
  /* Text color */
  text-align: justify;
  /* Justify the text */
}

#founder {
  text-align: center;
  padding: 50px 0px 90px 0px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}

#jv-img-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*start about-dp */
/* About DP Section */
#about-dp {
  display: flex;
  /* Flexbox for side-by-side layout */
  height: 100vh;
  /* Full viewport height */
  width: 100%;
  /* Full width */
}

#about-dp img {
  width: 40%;
  /* Image takes 40% of the width */
  height: 100%;
  /* Full height */
  object-fit: cover;
  /* Maintain image aspect ratio */
}

.dp-bio {
  margin: 8% 10% 0% 10%;
  /* Text takes 60% of the width */
  height: 100%;
  /* Full height */
  background-color: #b1c2b2;
  /* Background color */
  padding: 20px;
  /* Add some padding for better readability */
  overflow-y: auto;
  /* Enable scrolling if the text overflows */
  position: absolute;
  right: 32%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* end about-dp */

/* start contact-us */
#contact-us {
  display: flex;
  height: 100vh;
  width: 100%;
}

#contact-img {
  width: 60%;
  height: 100%;
}

#contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#contact-inputs {
  width: 40%;
  height: 100%;
  background-color: #b1c2b2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  align-items: center;
}

#contact-inputs h2 {
  font-family: "GT-America-Standard", sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}

#contact-inputs form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;

  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

textarea {
  resize: none;
}

button {
  align-self: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #676765;
  border: none;

  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
  #contact-us {
    flex-direction: column;
  }

  #contact-img {
    width: 100%;
    height: 40%;
  }

  #contact-inputs {
    width: 100%;
    height: 60%;
  }

  .form-row {
    flex-direction: column;
  }
}

/* and contact-us */

/* soc media start */
#soc-media {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-bg-color);
}

#soc-media a {
  text-decoration: none;
  color: #fff;
  font-size: 25px;
}

#honey-email {
  text-align: center;
}

/* end soc media */

#logo_div {
  padding-bottom: 110px;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); /* Move slightly down */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Return to the original position */
  }
}

#call-to-action {
  opacity: 0; /* Start hidden */
  transform: translateY(20px); /* Start slightly below its original position */
  transition: all 0.5s ease-out; /* Smooth transition */
}

/* When the animation is triggered */
#call-to-action.fade-in-up {
  animation: fadeInUp 1s ease-out forwards; /* Apply fade-in-up animation */
  /*   padding-right: 45px; */
  /*   padding-bottom: 30px; */
  width: 27%;
}
.honey-class {
  text-align: right;
  color: #ff000094;
}
/* Responsive Adjustments for DP */
@media (max-width: 992px) {
  #about-dp {
    flex-direction: column;
    /* Stack image and text vertically */
  }

  #soc-media a {
    font-size: 20px;
  }

  #about-dp img {
    width: 100%;
    /* Image takes full width */
    height: 40vh;
    /* Adjust height */
  }

  .dp-bio {
    width: 100%;
    /* Text takes full width */
    height: auto;
    /* Adjust height */
    padding: 15px;
    /* Reduce padding */
  }

  .dp-bio p {
    font-size: 16px;
    /* Reduce font size */
  }
}

@media (max-width: 576px) {
  .dp-bio p {
    font-size: 14px;
    /* Further reduce font size for smaller screens */
  }
}

#about-dp h4 {
  margin-top: 40px;
  font-size: 25px;
  text-align: center;
  color: #fff;
}

#about-dp h5 {
  font-size: 22px;
  padding: 10px 0px 50px 0px;
  text-align: center;
  color: #fff;
}

.dp-bio p {
  text-align: center;
}

/* and about-dp */

@media (max-width: 992px) {
  #about-jv {
    flex-direction: column;
  }

  #about-jv img {
    width: 100%;
    /* Image takes full width */
    height: 40vh;
    /* Adjust height */
  }

  .jv-bio {
    width: 40%;
    /* Text takes full width */
    height: auto;
    /* Adjust height */
    padding: 15px;
    /* Reduce padding */
  }

  .jv-bio p {
    font-size: 16px;
    /* Reduce font size */
  }
}

@media (max-width: 576px) {
  .jv-bio p {
    font-size: 14px;
    /* Further reduce font size for smaller screens */
  }
}

/* end about-jv */

/* Media query for responsiveness */
@media (max-width: 1200px) {
  #intro_div,
  #about_honey_div,
  #elements_div {
    width: 50%;
  }

  #division-buttons-wrapper button::after {
    display: none;
    /* Disable hover text on smaller screens */
  }

  h1 {
    font-size: 18px;
  }

  #call-to-action {
    left: 20px;
    bottom: 50px;
    padding: 20px;
    max-width: 350px;
  }

  #call-to-action h3 {
    font-size: 30px;
  }

  #call-to-action p {
    font-size: 16px;
  }

  #wb-button {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .scroll-nav {
    right: 10px;
  }

  #logo_div {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    height: 30vh;
    background-color: rgba(177, 194, 178, 0.69);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #logo_img {
    max-width: 70%;
    height: auto;
  }

  #intro_div,
  #about_honey_div,
  #elements_div {
    width: 100%;
    height: auto;
    padding: 20px;
    position: absolute;
    bottom: 0;
  }

  #intro_content,
  #about_honey_content,
  #elements_content {
    width: 90%;
  }

  h1 {
    font-size: 16px;
    line-height: 24px;
  }

  #call-to-action {
    left: 10px;
    bottom: 222px;
    padding: 15px;
    max-width: 300px;
  }

  #call-to-action h3 {
    font-size: 24px;
  }

  #call-to-action p {
    font-size: 14px;
  }

  #wb-button {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  #intro_div,
  #about_honey_div,
  #elements_div {
    width: 100%;
    height: auto;
    padding: 20px 30px;
  }

  h1 {
    font-size: 14px;
    line-height: 22px;
  }

  #call-to-action {
    left: 15%;
    bottom: 0px;
    padding: 10px;
    max-width: 90%;
    /* Take up most of the screen width */
    text-align: center;
    /* Center content */
  }

  #call-to-action h3 {
    font-size: 20px;
  }

  #call-to-action p {
    font-size: 12px;
  }

  #wb-button {
    font-size: 12px;
  }
}

/* Team Section Styling */
#team-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

#team-image-wrapper {
  /*  gap: 20px; */
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-evenly;
}

.team-image {
  position: relative;
  width: 25%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* .team-image:hover img {
  transform: scale(1.05);
} */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.team-image:hover .overlay {
  opacity: 1;
}

#bio-wrapper {
  position: absolute;
  display: none; /* Hidden initially */
  width: 100%;
  flex: 1;
}

.bio-content {
  width: 50%;
  visibility: hidden;
  background-color: #b1c2b2;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
  height: 100vh;
}

.bio-content.active {
  visibility: visible;
}

/*  */

#contact-inputs a {
  display: block;
  width: 100%;
  max-width: 365px;
  text-align: center;
  background-color: white;
  color: black;
  text-decoration: none;
  font-size: 16px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

#contact-inputs a:hover {
  background-color: #000;
  color: #fff;
}

#contact-inputs img {
  margin-top: 20px;
  width: 150px;
}

.service-button {
  display: flex;
  position: relative;
  text-align: left; /* Align text to the left */
  padding-top: 10px; /* Add some space from the top */
  padding-left: 20px; /* Add some space from the left */
}

.team-image img {
  width: 100%;
}

#bg-color {
  position: relative; /* Default position */
}

/* Financial button active */
#bg-color.financial-active {
  position: absolute;
  right: 0;
}

/* Market button active */
#bg-color.market-active {
  position: absolute;
  left: 0;
  bottom: 250px;
}

/* Location button active */
#bg-color.location-active {
  position: absolute;
  top: 100px;
  right: 0;
}

#cf {
  position: absolute;
  top: 55px;
}

#hotline {
  background-color: #f5c0c6 !important;
}
.text-display div {
  text-transform: uppercase;
}
#unidentified-event {
  color: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 0px;
  border-top: 4px solid #ffffff87;
}
