@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@500;600;700&display=swap");

:root {
  --primary-bg-color: hsl(324, 36%, 42%);
  --whatsapp-bg-color: hsl(122, 39%, 49%);
  --background-bg-color: hsl(0, 18%, 93%);
  --button-bg-color: hsl(31, 93%, 55%);
  --white-text-color: hsla(360, 100%, 100%);
}

/* Use a more-intuitive box-sizing model. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin all elements */
* {
  margin: 0;
}

/* Prevent adjustments of font size after orientation changes in iOS */
html {
  -webkit-text-size-adjust: 100%;
}

/* Allow percentage-based heights */
html,
body {
  height: 100%;
}

/* Typographic tweaks */
body {
  line-height: calc(1em + 0.5rem);
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

/* Avoid text overflows */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Improve media defaults */
img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Single taps are dispatched immediately on clickable elements */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Add the correct font weight in Chrome, Edge, and Safari. */
strong {
  font-weight: bolder;
}

/* Correct the inability to style buttons in iOS and Safari. */
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/* Correct small font size in all browsers. */
small {
  font-size: 80%;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

/*  Remove all animations, transitions and smooth scroll */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reset CSS end */

/* Landing page CSS */

.wrapper {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-family: "Lexend Deca", sans-serif;
  color: var(--primary-bg-color);
}

.section-separator {
  margin: 60px 0;
}

/* Top Header */
header {
  background-color: var(--white-text-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99999;
}

.logo img {
  height: 100%;
  width: 60%;
  cursor: pointer;
}

.number-buttons {
  display: flex;
  align-items: center;
}

.number-buttons a {
  margin-left: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--white-text-color);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.number-buttons a:first-child {
  margin-left: 0;
}

.number-buttons a:nth-child(1) {
  background-color: var(--primary-bg-color);
}

.number-buttons a:nth-child(2) {
  background-color: var(--primary-bg-color);
}

.number-buttons a:nth-child(3) {
  background-color: var(--whatsapp-bg-color);
}

.number-buttons a img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Top Header end */

/* Hero Section */
.hero {
  background-image: url("./assets/image/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  /*height: 100vh;*/
}

.hero-content {
  width: 60%;
  margin-top: 50px;
}

.hero-content h5 {
  font-size: 28px;
  font-weight: 700;
  line-height: 3rem;
  font-family: "Noto Sans", sans-serif;
}

.hero-content p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 2rem;
}

.form-container {
  width: 60%;
  margin-left: auto;
  margin-right: 0;
}
.form-container-mobile {
  width: 100%;
  margin-bottom: 50px;
  display: none;
}

.hero.mobile-hero .hero-content {
  width: auto;
  margin-top: 0px;
  text-align: center;
}

.hero.mobile-hero .hero-content h5 {
  font-size: 18px;
  margin-top: 5px;
}
.hero.mobile-hero .hero-content p {
  font-size: 15px;
  margin-top: 15px;
}

.contact-form {
  margin-top: 30px;
  background: #f2eefa;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
}

.form-group {
  margin: 15px 0;
}

.form-group input {
  height: 50px;
}

.form-group label {
  margin: 5px 0;
}

/*.contact-form input[type='submit'] {*/
/*  background-color: #f79122;*/
/*  border: none;*/
/*  padding: 10px 15px;*/
/*  border-radius: 50px;*/
/*  color: #fff;*/
/*}*/
/*.input-btn {*/
/*  background-color: #f79122;*/
/*  border: none;*/
/*  padding: 10px 15px;*/
/*  border-radius: 50px;*/
/*  color: #fff;*/
/*}*/
#formsubmit {
  background-color: #f79122;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  color: #fff;
}

.contact-form p {
  font-size: 12px;
  text-align: center;
  margin: 5px 0;
}

.contact-form h5 {
  text-align: center;
  margin: 5px 0;
}

.hero-bottom {
  background-color: rgba(145, 69, 114, 0.8);
  color: #fff;
  display: flex;
  width: 60%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  justify-content: space-around;
  align-items: center;
}

.hero-bottom-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 5px 10px;
  text-align: center;
  position: relative;
}

.hero-bottom-inner p {
  font-size: 30px;
}

.hero-bottom-inner:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -10px;
  width: 1px;
  background-color: #fff;
}

/* How can we help us section */
.content-container {
  text-align: center;
}

.content-container p {
  margin: 0 auto;
  width: 60%;
  font-size: 20px;
}

.row-1-box,
.row-2-box {
  display: flex;
}

.content-box {
  flex-basis: 50%;
  padding: 10px;
  height: auto;
  border: 1px solid rgba(181, 181, 181, 0.5);
  margin: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  width: 400px;
}

.content-box:hover {
  border: none;
  transform: translateZ(10px);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.content-box img {
  background-color: #914572;
  height: 75px;
  width: 75px;
  position: relative;
  top: -45px;
  border-radius: 10px;
  padding: 5px;
}

.content-box h2 {
  font-size: 24px;
}

/* Why Choose us */
.choose-us {
  overflow: hidden;
}

.chooseus-inner {
  display: flex;
}

.chooseus-left {
  position: relative;
  flex-basis: 40%;
  /* padding: 40px 0px; */
}
.chooseus-right {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.chooseus-left h1 {
  margin: 20px;
}

.chooseus-left-img1 img {
  width: 500px;
  height: auto;
  object-fit: scale-down;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.chooseus-left-img2 {
  position: absolute;
  left: 425px;
  top: 215px;
}
.chooseus-left-img2 img {
  width: 300px;
  height: auto;
  object-fit: scale-down;
  border-radius: 50px;
}

.chooseus-right {
  /* padding: 40px 20px; */
}

.chooseus-right p {
  text-align: center;
  width: 80%;
}

.chooseus-right-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chooseus-row1,
.chooseus-row3 {
  display: flex;
  flex-direction: column;
}

.chooseus-row1 div,
.chooseus-row3 div,
.chooseus-row2 div {
  background-color: #fff;
  height: 170px;
  margin: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 150px;
  cursor: pointer;
}

.chooseus-row1 div img,
.chooseus-row3 div img,
.chooseus-row2 div img {
  height: 75px;
  width: 75px;
}

.chooseus-row1 div p,
.chooseus-row3 div p,
.chooseus-row2 div p {
  padding: 5px;
  margin-bottom: 0px;
  font-size: 14px;
}

/* FAQ CONTAINER */

.faq-container {
  display: flex;
  flex-wrap: wrap;
}

.left-section {
  flex: 1;
}

.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-container img {
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
}

/* FAQ CONTAINER END */

/* Testimonails */

.slider {
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

.slider .slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.slider .slide .top {
  width: auto;
}

.slider .slide .top iframe {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
}

.slider .slide .top div {
  background: var(--primary-bg-color);
  color: var(--white-text-color);
  margin: 0px;
  position: relative;
  bottom: 10px;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.slider .slide .top h3 {
  padding: 25px;
  text-align: center;
  font-size: 1.5rem;
}

.slider .slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .slide .testimonial {
  width: 100%;
  height: auto;
  padding: 30px 40px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 5px;
}

.slide .testimonial.border {
  border: 1px solid hsl(0, 0%, 40%);
}

.slider .slide .testimonial:hover img {
  filter: none;
  transition: filter ease 0.3s;
}

.slider .slide .testimonial img {
  width: 24px;
}

.slider .slide .testimonial .testimonial__text {
  font-size: 1rem;
  color: hsl(0, 0%, 40%);
  flex-grow: 1;
}

.slider .slide .testimonial .testimonial__text.middle {
  font-size: 1.5rem;
  line-height: 2.7rem;
}

.testimonials_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial_heading {
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
}

.google-ratings img {
  display: inline-block;
}

/* - feedback person details */
.person-details {
  display: flex;
  align-items: center;
}

.person-details__rating {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.person-details__rating .fa {
  color: hsl(51, 100%, 50%);
  font-size: 16px;
}

.person-details__left {
  margin-right: 10px;
}

.person-details__left i {
  font-size: 24px;
  color: var(--primary-bg-color);
}

.person-details__right {
  display: flex;
  flex-direction: column;
}

.person-details__name {
  font-weight: bold;
}

.person-details__designation {
  font-style: italic;
  color: hsl(0, 0%, 53%);
}

/* Testimonials end */

/* Testimonial Count */

.testimonial-count {
  background-color: var(--background-bg-color);
  margin: 20px 0;
}

.symbol-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.symbol-icons img {
  height: 3rem;
  width: 3rem;
  margin-right: 30px;
}

/* Testimonial Count End */

/* Footer */
.footer {
  background-color: hsl(0, 0%, 7%);
  text-align: center;
  padding: 15px 0px;
}

.footer p {
  font-size: 35px;
  color: var(--white-text-color);
}

.footer span {
  color: var(--white-text-color);
}

/* RESPONSIVE */

@media screen and (min-width: 1024px) and (max-width: 1320px) {
  .chooseus-left-img2 img {
    display: none;
  }
  .hero-bottom-inner p {
    font-size: 25px;
  }

  .hero-bottom-inner h3 {
    font-size: 20px;
  }
  .slider .slide .testimonial .testimonial__text.middle {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
  .content-container p {
    width: auto;
    font-size: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .content-container p {
    width: auto;
    font-size: 18px;
  }
  .chooseus-inner {
    flex-wrap: wrap;
  }

  .chooseus-left,
  .chooseus-right {
    flex-basis: 100%;
  }

  .chooseus-right {
    padding: 10px;
  }

  .chooseus-right p {
    /* margin-top: 20px; */
    width: 100%;
  }

  .chooseus-left-img2 {
    display: none;
  }

  .hero-bottom-inner p {
    font-size: 20px;
  }

  .hero-bottom-inner h3 {
    font-size: 16px;
  }
  .slider {
    flex-direction: column;
    align-items: center;
  }

  .slider .slide {
    width: 100%;
  }

  .slider .slide .testimonial .testimonial__text.middle {
    font-size: 1rem;
    line-height: 2.1rem;
  }
}

@media only screen and (min-width: 1024px) {
  .choose-us {
    height: fit-content;
  }
}

@media only screen and (max-width: 768px) {
  .number-buttons a:nth-child(3) {
    display: none;
  }

  .hero-content p {
    line-height: normal;
  }

  .mobile.hero-bottom {
    width: 100%;
    display: flex !important;
    border-radius: 0;
  }

  .mobile .hero-bottom-inner:not(:last-child)::after {
    display: none;
  }

  .mobile .hero-bottom-inner p {
    font-size: 20px;
  }

  /* responsive Form in mobile*/

  .hero {
    background-image: none;
    height: auto;
    background-color: #ede5fa;
  }

  .hero .desktop {
    display: none;
  }

  .hero .mobile {
    display: block !important;
    background-image: url("./assets/image/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    height: 80vh;
  }

  /* .hero .mobile-content {
    display: block !important;
    width: 100%;
  } */
  .hero .mobile-content .hero-content {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .hero .mobile .hero-content {
    width: 100%;
    text-align: center;
    margin: 0px;
  }

  .hero .mobile .hero-content h5 {
    font-size: 20px;
    line-height: 1.5rem;
  }
  .hero .mobile .hero-content p {
    margin: 10px 0;
    font-size: 16px;
  }

  /* responsive Form in mobile end */

  .form-container {
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-bottom {
    display: none;
  }

  .hero.mobile-hero {
    display: block !important;
    height: 100vh;
  }

  .number-buttons a:nth-child(3) {
    display: none;
  }

  .form-container {
    display: block !important;
  }

  /* .form-container-mobile {
    display: block;
  } */

  .form-container-mobile .contact-form {
    margin-top: 0px;
    border-radius: 0px;
  }

  .row-1-box,
  .row-2-box {
    flex-wrap: wrap;
  }
  .content-box {
    flex-basis: auto;
  }
  .chooseus-row1 div,
  .chooseus-row3 div,
  .chooseus-row2 div {
    margin: 5px;
    width: 160px;
  }

  .chooseus-left-img1 img {
    width: 100%;
  }

  /* FAQ */
  .faq-container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .faq-container .left-section {
    margin-bottom: 20px;
  }

  /* Testimonials */
  .slider .slide {
    width: auto;
  }

  .testimonials_top {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonials_top .google-ratings {
    text-align: center;
  }

  /* Testimonial count */
  .symbol-icons {
    flex-direction: column;
  }

  .symbol-icons div {
    flex-direction: column;
    justify-content: center;
  }

  .symbol-icons div:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .symbol-icons div img {
    margin-right: 0px !important;
    margin-bottom: 5px;
  }

  /* Press and Media */
  .press-media img {
    margin: 0 auto;
  }

  /* Footer */
  .footer p {
    font-size: 20px;
    color: #fff;
  }

  /* Sticky CTA */
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: var(--white-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--white-text-color);
    text-decoration: none;
    flex-basis: 50%;
  }

  .sticky-cta .whatsapp {
    background-color: var(--whatsapp-bg-color);
  }

  .sticky-cta .callus {
    background-color: var(--primary-bg-color);
  }

  .sticky-cta .fa {
    margin-right: 5px;
  }

  .zsiq_floatmain {
    margin-bottom: 35px !important;
  }
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  /* Header */
  .number-buttons {
    flex-direction: column;
  }
  .number-buttons a {
    margin: 5px 0;
  }
  .logo img {
    width: 100%;
  }

  .mobile.hero-bottom {
    flex-wrap: wrap;
  }
  .mobile.hero-bottom .hero-bottom-inner {
    width: 50%;
  }
  .mobile.hero-bottom p {
    font-size: 16px;
    margin-bottom: 0;
  }

  .mobile.hero-bottom h3 {
    font-size: 12px;
  }

  .content-box {
    margin: 50px 0;
  }

  .chooseus-row1 div,
  .chooseus-row3 div,
  .chooseus-row2 div {
    margin: 5px;
    width: 120px !important;
  }

  .chooseus-row1 div p,
  .chooseus-row3 div p,
  .chooseus-row2 div p {
    font-size: 12px;
  }

  .chooseus-row1 div img,
  .chooseus-row3 div img,
  .chooseus-row2 div img {
    height: 50px;
    width: 50px;
  }

  /* Footer */
  .footer p {
    font-size: 18px;
    color: #fff;
  }
}

@media only screen and (max-width: 400px) {
  .chooseus-right-inner {
    display: none;
  }

  .chooseus-right-inner.mobile {
    display: block !important;
  }

  .chooseus-row1,
  .chooseus-row3 {
    flex-direction: row;
  }

  .hero-content h5 {
    font-size: 16px !important;
    line-height: 1.5rem;
  }

  .hero-content p {
    font-size: 14px !important;
  }
}

/* Bootstrap code override */
.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--white-text-color) !important;
  background-color: var(--primary-bg-color) !important;
}
