/* Base styles for custom-text-block */
.custom-text-block {
  padding: 5px;
  text-align: center;
  color: white;
  width: 100%; /* Ensure it takes up full width */
}

/* Highlight color */
.highlight {
  color: #ccff00;
}


/* Custom heading and paragraph styles */
.custom-heading1 {
  font-size: 2rem; /* Default font size for heading */
  padding-top: 5px;
  padding-bottom: none;
  margin-bottom: none;
}

.custom-heading-two1 {
  font-size: 6rem; /* Default font size for second heading */
    padding: 0;

}

.custom-paragraph {
  font-size: 2rem; /* Default font size for paragraph */
}

.custom-section-three {
  position: relative;
  z-index: 2;
  padding: 75px;

}

.custom-three-heading {
  color: #fff;
  text-shadow: 1px 1px 3px black;
  font-size: 5rem;
}

.custom-three-paragraph {
  color: #ccc;
  position: relative;
  margin-top: 1rem;
  font-size: 1.3rem;
}

.custom-three-paragraph::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ccff00;
  border-radius: 2px;
}

.custom-section-four {
  position: relative;
  z-index: 2;
  padding: 75px;
}

.custom-four-heading {
  color: #fff;
  text-shadow: 1px 1px 3px black;
  font-size: 4.5rem;
  text-align: left;
}

.custom-four-paragraph {
  color: #ccc;
  position: relative;
  margin-top: 1rem;
  font-size: 1.3rem;
  text-align: left;
  max-width: 900px;
}

.custom-four-paragraph::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ccff00;
  border-radius: 2px;
}

.custom-text-block {
  background: transparent;
  z-index: 2;
  padding: 55px;
}

.custom-heading {
  color: white;
  text-shadow: 1px 1px 3px black;
  font-size: 5rem;
}

.custom-intro-paragraph {
  color: #ccc;
  font-weight: lighter;
  position: relative;
  font-size: 2rem;
}

.custom-intro-paragraph::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: #ccff00;
  border-radius: 2px;
}

.custom-place-order-btn {
  background-color: #ccff00;
  color: black;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-place-order-btn:hover {
  background-color: transparent;
  color: #ccff00;
  border: 2px solid #ccff00;
}

/* Background and overlay */


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust overlay darkness */
  z-index: 1;
}

/* Section styling */
.custom-section-five {
  position: relative;
  z-index: 2; /* above overlay */
  color: white;
  padding: 75px;
}

/* Heading styles */
.custom-five-heading {
  font-weight: 700;
  font-size: 5rem;
  color: #ffffff;
}

/* Paragraph styles */
.custom-five-paragraph {
  line-height: 1.6;
  color: #ccc;
}

.custom-five-paragraph::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: #ccff00;
  border-radius: 2px;
}

/* Basic style for the custom arrow container */
.custom-arrow {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #ccff00; /* Set text color to #ccff00 */
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #ccff00;
}

/* Hover effect to change background on hover */
.custom-arrow:hover {
  background-color: #ccff00; /* Lighter background on hover */
  transform: scale(1.1); /* Slightly enlarge the button */
  color: black;
}

/* Style for the 'up' arrow */
.arrow.up {
  margin-bottom: 10px; /* Space below for separation */
}

/* Style for the 'down' arrow */
.arrow.down {
  margin-top: 10px; /* Space above for separation */
}




