/* Why Choose Me Section 
***************************/
.why-choose-me-section {
  background-color: #0d0d0d;
  padding: 14rem 5rem;
  position: relative;
}

.why-me-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.75fr;
  margin-top: 10rem;
  gap: 2em;
  grid-auto-rows: 40rem;
  margin-left: -3rem;
  margin-right: -3rem;
}

.why-me-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.left-column-holder {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  text-align: center;
}

.right-column-holder {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  text-align: center;
}

.left-top-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #a60e0e;
  text-transform: uppercase;
  font-weight: bold;
}

.left-top-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #a60e0e;
  font-weight: 500;
}

.left-bottom-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

.left-bottom-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.right-top-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

.right-top-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.right-bottom-text {
  font-family: "Inter";
  font-size: 2rem;
  color: #a60e0e;
  text-transform: uppercase;
  font-weight: bold;
}

.right-bottom-text-lorem {
  font-family: "Inter";
  font-size: 1rem;
  color: #a60e0e;
  font-weight: 500;
}

.line {
  position: absolute;
  top: 6.8rem;
  left: 25rem;
  width: 13rem;
  height: 2px;
  background-color: #a60e0e;
  z-index: 20;
}

.line-2 {
  position: absolute;
  top: 7rem;
  right: 27rem;
  width: 13rem;
  height: 2px;
  background-color: #fff;
  z-index: 20;
}

.line-3 {
  position: absolute;
  top: 27rem;
  left: 25rem;
  width: 13rem;
  height: 2px;
  background-color: #fff;
  z-index: 20;
}

.line-4 {
  position: absolute;
  top: 27rem;
  right: 25rem;
  width: 13rem;
  height: 2px;
  background-color: #a60e0e;
  z-index: 20;
}

.dot-red {
  background-color: #a60e0e;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  box-shadow: 0 0 20px rgba(166, 14, 14, 1), 0 0 40px rgba(166, 14, 14, 0.8),
    0 0 60px rgba(166, 14, 14, 0.6), 0 0 80px rgba(166, 14, 14, 0.4);
}

.dot-white {
  background-color: #fff;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.4);
}

.dot-white-1 {
  background-color: #fff;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.4);
}

.dot-red-1 {
  background-color: #a60e0e;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(166, 14, 14, 1), 0 0 40px rgba(166, 14, 14, 0.8),
    0 0 60px rgba(166, 14, 14, 0.6), 0 0 80px rgba(166, 14, 14, 0.4);
}

/* Why Choose Me Section  End
***************************/

/**********************************
      Testimonials Section
************************************/
.testimonials-section {
  padding: 14rem 5rem;
  background-color: #0d0d0d;
  position: relative;
}

.testimonial-title {
  margin-bottom: 10rem;
  margin-bottom: 0rem;
  line-height: 5.5rem;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 65rem;
  padding: 1.5rem 2rem;
  width: 100%;
  display: flex;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  /* Optional for layout inside cards */
  background-color: transparent;
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.testimonial-container {
  border-bottom: solid 3px #fff;
  border-top: #fff solid 3px;
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 450px;
  overflow: hidden;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12rem;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-self: center;
}

.testimonial-icon {
  font-size: 1.6rem;
  color: gold;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #fff;
  font-family: "Inter";
}

.testimonial-image {
  width: 100%;
  max-width: 60rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.testimonial-image-holder {
  position: relative;
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
  background-color: #a60e0e;
}

.arrow-icon-left,
.arrow-icon-right {
  width: 4rem;
  height: 4rem;
  fill: #fff;
}

.arrow-icon-left {
  position: absolute;
  top: 44rem;
  left: 4rem;
  cursor: pointer;
}

.arrow-icon-right {
  position: absolute;
  top: 44rem;
  right: 4rem;
  cursor: pointer;
}

/**********************************
      Testimonials Section End
************************************/

/**********************************
      Contact Section
************************************/

.contact-section {
  background-color: #a60e0e;
  padding: 14rem 2rem;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.contact-form label {
  font-weight: bold;
  color: #0d0d0d;
  margin-bottom: 0.3rem;
  display: block;
  font-size: 1.2rem;
  font-family: "Inter";
}

.contact-form input,
.contact-form textarea {
  font-size: 1rem;
  padding: 0.8rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.grid-left-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.white-color {
  color: #0d0d0d;
}

.dark-shadow {
  color: rgba(13, 13, 13, 0.25);
  position: absolute;
  top: -26px;
  left: 0px;
}

.left-column-text-lorem {
  font-size: 1.4rem;
  line-height: 1.2;
  font-family: "Inter";
  color: #0d0d0d;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-button {
  background-color: #fff;
  color: #0d0d0d;
  width: auto;
  align-self: self-start;
  border: none;
}

.contact-button:hover {
  background-color: #0d0d0d;
  color: #fff;
  box-shadow: 0 10px 20px rgba(13, 13, 13, 0.9);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/**********************************
      Contact Section End
************************************/

/**********************************
      Footer Section
************************************/

.footer-section {
  background-color: #0d0d0d;
  padding: 7.5rem 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-items: center;
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.column-2,
.column-3 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 20rem;
  gap: 0.8rem;
  align-items: center;
}

.column-1 {
  align-self: flex-start;
}

.footer-text {
  font-family: "Inter";
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: bolder;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-family: "Inter";
  color: #fff;
  font-size: 1.1rem;
  text-transform: capitalize;
  position: relative;
  padding: 0.5rem;
}

/* Animation Underline */
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #a60e0e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-link:active,
.footer-link:hover {
  color: #a60e0e;
}

.footer-link:hover::after {
  transform: scaleX(1);
}

.footer-link.colored {
  color: #a60e0e;
}

/**********************************
      Footer Section End
************************************/

/*I WILL DO MEDIA-QUERY 1180px */
