@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'poppins';
  border: 0;
  font-size: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  cursor: default;
}

main {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.modal-sm {
  max-width: 400px !important;
}

.hero-banner {
  /* background-image: url('images/banner.png'); */
  /* background-size: cover; */
  /* background-position: center; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

:root {
  --red: #eb433d;
  --white: #fff;
  --light: #fff3f2;
}

.bm-btn {
  color: var(--white);
  padding: 6px 18px;
  background-color: var(--red);
  border-radius: 33px;
  font-weight: 500;
  font-size: 18px;
  border: none;
}

.overlay {
  position: absolute;
  background-color: #000000b2;
  width: 100%;
  height: 100%;
}

.color-red {
  color: var(--red);
}

.banner-heading {
  font-size: 55px;
  font-weight: 500;
  color: var(--white);
}

.banner-heading-2 {
  color: var(--white);
  font-size: 22px;
}

.ad-card {
  border-radius: 40px;
  box-shadow: -35px -35px 100px 10px rgba(255, 255, 255, 0.9),
    35px 35px 100px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  z-index: -1;
  background-color: #fff;
  padding: 20px 10px
}


.image-overlay {
  position: absolute;
  border-radius: 40px;
  background-color: #0006;
  width: 100%;
  height: 100%;
  top: 0;

}

.process-card {
  position: relative;
}

.process-card img {
  border-radius: 40px;
  box-shadow: 20px 20px 50px 8px #ccc4c4;
}

.process-card .process-no {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.process-card .process-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
}

.portfolio-card img {
  border-radius: 30px;
}

.portfolio-card {
  position: relative;
}

.portfolio-title {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
  background-color: #000;
  opacity: 90%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  width: 100%;
  margin-bottom: 0px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.portfolio-card:hover .portfolio-title {
  display: none;
}

.portfolio-onhover {
  display: none;
}

.portfolio-card .portfolio-onhover {
  position: absolute;
  background-color: #000;
  opacity: 0;
  /* Initially hidden */
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  padding: 15px;
  padding-top: 30px;
  transition: opacity 0.3s ease-in-out;
  /* Add transition */
}

.portfolio-card:hover .portfolio-onhover {
  opacity: 0.9;
  /* Change opacity to 90% on hover */
}


.portfolio-onhover h5 {
  color: var(--red);
  padding-bottom: 5px;
  border-bottom: 2px solid var(--white);
  display: inline-block
}

.portfolio-onhover p {
  color: var(--white);
}

.result-number {
  background-color: #fff;
  box-shadow: 0px 0px 10px var(--red);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card {
  border-radius: 25px;
  box-shadow: 20px 20px 50px 8px #ccc4c4;
  background-color: #fff;
  transition: all 0.2s ease-in;
}

.about-card h4 {
  color: var(--red);
  font-weight: 600;
}

.about-card:hover h4 {
  color: var(--white);
}

.about-card:hover {
  background-color: var(--red);
  color: var(--white);
}

.service-card {
  border-radius: 20px;
  box-shadow: 20px 20px 50px 8px #ccc4c4;
  background-color: #fff;
  transition: all 0.2s ease-in;

}

.service-card:hover {
  background-color: var(--red);
  color: var(--white);
}

.choose-card {
  height: 250px;
  border-radius: 20px;
  box-shadow: 20px 20px 50px 8px #ccc4c4;
  background-color: #fff;
  transition: all 0.2s ease-in;
}

.choose-card:hover {
  background-color: var(--red);
  color: var(--white);
}

.review-card {
  border-radius: 20px;
  background-color: var(--light);
  padding: 10px 20px;
  height: 370px;
}

/* Remove border from accordion items */
.accordion .accordion-item {
  border: none;
}

/* Remove border from accordion headers */
.accordion .accordion-header {
  border: none;
}

/* Remove border from accordion buttons */
.accordion .accordion-button {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid #000;
  padding: 0px;
  padding-top: 15px;
  padding-bottom: 15px
}

/* Optional: Remove bottom border of the accordion body */
.accordion .accordion-collapse {
  border-top: none;
}

/* Optional: Customize background color */
.accordion .accordion-button {
  background-color: transparent;
}

/* Optional: Remove border from the expanded button */
.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion .accordion-body {
  padding: 0px;
  padding-top: 15px;
  padding-top: 15px;
}

.coninfo .content h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.coninfo .content p {
  margin-bottom: 0px;
}

.coninfo .container {
  padding-left: 15px;
  padding-right: 15px;
}

.coninfo .row {
  padding: 50px 0 50px;
  border-bottom: 1px solid #e4dbdb
}

.contact-details {
  padding: 20px;
}

.form input {
  height: 50px;
  width: 100%;
  border: 0px;
  border-bottom: 2px solid #eeeeee;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0px;
  margin-bottom: 20px;
  color: #000;
}

.form input:focus {
  border-bottom: 2px solid var(--red);
}

@media (max-width: 600px) {
  .arrow {
      width: 40px; /* Adjust the size as needed */
      top: 10%; /* Adjust the position as needed */
      right: -10%; /* Adjust the position as needed */
  }
}



/*call-button*/
.call-button .call-to-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  background: #13e054;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 100%;
  box-sizing: border-box;
  color: #fff;
  animation: 0.6s linear infinite call-to-action-ripple;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.call-button .call-to-action-ripple i {
  transition: 0.3s;
  font-size: 2.2rem;
}

@keyframes call-to-action-ripple {
  0% {
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/*call button*/
