@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif !important;
}

a {
  text-decoration: none !important;
}

:root {
  --primary-color: #2ed573;
  --secondary-color: #1e90ff;
  --white-color: #fff;
  --black-color: #000;
  --light-color: #f1f2f6;
  --dark-color: #2f3542;
}

#auto-popup {
  width: 60vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(30deg) scale(0);
  z-index: 999;
  background: var(--white-color);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2), 0 -10px 10px rgba(0, 0, 0, 0.2);
  padding: 50px 30px;
  border-radius: 10px;
  transition: 0.4s linear;
}

#auto-popup.active {
  transform: translate(-50%, -50%) skew(0) scale(1);
}

button {
  background: transparent;
}

#auto-popup button {
  left: 50%;
  transform: translateX(-50%);
}

.auto-popup-close {
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
  width: 60px;
  height: 60px;
  border-radius: 0 0 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  color: var(--white-color);
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}

#callback-popup {
  width: 60vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(180deg) scale(0);
  z-index: 999;
  background: var(--white-color);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2), 0 -10px 10px rgba(0, 0, 0, 0.2);
  padding: 50px 30px;
  border-radius: 10px;
  transition: 0.4s linear;
}

#callback-popup.active {
  transform: translate(-50%, -50%) skew(0) scale(1);
}

button {
  background: transparent;
}

#callback-popup button {
  left: 50%;
  transform: translateX(-50%);
}

.callback-popup-close {
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
  width: 60px;
  height: 60px;
  border-radius: 0 0 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  color: var(--white-color);
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
#navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#hero-bg {
  /* background: url("./../images/hero-img.png"); */
  background: linear-gradient(to bottom right, #2ed573, #1e90ff);
  height: 100%;
  padding-top: 100px;
  color: #fff;
}

.heading-2 {
  font-size: 60px;
  line-height: 60px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-4 {
  font-size: 30px;
  line-height: 34px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-custom-light {
  border: 1px solid var(--white-color);
  padding: 14px 36px;
  color: var(--white-color);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: 0.5s linear;
}

.btn-custom-light:hover {
  color: var(--black-color);
}
.btn-custom-light:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--white-color);
  z-index: -1;
  transform: scaleX(0);
  transition: 0.3s linear;
  transform-origin: left;
}

.btn-custom-light:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--white-color);
  z-index: -1;
  transform: scaleX(0);
  transition: 0.3s linear;
  transform-origin: right;
}

.btn-custom-light:hover:before,
.btn-custom-light:hover::after {
  transform: scaleX(1);
}

.btn-custom-primary {
  border: 1px solid var(--primary-color);
  padding: 14px 36px;
  color: var(--dark-color);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: 0.5s linear;
}

.btn-custom-primary:hover {
  color: var(--black-color);
}
.btn-custom-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: -1;
  transform: scaleX(0);
  transition: 0.3s linear;
  transform-origin: left;
}

.btn-custom-primary:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: -1;
  transform: scaleX(0);
  transition: 0.3s linear;
  transform-origin: right;
}

.btn-custom-primary:hover:before,
.btn-custom-primary:hover::after {
  transform: scaleX(1);
}

.about-img-box {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  margin: 10px 0;
}

.about-img-box .img {
  border: 3px dashed var(--black-color);
  border-radius: 100%;
}

.about-img-box .img img {
  height: 80px;
}

#services {
  padding: 80px 0;
  background: var(--light-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 -10px 20px rgba(0, 0, 0, 0.2);
  margin: 50px 0;
}

.service-img-box {
  background: var(--white-color);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2), -10px 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.service-img-box img {
  height: 100px;
}

.package-red,
.package-blue,
.package-green,
.package-orange {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  position: relative;
  margin-top: 50px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

.package-red {
  background: #fc427b;
}

.package-blue {
  background: #3b3b98;
}

.package-green {
  background: #0be881;
}

.package-orange {
  background: #f79f1f;
}

.package-title {
  background: var(--white-color);
  width: calc(100% - 100px);
  text-align: center;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
  margin-top: -100px;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.package-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.package-red .package-title::before {
  background: #fc427b;
}

.package-blue .package-title::before {
  background: #3b3b98;
}

.package-green .package-title::before {
  background: #0be881;
}

.package-orange .package-title::before {
  background: #f79f1f;
}

.package-title h6 {
  text-transform: uppercase;
}

.package-red .package-title {
  color: #fc427b;
}

.package-blue .package-title {
  color: #3b3b98;
}

.package-green .package-title {
  color: #0be881;
}

.package-title p {
  margin-top: -10px;
}

.package-details {
  padding-top: 30px;
  text-align: center;
}

.package-details dl {
  list-style: none;
}

.package-details dl li {
  margin: 15px 0;
  color: var(--white-color);
  position: relative;
}

/* .package-details dl li::before{
    content: '\f00c';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'FontAwesome';
    margin-right: 30px;
} */

.package-blue .popular {
  background: var(--white-color);
  width: 100%;
  text-align: center;
  /* margin-top: 30px; */
  text-transform: uppercase;
  padding: 5px 0;
  position: absolute;
  top: 80px;
  left: 0;
}

#process {
  background: url("../images/hero-img.png");
  background-size: cover;
  background-attachment: fixed;
  color: var(--light-color);
  padding: 80px 0 200px 0;
}

.process-box {
  position: relative;
  z-index: 9;
  border-bottom: 1px solid var(--light-color);
  margin: 40px 10px;
}

.process-box h2 {
  font-size: 120px;
  font-weight: 800;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  z-index: -1;
  transition: 0.3s linear;
  transform-origin: center;
}

.process-box:hover h2 {
  transform: scale(1.1) translateX(-50%);
}

.process-box h1 {
  margin: 30px 0;
}

.process-box img {
  border-radius: 100px;
  height: 200px;
  width: 200px;
  border: 10px #606971 solid;
  margin: 15px 0;
  transition: 0.3s linear;
  overflow: hidden;
  position: relative;
  transform-origin: center;
}

.process-box:hover img {
  transform: scale(1.1);
}

#stats {
  /* width: 90vw; */
  position: relative;
}

.stats-container {
  width: 90vw;
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--black-color);
  padding: 80px 0;
  background: var(--white-color);
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

#stats .icon-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#stats .icon-box .icon {
  border: 2px dashed var(--black-color);
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #e5e5e5;
}

#stats .icon-box .icon img {
  height: 80px;
}
#testimonials {
  padding: 250px 0 80px 0;
}

.testimonial-box {
  background: var(--light-color);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.testimonial-box h5 {
  margin-bottom: 0px;
}

.testimonial-body {
  margin-top: -10px;
}

.testimonial-header img {
  display: none;
}

.user-details {
  margin-top: 20px;
}

.stars {
  color: rgb(219, 170, 45);
}
#cta {
  background: linear-gradient(
    to bottom right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white-color);
  text-align: center;
  padding: 80px 0;
}

#cta .heading-4 {
  font-weight: 400;
}

#contact {
  background: #c4d1eb;
  color: var(--white-color);
}

#contact img {
  height: 150px;
}

#copyright {
  background: var(--black-color);
  padding: 20px 0 0;
}

.portfolio-link {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  /* color: transparent; */
  -webkit-background-clip: text;
  font-size: 20px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 99;
  /* display: block; */
}

.btn-call {
  background: var(--primary-color);
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: var(--white-color);
  /* position: relative; */
  z-index: 99;
}

.btn-call:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 100px;
  animation: callAnim 2s linear infinite;
}

.btn-whatsapp {
  background: rgba(7, 94, 84, 1);
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: var(--white-color);
  /* position: relative; */
  gap: 10px;
  padding: 10px 30px;
  z-index: 99;
  animation: whatsappAnim 0.8s linear infinite alternate-reverse;
}

.btn-whatsapp a {
  color: var(--white-color);
}

/* .btn-whatsapp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 100px;
} */

@keyframes whatsappAnim {
  0% {
    transform: rotate(3deg);
  }

  50% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-3deg);
  }
}
@keyframes callAnim {
  0% {
    background: rgba(7, 94, 84, 1);
    transform: scale(1);
  }

  50% {
    background: rgba(7, 94, 84, 0.3);
    transform: scale(2);
  }

  100% {
    background: rgba(7, 94, 84, 1);
    transform: scale(1);
  }
}

.btn-call a {
  color: var(--white-color);
}

@media only screen and (max-width: 600px) {
  .navbar-nav {
    background: linear-gradient(to bottom, var(--white-color), #ddd);
    padding: 0 10px !important;
  }

  .auto-popup-close {
    height: 48px;
    width: 48px;
    top: 10px;
  }

  .heading-2 {
    font-size: 36px;
    line-height: 40px;
  }

  .heading-4 {
    font-size: 24px;
    line-height: 30px;
  }

  #auto-popup, #callback-popup {
    width: 90vw;
  }
  
  .auto-popup-close, .callback-popup-close{
      top: 0 !important;
  }

  #process {
    padding: 80px 0;
  }

  .stats-container {
    position: relative;
    top: 0;
    margin: 80px 0;
  }
  #testimonials {
    padding: 30px 0;
  }

  .col-sm-4,
  .col-sm-6,
  .col-sm-3 {
    margin: 20px 0;
  }
}
