		/* Main Section Container */
		.card-headerThird, .card-headerFifth {
  display: none;
}

.arrow-downThird, .arrow-downFifth {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-downThird.active, .arrow-downFifth.active {
  transform: rotate(180deg); /* if your arrow needs to flip */
}

/* Main section wrapper */
.lpSecOne {
  font-family: Oswald-Bold;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: #999 thin solid;
}

/* Section Header */
.SecOneHeader {
  font-family: Oswald-Bold;
  width: 100%;
  font-size: 54px;
  font-weight: 900;
  color: #2b91d8;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 40px 0;
}

/* Wrapper for the two columns */
.SecOneContent {
  display: flex;
  gap: 60px;
  width: 100%;
  align-items: flex-start;
}

/* Left column */
.SecOneLeftCol {
  font-family: Oswald-Regular;
  flex: 1;
  max-width: 620px; /* give it room since image is inside */
}

/* Float image so text wraps */
.SecOneLeftCol .SecOneInlineImg {
  float: left;              /* wrap text around it */
  width: 320px;             /* adjust as needed */
  max-width: 55%;           /* prevents it from hogging on smaller widths */
  margin: 0 24px 16px 0;    /* space between image and text */
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.SecOneLeftCol p {
  font-family: Oswald-Regular;
  color: #000;
  width: 100%;
  padding: 0;
  font-weight: normal;
  text-align: left;
  margin-left: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 10px;
}

.SecOneImg p {
  font-family: Oswald-Regular;
  width: 100%;
  padding: 0;
  font-weight: normal;
  text-align: center;
  margin-left: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 10px;
}


/* Ensure floats don't break the column height */
.SecOneLeftCol::after {
  content: "";
  display: block;
  clear: both;
}
.theLpForm {
	width:100%;
	}
/* Right column (callout + form) */
.SecOneImg {
  flex: 1;
  display: flex;
  flex-direction: column;   /* stack everything */
  align-items: center;      /* center horizontally */
  justify-content: flex-start;
  text-align: center;       /* center text */
  gap: 14px;                /* spacing between items */
  min-width: 340px;         /* helps form not get too narrow */
}

/* Subheader / phone */
.SecOneSubHeader {
  font-family: Roboto-black;
  font-size: 50px;
  color: #000;
  margin: 0;
}

.SecOneBody {
  font-family: Roboto;
  font-size: 24px;
  color: #333;
}

.SecOneNum {
  font-family: Roboto;
  font-size: 26px;
  color: #000;
}

/* Form */
.TheContactLP {
  width: 100%;
  max-width: 500px;
  display: grid;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin: 10px auto 35px;
  list-style: none;   /* if you keep li */
  padding-left: 20px; /* keep your padding, but no bullets */
}

/* Optional: make form fields fill nicely */
.TheContactLP input,
.TheContactLP textarea {
  width: 100%;
  box-sizing: border-box;
}

/* Responsive: stack columns + stop wrapping on small screens */
@media (max-width: 900px) {
  .SecOneContent {
    flex-direction: column;
  }

  .SecOneLeftCol {
    max-width: 100%;
  }

  .SecOneLeftCol .SecOneInlineImg {
    float: none;         /* stop wrap on mobile */
    width: 100%;
    max-width: 420px;
    margin: 0 auto 16px;
  }

  .SecOneImg {
    width: 100%;
    min-width: 0;
  }
}


.SecOneCallNowButton {
  background-color: #0076d6;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
}
.SecOneCallNowButton a {

  color: white;
  text-decoration: none;

}

/* Sticky Buttons */
.FloatCallScedule {
  position: fixed;
  top: 140px;
  right: 20px;
  z-index: 999;
  display: flex;
  gap: 10px;
  font-size: 18px;
}

@supports not (position: sticky) {
  .FloatCallScedule {
    position: fixed;
    top: 140px;
    right: 20px;
  }
}

.FloatCall,
.FloatSch {
  background: white;
  border: 2px solid #2b91d8;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  color: #2b91d8;
  height: 80px;
  width: 80px;
  cursor: pointer;
  flex-direction: column;
  text-align: center;
}
.FloatCallScedule a,
.FloatCall a,
.FloatSch a,
.FloatCall a:visited,
.FloatSch a:visited {
  text-decoration: none !important;
  color: #2b91d8;
}

.FloatCall {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.material-symbols-outline {
  font-size: 48px;
  color: #000;
}

.lpSecSecond {
  display: flex;
  flex-direction: row;
  /* Changed to row */
  gap: 100px;
  font-family: Oswald-Regular;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px 60px;
  border-bottom: #999 thin solid;
}

.SecSecondLeftCol {
  flex-grow: 1;
  /* Changed to 1 for equal distribution */
  font-weight: bold;
}

.SecSecondSubHeader {
  font-family: Roboto-black;
  font-size: 40px;
  color: #000;
}

.SecSecondRight {
  flex-grow: 1;
  /* Changed to 1 for equal distribution */
}

.SecSecondRightP {
	font-family: Roboto;
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 25px;
}
.SecSecondRightP ul {

}
.SecSecondRightP li {
	margin-left:30px;
	font-size:18px;

}

.containerThird {
  display: flex;
  gap: 80px;
  border-bottom: #999 thin solid;
}

.sectionThird {
  flex: 1;
  /* Distribute available space equally */
}

.separator {
  margin-top: 80px;
  border-left: 1px solid #ccc;
  /* Add the gray vertical line */
}

.section-titleThird {
  font-family: Oswald-Bold;
  width: 100%;
  font-size: 30px;
  font-weight: 900;
  color: #2b91d8;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 10px 10px 25px 10px;
}

.cardThird {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin: 15px;
  position: relative;
}

.card-titleThird {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.arrow-downThird {
  position: absolute;
  top: 10px;
  right: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  cursor: pointer;
}

.card-headerThird {
  font-size: 16px;
  line-height: 25px;
}

.testimonial-slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  /* Importantly, hide overflow on the container as well */
  margin-top: 55px;
  border-bottom: #999 thin solid;
}

.testimonial-slider {
  display: flex;
  width: 100%;
  /* Ensure it takes the full width of the container */
  transition: transform 0.3s ease-in-out;
  /* Smooth transition for sliding */
}

.testimonial {
  flex: 0 0 100%;
  /* Each testimonial takes up 100% width, doesn't grow or shrink */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  text-align: center;
  font-size: 16px;
}

.arrow {
  background: none;
  border: none;
  font-size: 54px;
  cursor: pointer;
  padding: 10px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow .material-symbols-sharp {
  font-size: inherit;
}

.testimonial-content {
  flex-grow: 1;
  padding: 0 80px;
  margin-top: 15px;
  margin-bottom: 10px;
  width: 85%;
}

.testimonial-Txt {
  font-size: 38px;
  font-weight: bold;
  line-height: 60px;
  min-height: 85px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Keep author to the right */
  text-align: right;
}

.stars {
  color: gold;
  font-size: 14px;
  margin-bottom: 5px;
  margin-right: 0;
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  /* Align stars to the right */
}

.stars .material-symbols-sharp {
  font-size: inherit;
  color: #FC0;
  padding: 0;
  font-size: 14px;
}

.name {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #000;
  margin-left: auto;
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

.testimonial-header {
  font-size: 24px;
  width: 100%;
  text-align: center;
}

.lpSecFourSubHeader {
  font-family: Oswald-Regular;
  width: 100%;
  font-size: 36px;
  font-weight: 900;
  color: #2b91d8;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 40px 0;
}

.lpSecFour {

  margin: 0;
  text-align: center;
  border-bottom: #999 thin solid;
  /* For potential inline content within .lpSecFour */
}



.error {
  position: relative;
  float: left;
  width: 100%;
  color: #F00;
  text-align: left;
  padding: 5px;
}

.TheContactLP li {
  list-style: none;
  /* Remove bullet points */
  margin: 0;
  /* Reset default margin */
  padding: 0;
  /* Reset default padding */
}

.TheContactLP label {
  text-align: left;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.TheContactLP .required::after {
  content: "*";
  color: red;
  margin-left: 5px;
}

.TheContactLP input[type="text"],
.TheContactLP input[type="email"],
.TheContactLP textarea {
  width: 100% !important;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

.TheContactLP input[type="text"]::placeholder,
.TheContactLP input[type="email"]::placeholder,
.TheContactLP textarea::placeholder {
  color: #999;
}

.TheContactLP textarea {
  resize: vertical;
}

/* Apply styles directly to the submit input */
.TheContactLP input[type="submit"] {
  background-color: #2b91d8;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
  display: block;
  /* Make it a block element to center */
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  /* Adjust width to content */
}

.TheContactLP input[type="submit"]:hover {
  background-color: #0056b3;
}

.Formtip {
  display: inline-block;
  margin-left: 5px;
  position: relative;
}

.Formtiptext {
  visibility: hidden;
  width: 100px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -50px;
  opacity: 0;
  transition: opacity 0.3s;
}

.Formtiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.Formtip:hover .Formtiptext {
  visibility: visible;
  opacity: 1;
}

.TheContactLP .required .Formtip {
  display: inline;
}

#thankYouMessage {
  font-family: Oswald-Bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid #090;
  border-radius: 5px;
  padding: 20px;
  margin: 35px auto;
  position: relative;
  width: 450px;
  font-size: 32px;
  padding: 35px;
}

#formFeedback {
  font-family: Oswald-Bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid #F00;
  border-radius: 5px;
  padding: 20px;
  margin: 35px auto;
  position: relative;
  width: 450px;
  font-size: 32px;
  padding: 35px;
}

.containerFifth {
  display: flex;
  gap: 80px;
  border-bottom: #999 thin solid;
}

.sectionFifth {
  flex: 1;
  /* Distribute available space equally */
  margin: 40px auto;
}

.section-titleFifth {
  font-family: Oswald-Bold;
  width: 100%;
  font-size: 30px;
  font-weight: 900;
  color: #2b91d8;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 10px 10px 25px 10px;
}

.cardFifth {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin: 15px;
  position: relative;
}

.card-titleFifth {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.arrow-downFifth {
  position: absolute;
  top: 10px;
  right: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  cursor: pointer;
}

.card-headerFifth {
  font-size: 16px;
  line-height: 25px;
}

#LicNum {
  position: relative;
  float: right;
  font-weight: bolder;
  font-size: 18px;
  font-style: normal;
  text-align: right;
  margin-right: 15px;
}