* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: rgb(255, 255, 255);
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

li {
  list-style: none;
}

*::after,
*::before {
  content: "";
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .container {
    width: 90%;
  }
}
header.header {
  border-bottom: 1px solid rgb(244, 244, 244);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.744);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10000000000;
  box-shadow: 0 0 5px rgb(241, 241, 241);
}
header.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
@media (max-width: 700px) {
  header.header .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header.header .container ion-icon {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  header.header .container ul {
    margin: 7px 0;
    font-size: 10px !important;
    flex-wrap: wrap;
  }
  header.header .container ul li {
    margin: 0 -6px;
  }
}
header.header .container img {
  width: 80px;
}
header.header .container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 11.8px;
  letter-spacing: 0.1px;
  font-weight: 600;
  width: 90%;
}
header.header .container ul li a {
  padding: 0.5rem 1rem;
  transition: 0.3s;
  color: rgb(117, 117, 117);
}
header.header .container ul li a:hover {
  color: rgb(10.3801104972, 160.4198895028, 112.2939226519);
}

main.main .container {
  padding: 3.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 780px) {
  main.main .container {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }
  main.main .container .image {
    width: 350px;
    height: 350px;
  }
  main.main .container .image img {
    width: 350px;
    height: 350px;
  }
}
main.main .container .image {
  width: 550px;
  height: 550px;
  border-radius: 10px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 1280px) {
  main.main .container .image {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 910px) {
  main.main .container .image {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 780px) {
  main.main .container .image {
    align-items: center;
  }
}
@media (max-width: 480px) {
  main.main .container .image {
    width: 250px;
    height: 250px;
  }
}
main.main .container .image .styler-left {
  position: absolute;
  top: -7px;
  left: -1px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.148);
  background-color: rgb(255, 255, 255);
  padding: 15px 13px;
  border-radius: 4px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  font-size: 7.2px;
  font-weight: bold;
  animation: updown 1.5s infinite alternate;
}
@media (max-width: 500px) {
  main.main .container .image .styler-left {
    left: 100px;
  }
}
main.main .container .image .styler-left span {
  background-color: rgb(11, 170, 119);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 2px;
}
main.main .container .image .styler-right {
  position: absolute;
  bottom: -10px;
  right: -2px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.148);
  background-color: rgb(255, 255, 255);
  padding: 15px 13px;
  border-radius: 4px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  font-size: 7.2px;
  font-weight: bold;
  animation: downup 1.5s infinite alternate;
}
main.main .container .image .styler-right span {
  background-color: rgb(102, 0, 255);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 2px;
}
main.main .container .image img {
  width: 520px;
  height: 520px;
  border-radius: 10px;
}
@media (max-width: 1280px) {
  main.main .container .image img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 910px) {
  main.main .container .image img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 780px) {
  main.main .container .image img {
    width: 250px;
    height: 250px;
  }
}
main.main .container .hero {
  width: 50%;
}
@media (max-width: 780px) {
  main.main .container .hero {
    margin-left: 0 !important;
  }
  main.main .container .hero p {
    margin: 0 !important;
  }
  main.main .container .hero {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    order: 1;
    text-align: center;
  }
  main.main .container .hero button {
    text-align: center;
  }
}
main.main .container .hero h1 {
  font-size: 3.4rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin-bottom: 0.5rem;
  line-height: 0.975;
}
@media (max-width: 780px) {
  main.main .container .hero h1 {
    width: 100%;
    font-size: 1rem;
  }
}
@media (max-width: 1210px) {
  main.main .container .hero h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 910px) {
  main.main .container .hero h1 {
    font-size: 2.3rem;
  }
}
main.main .container .hero p {
  font-size: 17px;
  color: rgb(117, 117, 117);
  margin-bottom: 1.5rem;
}
@media (max-width: 780px) {
  main.main .container .hero p {
    font-size: 10px;
    text-align: center !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}
@media (max-width: 722px) {
  main.main .container .hero p {
    font-size: 10px;
    text-align: center !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}
@media (max-width: 608px) {
  main.main .container .hero p {
    font-size: 10px;
    text-align: center !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}
@media (max-width: 1280px) {
  main.main .container .hero p {
    font-size: 12px;
  }
}
@media (max-width: 910px) {
  main.main .container .hero p {
    font-size: 10px;
  }
}
main.main .container .hero button {
  padding: 0.8rem 1.5rem;
  background-color: rgb(11, 170, 119);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
}
main.main .container .hero button:hover {
  background-color: rgb(18.9510869565, 139.5489130435, 63.7445652174);
}
@media (max-width: 780px) {
  main.main .container .hero button {
    justify-content: center;
    margin: 20px 0 10px 0;
  }
}
main.main .container .hero .results {
  display: flex;
  margin-top: 2rem;
}
@media (max-width: 780px) {
  main.main .container .hero .results {
    justify-content: center;
  }
}
main.main .container .hero .results .result {
  text-align: center;
  margin: 1px;
}
@media (max-width: 780px) {
  main.main .container .hero .results .result {
    margin: 10px 10px;
  }
}
main.main .container .hero .results .result h2 {
  font-size: 18px;
  font-weight: 600;
  color: rgb(22, 162, 74);
}
main.main .container .hero .results .result small {
  font-size: 10px;
  color: rgb(117, 117, 117);
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px) scale(1);
  }
  100% {
    transform: translateY(-5px) scale(1.03);
  }
}
@keyframes downup {
  0% {
    transform: translateY(5);
  }
  50% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-12px) scale(1.03);
  }
}
.color {
  color: rgb(22, 162, 74);
}

section.services {
  width: 100%;
}
section.services .serv-header {
  text-align: center;
}
section.services .serv-header h2 {
  font-size: 29px;
  font-weight: 700;
}
@media (max-width: 600px) {
  section.services .serv-header h2 {
    font-size: 22px;
  }
}
section.services .serv-header p {
  font-size: 15px;
  color: rgb(117, 117, 117);
  width: 48%;
  margin: 8px auto -15px auto;
}
@media (max-width: 900px) {
  section.services .serv-header p {
    width: 80%;
  }
}
@media (max-width: 600px) {
  section.services .serv-header p {
    width: 200px;
    font-size: 13px;
  }
}
section.services .container {
  margin-top: 2rem;
}
section.services .container .pans {
  display: flex;
  align-items: center;
}
section.services .container .pans .pan {
  padding: 5px;
  border-radius: 2px;
  color: rgb(22, 162, 74);
  font-size: 9px;
  margin-right: 8px;
  background-color: rgba(13, 255, 0, 0.141);
}
section.services .container .serv-cards {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
section.services .container .card {
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  margin-top: 15px;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  section.services .container .card {
    padding: 1rem;
  }
}
section.services .container .card img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  section.services .container .card img {
    height: 100px;
  }
}
section.services .container .card .image {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
section.services .container .card .image::after {
  content: "";
  position: absolute;
  padding: 5px;
  border-radius: 50%;
  background-color: rgb(22, 162, 74);
  transform: translate(-50%, -50%);
  top: 15px;
  left: 15px;
}
section.services .container .card:hover img {
  transform: scale(1.1);
}
section.services .container .card h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgb(22, 162, 74);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  section.services .container .card h3 {
    font-size: 16px;
  }
}
section.services .container .card p {
  font-size: 12px;
  color: rgb(117, 117, 117);
  margin-bottom: 1rem;
  width: 95%;
}
@media (max-width: 600px) {
  section.services .container .card p {
    font-size: 11px;
  }
}

.why-header {
  text-align: center;
}
.why-header h2 {
  font-size: 29px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .why-header h2 {
    font-size: 22px;
  }
}
.why-header p {
  font-size: 15px;
  color: rgb(117, 117, 117);
  width: 48%;
  margin: 8px auto;
}
@media (max-width: 900px) {
  .why-header p {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .why-header p {
    width: 100%;
    font-size: 13px;
  }
}

section.whychooseus .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1140px) {
  section.whychooseus .container {
    flex-direction: column;
    align-items: center;
  }
  section.whychooseus .container img {
    width: 250px;
  }
}

.stepper-box {
  border-radius: 12px;
  padding: 35px;
  width: 350px;
}
@media (max-width: 350px) {
  .stepper-box {
    width: 300px;
    padding: 4px !important;
  }
}

.stepper-step {
  display: flex;
  margin-bottom: 32px;
  position: relative;
}

.stepper-step:last-child {
  margin-bottom: 0;
}

.stepper-line {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -32px;
  width: 2px;
  background-color: #e2e8f0;
  z-index: 1;
}

.stepper-step:last-child .stepper-line {
  display: none;
}

.stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  z-index: 2;
}

.stepper-completed .stepper-circle {
  background-color: #0f172a;
  color: white;
}

.stepper-active .stepper-circle {
  border: 2px solid #0f172a;
  color: #0f172a;
}

.stepper-pending .stepper-circle {
  border: 2px solid #e2e8f0;
  color: #94a3b8;
}

.stepper-content {
  flex: 1;
}

.stepper-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.stepper-completed .stepper-title {
  color: #0f172a;
}

.stepper-active .stepper-title {
  color: #0f172a;
}

.stepper-pending .stepper-title {
  color: #94a3b8;
}

.stepper-status {
  font-size: 13px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  margin-top: 4px;
}

.stepper-completed .stepper-status {
  background-color: #dcfce7;
  color: #166534;
}

.stepper-active .stepper-status {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.stepper-pending .stepper-status {
  background-color: #f1f5f9;
  color: #64748b;
}

.stepper-time {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

.stepper-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.stepper-button {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stepper-button-primary {
  background-color: #0f172a;
  color: white;
  border-color: #0f172a;
}

.gallary {
  margin-top: 15px;
}
.gallary button {
  margin: 25px auto;
  background-color: transparent;
  padding: 10px 25px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  border: 2px solid rgb(22, 162, 74);
  font-weight: 600;
}
.gallary button a {
  padding: 10px 35px !important;
  color: rgb(22, 162, 74);
}
.gallary button:hover {
  background-color: rgb(11, 170, 119);
  color: white;
}
.gallary .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gallary .container .gallary-header {
  text-align: center;
}
.gallary .container .gallary-header h2 {
  font-size: 29px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .gallary .container .gallary-header h2 {
    font-size: 22px;
  }
}
.gallary .container .gallary-header p {
  font-size: 15px;
  color: rgb(117, 117, 117);
  width: 48%;
  margin: 8px auto -15px auto;
}
@media (max-width: 900px) {
  .gallary .container .gallary-header p {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .gallary .container .gallary-header p {
    width: 100%;
    font-size: 13px;
  }
}
.gallary .container .gallary-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
  overflow-x: hidden;
}
.gallary .container .gallary-cards .card {
  background-color: rgb(255, 255, 255);
  margin-top: 15px;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  width: 350px;
  height: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
@media (max-width: 400px) {
  .gallary .container .gallary-cards .card {
    width: 300px;
    height: 300px;
    margin-top: 8px;
  }
}
.gallary .container .gallary-cards .card img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.gallary .container .gallary-cards .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: rgba(25, 25, 25, 0.051);
  transition: height 0.3s ease-in-out;
}
.gallary .container .gallary-cards .card:hover::after {
  height: 100%;
}

section.contacts {
  margin-top: 30px;
}
section.contacts img {
  width: 30%;
}
section.contacts .contacts-header {
  margin-bottom: 50px;
  text-align: center;
}
section.contacts .contacts-header h2 {
  font-size: 29px;
  font-weight: 700;
}
@media (max-width: 600px) {
  section.contacts .contacts-header h2 {
    font-size: 22px;
  }
}
section.contacts .contacts-header p {
  font-size: 15px;
  color: rgb(117, 117, 117);
  width: 48%;
  margin: 8px auto -15px auto;
}
@media (max-width: 900px) {
  section.contacts .contacts-header p {
    width: 80%;
  }
}
@media (max-width: 600px) {
  section.contacts .contacts-header p {
    width: 100%;
    font-size: 13px;
  }
}
section.contacts .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 800px) {
  section.contacts .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  section.contacts .container img {
    width: 60%;
    margin-top: 15px;
  }
  section.contacts .container .content {
    width: 100%;
  }
  section.contacts .container .content .c-body {
    font-size: 8px;
  }
  section.contacts .container .content .c-body .contact {
    flex-direction: column;
    text-align: center;
  }
  section.contacts .container .content .c-body .contact ion-icon {
    margin: 0 -8px 10px 0;
  }
}
section.contacts .container .content {
  width: 50%;
}
section.contacts .container .content .c-header h2 {
  font-size: 16.5px;
  font-weight: 800;
  margin: 0 0 12px 0;
}
section.contacts .container .content .c-header p {
  color: rgb(117, 117, 117);
  font-size: 13px;
  line-height: 1.2;
}
@media (max-width: 800px) {
  section.contacts .container .content .c-header {
    text-align: center;
  }
  section.contacts .container .content .c-header p {
    display: none;
  }
}
section.contacts .container .content .c-body {
  margin-top: 20px;
  margin-left: -2px;
  display: flex;
  flex-direction: column;
}
section.contacts .container .content .c-body .contact {
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 3px 0;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.058);
  width: 100%;
  border: 1px solid rgb(224, 224, 224);
}
section.contacts .container .content .c-body .contact:hover {
  border-color: rgb(11, 170, 119);
}
section.contacts .container .content .c-body .contact ion-icon {
  background: rgba(0, 255, 60, 0.067);
  color: rgb(22, 162, 74);
  padding: 10px;
  font-size: 16px;
  border-radius: 2px;
  margin-right: 12px;
}
section.contacts .container .content .c-body .contact h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}
section.contacts .container .content .c-body .contact h3:last-child {
  font-weight: 600;
  color: rgb(117, 117, 117);
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 3px;
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: rgb(22, 162, 74);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(11, 170, 119);
}

/* For Firefox */
* {
  scrollbar-width: none;
  scrollbar-color: rgb(22, 162, 74) #f1f1f1;
}

@media (max-width: 700px) {
  p {
    max-width: 500px;
    min-width: 250px;
    width: 300px;
  }
}
@media (min-width: 1000px) {
  section {
    margin: 70px auto;
  }
}
@media (max-width: 999px) {
  section {
    margin: 45px auto;
  }
}
.footer {
  background: rgba(248, 249, 250, 0.8470588235);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer__text {
  color: #7a7a7a;
  font-size: 10px;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.footer__links a {
  color: #7a7a7a;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.footer__links a:hover,
.footer__links a:focus {
  color: #0056b3;
}

.footer__links ion-icon {
  vertical-align: middle;
}

body {
  overflow-y: scroll;
  margin-top: 70px;
}
@media (max-width: 700px) {
  body {
    margin-top: 120px;
  }
}

body::after {
  content: "";
  width: 25%;
  height: 100vh;
  background-color: rgba(247, 2, 2, 0.247);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  right: 0;
  transform: skew(-10deg) translateX(200%);
  z-index: 10;
  animation: come 1s ease-in-out;
}

body::before {
  content: "";
  width: 25%;
  height: 100vh;
  background-color: rgba(2, 120, 247, 0.247);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  transform: skew(10deg) translateX(-200%);
  z-index: 10;
  animation: come2 1s ease-in-out;
}

@keyframes come {
  0% {
    transform: skew(-10deg) translateX(200%);
  }
  100% {
    transform: skew(-10deg) translateX(-550%);
  }
}
@keyframes come2 {
  0% {
    transform: skew(10deg) translateX(-200%);
  }
  100% {
    transform: skew(10deg) translateX(550%);
  }
}/*# sourceMappingURL=style.css.map */