@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary_color: #2c5f2d;
  --background-color: #faf3e0;
  --text-color: #4a4a4a;
  --accent-color: #e4c988;
  --black-color: black;

  --primary-font: "Montserrat Alternates";
}

.main_container {
  min-height: 100vh;
  background-color: var(--background-color);
}
.hero_section {
  position: relative;
  will-change: transform;
  transform-origin: center center; 
}
.marquee_container {
  opacity: 3.5%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  z-index: 10;
}
.marquee_content {
  animation: none; 
  will-change: transform;
}
.marquee_container h1 {
  display: inline-block;
  margin-bottom: 15vh;
}

.product_image_hero {
  position: absolute;
  z-index: 100;
}
.product_image_hero img {
  filter: drop-shadow(0.7vw 1vw 1vw #000000);
  animation: none;
  margin-left: 15vw;
  will-change: transform;
}

.hero_contents {
  z-index: 999;
  position: relative;
  will-change: transform;
}

/* Enhance navbar links - only underline effect */
.links_holder h4 a {
  position: relative;
  transition: color 0.3s;
}

.links_holder h4 a::after {
  content: "";
  position: absolute;
  bottom: -0.5vh;
  left: 0;
  width: 0;
  height: 0.2vh;
  background-color: var(--primary_color);
  transition: width 0.3s ease;
}

.links_holder h4 a:hover::after {
  width: 100%;
}

/* Optimized custom button styles */
.custom-button {
  position: relative;
  display: inline-block;
  padding: 1.5vh 3vw;
  border-radius: 0.7vw;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  width: fit-content;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Primary variant */
.custom-button.primary {
  background-color: var(--primary_color);
  color: var(--background-color);
}

/* Secondary variant */
.custom-button.secondary {
  background-color: var(--accent-color);
  color: var(--text-color);
}

/* Blob effect container */
.custom-button .blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}

/* The actual blob */
.custom-button .blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.1vw;
  height: 0.1vw;
  background-color: var(--black-color);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform; 
}

.text_button{
    text-decoration: underline;
    font-size: 1.5vw;
    transition: 0.6s all ease-in-out;
}
.about_us_section{
    position: relative;
    overflow: hidden;
}
.about_us_section_holder{
    z-index: 10;
    position: absolute;
}
.about_us_images{
    position: absolute;
    z-index: 5;
}
.about_image{
    width: 10vw;
    height: 20vh;
    border-radius: 50%;
}
.about_image.first{
    position: relative;
    bottom: 20vh;
    right: 25vw;
    animation: move 5s ease-in-out infinite;
}
@keyframes move{
    0%{
        transform: translateY(0vh) translateX(0vw) rotate(0deg);
    }
    50%{
        transform: translateY(3vh) translateX(-1vw) rotate(-10deg);
    }
    100%{
        transform: translateY(0vh) translateX(0vw) rotate(0deg);
    }
}
.about_image.second{
    position: relative;
    top: 20vh;
    left: 20vw;
    animation: move2 5s ease-in-out infinite;
}
@keyframes move2{
    0%{
        transform: translateY(0vh) translateX(0vw) rotate(0deg);
    }
    50%{
        transform: translateY(-3vh) translateX(1vw) rotate(10deg);
    }
    100%{
        transform: translateY(0vh) translateX(0vw) rotate(0deg);
    }
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 1vh;
    grid-row-gap: 1vh;
}
.grid_block{
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}
.div1 { grid-area: 1 / 1 / 3 / 2; }
.div2 { grid-area: 3 / 1 / 5 / 2; }
.div3 { grid-area: 1 / 2 / 5 / 3; }
.div4 { grid-area: 1 / 3 / 2 / 4; }
.div5 { grid-area: 1 / 3 / 3 / 4; }
.div6 { grid-area: 3 / 3 / 5 / 4; }

.overlay_category{
  background-color: black;
  opacity: 70%;
  position: absolute;
  z-index: 2;
}
.grid_content{
  position: absolute;
  z-index: 5;
  padding: 2.5vh 0vw;
  padding-right: 0.5vw;
  padding-left: 2vw;
}
/* Grid block hover interactions */
.grid_block:hover {
    transform: scale(1.02);
}

.grid_block .overlay {
    transition: opacity 0.5s ease;
    opacity: 0.7;
}

.grid_block:hover .overlay {
    opacity: 0.4;
}

.grid_block .grid_content {
    transition: transform 0.5s ease, padding 0.5s ease;
}

.grid_block:hover .grid_content {
    transform: translateY(-1vh);
    padding-left: 2.5vw;
}

.grid_block h2, .grid_block h4 {
    position: relative;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.grid_block:hover h2 {
    transform: translateX(0.5vw);
    opacity: 1;
}

.grid_block:hover h4 {
    transform: translateX(0.8vw);
    opacity: 1;
    transition-delay: 0.05s;
}

/* Add subtle indicator for clickable areas */
.grid_block::after {
    content: "";
    position: absolute;
    bottom: 2vh;
    right: 2vw;
    width: 2vw;
    height: 2vw;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF3E0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17l9.2-9.2M17 17V7H7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translate(1vw, 1vh);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 10;
}

.grid_block:hover::after {
    opacity: 0.8;
    transform: translate(0, 0);
}
.touch-feedback {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}
.product_card{
    background-color: white;
}
.image_holder{
    width: 25vw;
    height: 40vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.product_content{
    padding: 2vh 1vw;
}
.product_category{
    background-color: var(--text-color);
    color: var(--background-color);
    padding: 0.2vh 0.5vw;
    border-radius: 0.7vw;
}
.costButton .custom-button{
    width: 100%;
}

/* Carousel Styles */
.carousel_wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product_carousel {
    display: flex;
    position: relative;
    will-change: transform;
}

.product_card {
    flex: 0 0 calc(33.333% - 1vw);
    margin-right: 1.5vw;
    transition: transform 0.3s ease;
}

.product_card.clone {
    /* No special styling needed, just for identification */
}

/* Navigation buttons */
.carousel_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background-color: var(--background-color);
    border: 0.1vw solid var(--primary_color);
    color: var(--primary_color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel_nav.prev_btn {
    left: 0;
}

.carousel_nav.next_btn {
    right: 0;
}

.carousel_nav:hover {
    background-color: var(--primary_color);
}

.carousel_nav:hover h3 {
    color: var(--background-color);
}

.carousel_nav h3 {
    margin: 0;
    color: var(--primary_color);
    transition: color 0.3s ease;
}

/* Process Section Styles */
.process_section {
    position: relative;
    overflow: hidden;
  }
  
  /* Timeline Navigation */
  .timeline_nav {
    position: relative;
  }
  
  .timeline_track {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  
  /* Add this to your CSS */
.timeline_progress {
    position: absolute;
    top: 1vh;
    left: 0;
    height: 0.5vh;
    background-color: var(--primary_color);
    transition: width 0.5s ease;
    z-index: 1;
  }
  
  /* Add these classes to control the exact width for each step */
  .progress-step-1 {
    width: 0%;
  }
  
  .progress-step-2 {
    width: 25%;
  }
  
  .progress-step-3 {
    width: 50%;
  }
  
  .progress-step-4 {
    width: 75%;
  }
  
  .progress-step-5 {
    width: 100%;
  }
  
  .timeline_points {
    position: relative;
    z-index: 2;
  }
  
  .timeline_points::before {
    content: "";
    position: absolute;
    top: 1vh;
    left: 0;
    width: 100%;
    height: 0.4vh;
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .timeline_point {
    position: relative;
    cursor: pointer;
  }
  
  .point_dot {
    width: 2vh;
    height: 2vh;
    border-radius: 50%;
    background-color: var(--background-color);
    border: 0.2vh solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .point_label {
    position: absolute;
    top: 3vh;
    white-space: nowrap;
    color: var(--text-color);
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  
  .timeline_point.active .point_dot {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
    transform: scale(1.2);
  }
  
  .timeline_point.active .point_label {
    color: var(--primary_color);
    opacity: 1;
    font-weight: 500;
  }
  
  .timeline_point:hover .point_dot {
    border-color: var(--primary_color);
    transform: scale(1.1);
  }
  
  .timeline_point:hover .point_label {
    opacity: 1;
  }
  
  /* Process Details */
  .process_content {
    position: relative;
    overflow: hidden;
  }
  
  .process_detail {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .process_detail.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .detail_text {
    padding-right: 5vw;
  }
  
  .detail_list {
    list-style: none;
  }
  
  .detail_item {
    position: relative;
  }
  
  .item_dot {
    width: 1vh;
    height: 1vh;
    min-width: 1vh;
    border-radius: 50%;
    background-color: var(--primary_color);
    margin-top: 0.8vh;
  }
  
  /* Visual Elements */
  .visual_container {
    width: 80%;
    height: 80%;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.1);
  }
  
  .visual_img {
    object-fit: cover;
    object-position: center;
    border-radius: 1vw;
    transition: transform 0.8s ease;
  }
  
  .visual_container:hover .visual_img {
    transform: scale(1.03);
  }
  
  /* Control Buttons */
  .control_button {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    background-color: var(--background-color);
    border: 0.1vw solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .control_button:hover {
    background-color: var(--primary_color);
  }
  
  .control_button:hover h3 {
    color: var(--background-color);
  }
  
  .control_button h3 {
    margin: 0;
    transition: color 0.3s ease;
  }

.contact_input{
  font-size: 0.95vw;
  outline: none;
  padding: 1vh 1vw;
  border-radius: 0.7vw;
  border: 0.1vw solid black;
  transition: 0.6s all ease-in-out;
}
.contact_form{
  background-color: white;
  padding: 5vh 2vw;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.contact_input:focus{
  transition: 0.6s all ease-in-out;
  color: var(--black-color);
  border: 0.15vw solid var(--primary_color);
  font-weight: 600;
}
.form_button{
  padding: 2vh 2vh;
  background-color: var(--primary_color);
  outline: none;
  border: none;
}
.contact_form textarea{
  max-width: 100%;
  max-height: 25vh;
}
.form_field {
  margin-bottom: 1.5vh;
}

.form_label {
  margin-bottom: 0.5vh;
}

.form_row {
  margin-bottom: 1.5vh;
}


.contact_input::placeholder {
  opacity: 0.6;
}

.form_button:hover {
  background-color: #234a24;
  transform: translateY(-0.3vh);
}
.footer{
  background-color: var(--primary_color);
}
.author{
  background-color: var(--text-color);
}
/* 404 */
.animated_404 {
  position: relative;
  margin-bottom: 2vh;
}
.error_container{
  position: relative;
}
.zero_container {
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.oil_drop {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5vw;
  height: 2.5vw;
  background: var(--primary_color);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0;
  animation: drop_fall 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes drop_fall {
  0% { 
      bottom: 0;
      opacity: 0;
      transform: translateX(-50%) scale(0.5);
  }
  20% {
      opacity: 0.8;
  }
  80% {
      opacity: 0.8;
  }
  100% { 
      bottom: -80px;
      opacity: 0;
      transform: translateX(-50%) scale(0.2);
  }
}
.mission_tab{
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0.5vw 1.5vw;
}

.icon_holder{
  background-color: var(--primary_color);
  border-radius: 50%;
  width: 3vw;
  height: 6.2vh;
  animation: circle 2.5s infinite ease-out;
}

@keyframes circle {
 from{
  transform: rotate(-360deg);
 }
 to{
  transform: rotate(360deg);
 }
}
    /* Feature Cards */
    .features_grid {
      gap: 2vw;
  }
  
  .feature_card {
      flex: 1;
      padding: 3vh 2vw;
      background-color: white;
      border-radius: 0.7vw;
      box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
  }
  
  .feature_card:hover {
      transform: translateY(-0.5vh);
  }
  
  .feature_icon_container {
      width: 5vw;
      height: 5vw;
      background-color: rgba(44, 95, 45, 0.1);
      border-radius: 50%;
      font-size: 2vw;
      color: var(--primary_color);
  }
  
  .feature_indicator {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 0.3vh;
      background-color: var(--primary_color);
      transition: width 0.3s ease;
  }
  
  .feature_card:hover .feature_indicator {
      width: 100%;
  }
 
 /* Team Grid Layout */
 .team_grid {
  gap: 0; /* Remove gap since we're using justify-space-between */
}

.team_card {
  flex: 0 0 32%; /* Each card takes up ~32% of the width, allowing 3 cards per row */
  margin-bottom: 2vh; /* Add bottom margin for spacing between rows */
  background-color: white;
  box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team_photo_holder {
  height: 50vh;
}

.team_card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.3vh;
  background-color: var(--primary_color);
  transition: width 0.3s ease;
}

.team_card:hover {
  transform: translateY(-0.5vh);
  box-shadow: 0 0.8vh 2vh rgba(0, 0, 0, 0.1);
}

.team_card:hover::after {
  width: 100%;
}

.team_photo {
  transition: transform 0.8s ease;
  object-position: center top;
}

.team_card:hover .team_photo {
  transform: scale(1.05);
}

.team_info {
  padding: 1.5vh 1vw;
}
/* Process Hero */
.process_hero {
  background-color: var(--background-color);
  overflow: hidden;
}

/* Process Overview */
.bg_light {
  background-color: rgba(44, 95, 45, 0.05);
}

.overview_stats {
  background-color: white;
  padding: 3vh 2vw;
  border-radius: 0.7vw;
  box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.05);
  width: 100%;
}

/* Step Cards */
.step_card {
  background-color: white;
  box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.05);
  position: relative;
}

.step_number {
  background-color: var(--primary_color);
  width: 5vw;
  min-width: 5vw;
}

.step_content {
  flex: 1;
}

.step_visual {
  overflow: hidden;
}

.step_visual img {
  transition: transform 0.8s ease;
}

.step_card:hover .step_visual img {
  transform: scale(1.05);
}

/* Certificate */
.certificate_container {
  position: relative;
}

.certificate_badge {
  position: absolute;
  top: 2vh;
  right: 2vw;
  width: 8vw;
  height: 8vw;
  background-color: var(--primary_color);
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

.badge_inner {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 0.2vh solid var(--background-color);
  text-align: center;
}

/* contact page */
/* Contact Hero */
.contact_hero {
  background-color: var(--background-color);
  overflow: hidden;
}

.contact_decorative {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.floating_bottle {
  position: absolute;
  width: 8vw;
  height: 20vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.7vw;
  filter: drop-shadow(0 0.5vh 1vh rgba(0, 0, 0, 0.2));
}

.bottle_1 {
  top: 20%;
  right: 15%;
  transform: rotate(15deg);
}

.bottle_2 {
  bottom: 25%;
  right: 25%;
  transform: rotate(-10deg);
}

.bottle_3 {
  top: 40%;
  right: 35%;
  transform: rotate(5deg);
}

/* Contact Info */
.bg_light {
  background-color: rgba(44, 95, 45, 0.05);
}

.contact_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}

.contact_card {
  background-color: white;
  padding: 3vh 2vw;
  box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Highlighted contact cards for phone and email */
.contact_card_highlight {
  border-left: 0.3vw solid var(--primary_color);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
  z-index: 2;
}

.contact_card:hover {
  transform: translateY(-0.5vh);
  box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.1);
}

.contact_card_highlight:hover {
  transform: scale(1.08);
}

.card_icon {
  width: 2.5vw;
  height: 2.5vw;
  background-color: rgba(44, 95, 45, 0.1);
  border-radius: 50%;
  color: var(--primary_color);
}

.contact_link {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  color: var(--primary_color);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.contact_link:hover {
  gap: 1vw;
}

.contact_link i {
  transition: transform 0.3s ease;
}

.contact_link:hover i {
  transform: translateX(0.5vw);
}

/* Map */
.map_container {
  position: relative;
  height: 100%;
  min-height: 50vh;
  box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq_container {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.faq_item {
  background-color: white;
  overflow: hidden;
  box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.05);
}

.faq_question {
  padding: 2vh 2vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq_question:hover {
  background-color: rgba(44, 95, 45, 0.05);
}

.question_icon {
  width: 3vw;
  height: 3vw;
  min-width: 3vw;
  background-color: rgba(44, 95, 45, 0.1);
  border-radius: 50%;
  font-size: 1.5vw;
  color: var(--primary_color);
  transition: transform 0.3s ease;
}

.faq_answer {
  padding: 0 2vw;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq_item.active .faq_answer {
  padding: 0 2vw 2vh 2vw;
  max-height: 50vh;
}

.faq_item.active .question_icon {
  transform: rotate(45deg);
}
.menu_extended{
  padding-left: 1vw;
  padding-right: 1vw;
  outline: none;
  border: none;
  margin-bottom: 1vh;
}

/* Fullscreen Navigation */
.fullscreen_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--primary_color);
  transform: translateY(-100vh);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  background-image: 
      radial-gradient(rgba(228, 201, 136, 0.05) 2px, transparent 2px),
      radial-gradient(rgba(228, 201, 136, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  overflow: hidden;
}

.fullscreen_nav.active {
  transform: translateY(0);
}

.nav_content {
  padding: 3vh 5vw;
  position: relative;
  height: 100vh;
  box-sizing: border-box;
}

/* Navigation Header */
.nav_header {
  padding-bottom: 2vh;
  border-bottom: 0.2vh solid rgba(228, 201, 136, 0.2);
  height: 10vh;
}

.nav_logo {
  height: 6vh;
}

.nav_close_btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(228, 201, 136, 0.2);
  transition: background-color 0.3s ease;
}

.nav_close_btn:hover {
  background-color: var(--accent-color);
}

.nav_close_btn h4 i {
  transition: transform 0.3s ease;
}

.nav_close_btn:hover h4 i {
  transform: rotate(90deg);
}

/* Navigation Main */
.nav_main {
  padding: 2vh 0;
  flex: 1;
  height: 75vh;
  overflow: hidden;
}

.nav_sections {
  height: 100%;
}

.nav_section {
  width: 30%;
}

.nav_section:last-child {
  width: 30%;
}

.nav_decorative {
  width: 35%;
}

.section_title {
  position: relative;
  display: inline-block;
  padding-bottom: 1vh;
  margin-bottom: 1vh;
}

.section_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0.2vh;
  background-color: var(--accent-color);
}

.nav_links {
  margin-left: 1vw;
}

.nav_link {
  position: relative;
  transform: translateX(-2vw);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  padding: 0.8vh 0;
}

.fullscreen_nav.active .nav_link {
  transform: translateX(0);
  opacity: 1;
}

.nav_link h4 {
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav_link:hover h4 {
  color: var(--accent-color);
  transform: translateX(0.5vw);
}

.nav_link h4 i {
  margin-right: 0.5vw;
}

/* Decorative Elements */
.nav_tagline {
  position: relative;
  z-index: 2;
}

.decorative_circles {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background-color: var(--accent-color);
}

.circle1 {
  width: 20vw;
  height: 20vw;
  top: 10vh;
  right: 5vw;
}

.circle2 {
  width: 15vw;
  height: 15vw;
  bottom: 15vh;
  right: 15vw;
}

.circle3 {
  width: 10vw;
  height: 10vw;
  top: 40vh;
  right: 25vw;
}

/* Navigation Footer */
.nav_footer {
  padding-top: 2vh;
  border-top: 0.2vh solid rgba(228, 201, 136, 0.2);
  transform: translateY(2vh);
  opacity: 0;
  transition: transform 0.5s ease 0.3s, opacity 0.5s ease 0.3s;
  height: 10vh;
}

.fullscreen_nav.active .nav_footer {
  transform: translateY(0);
  opacity: 1;
}

.social_link h4 i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social_link:hover h4 i {
  transform: scale(1.2);
  color: var(--accent-color);
}

/* Apply staggered animation to nav links */
.fullscreen_nav.active .nav_link:nth-child(1) {
  transition-delay: 0.1s;
}
.fullscreen_nav.active .nav_link:nth-child(2) {
  transition-delay: 0.15s;
}
.fullscreen_nav.active .nav_link:nth-child(3) {
  transition-delay: 0.2s;
}
.fullscreen_nav.active .nav_link:nth-child(4) {
  transition-delay: 0.25s;
}
.fullscreen_nav.active .nav_link:nth-child(5) {
  transition-delay: 0.3s;
}
.fullscreen_nav.active .nav_link:nth-child(6) {
  transition-delay: 0.35s;
}

/* Login Page Styles */
.login_page {
  overflow: hidden;
}

.login_container {
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(2vh);
}

.toggle_password {
  position: absolute;
  right: 1vw;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.toggle_password:hover {
  transform: scale(1.1);
}
.menu_logout{
  background: none;
  outline: none;
  border: none;
  text-align: left;
}
/* dashboard */
.section_title {
  position: relative;
  padding-bottom: 1vh;
}

.section_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3vw;
  height: 0.3vh;
  background-color: var(--primary_color);
}

.stat_card {
  flex: 1;
  min-width: 200px;
  padding: 2vh 2vw;
  transition: transform 0.3s ease;
}

.stat_card:hover {
  transform: translateY(-0.5vh);
}

.action_btn {
  flex: 1;
  min-width: 150px;
  padding: 3vh 1vw;
  transition: transform 0.3s ease;
}
.stat_card .icon_holder{
  animation: none;
  padding: 5vh;
}
.content_section .icon_holder{
  animation: none;
}
.products_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}

.product_img {
  height: 20vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
}

.category_tag {
  background-color: rgba(44, 95, 45, 0.1);
  color: var(--primary_color);
  padding: 0.3vh 0.8vw;
  border-radius: 0.5vw;
}
.product_admin_link {
  width: 100%;
  text-align: center;
}

.text_desc {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.5;
}
/* Product Upload Form Styles */
.upload_form_container {
  padding: 3vh 2vw;
}

.form_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2vw;
}

.form_group {
  margin-bottom: 2vh;
}

.form_label {
  display: block;
  margin-bottom: 1vh;
}

.form_input,
.form_textarea {
  font-size: 0.95vw;
  padding: 1.2vh 1vw;
  border-radius: 0.7vw;
  border: 0.1vw solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background-color: white;
  width: 100%;
}

.form_input:focus,
.form_textarea:focus {
  border-color: var(--primary_color);
  box-shadow: 0 0 0 0.2vh rgba(44, 95, 45, 0.2);
  outline: none;
}

.form_textarea {
  min-height: 15vh;
  resize: vertical;
}

.featured_group {
  margin-top: -1vh;
  margin-bottom: 2vh;
}

.m_0 {
  margin: 0;
}
.featured_checkbox{
  min-width: 1.5vw;
  min-height: 1.5vw;
  border: 0.1vw solid var(--text-color);
}
/* TinyMCE customization */
.tox-tinymce {
  border-radius: 0.7vw !important;
  border: 0.1vw solid rgba(0, 0, 0, 0.2) !important;
  overflow: hidden;
}

.tox-statusbar {
  border-top: 0.1vw solid rgba(0, 0, 0, 0.1) !important;
}
.search_button{
  background: none;
  outline: none;
  border: none;
}
.badge {
  font-size: 0.7vw;
  min-width: 1.5vw;
  height: 1.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Filter Sidebar */
.filter_sidebar {
  width: 20vw;
  height: fit-content;
  position: sticky;
  top: 1vh;
  transition: all 0.3s ease;
}

/* Featured Filter - Checkbox */
.custom_checkbox {
  width: 1.2vw;
  height: 1.2vw;
  border: 0.15vw solid var(--primary_color);
  border-radius: 0.3vw;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom_checkbox.checked {
  background-color: var(--primary_color);
}

.custom_checkbox .checkmark {
  position: relative;
  width: 0.7vw;
  height: 0.4vw;
  border-left: 0.15vw solid white;
  border-bottom: 0.15vw solid white;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom_checkbox.checked .checkmark {
  opacity: 1;
}

/* Search Bar */
.search_input {
  height: 5vh;
  font-size: 1vw;
  background-color: rgba(255, 255, 255, 0.9);
}

.search_input:focus {
  background-color: white;
  outline: none;
}

/* Products Grid */
.products_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22vw, 1fr));
  grid-gap: 1.5vw;
}

/* Product Card */
.product_card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.hover_up:hover {
  transform: translateY(-0.5vh);
  box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.1);
}

.product_image_wrapper {
  position: relative;
  height: 22vh;
  overflow: hidden;
}

.product_image_wrapper.portrait {
  height: 28vh;
}

.product_image_wrapper.wide {
  height: 18vh;
}

.product_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.product_card:hover .product_image {
  transform: scale(1.05);
}

.product_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.product_category_tag {
  background-color: var(--primary_color);
  color: white;
  border-radius: 5vh;
  display: inline-block;
}

.featured_badge {
  background-color: #ff9800;
  color: white;
  border-radius: 5vh;
  display: inline-block;
}

.text_limit_2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  height: 3em;
}

.view_details_btn {
  padding: 0.4vh 1vw;
  border-radius: 5vh;
}

/* Loading animation */
.rotating {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Product Detail Page - Only styles not covered by utility classes */

/* Product Images */
.product_main_image, .product_extra_image{
  height: 60vh;
}

/* Section Title Line */
.section_title {
  position: relative;
  padding-bottom: 1vh;
}

.section_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3vw;
  height: 0.3vh;
  background-color: var(--primary_color);
}

/* Header Line */
.header_line {
  width: 8vw;
  height: 0.3vh;
  background-color: var(--primary_color);
  margin: 1vh auto 0;
}

/* Related Products Grid */
.related_products_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}

.related_image_container {
  height: 30vh;
  position: relative;
}

.related_image_container img {
  transition: transform 0.8s ease;
}

.related_product_card:hover .related_image_container img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

@media(max-width: 999px){
  .product_main_image, .product_extra_image{
    height: 30vh;
  }
  .product_detail_top{
    width: 100%;
  }
  .filter_sidebar {
    width: 55vw;
  }
  .product_category_tag, .featured_badge {
    padding: 1vh 2.5vw !important;
  }
  .products_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .product_category_tag h6 , .featured_badge h6{
    font-size: 1.9vw;
  }
  .badge {
    font-size: 2vw;
    min-width: 2vw;
    height: 2vh;
  }
  .product_detail_image{
    margin-top: 0 !important;
  }
  .custom_checkbox {
    width: 2vw;
    height: 2vw;
  }
  .product_price{
    width: 100%;
  }
  .product_card_view {
    padding: 1vh 7vw !important;
    align-items: center;
    display: flex;
  }
  .custom_checkbox .checkmark {
    width: 1.2vw;
    height: 0.7vw;
    border-left: 0.2vw solid white;
    border-bottom: 0.2vw solid white;
  }

  .search_input {
    font-size: 1.5vw;
  }
  /* product form */
  .form_grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured_group {
    grid-column: 2;
  }

  .form_input,
  .form_textarea {
    font-size: 2vw;
  }
  /* dashboard cards */
  .dashboard_stats {
    flex-direction: column;
  }
  .product_admin_link {
    padding: 1vh 2vw !important;
  }
  /* login */
  .login_container {
    width: 70%;
  }
  /* navigation bar */
  .nav_sections {
    flex-direction: column;
  }

  .nav_section, .nav_section:last-child, .nav_decorative {
    width: 100%;
  }

  .nav_section:not(:first-child) {
    margin-top: 2vh;
  }

  .nav_main {
    overflow-y: auto;
  }

  .circle1 {
    width: 30vw;
    height: 30vw;
  }

  .circle2 {
    width: 20vw;
    height: 20vw;
  }

  .circle3 {
    width: 15vw;
    height: 15vw;
  }

  /* contact page */
  .contact_hero h1 {
    width: 100%;
  }
  .left_link_container .links_holder{
    display: block
  }
  .links_holder{
    display: none;
  }
  .menu_extended{
    display: block;
  }
  .contact_hero h4 {
      width: 80%;
  }

  .floating_bottle {
      width: 15vw;
  }

  .info_content {
      flex-direction: column;
      gap: 5vh;
  }

  .info_text, .info_map {
      width: 100%;
  }

  .contact_cards {
      grid-template-columns: 1fr;
  }

  .card_icon {
      width: 10vw;
      height: 10vw;
      font-size: 5vw;
  }
  .contact_card_highlight{
    transform: none;
  }

  .question_icon {
      width: 6vw;
      height: 6vw;
      min-width: 6vw;
      font-size: 3vw;
  }
  .bottle_3 {
    top: 70%;
    right: 70%;
  }
  .bottle_2 {
    bottom: 20%;
  }
  .bottle_1 {
    top: 15%;
    right: 40%;
  }

  .contact_info, .contact_section {
      height: auto;
      min-height: 100vh;
  }

  /* process */
  .process_hero h1 {
      width: 100%;
  }

  .process_hero h4 {
      width: 80%;
  }

  .overview_content, .commitment_content {
      flex-direction: column;
      gap: 5vh;
  }

  .overview_text, .overview_visual, .commitment_text, .commitment_visual {
      width: 100%;
  }
  .hero_content_process, .hero_content_contact{
    text-align: center;
    align-items: center;
  }
  .step_content {
      flex-direction: column;
  }

  .step_text, .step_visual {
      width: 100%;
  }

  .step_number {
      width: 10vw;
      min-width: 10vw;
  }

  .certificate_badge {
      width: 15vw;
      height: 15vw;
  }
  .section_header h4 {
    width: 80%;
  }

  .team_card {
      flex: 0 0 49%; /* 2 cards per row on tablet */
      margin-bottom: 2vh;
  }

  .team_photo_holder {
      height: 40vh;
  }
  .error_actions {
    flex-direction: column;
  }
  .footer{
    flex-direction: column;
    gap: 7vh;
  }
  .links_container {
    justify-content: left;
    gap: 10vw;
  }
  .social_icons{
    font-size: 5vw;
  }
  .icon_holder{
    width: 9vw;
    height: 6.8vh;
  }
  .mission_tab{
    gap: 3vh;
  }
  .left_about_page img {
    object-position: 0% 85%;
  }
  .benefits_home, .about_us_page{
    flex-direction: column-reverse;
  }
  .contact_section {
    flex-direction: column;
  }
  .contact_input {
    font-size: 2.5vw;
  }
  .left_link_container {
    padding: 0;
  }
  .why_choose_us {
    height: auto;
  }

  .section_header h4 {
      width: 80%;
  }

  .features_grid {
      flex-direction: column;
      gap: 3vh;
  }

  .feature_icon_container {
      width: 10vw;
      height: 10vw;
      font-size: 5vw;
  }
  .menu_extended {
    display: block !important;
    padding: 1.5vh 2vw !important;
  }
    .popular_categories{
        height: fit-content;
    }
    .left_nav .custom-button, .left_hero, .featured_products .text_button, .bottom_content_contact{
        display: none;
    }
    .right_nav{
        width: 100%;
        justify-content: space-between;
    }
    .product_image_hero{
        height: 70%;
    }
    .product_image_hero img{
        margin-left: 0vw;
        margin-bottom: 35vh;
    }
    .right_hero{
        align-items: center;
        text-align: center;
        margin-top: 10vh;
    }
    .right_hero h2, .right_hero h4{
        width: 70%;
    }
    .custom-button{
        padding: 2vh 20vw;
    }
    .about_us_section_holder h2, .about_us_section_holder h4{
        width: 80%;
    }
    .text_button{
        font-size: 3.2vw;
        white-space: nowrap;
    }
    .about_image {
        width: 27%;
        height: 20vh;
    }
    .about_image.first{
        bottom: 30vh;
    }
    .about_image.second{
        top: 30vh;
    }
    .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-gap: 2vh;
    }
    
    /* Redefine grid areas for tablet */
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 1 / 2 / 2 / 3; }
    .div3 { grid-area: 2 / 1 / 3 / 3; } /* Full width for the middle item */
    .div5 { grid-area: 3 / 1 / 4 / 2; }
    .div6 { grid-area: 3 / 2 / 4 / 3; }
    .div4 { display: none; } /* Hide this one on tablet */
    
    /* Adjust grid block height for better proportions */
    .grid_block {
        height: 30vh !important;
    }
    
    /* Make the middle item taller */
    .div3 {
        height: 40vh !important;
    }
    
    /* Adjust the arrow indicator size */
    .grid_block::after {
        width: 3vw;
        height: 3vw;
    }
    .product_card {
        flex: 0 0 calc(100% - 2vw);
        margin-right: 2vw;
    }
    .carousel_nav{
        padding: 5vw;
    }
    .product_carousel {
        justify-content: center;
        padding: 0 5vw; /* Increase padding for navigation buttons */
    }
    .image_holder, .benefits_home h4{
        width: 100%;
    }
    .benefits_home ul{
      margin-left: 4vw;
    }
    .benefits_home .custom-button, .error_actions .custom-button, .commitment_action .custom-button{
      width: 100%;
      text-align: center;
    }
    .process_section {
        height: auto;
        min-height: 100vh;
        padding-top: 5vh;
        padding-bottom: 5vh;
      }
      
      .process_content {
        height: auto;
        min-height: 60vh;
      }
      
      .process_detail {
        position: relative;
        flex-direction: column;
      }
      .detail_list {
        margin-top: 1vh;
      }
      .detail_text, .detail_visual {
        width: 100%;
        padding: 0;
      }
      
      .detail_visual {
        order: 1;
        margin-bottom: 5vh;
      }
      
      .detail_text {
        order: 2;
      }
      
      .visual_container {
        width: 100%;
        height: 30vh;
      }
      
      .control_button {
        width: 8vw;
        height: 8vw;
      }
      
      .point_label {
        font-size: 2vw;
      }
      
      .timeline_track {
        width: 90%;
      }
  .nav_decorative {
    display: none;
  }
  .contact_info_nav{
    min-height: 0;
  }
  .nav_close_btn {
    height: 7vh;
    width: 10vw;
  }
  .form_submit_button{
    width: 100%;
    text-align: center;
  }
  .related_product_card:last-child{
    display: none;
  }
  .related_products_grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 699px){
  .related_products_grid{
    grid-template-columns: repeat(1, 1fr);
  }
  .product_detail_image {
    flex-direction: column;
  }
  .filter_sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 80vw;
    max-width: 80vw;
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding: 3vh 3vw !important;
  }

  .filter_sidebar.show_filter {
    left: 0;
  }

  body.filter_open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .search_container {
    display: none;
  }

  .search_container_mobile {
    display: block !important;
  }

  .products_grid {
    grid-template-columns: repeat(auto-fill, minmax(42vw, 1fr));
    grid-gap: 3vw;
  }

  .product_image_wrapper {
    height: 25vh;
  }

  .product_image_wrapper.portrait {
    height: 30vh;
  }

  .product_image_wrapper.wide {
    height: 20vh;
  }

  .badge {
    font-size: 4vw;
    min-width: 7vw;
    height: 3vh;
    padding: 1vw 2vw;
  }
  .product_card_content {
    padding: 2vh 5vw !important;
  }
  .custom_checkbox {
    width: 4vw;
    height: 4vw;
  }
  .product_category_tag h6, .featured_badge h6 {
    font-size: 3vw;
  }
  .search_button {
    right: 3vw !important;
  }
  .search_button>h5 {
    font-size: 4.5vw !important;
  }
  .custom_checkbox .checkmark {
    width: 2.4vw;
    height: 1.4vw;
    border-left: 0.3vw solid white;
    border-bottom: 0.3vw solid white;
  }

  .product_category_tag h6,
  .featured_badge h6 {
    font-size: 2vw;
  }

  .search_input {
    font-size: 3vw;
  }
  .form_grid {
    grid-template-columns: 1fr;
  }

  .featured_group {
    grid-column: 1;
  }
  
  .form_input,
  .form_textarea {
    font-size: 3.5vw;
  }
  .products_grid{
    grid-template-columns: repeat(1, 1fr);
  }
  /* login */
  .login_container {
    width: 100%;
    padding: 5vh 5vw;
  }
  .detail_titles{
    margin-left: 2.5vw;
  }
  /* navbar */
  .nav_close_btn {
    width: 15vw;
  }
  .menu_extended {
    display: block !important;
    padding: 2vh 4vw !important;
  }
  .contact_hero h4 {
    width: 100%;
  }

  .floating_bottle {
    width: 20vw;
  }

  .faq_header h4 {
    width: 100%;
  }

  .card_icon {
    width: 15vw;
    height: 15vw;
  }

  .question_icon {
    width: 10vw;
    height: 10vw;
    min-width: 10vw;
    font-size: 5vw;
  }
  .process_hero h4 {
    width: 100%;
  }

  .steps_header h4 {
      width: 100%;
  }

  .step_number {
      width: 15vw;
      min-width: 15vw;
  }

  .certificate_badge {
      width: 20vw;
      height: 20vw;
  }

  .section_header h4 {
    width: 100%;
  } 

  .team_card {
    flex: 0 0 100%; /* 1 card per row on mobile */
    margin-bottom: 3vh;
  }

  .team_photo_holder {
      height: 40vh;
  }
  .feature_icon_container {
    width: 15vw;
    height: 15vw;
    font-size: 8vw;
  }
  .icon_holder{
    width: 15vw;
    height: 6.9vh;
  }
  .social_icons {
    font-size: 7vw;
  }
  .logo_container_footer {
    gap: 2vh;
  }
  .contact_input {
    font-size: 4vw;
  }
  .form_row{
    flex-direction: column;
  }
  .contact_section{
    height: fit-content;
  }
  .contact_form{
    padding: 2vh 3vw;
  }
    .links_holder h4 a {
       display: none;
    }      
    .right_hero h2, .right_hero h4, .about_us_section_holder h2, .about_us_section_holder h4, .form_field{
        width: 100%;
    }
    .text_button{
        font-size: 5vw;
    }
    .product_image_hero{
        height: 65%;
    }
    .product_image_hero img{
        margin-bottom: 30vh;
    }
    .about_image {
        width: 45%;
        opacity: 50%;
    }
    .about_image.first {
        right: 10vw;
    }
    .about_image.second {
        left: 10vw;
    }
    .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-gap: 2vh;
    }
    
    /* Redefine grid areas for tablet */
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 1 / 2 / 2 / 3; }
    .div3 { grid-area: 2 / 1 / 3 / 3; } /* Full width for the middle item */
    .div5 { grid-area: 3 / 1 / 4 / 2; }
    .div6 { grid-area: 3 / 2 / 4 / 3; }
    .div4 { display: none; } /* Hide this one on tablet */
    
    /* Adjust grid block height for better proportions */
    .grid_block {
        height: 30vh !important;
    }
    
    /* Make the middle item taller */
    .div3 {
        height: 40vh !important;
    }
    
    /* Adjust the arrow indicator size */
    .grid_block::after {
        width: 3vw;
        height: 3vw;
    }
    .grid_content {
        padding-right: 3vw;
    }
    .product_card {
        flex: 0 0 calc(100% - 2vw);
        margin-right: 2vw;
    }
    .carousel_nav {
        width: 8vw;
        height: 8vw;
    }
    .section_header h4 {
        width: 100%;
      }
      
      .timeline_track {
        width: 95%;
      }
      
      .timeline_points {
        overflow-x: auto;
        justify-content: space-between;
        padding-bottom: 3vh;
      }
      
      .timeline_point {
        flex: 0 0 auto;
        margin: 0 4vw;
      }
      
      .point_label {
        font-size: 2.5vw;
        white-space: nowrap;
      }
      
      .visual_container {
        height: 30vh;
      }
      
      .control_button {
        width: 12vw;
        height: 12vw;
      }
      
      .item_dot {
        width: 1.5vh;
        height: 1.5vh;
        min-width: 1.5vh;
      }
}