/* Base Styles Start */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Public+Sans:wght@300;400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  /* font-family: "Poppins", sans-serif; */
  font-family: "Public Sans", sans-serif;
  scroll-behavior: smooth;
}

/* Colors */

:root {
  --orange: #f4511e;
  --teal-200: #e9f6f5;
  --teal-400: #26a69a;
  --grey-700: #616161;
  --grey-800: #898989;
  --grey-900: #212121;
  --black: #000000;
  --white: #ffffff;
}

img {
  max-width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

.section-spacing {
  padding: 50px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--grey-900);
}

.section-title span {
  color: var(--teal-400);
}

/* Base Styles End */

/* Header Section CSS Start */

nav {
  background: var(--teal-400);
  padding: 10px 0;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.14));
  transition: all 0.4s ease-in-out;
  z-index: 999;
}

.sticky {
  position: fixed;
  width: 100%;
  padding: 15px 0;
}

a.logo {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

a.logo span {
  color: var(--black);
}

.nav-link {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
  background: var(--grey-900) !important;
  color: var(--white) !important;
  border: 1px solid var(--grey-900) !important;
  padding: 10px !important;
  border-radius: 6px !important;
  transition: all 0.4s ease-in-out !important;
}

.nav-link:hover {
  background: transparent !important;
  border: 1px solid var(--grey-900) !important;
  color: var(--grey-900) !important;
}

.login-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  margin-left: 20px !important;
  border: 1px solid var(--orange) !important;
  border-radius: 6px !important;
}

.login-btn:hover {
  background: transparent !important;
  border: 1px solid var(--orange) !important;
  color: var(--orange) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Header Section CSS End */

/* Hero Section CSS Start */

.hero-wrapper {
  background: var(--teal-200);
  padding-top: 112px;
  padding-bottom: 50px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
}

.hero-content h1 span {
  color: var(--teal-400);
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey-900);
}

.primary-btn {
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}

.primary-btn:hover {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
}

.hero-img img {
  max-width: 85%;
}

.hero-img-box {
  position: absolute;
  top: 23%;
  left: -50px;
  max-width: 200px;
  background: rgb(255 255 255 / 0%);
  border: 1px solid #c4c4c4;
  box-shadow: 0px 4px 20px rgba(119, 119, 119, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px;
}

.hero-img-box h5 {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
  color: #404040;
  margin: 0;
  padding-left: 10px;
}

.hero-img-box h5::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 65%;
  background: var(--orange);
  border-radius: 50px;
  top: 10px;
  left: 0;
}

.hero-img-box h5 span {
  font-weight: 700;
  color: var(--orange);
}

.hero-img {
  position: relative;
  text-align: right;
}

/* Hero Section CSS End */

/* About Section CSS Start */

.about-content {
  text-align: right;
  padding-left: 50px;
}

.about-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-900);
}

/* About Section End Start */

/* Redirect Section CSS Start */

.redirect-wrapper {
  background: var(--teal-400);
}

.redirect-content {
  text-align: center;
  padding: 0 80px;
}

.redirect-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--grey-900);
  padding-bottom: 20px;
}

.redirect-content h2 span {
  color: var(--white);
}

.redirect-content p {
  font-weight: 300;
  color: var(--white);
}

.cloud-small {
  position: absolute;
  top: 50px;
  left: 0;
}

.cloud-big {
  position: absolute;
  right: 0;
  bottom: 20px;
}

/* Redirect Section CSS End */

/* Services Section CSS Start */

.services-shape {
  right: 0;
  top: 50px;
}

.services-card {
  min-height: 225px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-top: 25px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}

.services-card:hover {
  border: 1px solid var(--orange);
  box-shadow: 0px 6px 25px rgba(244, 81, 30, 0.21);
}

.services-card:hover .s-card-icon {
  background: var(--orange);
}

.s-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--teal-400);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s;
}

.s-card-text h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--grey-900);
  margin: 0;
  padding: 10px 0;
}

.s-card-text p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #898989;
}

/* Services Section CSS End */

/* Tools Section CSS Start */
.payment {
  display: flex;
  max-width: 50%;
  margin: auto;
  margin-top: 1vh;
  justify-content: space-between;
}

.payment2 {
  display: flex;
  max-width: 40%;
  margin: auto;
  margin-top: 40px;
  justify-content: space-between;
}

.payment svg {
  margin: 3px;
}

.tools-top h4 {
  font-size: 28px;
  font-weight: 700;
}

.tools-top.text-center {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey-900);
}

.tools-shape1 {
  top: 50px;
  left: 0;
}

.tools-shape2 {
  top: 50%;
  right: 0;
}

/* Tools Section CSS End */

/* Complecated Section CSS Start */

.complecated-wrapper {
  background: #f2f2f2;
}

.complecated-img {
  max-width: 85%;
}

.complecated-content {
  text-align: right;
  padding-left: 50px;
}

.complecated-shape {
  top: 50px;
  left: 0;
}

/* Complecated Section CSS End */

/* Pricing Section CSS Start */

.pricing-card-wrap {
  padding: 0px 150px;
}

.pricing-card {
  position: relative;
  background: rgba(38, 166, 154, 0.1);
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 10px;
}

.pricing-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 120px;
  background: var(--teal-400);
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.pricing-badge::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 20px;
  background: #00695c;
  top: 0;
  left: -21px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.pricing-badge::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background: var(--teal-400);
  bottom: -17px;
  left: 0px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  transform: rotate(180deg);
  border-radius: 10px !important;
}

.pricing-badge h4 p {
  color: var(--grey-900);
  margin: 0;
  padding-right: 5px;
}

.pricing-badge h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  margin: 0;
  font-size: 20px;
}

.pricing-badge h4 span {
  font-size: 28px;
}

.pricing-badge h6 {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
}

.pricing-active {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.14) !important;
}

.pricing-active .pricing-badge::before,
.pricing-active .pricing-badge::after,
.pricing-active .pricing-badge {
  background: var(--orange);
}

.pricing-active .buy-now {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}

.pricing-active .buy-now:hover {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.pricing-active .p-btn,
.pricing-active .p-btn:active,
.pricing-active .p-btn:hover {
  color: var(--orange);
}

.pricing-package {
  padding: 20px 0;
}

.pricing-package h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--grey-900);
}

.pricing-package p {
  font-size: 14px;
  color: var(--grey-900);
  margin: 0;
}

.feartures-item p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding-left: 8px;
}

.buy-now {
  font-weight: 500;
  background: var(--teal-400);
  color: var(--white);
  padding: 10px 30px;
  border: 1px solid var(--teal-400);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  margin-bottom: 2em;
}

.buy-now:hover {
  background: transparent;
  color: var(--teal-400);
  border: 1px solid var(--teal-400);
}

.pricing-buttons {
  margin-top: 6em;
  margin-bottom: 2em;
}

.p-btn,
.p-btn:active,
.p-btn:hover {
  display: block;
  color: var(--teal-400);
  font-weight: 500;
  margin-top: 15px;
}

/* Pricing Section CSS End */

/* Footer Section CSS Start */

.footer-wrapper {
  background: var(--grey-900);
  padding: 15px 0;
}

.footer-social a {
  padding: 0 10px;
}

.footer-wrapper hr {
  background: var(--grey-700);
  margin: 12px 0;
}

.footer-copyright p {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  margin: 0;
}

.footer-copyright p a {
  font-size: 16px;
  color: var(--teal-400);
}

/* Footer Section CSS End */

/* Media Queries for Responsive */

@media (min-width: 1400px) {
  .hero-img-box {
    left: 25px;
  }
}

@media (max-width: 1199px) {

  .section-title,
  .redirect-content h2 {
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-img-box {
    top: 10%;
    left: -50px;
  }

  .pricing-card-wrap {
    padding: 80px;
  }
}

@media (max-width: 991px) {
  .pricing-card-wrap {
    padding: 20px;
  }

  .nav-link {
    width: 140px;
    margin-top: 20px;
    text-align: center;
  }

  .login-btn {
    margin-left: 0 !important;
  }
}

@media (max-width: 767px) {
  .logo a {
    font-size: 25px;
  }

  .section-title,
  .redirect-content h2 {
    font-size: 28px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-imgage {
    padding-top: 50px;
  }

  .hero-img-box {
    top: 0;
    left: 0;
  }

  .about-content,
  .complecated-content {
    padding-top: 50px;
    padding-left: 0px;
  }

  .redirect-content {
    padding: 0px;
  }

  .pricing-card {
    margin-bottom: 60px;
  }

  .pricing-card-wrap {
    padding: 0px;
  }
}