@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=BBH+Bogle&family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dosis:wght@200..800&family=Fira+Code:wght@300..700&family=Libre+Barcode+39&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Oleo+Script:wght@400;700&family=Playwrite+NZ+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --blue: #1595ce;
  --white: #ffffff;
  --black: #333333;
  --gray: #cccccc;
  --green-dark: #88aa3e;
  --gray-dark: #757575;
  --p-color: #4f4f4f;
  --blue-light: #00b3ff;
  /* --yellow: #e2b811; */
  --gray-htop: rgb(53, 72, 85);
  --black-dark: #000000;
  --Poppins-font: "Poppins", sans-serif;
  --Robort-font: "Roboto", Sans-serif;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--padding);
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--white);
  font-family: var(--Poppins-font);
}

a {
  text-decoration: none;
}
button {
  border: none;
  outline: none;
  padding: 10px 20px;
  background-color: transparent;
  font-family: var(--Robort-font);
  cursor: pointer;
}

li {
  list-style: none;
}

p {
  line-height: 1.5;
  /* color: var(--p-color); */
}
h1,
h2,
h3 {
  font-family: var(--Robort-font);
  font-weight: 600;
  color: var(--white);
  font-size: 50px;
  color: var(--black);
}
h2 {
  font-size: 35px;
  line-height: 1.1;
  font-family: "Roboto", Sans-serif;
}
.h2-center {
  text-align: center;
  margin: 0px auto;
  font-weight: 800;
}

.sub-heading {
  color: var(--p-color);
  text-align: center;
  margin: 10px auto;
  margin-bottom: 30px;
  max-width: 900px;
}

.module-subtitle.subtitle-line.center {
  text-align: center;
}
/* Header */
header {
}

header .top-header {
  display: flex;
  justify-content: space-between;
}
.header-contact-infromation {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  color: var(--white);
  width: max-content;
  padding: 5px 40px;
  /* padding-left: 40px; */
  position: relative;
  background-color: var(--green-dark);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}
header .top-header .inform-div {
  display: flex;
  align-items: center;
  letter-spacing: 0.8px;
  font-style: italic;
  gap: 8px;
}
.header-contact-infromation .inform-div p {
  font-weight: 500;
}
header .top-header .header-contact-infromation .inform-div i,
.top-header i {
  font-size: 20px;
  margin-right: 5px;
  color: #084a79;
}
.social-icon {
  display: flex;
  align-items: center;
  gap: 0px;
  padding-right: 40px;
  /* border: 1px solid; */
}
.social-icon .location {
  display: flex;
  align-items: center;
}
.social-icon .location span {
  font-size: 14px;
  font-family: var(--Poppins-font);
  color: var(--p-color);
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-right: 8px;
}
.social-icon button {
  background-color: rgb(30, 212, 30);
  padding: 6px 13px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.6px;
  height: 100%;
  border-radius: 5px;
  margin-right: 9px;
  border: none;
}

header .top-header .header-contact-infromation .inform-div:nth-child(1) i {
  display: inline-block;
  animation: callVibrate 1s ease-in-out infinite;
}

header .top-header .header-contact-infromation .inform-div:nth-child(2) i {
  display: inline-block;
  animation: envelopeFlip 1.4s ease-in-out infinite;
  transform-origin: center;
}
header .top-header .header-contact-infromation .inform-div:nth-child(3) i {
  display: inline-block;
  animation: bounce 1s infinite ease-in-out;
  transform-origin: bottom;
}

@keyframes envelopeFlip {
  0% {
    transform: rotateY(0deg);
  }

  30% {
    transform: rotateY(180deg);
  }

  50% {
    transform: rotateY(180deg) scale(1);
  }

  80% {
    transform: rotateY(360deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes callVibrate {
  /* No movement */
  0% {
    transform: rotate(0deg);
  }

  /* Burst 1 */
  8% {
    transform: rotate(-18deg);
  }

  16% {
    transform: rotate(18deg);
  }

  22% {
    transform: rotate(-12deg);
  }

  28% {
    transform: rotate(12deg);
  }

  34% {
    transform: rotate(0deg);
  }

  /* Small pause */
  45% {
    transform: rotate(0deg);
  }

  /* Burst 2 */
  52% {
    transform: rotate(-18deg);
  }

  60% {
    transform: rotate(18deg);
  }

  66% {
    transform: rotate(-12deg);
  }

  72% {
    transform: rotate(12deg);
  }

  78% {
    transform: rotate(0deg);
  }

  /* Long pause */
  100% {
    transform: rotate(0deg);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ============== hEadee */
.sticky-header {
  position: sticky;
  top: 0px;
  z-index: 100000000000000;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(196, 194, 194, 0.651);
  box-shadow: 0 0.3px 4px var(--gray);
  padding: 0px 60px;
  height: 80px;
  background-color: var(--white);
  position: relative;
}

header nav .main-header {
  display: flex;
  align-items: center;
  gap: 100px;
}

header nav .main-header > ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav button {
  border: 1px solid var(--blue);
  background-color: var(--blue);
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /* box-shadow: 0px ; */
  padding: 10px 20px;
  box-shadow: 3px 3px 6px #808080b7;
  cursor: pointer;
  transition: all 0.4s ease-in-out;

  &:hover {
    box-shadow: 2px 2px 4px #808080b7;
  }
}
header nav button a {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

header nav img {
  padding-top: 6px;
  width: 80px;
}

header nav .main-header > ul > li {
  display: flex;
  justify-self: flex-start;
  align-items: center;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--Poppins-font);
  position: relative;
  padding-bottom: 2px;
  position: relative;
}
header nav .main-header > ul > li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--green-dark);
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}
header nav .main-header > ul > li:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

header nav .main-header > ul > li > a {
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.service-menu {
  display: flex;
  align-items: start;
  gap: 6px;
  position: relative;
}
.service-menu > i {
  position: relative;
  top: -2px;
  padding: 0px;
  /* transform: rotate(0deg); */
  transition: all 0.4s ease-in-out;
  font-size: 14px;
}
.service-menu:hover > i {
  transform: rotate(180deg);
}

.dropdown-service {
  position: absolute;
  width: max-content;
  height: max-content;
  border: 1px solid;
  padding: 20px;
  top: 51px;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
  background: #dfdfdfad;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(131, 128, 128, 0.678);
  border-radius: 14px;
  z-index: 2000;
}
.service-menu:hover .dropdown-service {
  transform: translateX(-50%) scaleY(1);
}
.dropdown-service ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.dropdown-service ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 20px; */
  padding: 10px 10px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;

  &:hover {
    background-color: #fffdfd;
  }
}

.dropdown-service ul li .icon-div {
  width: 45px;
  height: 45px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(128, 128, 128, 0.596);

  i {
    font-size: 20px;
    color: var(--green-dark);
  }
}
.dropdown-service ul li a {
  color: var(--p-color);
  font-size: 16px;
}

.dropdown-service p {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  font-family: var(--montserrat-font);
  margin-bottom: 13px;
}
.dropdown-service ul > div {
  width: 100%;
  border: 1px solid;
  padding-left: 20px;
}
.hamber-menu {
  display: none;
}
.container-menu {
  display: inline-block;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 3px;
  background: linear-gradient(45deg, var(--green-dark), var(--blue));
  margin: 6px 0;
  transition: 0.4s;
}
.change .bar1 {
  transform: translate(0, 9px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -9px) rotate(45deg);
}
header nav .mobile-menu {
  display: none;
}

.mobile-menu {
  display: block !important;
  max-height: 0px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 114px;
  background: linear-gradient(45deg, #084a79, #0099da);
  z-index: 2000000;
  padding: 0px 20px;
  transition: all 0.5s ease-in-out;
}
.mobile-menu ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid var(--green-dark);
}
.mobile-menu ul li i {
  color: var(--white);
  transform: rotate(-90deg);
}
.mobile-menu ul li a {
  width: fit-content;
  font-family: var(--Robort-font);
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  color: white;
}

.mobile-menu ul li .link {
  transform: translateX(-300px);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  cursor: pointer;
}
.mobile-menu ul li .link.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.active {
  max-height: 1600px;
  padding: 20px;
}
.mobile-menu .drop-down {
  display: flex;
  flex-direction: column;
}
.mobile-menu .drop-down .menu-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sub-menu {
  max-height: 0px;
  overflow: hidden;
  width: 100%;
  display: flex;
  row-gap: 8px;
  flex-direction: column;
  align-items: start;
  border-left: 6px solid var(--green-dark);
  padding: 0px 12px;
  transition: all 0.5s ease-in-out;
}
.mobile-sub-menu a {
  width: 100% !important;
  /* padding: 8px 0px; */
}
.mobile-sub-menu.active {
  max-height: 300px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.package-menu .list.has-nested a:hover::before {
  transform-origin: left;
  transform: scaleX(0);
}
/* ================ Home Page Hero Section ================= */

/* ================ Home Page Hero Section ================= */

.container {
  max-width: 1200px;
  margin: 0px auto;
  /* border: 1px solid; */
  height: 100%;
  position: relative;
  z-index: 2;
}

.heroSlider {
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  position: relative;
}

.pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.pagination .box-1 {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.pagination .box-1.active {
  background: #0066ff; /* BLUE ACTIVE */
  width: 60px;
}

.heroTrack {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  /* transform: translateX(-200%); */
}

.home-section {
  min-width: 100%;
  height: 550px;
  position: relative;

  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      #000b1e 0%,
      rgba(255, 255, 255, 0.001) 100%
    );
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overly {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    justify-items: center;
    align-items: center;

    .left-side {
      width: 65%;
      padding: 30px 50px;
      color: var(--white);
      /* border: 1px solid; */
    }

    .left-side {
      height: 100%;
      /* border: 1px solid red; */
      padding-left: 60px;
      padding-bottom: 60px;
      display: flex;
      flex-direction: column;
      justify-content: end;
    }
  }
}

/* .heroSlider .home-section-2 {
background: url(../images/24277.webp);
} */
.left-side .h5 {
  font-family: var(--Robort-font);
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  background-color: #ffffff1c;
  width: fit-content;
  padding: 12px 22px;
  letter-spacing: 1px;
  border-radius: 8px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
  position: relative;

  &::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: rgb(9, 255, 9);
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
  }
}
/* .home-section */

.left-side h1,
.h1 {
  color: var(--white);
  font-size: 50px;
}
.hide-p {
  display: none;
}

.left-side.firt-sec h1,
.h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  font-family: var(--Poppins-font);

  b {
    color: var(--green-dark);
  }
}
.scren-968 {
  display: none;
}
.left-side p {
  margin-top: 30px;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
}
.mb-p {
  display: none;
}

.home-section .left-side button {
  background-color: #5cc51d;
  padding: 12px 25px;
  font-family: var(--Poppins-font);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  border-radius: 5px;
  letter-spacing: 0.7px;
  margin-right: 20px;
}
.home-section .left-side a:nth-child(2) button {
  background-color: var(--blue);
}

/*============================= SLIDER ======================= */
.cover-container {
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
}
.list-slide {
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(45deg, #799d3e 40%, #1595ce);
  overflow: hidden;
  margin-top: 0px;
  transform: rotate(1deg);
  /* margin-bottom: -10px; */
  margin-top: -12px;
}

.cover-container .cover-wraper {
  display: flex;
  gap: 20px;
  /* animation: slide 20s linear infinite; */
}
.slide-track {
  display: flex;
  gap: 20px;
  animation: slide 20s linear infinite;
}

.star-text {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.star-text p,
.star-text span {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--Robort-font);
  white-space: nowrap;
  margin: 0;
  padding: 0;
  color: var(--white);
}
.star-text i {
  font-size: 18px;
  color: var(--white);
}
.cover-container .cover-wraper li {
  list-style: disc;
  margin-right: 20px;
  font-size: 60px;
}

/* Infinite Scroll Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*====================Hero About Herosection =================*/
.hero-about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.hero-about .left-side,
.hero-about .right-side {
  width: 50%;
  /* border: 1px solid; */
}
.hero-about .left-side {
  width: 60%;
}
.hero-about .left-side img {
  width: 100%;
  height: 100%;
}
.module-subtitle.subtitle-line {
  font-size: 17px;
  display: block;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin-bottom: 13px;
  color: #799d3e;

  &::before {
    content: "";
    display: inline-block;
    background-color: #799d3e;
    opacity: 0.7;
    width: 30px;
    height: 2px;
    margin: 0px 5px 2px 0;
    vertical-align: middle;
  }
}
.hero-about .right-side p {
  color: var(--p-color);
  font-size: 14.85px;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 13px;
}
.hero-about .right-side button {
  font-family: var(--Poppins-font);
  font-size: 16px;
  padding: 12px 20px;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 800px;
  letter-spacing: 0.8px;
  box-shadow: 3px 3px 7px #757474fb;
}

/* ====== COUNTER ======= */

.counter-bg {
  background-color: #eff3f6;
  padding: 50px 0px;
}
.counter-bg .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  h2 {
    font-size: 38px;
    font-weight: 900;
    color: #0e3862d5;
  }

  p {
    margin: 20px 0px;
    font-size: 15px;
    letter-spacing: 0.4px;
  }
}
.counter-bg .left-side {
  width: 60%;
}
,
.counter-bg .right-side {
  width: 40%;
  height: 300px;
  /* border: 1px solid; */
}
.counter-bg button {
  background-color: var(--green-dark);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 12px 25px;
  border-radius: 4px;
  color: var(--white);
  box-shadow: 4px 4px 8px rgb(78, 78, 78);
}
.counter-bg .right-side {
  width: 40%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.counter-bg .right-side .card {
  width: 100%;
  height: 150px;
  background-color: var(--green-dark);
  /* border: 1px solid; */
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  color: var(--white);

  position: relative;

  img {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
}
.counter-bg .right-side .card h4 {
  font-size: 50px;
  font-weight: 900;
  font-family: var(--Robort-font);
}
.counter-bg .right-side .card span {
  font-weight: 500;
  font-family: var(--Robort-font);
  text-align: center;
  font-size: 15px;
}

.counter-bg .right-side .card:nth-child(1),
.counter-bg .right-side .card:nth-child(4) {
  background-color: var(--blue);
}

/* ========== SERVICE CONTAINER ========== */

.hero-service.container {
  max-width: 1300px;
  margin: 0px auto;
  margin-top: 10px;

  padding: 30px 0px;
}
.service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 40px;
  margin-top: 40px;
}

.service-container .card {
  width: 100%;
  height: auto;
  padding: 20px;
  /* border: 1px solid; */
  background-color: var(--white);
  box-shadow: 0px 0px 5px rgb(163, 163, 163);
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  position: relative;
}
.service-container .card img {
  width: 70px;
  height: 70px;
}
.service-container .card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  margin-top: 14px;
  margin-bottom: 13px;
}

.service-container .card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--p-color);
  /* letter-spacing: 0.6px; */
  flex: 1;
  margin-bottom: 10px;
}

.service-container .card button {
  background-color: var(--blue);
  max-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  font-family: var(--Robort-font);
  letter-spacing: 0.6px;
  border-radius: 4px;
  cursor: pointer;
  padding: 11px 25px;
  margin-top: 5px;
  box-shadow: 3px 3px 7px #00000087;

  i {
    transition: all 0.3s ease-in-out;
  }

  &:hover i {
    transform: translateX(12px);
  }
}

/* ======== CTA SECTION =======*/

.cta-section {
  width: 100%;
  height: 100%;
  padding: 60px;
  background: url(../images/2151305391.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  /* margin-top: 20px; */

  &::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0px;
    box-sizing: border-box;
    background-color: #00000088;
    /* background-color: #084a7988; */
  }
}
.cta-section h2 {
  margin-bottom: 5px;
  font-family: var(--Robort-font);
  font-size: 45px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.cta-section.about-uspct h2 {
  font-size: 40px;
}

.cta-section p {
  position: relative;
  z-index: 2;
  color: var(--white);
  margin: 0px auto;
  text-align: center;
  margin-top: 13px;
  font-size: 16px;
  word-spacing: 1px;
  max-width: 1100px;
}

.cta-section .btns-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.cta-section button {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  font-family: var(--Poppins-font);
  background-color: var(--blue);
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 0.8px 5px rgba(0, 0, 0, 0.2);
}

.cta-section a:nth-child(2) button {
  background-color: rgb(6, 156, 6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cta-section button:nth-child(2) i {
  font-size: 25px;
}
/* ======== Pricing ========== */

.pricing-sec {
  padding: 40px 0px;
  background-color: #eff3f6;
}
.pricing-sec .container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.pricing-sec .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0px 0px 5px rgb(163, 163, 163);
  /* box-shadow: 0px 0px 4px rgb(83, 83, 83); */
}
.pricing-sec .card img {
  width: 50px;
  height: 50px;
  opacity: 0.6;
  margin-bottom: 10px;
}
.pricing-sec .card h2 {
  font-weight: 900;
  opacity: 0.9;
  margin-bottom: 15px;
}
.pricing-sec .card span {
  font-weight: 400;
  letter-spacing: 0px;
  word-spacing: 1.2px;
  color: var(--p-color);
  margin-bottom: 8px;
}
.pricing-sec .card h3 {
  font-size: 35px;
  font-weight: 700;
  font-family: var(--Poppins-font);
  color: var(--black);
  line-height: 1;

  sub,
  sup {
    font-size: 14px;
    font-weight: 600;
    color: var(--p-color);
  }
}

.pricing-sec .btn-div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  width: 100%;

  button {
    width: 100%;
    padding: 13px 0px;

    color: var(--white);
    font-size: 17px;
    letter-spacing: 0.8px;
    font-weight: 500;
    border-radius: 4px;
    background-color: var(--green-dark);
    border: 1px solid var(--green-dark);
  }
}
.pricing-sec .btn-div a:nth-child(2) button {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  font-size: 14px;
}

/* ========= INDUSTRIES ========== */

.Industries {
  background-color: #eff3f6;
  padding: 50px 0px;
}

.Industries h2 {
  text-align: center;
}

.Industries .Industries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.Industries-list .card {
  width: 100%;
  height: auto;
  background-color: var(--white);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 0px 5px #c2c1c1c5;
}
.Industries-list .card .up-side {
  width: 100%;
  /* height: 80px; */
  background-color: #084a79;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 10px 20px;
  gap: 10px;

  .icon-div {
    width: 50px;
    height: 50px;
    background-color: #fafafa;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      width: 40px;
      height: 40px;
    }
  }
}
.Industries-list .card .up-side h4 {
  font-weight: var(--Robort-font);
  font-size: 19px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.9;
}
.Industries-list .card p {
  font-size: 13px;
  color: var(--p-color);
  padding: 10px 20px;
  font-weight: 600;
  /* letter-spacing: 0.4px; */
}

/*======================== Why Choose Us ========================*/

.why-choose-section {
  padding: 50px 0px;
  /* background-color: #fffcfc; */
}

.why-choose-section h6 {
  /* font-size: 40px; */
  line-height: 38px;
  font-weight: 700;
  /* letter-spacing: 1px; */
  margin-bottom: 20px;
  text-align: center;
}

.why-choose-section .why-choose-contain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.why-choose-section .why-choose-contain .why-choose-card {
  width: 100%;
  padding: 20px;
  border: 1px solid #f0f0f1;
  background: linear-gradient(145deg, #fcfdff, #f1f7fe);
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.6s ease-in-out;
  text-align: center;
}

.why-choose-section .why-choose-contain .why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 12px #67676881;
}

.why-choose-section .why-choose-contain .why-choose-card:hover .line {
  transform: translateY(-2px);
  opacity: 1;
}

.why-choose-section .why-choose-contain .why-choose-card:hover .icon-div {
  transform: scale(1.06) rotateZ(5deg);
}

.why-choose-section .why-choose-contain .why-choose-card .icon-div {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(180deg, #308def, #16a7de);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 30px #c9c9cab6;
  transition: all 0.6s ease-in-out;
}

.why-choose-section .why-choose-contain .why-choose-card .icon-div img {
  width: 50px;
  height: 50px;
  filter: invert(100%);
}

.why-choose-section .why-choose-contain .why-choose-card h2 {
  font-size: 20px;
  margin-top: 20px;
}

.why-choose-section .why-choose-contain .why-choose-card p {
  font-size: 14px;
  margin-bottom: 30px;
}

.why-choose-section .why-choose-contain .why-choose-card .line {
  width: 50px;
  height: 2px;
  background: linear-gradient(180deg, #308def, #16a7de);
  transition: all 0.7s ease-in-out;
  opacity: 0;
}

/* ===== TRUSTED COMPANY ===== */

.trusted-comapny {
  background-color: #eff3f6;
  padding: 50px 0px;
  padding-bottom: 0px !important;
}
.trusted-comapny .slider-trak {
  width: 100%;
  padding: 40px 30px;
  overflow: hidden;
  gap: 30px;
  display: flex;
  /* border: 1px solid #c2c1c1c5; */
}
.comapny-list {
  display: flex;
  gap: 30px;
  animation: slide 40s linear infinite;
}
.comapny-list .box-card {
  background: #ffffff;
  border-radius: 4px;
  min-width: 150px;
  height: 120px; /* fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.comapny-list .box-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Logo Image */
.comapny-list .box-card img {
  max-width: 140px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* ======== FAQ ======= */

.different-other {
  background-color: #eff3f6;
  padding: 50px 0px;

  .sub-heading {
    max-width: 900px;
    margin-top: 10px;
  }
}

.different-other .faq-container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 50px;

  margin-top: 30px;

  .left-side,
  .right-side {
    width: 50%;
  }
}
.different-other .faq-container .box-div {
  margin-bottom: 10px;
}
.different-other .faq-container .que-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: var(--white);
  border: 1px solid #eeecec;
  cursor: pointer;
  padding-right: 20px;

  transition: all 0.3s ease-in-out;

  .header-box {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 20px;
  }

  h4 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--black);
    opacity: 0.9;
    padding-left: 0px;
  }
  i {
    transition: all 0.4s ease-in-out;
    /* padding-right: 20px; */
  }

  .img-div {
    min-width: 45px;

    min-height: 45px;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      width: 30px;
      height: 30px;
    }
  }
}
.different-other .box-div.open i {
  transform: rotate(180deg);
}
.different-other .faq-container .ans {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0px 20px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  margin-top: 4px;
}
.different-other .faq-container .box-div.open .ans {
  max-height: 200px;
  padding: 10px 20px;

  p {
    margin: 0px;
  }
}

/* BOOKING METTING */

.Book-meeting {
  padding: 20px 60px;
  background-image: url(../images/Gemini_Generated_Image_2xcxda2xcxda2xcx.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;

  .content-box {
    max-width: 800px;
    background-color: var(--white);
    padding: 20px;
    /* width: 420px; */
    padding: 40px;
    border-radius: 18px;
    background: rgba(27, 27, 27, 0.562);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: var(--white);
  }
  p,
  h2 {
    text-align: left;
    color: var(--white);
  }

  .sub-heading {
    max-width: 1000px;
    margin-top: 20px;
  }

  .btn-div {
    display: flex;
    justify-content: start;
    margin-top: 20px;
  }
  button {
    font-family: var(--Poppins-font);
    font-size: 17px;
    font-weight: 600;
    background-color: var(--blue);
    color: var(--white);
    padding: 13px 25px;
    letter-spacing: 0.5px;
    border-radius: 5px;
  }
}

/* =========== FOOTER ============== */
.footer {
  background: linear-gradient(180deg, #182034 0%, #0f1525 100%);
  padding: 80px 70px 40px;
  color: #ffffff;
  font-family: var(--Robort-font);
}

/* Inner layout */
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.4fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Logo */
.footer-logo img {
  width: 160px;
  margin-bottom: 10px;
}

/* Description */
.footer-desc {
  font-size: 15px;
  letter-spacing: 0.7px;
  line-height: 1.6;
  color: #d6d9e4;
  max-width: 320px;
}

.footer-social {
  width: 100%;
  height: 60px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;

  img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Titles */
.footer-title {
  color: #4da3ff;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.8px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--green-dark);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 10px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #cfd3e6;
}

.footer-links a {
  color: #cfd3e6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4da3ff;
  padding-left: 6px;
}

/* Contact */
.footer-contact p {
  font-size: 15.6px;
  line-height: 1.7;
  color: #cfd3e6;
  margin-top: 6px;
  letter-spacing: 0.4px;
}

/* Contact rows */
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 16px;
  color: #e4e7f5;
  letter-spacing: 0.4px;
}

.contact-row i {
  color: var(--green-dark);
  font-size: 18px;
}

.contact-row .fa-whatsapp {
  font-size: 20px;
}

/* Bottom section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  color: #cfd3e6;
}

.bottom-links a {
  color: #cfd3e6;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: #4da3ff;
}
.whbtnin {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  border-radius: 50%;
}

.call-btn-underlay {
  position: absolute !important;
  z-index: -1 !important;
  top: 50% !important;
  left: 50% !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  margin: auto !important;
  animation: cp-widget-button-underlay 1.5s infinite;
  border-radius: 100% !important;
  background-color: #417523;
}
.sticky-whp {
  width: 60px;
  height: 60px;
  right: 20px;
  bottom: 20px;
}
@keyframes cp-widget-button-underlay {
  0% {
    opacity: 0.45;
    width: 0;
    height: 0;
  }
  40% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
    width: 150px;
    height: 150px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 30px 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ============= + HOME PAGE END + ============= */

/* =============ABOUT US PAGE ==============*/

.hero-about-page {
  width: 100%;
  height: 400px;
  background-image: url(../images/2147656718.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-bottom-right-radius: 100px;
  overflow: hidden;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      #000b1ed2 30%,
      rgba(255, 255, 255, 0.219) 100%
    );
  }
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  h1 {
    color: var(--white);
    text-align: center;
    vertical-align: middle;
    font-size: 60px;
  }
}

.hero-about-page .link-container {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 30px;
  padding: 8px 30px;
  background: rgba(27, 27, 27, 0.562);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  color: var(--white);
  border-radius: 100px;
}
.hero-about-page .link-container i {
  font-size: 16px;
}
.hero-about-page .link-container p {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.9px;
  color: var(--white);
}
.hero-about-page .link-container .ab {
  color: var(--green-dark);
}
/* ================= */

.about-page-2 {
  padding: 40px 0px;
}
.about-page-2 .left-side {
  width: 50%;
  position: relative;
  .img-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
    z-index: -1;
    animation: floatYX 3s ease-in-out infinite;
  }
}
.about-page-2 .left-side .imge-box {
  width: 80%;
  height: 400px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #a2d3e986;
    left: -5px;
    top: -5px;
    z-index: -1;
    border-radius: 30px;
    /* transform: translate(-15px, -15px); */
    animation: floatXY 3s ease-in-out infinite;
  }
  &::after {
    content: "+10 Years Experience";
    position: absolute;
    max-width: fit-content;
    white-space: pre-line; /* 👈 important */
    right: 0%;
    top: -20px;
    padding: 20px 30px;
    background-color: var(--green-dark);
    border-radius: 100px;
    font-family: var(--Robort-font);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    text-align: center;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
  }
}
@keyframes floatXY {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-18px, -18px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes floatYX {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.about-page-2 .left-side .img-box-2 {
  width: 150px;
  height: 230px;
  border: 1px solid;
  position: absolute;
  bottom: 0px;
  right: 8%;
  border: 8px solid var(--white);
  border-radius: 40px;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-page-2 .right-side p {
  margin-top: 20px;
}
.about-page-2 .right-side button {
  margin-top: 20px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 4px 4px 9px rgb(56, 56, 56);
}

/* ====== Mission & Vission ====== */

.mission-vission.container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px auto;
}
.mission-vission.container .card {
  width: 100%;
  /* height: 400px; */
  border: 1px solid #417523;
  box-shadow: 0px 0px 6px #31531e;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 30px 20px;

  h4 {
    font-size: 25px;
    font-family: var(--Robort-font);
    font-weight: 800;
    color: var(--p-color);
  }
  p {
    font-weight: 400;
    text-align: center;
    color: var(--p-color);
    /* line-height: 1.4; */
  }
}
.mission-vission.container .card:nth-child(2) img {
  rotate: 180deg;
}

.mission-vission.container .card img {
  width: 80px;
  height: 80px;
}

/* =========== .about Service ==========*/
.about-service {
  background-color: #eeeadf;
  padding: 30px;
}

.about-service .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-service .container .card {
  width: 100%;
  border-radius: 20px;
  padding: 20px 30px;
  background-color: var(--white);
  transition: all 0.6s ease-in-out;
}

.about-service .container .card div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-service .container .card img {
  width: 30px;
  height: 30px;
}

.about-service .container .card h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  color: var(--black);
  padding-top: 10px;
}

.about-service .container .card p {
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-top: 10px;
  color: var(--p-color);
}

.about-service .container .card button {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);

  i {
    transition: all 0.3s ease-in-out;
  }
}

.about-service .container .card button:hover i {
  transform: translateX(6px);
  /* color: var(--green-dark); */
}

/* CARD 1 */
.about-service .container .card1 {
  background-color: transparent;
}

.about-service .container .card1 h4 {
  font-size: 24px;
  color: var(--black-dark);
}

.about-service .container .card1 button {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
}

/* CARD 2 ACTIVE / HOVER */
.about-service .container .card2:hover,
.about-service .container .card2.active {
  background-color: var(--green-dark);
  transform: rotate(-2deg);
}

.about-service .container .card2:hover h4,
.about-service .container .card2:hover p,
.about-service .container .card2:hover button,
.about-service .container .card2.active h4,
.about-service .container .card2.active p,
.about-service .container .card2.active button {
  color: var(--white);
}

/* ======== Partnerships ======= */

.Partnerships {
  padding: 30px 0px;
  background-color: #eff3f6;
}

.Partnerships .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.Partnerships .card {
  /* padding: 30px; */
  width: 100%;
  height: max-content;
  border: 1px dashed #c9c6c6;
  border-radius: 20px;
  position: relative;
  padding: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;

  &::after {
    content: "";
    position: absolute;
    background-color: var(--white);
    width: 90%;
    height: 90%;
    box-shadow: 0px 0px 8px gray;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: -1;
  }

  p {
    font-size: 14px;
    text-align: center;
    color: var(--p-color);
    letter-spacing: 0.4px;
  }
}

.Partnerships .card .img-div {
  width: 100px;
  height: 100px;
  background-color: var(--blue);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 80px;
    height: 80px;
  }
}
.Partnerships .card h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: var(--Robort-font);
  text-align: center;
}

/* ========== COntact US =========== */
.contact-us-page {
  background-image: url(../images/45436.webp);
  background-attachment: fixed;
}

.contact-from {
  padding: 50px 0px;
}
.contact-from .container {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.contact-from .container .left-side {
  width: 50%;
}
.contact-from .container .left-side h2 {
  margin-bottom: 10px;
}
.contact-from .container .left-side p {
  margin-top: 0px;
  font-size: 15px;
}
.contact-from .container .content-div {
  display: flex;
  align-items: start;
  background-color: var(--green-dark);
  padding: 15px 30px;
  gap: 14px;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 4px 4px 8px #1e5302;
  margin-bottom: 20px;
}
.contact-from .container .content-div i {
  font-size: 27px;
  margin-top: 2px;
}
.contact-from .container .content-div h4 {
  font-size: 19px;
  letter-spacing: 0.6px;
}
.contact-from .container .content-div p {
  margin-top: 7px;
  margin-bottom: 0px;
  font-weight: 600;
}
.contact-from .container .content-div .h4-2 {
  font-size: 20px;
}
.contact-from .container .content-div .p-2 {
  font-size: 17px;
  margin-top: 0px;
}

.contact-from .container .right-side {
  width: 50%;
  border-radius: 8px;
  background-color: var(--blue);
}
.contact-from .container form {
  width: 100%;
  padding: 30px;

  h2 {
    margin-bottom: 30px;
    color: var(--white);
    position: relative;

    &::after {
      position: absolute;
      content: "";
      width: 80px;
      height: 4px;
      background-color: var(--white);
      bottom: -7px;
      border-bottom-right-radius: 100px;
      left: 0px;
    }
  }
}
.container form .input-div {
  width: 100%;
  margin-bottom: 15px;
  position: relative;

  .img-div {
    width: 60px;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img {
    width: 30px;

    /* position: absolute; */
  }
}
.container form .input-div input,
select {
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  letter-spacing: 0.7px;
  border-radius: 4px;
  border: 1px solid rgb(187, 185, 185);
  /* box-shadow: 0px 0px 4px gray; */

  &::placeholder {
    color: gray;
  }
}
.container form .phone-input input {
  padding-left: 60px;
}
.container form select {
  color: gray;
}
.container form textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  letter-spacing: 0.7px;
  border-radius: 4px;
  border: 1px solid rgb(187, 185, 185);
}

.container form button {
  padding: 15px 20px;
  color: var(--green-dark);
  background-color: var(--white);
  margin-top: 20px;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid var(--white);
  letter-spacing: 0.7px;
  font-family: var(--Robort-font);
  border-radius: 4px;
  cursor: pointer;
}
/* STicky Top button */

.top-to-up {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--green-dark) 30%, var(--blue));
  border-radius: 8px;
  z-index: 500000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;

  i {
    font-size: 30px;
    color: var(--white);
  }
}
.top-to-up.active {
  transform: translateY(0px);
  opacity: 1;
}
.process.smm-service {
  padding-bottom: 40px !important;
}
