html {
  scroll-behavior: smooth;
}

.text-orange{
  color: orange;
}

.text-dark{
  color: rgb(226, 213, 213);
}

.heading {
font-size: 3em;
font-weight: 300;
color: #514b4b;
text-align: center; /* Center align the text */
display: inline-block; /* Display as inline-block */
border-bottom: 2px solid orange;
padding-bottom: 5px; /* Optional: Adds space below the border */
margin: 0 auto; /* Centers the inline-block horizontally */
}

.vertical-line {
border-left: 1px solid orange; /* Adjust thickness and color as needed */
height: 100%; /* Ensures the line spans the full height of the column */
position: absolute;
left: -2.5%;
transform: translateX(-50%); /* Centers the line precisely */
}


@media (max-width: 800px) {
.vertical-line {
  border-left: none; /* Remove vertical line */
  border-top: 1px solid orange; /* Add horizontal line */
  width: 100%; /* Span the width of the column */
  height: auto; /* Adjust height as needed */
  position: static; /* Reset position */
  transform: none; /* Reset transform */
}
}

.hero-text {
  text-align: center;
  margin-top: 20px;
  font-size: 2em;
  font-weight: bold;
}
.underline {
  text-decoration: underline;
}
.section-heading {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.faq-question {
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: bold;
}
.faq-answer {
  display: none;
  margin-bottom: 20px;
}



/* product */
#products {
  text-align: center; /* Center the content in the section */
}

.product-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 300px; /* Set a fixed height for the container */
  overflow: hidden;
  margin-bottom: 20px; /* Optional: Add margin between the containers */
}

.product-container h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* Change the text color as needed */
  background-color: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background to the text */
  padding: 10px; /* Optional: Adds padding around the text */
  margin: 0; /* Ensure there's no default margin */
  text-align: center; /* Center the text inside the heading */
}

.product-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}





/* faq css */

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
  }
  
  .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid orange;
  }
  
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  
  .accordion button:hover,
  .accordion button:focus {
    cursor: pointer;
    color: orange;
  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
    cursor: pointer;
    color: orange;
    border: 1px solid orange;
  }
  
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  
  .accordion button[aria-expanded='true'] {
    color: orange;
  }
  .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }


/* contact Section */
.contactUs-card{
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



/* gallery */


.gallery-image {
  width: 100%;
  height: 200px; /* Set a uniform height */
  object-fit: cover; /* Ensure the image covers the entire area */
  border: 2px solid orange; /* Add a thick black border */
}

/* contact us */

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.card {
  height: 100%;
}
.row-equal-height > .col-md-4 {
  display: flex;
}
